@lynx-js/react 0.121.0 → 0.121.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/package.json +2 -2
- package/runtime/lib/core/commit-context.d.ts +8 -0
- package/runtime/lib/core/commit-context.js +18 -0
- package/runtime/lib/core/commit-context.js.map +1 -0
- package/runtime/lib/core/forceRootRender.d.ts +7 -0
- package/runtime/lib/core/forceRootRender.js +40 -0
- package/runtime/lib/core/forceRootRender.js.map +1 -0
- package/runtime/lib/core/globalProps.d.ts +31 -0
- package/runtime/lib/core/globalProps.js +55 -0
- package/runtime/lib/core/globalProps.js.map +1 -0
- package/runtime/lib/core/hooks/useLynxGlobalEventListener.js +1 -1
- package/runtime/lib/core/hooks/useLynxGlobalEventListener.js.map +1 -1
- package/runtime/lib/{snapshot/compat → core}/initData.d.ts +1 -1
- package/runtime/lib/{snapshot/compat → core}/initData.js +4 -5
- package/runtime/lib/core/initData.js.map +1 -0
- package/runtime/lib/core/lynx-data-processors.d.ts +2 -0
- package/runtime/lib/core/lynx-data-processors.js +53 -0
- package/runtime/lib/core/lynx-data-processors.js.map +1 -0
- package/runtime/lib/core/lynx-page-data.d.ts +1 -0
- package/runtime/lib/core/lynx-page-data.js +14 -0
- package/runtime/lib/core/lynx-page-data.js.map +1 -0
- package/runtime/lib/core/lynx-update-data.d.ts +11 -0
- package/runtime/lib/core/lynx-update-data.js +21 -0
- package/runtime/lib/core/lynx-update-data.js.map +1 -0
- package/runtime/lib/core/ref.d.ts +37 -0
- package/runtime/lib/core/ref.js +108 -0
- package/runtime/lib/core/ref.js.map +1 -0
- package/runtime/lib/core/reload-version.d.ts +2 -0
- package/runtime/lib/{snapshot/lifecycle/pass.js → core/reload-version.js} +4 -5
- package/runtime/lib/core/reload-version.js.map +1 -0
- package/runtime/lib/element-template/background/attr-slots.d.ts +6 -1
- package/runtime/lib/element-template/background/attr-slots.js +35 -2
- package/runtime/lib/element-template/background/attr-slots.js.map +1 -1
- package/runtime/lib/element-template/background/commit-context.d.ts +3 -3
- package/runtime/lib/element-template/background/commit-context.js +15 -18
- package/runtime/lib/element-template/background/commit-context.js.map +1 -1
- package/runtime/lib/element-template/background/commit-hook.d.ts +1 -1
- package/runtime/lib/element-template/background/commit-hook.js +66 -41
- package/runtime/lib/element-template/background/commit-hook.js.map +1 -1
- package/runtime/lib/element-template/background/destroy.js +9 -6
- package/runtime/lib/element-template/background/destroy.js.map +1 -1
- package/runtime/lib/element-template/background/document.js +1 -7
- package/runtime/lib/element-template/background/document.js.map +1 -1
- package/runtime/lib/element-template/background/hydrate.d.ts +1 -1
- package/runtime/lib/element-template/background/hydrate.js +53 -36
- package/runtime/lib/element-template/background/hydrate.js.map +1 -1
- package/runtime/lib/element-template/background/hydration-listener.js +55 -9
- package/runtime/lib/element-template/background/hydration-listener.js.map +1 -1
- package/runtime/lib/element-template/background/instance.d.ts +12 -10
- package/runtime/lib/element-template/background/instance.js +113 -115
- package/runtime/lib/element-template/background/instance.js.map +1 -1
- package/runtime/lib/element-template/client/root.d.ts +7 -0
- package/runtime/lib/element-template/client/root.js +3 -6
- package/runtime/lib/element-template/client/root.js.map +1 -1
- package/runtime/lib/element-template/debug/alog.d.ts +7 -0
- package/runtime/lib/element-template/debug/alog.js +10 -0
- package/runtime/lib/element-template/debug/alog.js.map +1 -1
- package/runtime/lib/element-template/debug/elementPAPICall.js +4 -0
- package/runtime/lib/element-template/debug/elementPAPICall.js.map +1 -1
- package/runtime/lib/element-template/hydration-map.d.ts +5 -0
- package/runtime/lib/element-template/hydration-map.js +12 -0
- package/runtime/lib/element-template/hydration-map.js.map +1 -0
- package/runtime/lib/element-template/index.d.ts +22 -1
- package/runtime/lib/element-template/index.js +32 -2
- package/runtime/lib/element-template/index.js.map +1 -1
- package/runtime/lib/element-template/internal.d.ts +1 -1
- package/runtime/lib/element-template/internal.js +2 -3
- package/runtime/lib/element-template/internal.js.map +1 -1
- package/runtime/lib/element-template/lynx/env.js +5 -48
- package/runtime/lib/element-template/lynx/env.js.map +1 -1
- package/runtime/lib/element-template/native/index.d.ts +1 -1
- package/runtime/lib/element-template/native/index.js +28 -2
- package/runtime/lib/element-template/native/index.js.map +1 -1
- package/runtime/lib/element-template/native/main-thread-api.js +27 -5
- package/runtime/lib/element-template/native/main-thread-api.js.map +1 -1
- package/runtime/lib/element-template/native/patch-listener.js +5 -1
- package/runtime/lib/element-template/native/patch-listener.js.map +1 -1
- package/runtime/lib/element-template/native/reload.d.ts +2 -0
- package/runtime/lib/element-template/native/reload.js +64 -0
- package/runtime/lib/element-template/native/reload.js.map +1 -0
- package/runtime/lib/element-template/prop-adapters/event.d.ts +1 -0
- package/runtime/lib/element-template/prop-adapters/event.js +4 -1
- package/runtime/lib/element-template/prop-adapters/event.js.map +1 -1
- package/runtime/lib/element-template/prop-adapters/ref.d.ts +26 -0
- package/runtime/lib/element-template/prop-adapters/ref.js +107 -0
- package/runtime/lib/element-template/prop-adapters/ref.js.map +1 -0
- package/runtime/lib/element-template/prop-adapters/spread.js +8 -1
- package/runtime/lib/element-template/prop-adapters/spread.js.map +1 -1
- package/runtime/lib/element-template/protocol/opcodes.d.ts +1 -0
- package/runtime/lib/element-template/protocol/opcodes.js +1 -0
- package/runtime/lib/element-template/protocol/opcodes.js.map +1 -1
- package/runtime/lib/element-template/protocol/types.d.ts +50 -2
- package/runtime/lib/element-template/runtime/page/page.d.ts +5 -2
- package/runtime/lib/element-template/runtime/page/page.js +12 -0
- package/runtime/lib/element-template/runtime/page/page.js.map +1 -1
- package/runtime/lib/element-template/runtime/patch.js +70 -1
- package/runtime/lib/element-template/runtime/patch.js.map +1 -1
- package/runtime/lib/element-template/runtime/render/render-main-thread.d.ts +3 -1
- package/runtime/lib/element-template/runtime/render/render-main-thread.js +25 -7
- package/runtime/lib/element-template/runtime/render/render-main-thread.js.map +1 -1
- package/runtime/lib/element-template/runtime/render/render-to-opcodes.js +9 -3
- package/runtime/lib/element-template/runtime/render/render-to-opcodes.js.map +1 -1
- package/runtime/lib/element-template/runtime/template/attr-slot-plan.d.ts +1 -0
- package/runtime/lib/element-template/runtime/template/attr-slot-plan.js +4 -0
- package/runtime/lib/element-template/runtime/template/attr-slot-plan.js.map +1 -1
- package/runtime/lib/element-template/runtime/template/handle.js +0 -1
- package/runtime/lib/element-template/runtime/template/handle.js.map +1 -1
- package/runtime/lib/element-template/runtime/template/registry.js +1 -1
- package/runtime/lib/element-template/runtime/template/registry.js.map +1 -1
- package/runtime/lib/internal.d.ts +1 -1
- package/runtime/lib/internal.js +1 -1
- package/runtime/lib/internal.js.map +1 -1
- package/runtime/lib/lynx-api.d.ts +3 -8
- package/runtime/lib/lynx-api.js +8 -45
- package/runtime/lib/lynx-api.js.map +1 -1
- package/runtime/lib/snapshot/debug/vnodeSource.js +1 -1
- package/runtime/lib/snapshot/debug/vnodeSource.js.map +1 -1
- package/runtime/lib/snapshot/lifecycle/patch/commit.d.ts +0 -1
- package/runtime/lib/snapshot/lifecycle/patch/commit.js +3 -8
- package/runtime/lib/snapshot/lifecycle/patch/commit.js.map +1 -1
- package/runtime/lib/snapshot/lifecycle/patch/updateMainThread.js +1 -1
- package/runtime/lib/snapshot/lifecycle/patch/updateMainThread.js.map +1 -1
- package/runtime/lib/snapshot/lifecycle/ref/delay.d.ts +6 -13
- package/runtime/lib/snapshot/lifecycle/ref/delay.js +9 -30
- package/runtime/lib/snapshot/lifecycle/ref/delay.js.map +1 -1
- package/runtime/lib/snapshot/lifecycle/reload.js +2 -2
- package/runtime/lib/snapshot/lifecycle/reload.js.map +1 -1
- package/runtime/lib/snapshot/list/list.js +1 -1
- package/runtime/lib/snapshot/list/list.js.map +1 -1
- package/runtime/lib/snapshot/list/listUpdateInfo.js +3 -2
- package/runtime/lib/snapshot/list/listUpdateInfo.js.map +1 -1
- package/runtime/lib/snapshot/lynx/calledByNative.js +2 -8
- package/runtime/lib/snapshot/lynx/calledByNative.js.map +1 -1
- package/runtime/lib/snapshot/lynx/component.js +2 -2
- package/runtime/lib/snapshot/lynx/component.js.map +1 -1
- package/runtime/lib/snapshot/lynx/env.js +5 -51
- package/runtime/lib/snapshot/lynx/env.js.map +1 -1
- package/runtime/lib/snapshot/lynx/runWithForce.js +9 -39
- package/runtime/lib/snapshot/lynx/runWithForce.js.map +1 -1
- package/runtime/lib/snapshot/lynx/tt.js +9 -29
- package/runtime/lib/snapshot/lynx/tt.js.map +1 -1
- package/runtime/lib/snapshot/snapshot/backgroundSnapshot.js +3 -3
- package/runtime/lib/snapshot/snapshot/backgroundSnapshot.js.map +1 -1
- package/runtime/lib/snapshot/snapshot/list.js +1 -1
- package/runtime/lib/snapshot/snapshot/list.js.map +1 -1
- package/runtime/lib/snapshot/snapshot/ref.d.ts +3 -5
- package/runtime/lib/snapshot/snapshot/ref.js +16 -59
- package/runtime/lib/snapshot/snapshot/ref.js.map +1 -1
- package/runtime/lib/snapshot/snapshot/snapshotInstanceHydrationMap.js +1 -1
- package/runtime/lib/snapshot/snapshot/snapshotInstanceHydrationMap.js.map +1 -1
- package/runtime/lib/tsconfig.tsbuildinfo +1 -1
- package/runtime/lib/worklet-runtime/workletRuntime.js +1 -1
- package/runtime/lib/worklet-runtime/workletRuntime.js.map +1 -1
- package/runtime/worklet-runtime/dev.js +2 -2
- package/testing-library/dist/env/index.js +2 -8
- package/testing-library/dist/plugins/index.js +12 -1
- package/transform/dist/wasm.cjs +1 -1
- package/runtime/lib/element-template/hooks/react.d.ts +0 -14
- package/runtime/lib/element-template/hooks/react.js +0 -24
- package/runtime/lib/element-template/hooks/react.js.map +0 -1
- package/runtime/lib/element-template/runtime/components/slot.d.ts +0 -1
- package/runtime/lib/element-template/runtime/components/slot.js +0 -11
- package/runtime/lib/element-template/runtime/components/slot.js.map +0 -1
- package/runtime/lib/snapshot/compat/initData.js.map +0 -1
- package/runtime/lib/snapshot/lifecycle/pass.d.ts +0 -3
- package/runtime/lib/snapshot/lifecycle/pass.js.map +0 -1
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import * as backgroundHooks from '../../core/hooks/react.js';
|
|
2
|
-
declare const useState: typeof backgroundHooks.useState;
|
|
3
|
-
declare const useReducer: typeof backgroundHooks.useReducer;
|
|
4
|
-
declare const useRef: typeof backgroundHooks.useRef;
|
|
5
|
-
declare const useImperativeHandle: typeof backgroundHooks.useImperativeHandle;
|
|
6
|
-
declare const useLayoutEffect: typeof backgroundHooks.useLayoutEffect;
|
|
7
|
-
declare const useEffect: typeof backgroundHooks.useEffect;
|
|
8
|
-
declare const useCallback: typeof backgroundHooks.useCallback;
|
|
9
|
-
declare const useMemo: typeof backgroundHooks.useMemo;
|
|
10
|
-
declare const useContext: typeof backgroundHooks.useContext;
|
|
11
|
-
declare const useDebugValue: typeof backgroundHooks.useDebugValue;
|
|
12
|
-
declare const useErrorBoundary: typeof backgroundHooks.useErrorBoundary;
|
|
13
|
-
declare const useId: typeof backgroundHooks.useId;
|
|
14
|
-
export { useCallback, useContext, useDebugValue, useEffect, useErrorBoundary, useId, useImperativeHandle, useLayoutEffect, useMemo, useReducer, useRef, useState, };
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
// Copyright 2024 The Lynx Authors. All rights reserved.
|
|
2
|
-
// Licensed under the Apache License Version 2.0 that can be found in the
|
|
3
|
-
// LICENSE file in the root directory of this source tree.
|
|
4
|
-
import * as mainThreadHooks from '../../core/hooks/mainThreadImpl.js';
|
|
5
|
-
import * as backgroundHooks from '../../core/hooks/react.js';
|
|
6
|
-
function currentHooks() {
|
|
7
|
-
return __MAIN_THREAD__
|
|
8
|
-
? mainThreadHooks
|
|
9
|
-
: backgroundHooks;
|
|
10
|
-
}
|
|
11
|
-
const useState = ((...args) => currentHooks().useState(...args));
|
|
12
|
-
const useReducer = ((...args) => currentHooks().useReducer(...args));
|
|
13
|
-
const useRef = ((...args) => currentHooks().useRef(...args));
|
|
14
|
-
const useImperativeHandle = ((...args) => currentHooks().useImperativeHandle(...args));
|
|
15
|
-
const useLayoutEffect = ((...args) => currentHooks().useLayoutEffect(...args));
|
|
16
|
-
const useEffect = ((...args) => currentHooks().useEffect(...args));
|
|
17
|
-
const useCallback = ((...args) => currentHooks().useCallback(...args));
|
|
18
|
-
const useMemo = ((...args) => currentHooks().useMemo(...args));
|
|
19
|
-
const useContext = ((...args) => currentHooks().useContext(...args));
|
|
20
|
-
const useDebugValue = ((...args) => currentHooks().useDebugValue(...args));
|
|
21
|
-
const useErrorBoundary = ((...args) => currentHooks().useErrorBoundary(...args));
|
|
22
|
-
const useId = ((...args) => currentHooks().useId(...args));
|
|
23
|
-
export { useCallback, useContext, useDebugValue, useEffect, useErrorBoundary, useId, useImperativeHandle, useLayoutEffect, useMemo, useReducer, useRef, useState, };
|
|
24
|
-
//# sourceMappingURL=react.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"react.js","sourceRoot":"","sources":["../../../src/element-template/hooks/react.ts"],"names":[],"mappings":"AAAA,wDAAwD;AACxD,yEAAyE;AACzE,0DAA0D;AAE1D,OAAO,KAAK,eAAe,MAAM,oCAAoC,CAAC;AACtE,OAAO,KAAK,eAAe,MAAM,2BAA2B,CAAC;AAE7D,SAAS,YAAY;IACnB,OAAO,eAAe;QACpB,CAAC,CAAC,eAAoD;QACtD,CAAC,CAAC,eAAe,CAAC;AACtB,CAAC;AAED,MAAM,QAAQ,GACZ,CAAC,CAAC,GAAG,IAAe,EAAE,EAAE,CACrB,YAAY,EAAE,CAAC,QAA4C,CAAC,GAAG,IAAI,CAAC,CAAoC,CAAC;AAC9G,MAAM,UAAU,GACd,CAAC,CAAC,GAAG,IAAe,EAAE,EAAE,CACrB,YAAY,EAAE,CAAC,UAA8C,CAAC,GAAG,IAAI,CAAC,CAAsC,CAAC;AAClH,MAAM,MAAM,GACV,CAAC,CAAC,GAAG,IAAe,EAAE,EAAE,CACrB,YAAY,EAAE,CAAC,MAA0C,CAAC,GAAG,IAAI,CAAC,CAAkC,CAAC;AAC1G,MAAM,mBAAmB,GACvB,CAAC,CAAC,GAAG,IAAe,EAAE,EAAE,CACrB,YAAY,EAAE,CAAC,mBAAuD,CACrE,GAAG,IAAI,CACR,CAA+C,CAAC;AACrD,MAAM,eAAe,GAAG,CAAC,CAAC,GAAG,IAAe,EAAE,EAAE,CAC7C,YAAY,EAAE,CAAC,eAAmD,CACjE,GAAG,IAAI,CACR,CAA2C,CAAC;AAC/C,MAAM,SAAS,GACb,CAAC,CAAC,GAAG,IAAe,EAAE,EAAE,CACrB,YAAY,EAAE,CAAC,SAA6C,CAAC,GAAG,IAAI,CAAC,CAAqC,CAAC;AAChH,MAAM,WAAW,GACf,CAAC,CAAC,GAAG,IAAe,EAAE,EAAE,CACrB,YAAY,EAAE,CAAC,WAA+C,CAAC,GAAG,IAAI,CAAC,CAAuC,CAAC;AACpH,MAAM,OAAO,GACX,CAAC,CAAC,GAAG,IAAe,EAAE,EAAE,CACrB,YAAY,EAAE,CAAC,OAA2C,CAAC,GAAG,IAAI,CAAC,CAAmC,CAAC;AAC5G,MAAM,UAAU,GACd,CAAC,CAAC,GAAG,IAAe,EAAE,EAAE,CACrB,YAAY,EAAE,CAAC,UAA8C,CAAC,GAAG,IAAI,CAAC,CAAsC,CAAC;AAClH,MAAM,aAAa,GACjB,CAAC,CAAC,GAAG,IAAe,EAAE,EAAE,CACrB,YAAY,EAAE,CAAC,aAAiD,CAAC,GAAG,IAAI,CAAC,CAAyC,CAAC;AACxH,MAAM,gBAAgB,GAAG,CAAC,CAAC,GAAG,IAAe,EAAE,EAAE,CAC9C,YAAY,EAAE,CAAC,gBAAoD,CAClE,GAAG,IAAI,CACR,CAA4C,CAAC;AAChD,MAAM,KAAK,GACT,CAAC,CAAC,GAAG,IAAe,EAAE,EAAE,CACrB,YAAY,EAAE,CAAC,KAAyC,CAAC,GAAG,IAAI,CAAC,CAAiC,CAAC;AAExG,OAAO,EACL,WAAW,EACX,UAAU,EACV,aAAa,EACb,SAAS,EACT,gBAAgB,EAChB,KAAK,EACL,mBAAmB,EACnB,eAAe,EACf,OAAO,EACP,UAAU,EACV,MAAM,EACN,QAAQ,GACT,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { createElement } from 'preact';
|
|
2
|
-
/**
|
|
3
|
-
* @internal
|
|
4
|
-
*/
|
|
5
|
-
export function __etSlot(id, children) {
|
|
6
|
-
if (__BACKGROUND__) {
|
|
7
|
-
return createElement('slot', { id }, children);
|
|
8
|
-
}
|
|
9
|
-
throw new Error('__etSlot() should not run on the main thread. LEPUS ET children are lowered to slot arrays at compile time.');
|
|
10
|
-
}
|
|
11
|
-
//# sourceMappingURL=slot.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"slot.js","sourceRoot":"","sources":["../../../../src/element-template/runtime/components/slot.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,aAAa,EAAE,MAAM,QAAQ,CAAC;AAEvC;;GAEG;AACH,MAAM,UAAU,QAAQ,CAAC,EAAU,EAAE,QAA2B;IAC9D,IAAI,cAAc,EAAE,CAAC;QACnB,OAAO,aAAa,CAAC,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,QAAQ,CAAC,CAAC;IACjD,CAAC;IACD,MAAM,IAAI,KAAK,CACb,6GAA6G,CAC9G,CAAC;AACJ,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"initData.js","sourceRoot":"","sources":["../../../src/snapshot/compat/initData.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"pass.js","sourceRoot":"","sources":["../../../src/snapshot/lifecycle/pass.ts"],"names":[],"mappings":"AAAA,wDAAwD;AACxD,yEAAyE;AACzE,0DAA0D;AAC1D,IAAI,aAAa,GAAG,CAAC,CAAC;AAEtB,SAAS,gBAAgB;IACvB,OAAO,aAAa,CAAC;AACvB,CAAC;AAED,SAAS,qBAAqB;IAC5B,OAAO,EAAE,aAAa,CAAC;AACzB,CAAC;AAED,OAAO,EAAE,gBAAgB,EAAE,qBAAqB,EAAE,CAAC"}
|