bippy 0.2.5 → 0.2.6
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/dist/{chunk-CQFIS43Y.cjs → chunk-A425RZH5.cjs} +30 -11
- package/dist/{chunk-4TD4C62I.js → chunk-DCVQB6TW.js} +30 -12
- package/dist/{core-BJrLSucf.d.cts → core-VaoADixi.d.cts} +1 -3
- package/dist/{core-BJrLSucf.d.ts → core-VaoADixi.d.ts} +1 -3
- package/dist/core.cjs +57 -65
- package/dist/core.d.cts +1 -1
- package/dist/core.d.ts +1 -1
- package/dist/core.js +1 -1
- package/dist/index.cjs +69 -65
- package/dist/index.d.cts +6 -3
- package/dist/index.d.ts +6 -3
- package/dist/index.global.js +1 -1
- package/dist/index.js +1 -1
- package/dist/inspect.cjs +4061 -245
- package/dist/inspect.js +4050 -234
- package/package.json +3 -1
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
12
|
// src/rdt-hook.ts
|
|
13
|
-
var version = "0.2.
|
|
13
|
+
var version = "0.2.6";
|
|
14
14
|
var BIPPY_INSTRUMENTATION_STRING = `bippy-${version}`;
|
|
15
15
|
var NO_OP = () => {
|
|
16
16
|
};
|
|
@@ -27,6 +27,14 @@ var checkDCE = (fn) => {
|
|
|
27
27
|
} catch {
|
|
28
28
|
}
|
|
29
29
|
};
|
|
30
|
+
var isRealReactDevtools = (rdtHook = getRDTHook()) => {
|
|
31
|
+
return "getFiberRoots" in rdtHook;
|
|
32
|
+
};
|
|
33
|
+
var isReactRefreshOverride = false;
|
|
34
|
+
var isReactRefresh = (rdtHook = getRDTHook()) => {
|
|
35
|
+
if (isReactRefreshOverride) return true;
|
|
36
|
+
return !("checkDCE" in rdtHook);
|
|
37
|
+
};
|
|
30
38
|
var installRDTHook = (onActive) => {
|
|
31
39
|
const renderers = /* @__PURE__ */ new Map();
|
|
32
40
|
let i = 0;
|
|
@@ -56,9 +64,26 @@ var installRDTHook = (onActive) => {
|
|
|
56
64
|
value: rdtHook
|
|
57
65
|
});
|
|
58
66
|
} catch {
|
|
67
|
+
patchRDTHook(onActive);
|
|
59
68
|
}
|
|
60
69
|
return rdtHook;
|
|
61
70
|
};
|
|
71
|
+
var patchRDTHook = (onActive) => {
|
|
72
|
+
try {
|
|
73
|
+
const rdtHook = globalThis.__REACT_DEVTOOLS_GLOBAL_HOOK__;
|
|
74
|
+
if (!rdtHook._instrumentationSource) {
|
|
75
|
+
isReactRefreshOverride = isReactRefresh(rdtHook);
|
|
76
|
+
rdtHook.checkDCE = checkDCE;
|
|
77
|
+
rdtHook.supportsFiber = true;
|
|
78
|
+
rdtHook.supportsFlight = true;
|
|
79
|
+
rdtHook.hasUnsupportedRendererAttached = false;
|
|
80
|
+
rdtHook._instrumentationSource = BIPPY_INSTRUMENTATION_STRING;
|
|
81
|
+
rdtHook._instrumentationIsActive = true;
|
|
82
|
+
onActive?.();
|
|
83
|
+
}
|
|
84
|
+
} catch {
|
|
85
|
+
}
|
|
86
|
+
};
|
|
62
87
|
var hasRDTHook = () => {
|
|
63
88
|
return Object.prototype.hasOwnProperty.call(
|
|
64
89
|
globalThis,
|
|
@@ -66,12 +91,11 @@ var hasRDTHook = () => {
|
|
|
66
91
|
);
|
|
67
92
|
};
|
|
68
93
|
var getRDTHook = (onActive) => {
|
|
69
|
-
let rdtHook = globalThis.__REACT_DEVTOOLS_GLOBAL_HOOK__;
|
|
70
|
-
if (rdtHook) onActive?.();
|
|
71
94
|
if (!hasRDTHook()) {
|
|
72
|
-
|
|
95
|
+
return installRDTHook(onActive);
|
|
73
96
|
}
|
|
74
|
-
|
|
97
|
+
patchRDTHook(onActive);
|
|
98
|
+
return globalThis.__REACT_DEVTOOLS_GLOBAL_HOOK__;
|
|
75
99
|
};
|
|
76
100
|
try {
|
|
77
101
|
if (typeof window !== "undefined" && // @ts-expect-error `document` may not be defined in some enviroments
|
|
@@ -368,12 +392,6 @@ var getDisplayName = (type) => {
|
|
|
368
392
|
if (!unwrappedType) return null;
|
|
369
393
|
return unwrappedType.displayName || unwrappedType.name || null;
|
|
370
394
|
};
|
|
371
|
-
var isRealReactDevtools = (rdtHook = getRDTHook()) => {
|
|
372
|
-
return "getFiberRoots" in rdtHook;
|
|
373
|
-
};
|
|
374
|
-
var isReactRefresh = (rdtHook = getRDTHook()) => {
|
|
375
|
-
return !("checkDCE" in rdtHook);
|
|
376
|
-
};
|
|
377
395
|
var detectReactBuildType = (renderer) => {
|
|
378
396
|
try {
|
|
379
397
|
if (typeof renderer.version === "string" && renderer.bundleType > 0) {
|
|
@@ -742,6 +760,7 @@ exports.isValidElement = isValidElement;
|
|
|
742
760
|
exports.isValidFiber = isValidFiber;
|
|
743
761
|
exports.mountFiberRecursively = mountFiberRecursively;
|
|
744
762
|
exports.onCommitFiberRoot = onCommitFiberRoot;
|
|
763
|
+
exports.patchRDTHook = patchRDTHook;
|
|
745
764
|
exports.secure = secure;
|
|
746
765
|
exports.setFiberId = setFiberId;
|
|
747
766
|
exports.shouldFilterFiber = shouldFilterFiber;
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
// src/rdt-hook.ts
|
|
11
|
-
var version = "0.2.
|
|
11
|
+
var version = "0.2.6";
|
|
12
12
|
var BIPPY_INSTRUMENTATION_STRING = `bippy-${version}`;
|
|
13
13
|
var NO_OP = () => {
|
|
14
14
|
};
|
|
@@ -25,6 +25,14 @@ var checkDCE = (fn) => {
|
|
|
25
25
|
} catch {
|
|
26
26
|
}
|
|
27
27
|
};
|
|
28
|
+
var isRealReactDevtools = (rdtHook = getRDTHook()) => {
|
|
29
|
+
return "getFiberRoots" in rdtHook;
|
|
30
|
+
};
|
|
31
|
+
var isReactRefreshOverride = false;
|
|
32
|
+
var isReactRefresh = (rdtHook = getRDTHook()) => {
|
|
33
|
+
if (isReactRefreshOverride) return true;
|
|
34
|
+
return !("checkDCE" in rdtHook);
|
|
35
|
+
};
|
|
28
36
|
var installRDTHook = (onActive) => {
|
|
29
37
|
const renderers = /* @__PURE__ */ new Map();
|
|
30
38
|
let i = 0;
|
|
@@ -54,9 +62,26 @@ var installRDTHook = (onActive) => {
|
|
|
54
62
|
value: rdtHook
|
|
55
63
|
});
|
|
56
64
|
} catch {
|
|
65
|
+
patchRDTHook(onActive);
|
|
57
66
|
}
|
|
58
67
|
return rdtHook;
|
|
59
68
|
};
|
|
69
|
+
var patchRDTHook = (onActive) => {
|
|
70
|
+
try {
|
|
71
|
+
const rdtHook = globalThis.__REACT_DEVTOOLS_GLOBAL_HOOK__;
|
|
72
|
+
if (!rdtHook._instrumentationSource) {
|
|
73
|
+
isReactRefreshOverride = isReactRefresh(rdtHook);
|
|
74
|
+
rdtHook.checkDCE = checkDCE;
|
|
75
|
+
rdtHook.supportsFiber = true;
|
|
76
|
+
rdtHook.supportsFlight = true;
|
|
77
|
+
rdtHook.hasUnsupportedRendererAttached = false;
|
|
78
|
+
rdtHook._instrumentationSource = BIPPY_INSTRUMENTATION_STRING;
|
|
79
|
+
rdtHook._instrumentationIsActive = true;
|
|
80
|
+
onActive?.();
|
|
81
|
+
}
|
|
82
|
+
} catch {
|
|
83
|
+
}
|
|
84
|
+
};
|
|
60
85
|
var hasRDTHook = () => {
|
|
61
86
|
return Object.prototype.hasOwnProperty.call(
|
|
62
87
|
globalThis,
|
|
@@ -64,12 +89,11 @@ var hasRDTHook = () => {
|
|
|
64
89
|
);
|
|
65
90
|
};
|
|
66
91
|
var getRDTHook = (onActive) => {
|
|
67
|
-
let rdtHook = globalThis.__REACT_DEVTOOLS_GLOBAL_HOOK__;
|
|
68
|
-
if (rdtHook) onActive?.();
|
|
69
92
|
if (!hasRDTHook()) {
|
|
70
|
-
|
|
93
|
+
return installRDTHook(onActive);
|
|
71
94
|
}
|
|
72
|
-
|
|
95
|
+
patchRDTHook(onActive);
|
|
96
|
+
return globalThis.__REACT_DEVTOOLS_GLOBAL_HOOK__;
|
|
73
97
|
};
|
|
74
98
|
try {
|
|
75
99
|
if (typeof window !== "undefined" && // @ts-expect-error `document` may not be defined in some enviroments
|
|
@@ -366,12 +390,6 @@ var getDisplayName = (type) => {
|
|
|
366
390
|
if (!unwrappedType) return null;
|
|
367
391
|
return unwrappedType.displayName || unwrappedType.name || null;
|
|
368
392
|
};
|
|
369
|
-
var isRealReactDevtools = (rdtHook = getRDTHook()) => {
|
|
370
|
-
return "getFiberRoots" in rdtHook;
|
|
371
|
-
};
|
|
372
|
-
var isReactRefresh = (rdtHook = getRDTHook()) => {
|
|
373
|
-
return !("checkDCE" in rdtHook);
|
|
374
|
-
};
|
|
375
393
|
var detectReactBuildType = (renderer) => {
|
|
376
394
|
try {
|
|
377
395
|
if (typeof renderer.version === "string" && renderer.bundleType > 0) {
|
|
@@ -689,4 +707,4 @@ var onCommitFiberRoot = (handler) => {
|
|
|
689
707
|
);
|
|
690
708
|
};
|
|
691
709
|
|
|
692
|
-
export { BIPPY_INSTRUMENTATION_STRING, CONCURRENT_MODE_NUMBER, CONCURRENT_MODE_SYMBOL_STRING, ClassComponentTag, ContextConsumerTag, DEPRECATED_ASYNC_MODE_SYMBOL_STRING, DehydratedSuspenseComponentTag, ELEMENT_TYPE_SYMBOL_STRING, ForwardRefTag, FragmentTag, FunctionComponentTag, HostComponentTag, HostHoistableTag, HostRootTag, HostSingletonTag, HostTextTag, INSTALL_HOOK_SCRIPT_STRING, LegacyHiddenComponentTag, MemoComponentTag, OffscreenComponentTag, SimpleMemoComponentTag, SuspenseComponentTag, TRANSITIONAL_ELEMENT_TYPE_SYMBOL_STRING, createFiberVisitor, detectReactBuildType, didFiberCommit, didFiberRender, fiberIdMap, getDisplayName, getFiberFromHostInstance, getFiberId, getFiberStack, getMutatedHostFibers, getNearestHostFiber, getNearestHostFibers, getRDTHook, getTimings, getType, hasMemoCache, hasRDTHook, installRDTHook, instrument, isCompositeFiber, isHostFiber, isInstrumentationActive, isReactRefresh, isRealReactDevtools, isValidElement, isValidFiber, mountFiberRecursively, onCommitFiberRoot, secure, setFiberId, shouldFilterFiber, traverseContexts, traverseEffects, traverseFiber, traverseProps, traverseRenderedFibers, traverseState, unmountFiber, unmountFiberChildrenRecursively, updateFiberRecursively, version };
|
|
710
|
+
export { BIPPY_INSTRUMENTATION_STRING, CONCURRENT_MODE_NUMBER, CONCURRENT_MODE_SYMBOL_STRING, ClassComponentTag, ContextConsumerTag, DEPRECATED_ASYNC_MODE_SYMBOL_STRING, DehydratedSuspenseComponentTag, ELEMENT_TYPE_SYMBOL_STRING, ForwardRefTag, FragmentTag, FunctionComponentTag, HostComponentTag, HostHoistableTag, HostRootTag, HostSingletonTag, HostTextTag, INSTALL_HOOK_SCRIPT_STRING, LegacyHiddenComponentTag, MemoComponentTag, OffscreenComponentTag, SimpleMemoComponentTag, SuspenseComponentTag, TRANSITIONAL_ELEMENT_TYPE_SYMBOL_STRING, createFiberVisitor, detectReactBuildType, didFiberCommit, didFiberRender, fiberIdMap, getDisplayName, getFiberFromHostInstance, getFiberId, getFiberStack, getMutatedHostFibers, getNearestHostFiber, getNearestHostFibers, getRDTHook, getTimings, getType, hasMemoCache, hasRDTHook, installRDTHook, instrument, isCompositeFiber, isHostFiber, isInstrumentationActive, isReactRefresh, isRealReactDevtools, isValidElement, isValidFiber, mountFiberRecursively, onCommitFiberRoot, patchRDTHook, secure, setFiberId, shouldFilterFiber, traverseContexts, traverseEffects, traverseFiber, traverseProps, traverseRenderedFibers, traverseState, unmountFiber, unmountFiberChildrenRecursively, updateFiberRecursively, version };
|
|
@@ -188,8 +188,6 @@ declare const getType: (type: unknown) => React.ComponentType<unknown> | null;
|
|
|
188
188
|
* Returns the display name of the {@link Fiber}.
|
|
189
189
|
*/
|
|
190
190
|
declare const getDisplayName: (type: unknown) => string | null;
|
|
191
|
-
declare const isRealReactDevtools: (rdtHook?: ReactDevToolsGlobalHook) => rdtHook is ReactDevToolsGlobalHook & Record<"getFiberRoots", unknown>;
|
|
192
|
-
declare const isReactRefresh: (rdtHook?: ReactDevToolsGlobalHook) => rdtHook is never;
|
|
193
191
|
/**
|
|
194
192
|
* Returns the build type of the React renderer.
|
|
195
193
|
*/
|
|
@@ -259,4 +257,4 @@ declare const secure: (options: InstrumentationOptions, secureOptions?: {
|
|
|
259
257
|
*/
|
|
260
258
|
declare const onCommitFiberRoot: (handler: (root: FiberRoot) => void) => void;
|
|
261
259
|
|
|
262
|
-
export {
|
|
260
|
+
export { traverseRenderedFibers as $, traverseFiber as A, getTimings as B, ClassComponentTag as C, DehydratedSuspenseComponentTag as D, ELEMENT_TYPE_SYMBOL_STRING as E, FunctionComponentTag as F, hasMemoCache as G, HostRootTag as H, getType as I, getDisplayName as J, detectReactBuildType as K, LegacyHiddenComponentTag as L, MemoComponentTag as M, isInstrumentationActive as N, OffscreenComponentTag as O, type RenderPhase as P, type RenderHandler as Q, type ReactDevToolsGlobalHook as R, SuspenseComponentTag as S, TRANSITIONAL_ELEMENT_TYPE_SYMBOL_STRING as T, fiberIdMap as U, setFiberId as V, getFiberId as W, mountFiberRecursively as X, updateFiberRecursively as Y, unmountFiber as Z, unmountFiberChildrenRecursively as _, HostComponentTag as a, createFiberVisitor as a0, type InstrumentationOptions as a1, instrument as a2, getFiberFromHostInstance as a3, secure as a4, onCommitFiberRoot as a5, type Fiber as a6, type ReactRenderer as a7, type ContextDependency as a8, type Dependencies as a9, type Effect as aa, type MemoizedState as ab, type Props as ac, HostTextTag as b, FragmentTag as c, ContextConsumerTag as d, ForwardRefTag as e, SimpleMemoComponentTag as f, HostHoistableTag as g, HostSingletonTag as h, CONCURRENT_MODE_NUMBER as i, CONCURRENT_MODE_SYMBOL_STRING as j, DEPRECATED_ASYNC_MODE_SYMBOL_STRING as k, isValidElement as l, isValidFiber as m, isHostFiber as n, isCompositeFiber as o, traverseState as p, traverseEffects as q, traverseProps as r, didFiberRender as s, traverseContexts as t, didFiberCommit as u, getMutatedHostFibers as v, getFiberStack as w, shouldFilterFiber as x, getNearestHostFiber as y, getNearestHostFibers as z };
|
|
@@ -188,8 +188,6 @@ declare const getType: (type: unknown) => React.ComponentType<unknown> | null;
|
|
|
188
188
|
* Returns the display name of the {@link Fiber}.
|
|
189
189
|
*/
|
|
190
190
|
declare const getDisplayName: (type: unknown) => string | null;
|
|
191
|
-
declare const isRealReactDevtools: (rdtHook?: ReactDevToolsGlobalHook) => rdtHook is ReactDevToolsGlobalHook & Record<"getFiberRoots", unknown>;
|
|
192
|
-
declare const isReactRefresh: (rdtHook?: ReactDevToolsGlobalHook) => rdtHook is never;
|
|
193
191
|
/**
|
|
194
192
|
* Returns the build type of the React renderer.
|
|
195
193
|
*/
|
|
@@ -259,4 +257,4 @@ declare const secure: (options: InstrumentationOptions, secureOptions?: {
|
|
|
259
257
|
*/
|
|
260
258
|
declare const onCommitFiberRoot: (handler: (root: FiberRoot) => void) => void;
|
|
261
259
|
|
|
262
|
-
export {
|
|
260
|
+
export { traverseRenderedFibers as $, traverseFiber as A, getTimings as B, ClassComponentTag as C, DehydratedSuspenseComponentTag as D, ELEMENT_TYPE_SYMBOL_STRING as E, FunctionComponentTag as F, hasMemoCache as G, HostRootTag as H, getType as I, getDisplayName as J, detectReactBuildType as K, LegacyHiddenComponentTag as L, MemoComponentTag as M, isInstrumentationActive as N, OffscreenComponentTag as O, type RenderPhase as P, type RenderHandler as Q, type ReactDevToolsGlobalHook as R, SuspenseComponentTag as S, TRANSITIONAL_ELEMENT_TYPE_SYMBOL_STRING as T, fiberIdMap as U, setFiberId as V, getFiberId as W, mountFiberRecursively as X, updateFiberRecursively as Y, unmountFiber as Z, unmountFiberChildrenRecursively as _, HostComponentTag as a, createFiberVisitor as a0, type InstrumentationOptions as a1, instrument as a2, getFiberFromHostInstance as a3, secure as a4, onCommitFiberRoot as a5, type Fiber as a6, type ReactRenderer as a7, type ContextDependency as a8, type Dependencies as a9, type Effect as aa, type MemoizedState as ab, type Props as ac, HostTextTag as b, FragmentTag as c, ContextConsumerTag as d, ForwardRefTag as e, SimpleMemoComponentTag as f, HostHoistableTag as g, HostSingletonTag as h, CONCURRENT_MODE_NUMBER as i, CONCURRENT_MODE_SYMBOL_STRING as j, DEPRECATED_ASYNC_MODE_SYMBOL_STRING as k, isValidElement as l, isValidFiber as m, isHostFiber as n, isCompositeFiber as o, traverseState as p, traverseEffects as q, traverseProps as r, didFiberRender as s, traverseContexts as t, didFiberCommit as u, getMutatedHostFibers as v, getFiberStack as w, shouldFilterFiber as x, getNearestHostFiber as y, getNearestHostFibers as z };
|
package/dist/core.cjs
CHANGED
|
@@ -1,238 +1,230 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkA425RZH5_cjs = require('./chunk-A425RZH5.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
Object.defineProperty(exports, "CONCURRENT_MODE_NUMBER", {
|
|
8
8
|
enumerable: true,
|
|
9
|
-
get: function () { return
|
|
9
|
+
get: function () { return chunkA425RZH5_cjs.CONCURRENT_MODE_NUMBER; }
|
|
10
10
|
});
|
|
11
11
|
Object.defineProperty(exports, "CONCURRENT_MODE_SYMBOL_STRING", {
|
|
12
12
|
enumerable: true,
|
|
13
|
-
get: function () { return
|
|
13
|
+
get: function () { return chunkA425RZH5_cjs.CONCURRENT_MODE_SYMBOL_STRING; }
|
|
14
14
|
});
|
|
15
15
|
Object.defineProperty(exports, "ClassComponentTag", {
|
|
16
16
|
enumerable: true,
|
|
17
|
-
get: function () { return
|
|
17
|
+
get: function () { return chunkA425RZH5_cjs.ClassComponentTag; }
|
|
18
18
|
});
|
|
19
19
|
Object.defineProperty(exports, "ContextConsumerTag", {
|
|
20
20
|
enumerable: true,
|
|
21
|
-
get: function () { return
|
|
21
|
+
get: function () { return chunkA425RZH5_cjs.ContextConsumerTag; }
|
|
22
22
|
});
|
|
23
23
|
Object.defineProperty(exports, "DEPRECATED_ASYNC_MODE_SYMBOL_STRING", {
|
|
24
24
|
enumerable: true,
|
|
25
|
-
get: function () { return
|
|
25
|
+
get: function () { return chunkA425RZH5_cjs.DEPRECATED_ASYNC_MODE_SYMBOL_STRING; }
|
|
26
26
|
});
|
|
27
27
|
Object.defineProperty(exports, "DehydratedSuspenseComponentTag", {
|
|
28
28
|
enumerable: true,
|
|
29
|
-
get: function () { return
|
|
29
|
+
get: function () { return chunkA425RZH5_cjs.DehydratedSuspenseComponentTag; }
|
|
30
30
|
});
|
|
31
31
|
Object.defineProperty(exports, "ELEMENT_TYPE_SYMBOL_STRING", {
|
|
32
32
|
enumerable: true,
|
|
33
|
-
get: function () { return
|
|
33
|
+
get: function () { return chunkA425RZH5_cjs.ELEMENT_TYPE_SYMBOL_STRING; }
|
|
34
34
|
});
|
|
35
35
|
Object.defineProperty(exports, "ForwardRefTag", {
|
|
36
36
|
enumerable: true,
|
|
37
|
-
get: function () { return
|
|
37
|
+
get: function () { return chunkA425RZH5_cjs.ForwardRefTag; }
|
|
38
38
|
});
|
|
39
39
|
Object.defineProperty(exports, "FragmentTag", {
|
|
40
40
|
enumerable: true,
|
|
41
|
-
get: function () { return
|
|
41
|
+
get: function () { return chunkA425RZH5_cjs.FragmentTag; }
|
|
42
42
|
});
|
|
43
43
|
Object.defineProperty(exports, "FunctionComponentTag", {
|
|
44
44
|
enumerable: true,
|
|
45
|
-
get: function () { return
|
|
45
|
+
get: function () { return chunkA425RZH5_cjs.FunctionComponentTag; }
|
|
46
46
|
});
|
|
47
47
|
Object.defineProperty(exports, "HostComponentTag", {
|
|
48
48
|
enumerable: true,
|
|
49
|
-
get: function () { return
|
|
49
|
+
get: function () { return chunkA425RZH5_cjs.HostComponentTag; }
|
|
50
50
|
});
|
|
51
51
|
Object.defineProperty(exports, "HostHoistableTag", {
|
|
52
52
|
enumerable: true,
|
|
53
|
-
get: function () { return
|
|
53
|
+
get: function () { return chunkA425RZH5_cjs.HostHoistableTag; }
|
|
54
54
|
});
|
|
55
55
|
Object.defineProperty(exports, "HostRootTag", {
|
|
56
56
|
enumerable: true,
|
|
57
|
-
get: function () { return
|
|
57
|
+
get: function () { return chunkA425RZH5_cjs.HostRootTag; }
|
|
58
58
|
});
|
|
59
59
|
Object.defineProperty(exports, "HostSingletonTag", {
|
|
60
60
|
enumerable: true,
|
|
61
|
-
get: function () { return
|
|
61
|
+
get: function () { return chunkA425RZH5_cjs.HostSingletonTag; }
|
|
62
62
|
});
|
|
63
63
|
Object.defineProperty(exports, "HostTextTag", {
|
|
64
64
|
enumerable: true,
|
|
65
|
-
get: function () { return
|
|
65
|
+
get: function () { return chunkA425RZH5_cjs.HostTextTag; }
|
|
66
66
|
});
|
|
67
67
|
Object.defineProperty(exports, "LegacyHiddenComponentTag", {
|
|
68
68
|
enumerable: true,
|
|
69
|
-
get: function () { return
|
|
69
|
+
get: function () { return chunkA425RZH5_cjs.LegacyHiddenComponentTag; }
|
|
70
70
|
});
|
|
71
71
|
Object.defineProperty(exports, "MemoComponentTag", {
|
|
72
72
|
enumerable: true,
|
|
73
|
-
get: function () { return
|
|
73
|
+
get: function () { return chunkA425RZH5_cjs.MemoComponentTag; }
|
|
74
74
|
});
|
|
75
75
|
Object.defineProperty(exports, "OffscreenComponentTag", {
|
|
76
76
|
enumerable: true,
|
|
77
|
-
get: function () { return
|
|
77
|
+
get: function () { return chunkA425RZH5_cjs.OffscreenComponentTag; }
|
|
78
78
|
});
|
|
79
79
|
Object.defineProperty(exports, "SimpleMemoComponentTag", {
|
|
80
80
|
enumerable: true,
|
|
81
|
-
get: function () { return
|
|
81
|
+
get: function () { return chunkA425RZH5_cjs.SimpleMemoComponentTag; }
|
|
82
82
|
});
|
|
83
83
|
Object.defineProperty(exports, "SuspenseComponentTag", {
|
|
84
84
|
enumerable: true,
|
|
85
|
-
get: function () { return
|
|
85
|
+
get: function () { return chunkA425RZH5_cjs.SuspenseComponentTag; }
|
|
86
86
|
});
|
|
87
87
|
Object.defineProperty(exports, "TRANSITIONAL_ELEMENT_TYPE_SYMBOL_STRING", {
|
|
88
88
|
enumerable: true,
|
|
89
|
-
get: function () { return
|
|
89
|
+
get: function () { return chunkA425RZH5_cjs.TRANSITIONAL_ELEMENT_TYPE_SYMBOL_STRING; }
|
|
90
90
|
});
|
|
91
91
|
Object.defineProperty(exports, "createFiberVisitor", {
|
|
92
92
|
enumerable: true,
|
|
93
|
-
get: function () { return
|
|
93
|
+
get: function () { return chunkA425RZH5_cjs.createFiberVisitor; }
|
|
94
94
|
});
|
|
95
95
|
Object.defineProperty(exports, "detectReactBuildType", {
|
|
96
96
|
enumerable: true,
|
|
97
|
-
get: function () { return
|
|
97
|
+
get: function () { return chunkA425RZH5_cjs.detectReactBuildType; }
|
|
98
98
|
});
|
|
99
99
|
Object.defineProperty(exports, "didFiberCommit", {
|
|
100
100
|
enumerable: true,
|
|
101
|
-
get: function () { return
|
|
101
|
+
get: function () { return chunkA425RZH5_cjs.didFiberCommit; }
|
|
102
102
|
});
|
|
103
103
|
Object.defineProperty(exports, "didFiberRender", {
|
|
104
104
|
enumerable: true,
|
|
105
|
-
get: function () { return
|
|
105
|
+
get: function () { return chunkA425RZH5_cjs.didFiberRender; }
|
|
106
106
|
});
|
|
107
107
|
Object.defineProperty(exports, "fiberIdMap", {
|
|
108
108
|
enumerable: true,
|
|
109
|
-
get: function () { return
|
|
109
|
+
get: function () { return chunkA425RZH5_cjs.fiberIdMap; }
|
|
110
110
|
});
|
|
111
111
|
Object.defineProperty(exports, "getDisplayName", {
|
|
112
112
|
enumerable: true,
|
|
113
|
-
get: function () { return
|
|
113
|
+
get: function () { return chunkA425RZH5_cjs.getDisplayName; }
|
|
114
114
|
});
|
|
115
115
|
Object.defineProperty(exports, "getFiberFromHostInstance", {
|
|
116
116
|
enumerable: true,
|
|
117
|
-
get: function () { return
|
|
117
|
+
get: function () { return chunkA425RZH5_cjs.getFiberFromHostInstance; }
|
|
118
118
|
});
|
|
119
119
|
Object.defineProperty(exports, "getFiberId", {
|
|
120
120
|
enumerable: true,
|
|
121
|
-
get: function () { return
|
|
121
|
+
get: function () { return chunkA425RZH5_cjs.getFiberId; }
|
|
122
122
|
});
|
|
123
123
|
Object.defineProperty(exports, "getFiberStack", {
|
|
124
124
|
enumerable: true,
|
|
125
|
-
get: function () { return
|
|
125
|
+
get: function () { return chunkA425RZH5_cjs.getFiberStack; }
|
|
126
126
|
});
|
|
127
127
|
Object.defineProperty(exports, "getMutatedHostFibers", {
|
|
128
128
|
enumerable: true,
|
|
129
|
-
get: function () { return
|
|
129
|
+
get: function () { return chunkA425RZH5_cjs.getMutatedHostFibers; }
|
|
130
130
|
});
|
|
131
131
|
Object.defineProperty(exports, "getNearestHostFiber", {
|
|
132
132
|
enumerable: true,
|
|
133
|
-
get: function () { return
|
|
133
|
+
get: function () { return chunkA425RZH5_cjs.getNearestHostFiber; }
|
|
134
134
|
});
|
|
135
135
|
Object.defineProperty(exports, "getNearestHostFibers", {
|
|
136
136
|
enumerable: true,
|
|
137
|
-
get: function () { return
|
|
137
|
+
get: function () { return chunkA425RZH5_cjs.getNearestHostFibers; }
|
|
138
138
|
});
|
|
139
139
|
Object.defineProperty(exports, "getTimings", {
|
|
140
140
|
enumerable: true,
|
|
141
|
-
get: function () { return
|
|
141
|
+
get: function () { return chunkA425RZH5_cjs.getTimings; }
|
|
142
142
|
});
|
|
143
143
|
Object.defineProperty(exports, "getType", {
|
|
144
144
|
enumerable: true,
|
|
145
|
-
get: function () { return
|
|
145
|
+
get: function () { return chunkA425RZH5_cjs.getType; }
|
|
146
146
|
});
|
|
147
147
|
Object.defineProperty(exports, "hasMemoCache", {
|
|
148
148
|
enumerable: true,
|
|
149
|
-
get: function () { return
|
|
149
|
+
get: function () { return chunkA425RZH5_cjs.hasMemoCache; }
|
|
150
150
|
});
|
|
151
151
|
Object.defineProperty(exports, "instrument", {
|
|
152
152
|
enumerable: true,
|
|
153
|
-
get: function () { return
|
|
153
|
+
get: function () { return chunkA425RZH5_cjs.instrument; }
|
|
154
154
|
});
|
|
155
155
|
Object.defineProperty(exports, "isCompositeFiber", {
|
|
156
156
|
enumerable: true,
|
|
157
|
-
get: function () { return
|
|
157
|
+
get: function () { return chunkA425RZH5_cjs.isCompositeFiber; }
|
|
158
158
|
});
|
|
159
159
|
Object.defineProperty(exports, "isHostFiber", {
|
|
160
160
|
enumerable: true,
|
|
161
|
-
get: function () { return
|
|
161
|
+
get: function () { return chunkA425RZH5_cjs.isHostFiber; }
|
|
162
162
|
});
|
|
163
163
|
Object.defineProperty(exports, "isInstrumentationActive", {
|
|
164
164
|
enumerable: true,
|
|
165
|
-
get: function () { return
|
|
166
|
-
});
|
|
167
|
-
Object.defineProperty(exports, "isReactRefresh", {
|
|
168
|
-
enumerable: true,
|
|
169
|
-
get: function () { return chunkCQFIS43Y_cjs.isReactRefresh; }
|
|
170
|
-
});
|
|
171
|
-
Object.defineProperty(exports, "isRealReactDevtools", {
|
|
172
|
-
enumerable: true,
|
|
173
|
-
get: function () { return chunkCQFIS43Y_cjs.isRealReactDevtools; }
|
|
165
|
+
get: function () { return chunkA425RZH5_cjs.isInstrumentationActive; }
|
|
174
166
|
});
|
|
175
167
|
Object.defineProperty(exports, "isValidElement", {
|
|
176
168
|
enumerable: true,
|
|
177
|
-
get: function () { return
|
|
169
|
+
get: function () { return chunkA425RZH5_cjs.isValidElement; }
|
|
178
170
|
});
|
|
179
171
|
Object.defineProperty(exports, "isValidFiber", {
|
|
180
172
|
enumerable: true,
|
|
181
|
-
get: function () { return
|
|
173
|
+
get: function () { return chunkA425RZH5_cjs.isValidFiber; }
|
|
182
174
|
});
|
|
183
175
|
Object.defineProperty(exports, "mountFiberRecursively", {
|
|
184
176
|
enumerable: true,
|
|
185
|
-
get: function () { return
|
|
177
|
+
get: function () { return chunkA425RZH5_cjs.mountFiberRecursively; }
|
|
186
178
|
});
|
|
187
179
|
Object.defineProperty(exports, "onCommitFiberRoot", {
|
|
188
180
|
enumerable: true,
|
|
189
|
-
get: function () { return
|
|
181
|
+
get: function () { return chunkA425RZH5_cjs.onCommitFiberRoot; }
|
|
190
182
|
});
|
|
191
183
|
Object.defineProperty(exports, "secure", {
|
|
192
184
|
enumerable: true,
|
|
193
|
-
get: function () { return
|
|
185
|
+
get: function () { return chunkA425RZH5_cjs.secure; }
|
|
194
186
|
});
|
|
195
187
|
Object.defineProperty(exports, "setFiberId", {
|
|
196
188
|
enumerable: true,
|
|
197
|
-
get: function () { return
|
|
189
|
+
get: function () { return chunkA425RZH5_cjs.setFiberId; }
|
|
198
190
|
});
|
|
199
191
|
Object.defineProperty(exports, "shouldFilterFiber", {
|
|
200
192
|
enumerable: true,
|
|
201
|
-
get: function () { return
|
|
193
|
+
get: function () { return chunkA425RZH5_cjs.shouldFilterFiber; }
|
|
202
194
|
});
|
|
203
195
|
Object.defineProperty(exports, "traverseContexts", {
|
|
204
196
|
enumerable: true,
|
|
205
|
-
get: function () { return
|
|
197
|
+
get: function () { return chunkA425RZH5_cjs.traverseContexts; }
|
|
206
198
|
});
|
|
207
199
|
Object.defineProperty(exports, "traverseEffects", {
|
|
208
200
|
enumerable: true,
|
|
209
|
-
get: function () { return
|
|
201
|
+
get: function () { return chunkA425RZH5_cjs.traverseEffects; }
|
|
210
202
|
});
|
|
211
203
|
Object.defineProperty(exports, "traverseFiber", {
|
|
212
204
|
enumerable: true,
|
|
213
|
-
get: function () { return
|
|
205
|
+
get: function () { return chunkA425RZH5_cjs.traverseFiber; }
|
|
214
206
|
});
|
|
215
207
|
Object.defineProperty(exports, "traverseProps", {
|
|
216
208
|
enumerable: true,
|
|
217
|
-
get: function () { return
|
|
209
|
+
get: function () { return chunkA425RZH5_cjs.traverseProps; }
|
|
218
210
|
});
|
|
219
211
|
Object.defineProperty(exports, "traverseRenderedFibers", {
|
|
220
212
|
enumerable: true,
|
|
221
|
-
get: function () { return
|
|
213
|
+
get: function () { return chunkA425RZH5_cjs.traverseRenderedFibers; }
|
|
222
214
|
});
|
|
223
215
|
Object.defineProperty(exports, "traverseState", {
|
|
224
216
|
enumerable: true,
|
|
225
|
-
get: function () { return
|
|
217
|
+
get: function () { return chunkA425RZH5_cjs.traverseState; }
|
|
226
218
|
});
|
|
227
219
|
Object.defineProperty(exports, "unmountFiber", {
|
|
228
220
|
enumerable: true,
|
|
229
|
-
get: function () { return
|
|
221
|
+
get: function () { return chunkA425RZH5_cjs.unmountFiber; }
|
|
230
222
|
});
|
|
231
223
|
Object.defineProperty(exports, "unmountFiberChildrenRecursively", {
|
|
232
224
|
enumerable: true,
|
|
233
|
-
get: function () { return
|
|
225
|
+
get: function () { return chunkA425RZH5_cjs.unmountFiberChildrenRecursively; }
|
|
234
226
|
});
|
|
235
227
|
Object.defineProperty(exports, "updateFiberRecursively", {
|
|
236
228
|
enumerable: true,
|
|
237
|
-
get: function () { return
|
|
229
|
+
get: function () { return chunkA425RZH5_cjs.updateFiberRecursively; }
|
|
238
230
|
});
|
package/dist/core.d.cts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { i as CONCURRENT_MODE_NUMBER, j as CONCURRENT_MODE_SYMBOL_STRING, C as ClassComponentTag, d as ContextConsumerTag, k as DEPRECATED_ASYNC_MODE_SYMBOL_STRING, D as DehydratedSuspenseComponentTag, E as ELEMENT_TYPE_SYMBOL_STRING, e as ForwardRefTag, c as FragmentTag, F as FunctionComponentTag, a as HostComponentTag, g as HostHoistableTag, H as HostRootTag, h as HostSingletonTag, b as HostTextTag,
|
|
1
|
+
export { i as CONCURRENT_MODE_NUMBER, j as CONCURRENT_MODE_SYMBOL_STRING, C as ClassComponentTag, d as ContextConsumerTag, k as DEPRECATED_ASYNC_MODE_SYMBOL_STRING, D as DehydratedSuspenseComponentTag, E as ELEMENT_TYPE_SYMBOL_STRING, e as ForwardRefTag, c as FragmentTag, F as FunctionComponentTag, a as HostComponentTag, g as HostHoistableTag, H as HostRootTag, h as HostSingletonTag, b as HostTextTag, a1 as InstrumentationOptions, L as LegacyHiddenComponentTag, M as MemoComponentTag, O as OffscreenComponentTag, Q as RenderHandler, P as RenderPhase, f as SimpleMemoComponentTag, S as SuspenseComponentTag, T as TRANSITIONAL_ELEMENT_TYPE_SYMBOL_STRING, a0 as createFiberVisitor, K as detectReactBuildType, u as didFiberCommit, s as didFiberRender, U as fiberIdMap, J as getDisplayName, a3 as getFiberFromHostInstance, W as getFiberId, w as getFiberStack, v as getMutatedHostFibers, y as getNearestHostFiber, z as getNearestHostFibers, B as getTimings, I as getType, G as hasMemoCache, a2 as instrument, o as isCompositeFiber, n as isHostFiber, N as isInstrumentationActive, l as isValidElement, m as isValidFiber, X as mountFiberRecursively, a5 as onCommitFiberRoot, a4 as secure, V as setFiberId, x as shouldFilterFiber, t as traverseContexts, q as traverseEffects, A as traverseFiber, r as traverseProps, $ as traverseRenderedFibers, p as traverseState, Z as unmountFiber, _ as unmountFiberChildrenRecursively, Y as updateFiberRecursively } from './core-VaoADixi.cjs';
|
|
2
2
|
import 'react';
|
|
3
3
|
import 'react-reconciler';
|
package/dist/core.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { i as CONCURRENT_MODE_NUMBER, j as CONCURRENT_MODE_SYMBOL_STRING, C as ClassComponentTag, d as ContextConsumerTag, k as DEPRECATED_ASYNC_MODE_SYMBOL_STRING, D as DehydratedSuspenseComponentTag, E as ELEMENT_TYPE_SYMBOL_STRING, e as ForwardRefTag, c as FragmentTag, F as FunctionComponentTag, a as HostComponentTag, g as HostHoistableTag, H as HostRootTag, h as HostSingletonTag, b as HostTextTag,
|
|
1
|
+
export { i as CONCURRENT_MODE_NUMBER, j as CONCURRENT_MODE_SYMBOL_STRING, C as ClassComponentTag, d as ContextConsumerTag, k as DEPRECATED_ASYNC_MODE_SYMBOL_STRING, D as DehydratedSuspenseComponentTag, E as ELEMENT_TYPE_SYMBOL_STRING, e as ForwardRefTag, c as FragmentTag, F as FunctionComponentTag, a as HostComponentTag, g as HostHoistableTag, H as HostRootTag, h as HostSingletonTag, b as HostTextTag, a1 as InstrumentationOptions, L as LegacyHiddenComponentTag, M as MemoComponentTag, O as OffscreenComponentTag, Q as RenderHandler, P as RenderPhase, f as SimpleMemoComponentTag, S as SuspenseComponentTag, T as TRANSITIONAL_ELEMENT_TYPE_SYMBOL_STRING, a0 as createFiberVisitor, K as detectReactBuildType, u as didFiberCommit, s as didFiberRender, U as fiberIdMap, J as getDisplayName, a3 as getFiberFromHostInstance, W as getFiberId, w as getFiberStack, v as getMutatedHostFibers, y as getNearestHostFiber, z as getNearestHostFibers, B as getTimings, I as getType, G as hasMemoCache, a2 as instrument, o as isCompositeFiber, n as isHostFiber, N as isInstrumentationActive, l as isValidElement, m as isValidFiber, X as mountFiberRecursively, a5 as onCommitFiberRoot, a4 as secure, V as setFiberId, x as shouldFilterFiber, t as traverseContexts, q as traverseEffects, A as traverseFiber, r as traverseProps, $ as traverseRenderedFibers, p as traverseState, Z as unmountFiber, _ as unmountFiberChildrenRecursively, Y as updateFiberRecursively } from './core-VaoADixi.js';
|
|
2
2
|
import 'react';
|
|
3
3
|
import 'react-reconciler';
|
package/dist/core.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { CONCURRENT_MODE_NUMBER, CONCURRENT_MODE_SYMBOL_STRING, ClassComponentTag, ContextConsumerTag, DEPRECATED_ASYNC_MODE_SYMBOL_STRING, DehydratedSuspenseComponentTag, ELEMENT_TYPE_SYMBOL_STRING, ForwardRefTag, FragmentTag, FunctionComponentTag, HostComponentTag, HostHoistableTag, HostRootTag, HostSingletonTag, HostTextTag, LegacyHiddenComponentTag, MemoComponentTag, OffscreenComponentTag, SimpleMemoComponentTag, SuspenseComponentTag, TRANSITIONAL_ELEMENT_TYPE_SYMBOL_STRING, createFiberVisitor, detectReactBuildType, didFiberCommit, didFiberRender, fiberIdMap, getDisplayName, getFiberFromHostInstance, getFiberId, getFiberStack, getMutatedHostFibers, getNearestHostFiber, getNearestHostFibers, getTimings, getType, hasMemoCache, instrument, isCompositeFiber, isHostFiber, isInstrumentationActive,
|
|
1
|
+
export { CONCURRENT_MODE_NUMBER, CONCURRENT_MODE_SYMBOL_STRING, ClassComponentTag, ContextConsumerTag, DEPRECATED_ASYNC_MODE_SYMBOL_STRING, DehydratedSuspenseComponentTag, ELEMENT_TYPE_SYMBOL_STRING, ForwardRefTag, FragmentTag, FunctionComponentTag, HostComponentTag, HostHoistableTag, HostRootTag, HostSingletonTag, HostTextTag, LegacyHiddenComponentTag, MemoComponentTag, OffscreenComponentTag, SimpleMemoComponentTag, SuspenseComponentTag, TRANSITIONAL_ELEMENT_TYPE_SYMBOL_STRING, createFiberVisitor, detectReactBuildType, didFiberCommit, didFiberRender, fiberIdMap, getDisplayName, getFiberFromHostInstance, getFiberId, getFiberStack, getMutatedHostFibers, getNearestHostFiber, getNearestHostFibers, getTimings, getType, hasMemoCache, instrument, isCompositeFiber, isHostFiber, isInstrumentationActive, isValidElement, isValidFiber, mountFiberRecursively, onCommitFiberRoot, secure, setFiberId, shouldFilterFiber, traverseContexts, traverseEffects, traverseFiber, traverseProps, traverseRenderedFibers, traverseState, unmountFiber, unmountFiberChildrenRecursively, updateFiberRecursively } from './chunk-DCVQB6TW.js';
|