Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changeset/deep-ideas-nail.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---

---
9 changes: 9 additions & 0 deletions .changeset/fluffy-masks-mate.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
"@lynx-js/web-mainthread-apis": patch
"@lynx-js/web-worker-runtime": patch
"@lynx-js/web-core-server": patch
"@lynx-js/web-constants": patch
"@lynx-js/web-core": patch
---

feat: supports lazy bundle. (This feature requires `@lynx-js/lynx-core >= 0.1.3`)
11 changes: 11 additions & 0 deletions .changeset/plain-paws-peel.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
"@lynx-js/tailwind-preset": minor
---

Added `group-*`, `peer-*`, and `parent-*` modifiers (ancestor, sibling, and direct-parent scopes) for `uiVariants` plugin.

Fixed prefix handling in prefixed projects — `ui-*` state markers are not prefixed, while scope markers (`.group`/`.peer`) honor `config('prefix')`.

**BREAKING**: Removed slash-based naming modifiers on self (non-standard); slash modifiers remain supported for scoped markers (e.g. `group/menu`, `peer/tab`).

Bumped peer dependency to `tailwindcss@^3.4.0` (required for use of internal features).
3 changes: 3 additions & 0 deletions .changeset/thirty-dots-sink.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---

---
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ test-results
trace.zip
.turbo
**/test/js
.swc

# api-extractor
packages/*/temp
Expand Down
3 changes: 3 additions & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
packages/web-platform/** @pupiltong
packages/webpack/** @colinaaa
packages/rspeedy/** @colinaaa
packages/react/** @hzy
packages/react/transform/** @gaoachao
benchmark/react/** @hzy
214 changes: 214 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ resolver = "2"

members = [
"packages/react/transform",
"packages/react/transform/swc-plugin-reactlynx",
"packages/react/transform/swc-plugin-reactlynx-compat",
"packages/web-platform/inline-style-parser",
"packages/web-platform/web-style-transformer",
]
Expand Down
2 changes: 1 addition & 1 deletion packages/lynx/benchx_cli/scripts/build.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ console.log('noop')
}

const COMMIT = 'd6dd806293012c62e5104ad7ed2bed5c66f4f833';
const PICK_COMMIT = '3d75a38c2e5b422da9b32851a1bd5dfe25ca8ed6';
const PICK_COMMIT = 'ce49dc44c73bb26bb6c1cc56d0ae86fa45cc254c';

function checkCwd() {
try {
Expand Down
5 changes: 4 additions & 1 deletion packages/react/runtime/src/lifecycle/patch/commit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ import { getReloadVersion } from '../pass.js';
import type { SnapshotPatch } from './snapshotPatch.js';
import { takeGlobalSnapshotPatch } from './snapshotPatch.js';
import { profileEnd, profileStart } from '../../debug/utils.js';
import { delayedRunOnMainThreadData, takeDelayedRunOnMainThreadData } from '../../worklet/runOnMainThread.js';
import {
delayedRunOnMainThreadData,
takeDelayedRunOnMainThreadData,
} from '../../worklet/delayedRunOnMainThreadData.js';
import { isRendering } from '../isRendering.js';

let globalFlushOptions: FlushOptions = {};
Expand Down
Loading
Loading