bippy 0.3.4 → 0.3.5
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-XG3B2MUK.js → chunk-3M46K64M.js} +1 -1
- package/dist/{chunk-IXOVE6NU.js → chunk-5Q3THSIO.js} +1 -1
- package/dist/{chunk-HBEFN4VG.cjs → chunk-A2JSZNGM.cjs} +3 -70
- package/dist/{chunk-5UPESIXB.cjs → chunk-HXSEOREQ.cjs} +9 -9
- package/dist/{chunk-ZGXPNYXM.cjs → chunk-LOYGCREQ.cjs} +2 -2
- package/dist/{chunk-W6TIDV6X.js → chunk-ZJP75F65.js} +4 -70
- package/dist/core.cjs +70 -74
- package/dist/core.d.cts +1 -8
- package/dist/core.d.ts +1 -8
- package/dist/core.js +1 -1
- package/dist/experiments/inspect.cjs +10 -10
- package/dist/experiments/inspect.js +3 -3
- package/dist/index.cjs +71 -75
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.global.js +1 -1
- package/dist/index.js +2 -2
- package/dist/jsx-runtime.cjs +2 -2
- package/dist/jsx-runtime.js +2 -2
- package/dist/source.cjs +73 -77
- package/dist/source.d.cts +1 -1
- package/dist/source.d.ts +1 -1
- package/dist/source.global.js +2 -2
- package/dist/source.js +3 -3
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { getRDTHook, isHostFiber, getType, traverseFiber, isCompositeFiber, ClassComponentTag, getDisplayName } from './chunk-
|
|
1
|
+
import { getRDTHook, isHostFiber, getType, traverseFiber, isCompositeFiber, ClassComponentTag, getDisplayName } from './chunk-ZJP75F65.js';
|
|
2
2
|
import { __commonJS, __toESM } from './chunk-EPG3GO3H.js';
|
|
3
3
|
import React from 'react';
|
|
4
4
|
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
12
|
// src/rdt-hook.ts
|
|
13
|
-
var version = "0.3.
|
|
13
|
+
var version = "0.3.5";
|
|
14
14
|
var BIPPY_INSTRUMENTATION_STRING = `bippy-${version}`;
|
|
15
15
|
var objectDefineProperty = Object.defineProperty;
|
|
16
16
|
var objectHasOwnProperty = Object.prototype.hasOwnProperty;
|
|
@@ -45,7 +45,7 @@ var onActiveListeners = /* @__PURE__ */ new Set();
|
|
|
45
45
|
var installRDTHook = (onActive) => {
|
|
46
46
|
const renderers = /* @__PURE__ */ new Map();
|
|
47
47
|
let i = 0;
|
|
48
|
-
|
|
48
|
+
let rdtHook = {
|
|
49
49
|
checkDCE,
|
|
50
50
|
supportsFiber: true,
|
|
51
51
|
supportsFlight: true,
|
|
@@ -74,7 +74,7 @@ var installRDTHook = (onActive) => {
|
|
|
74
74
|
set(newHook) {
|
|
75
75
|
if (newHook && typeof newHook === "object") {
|
|
76
76
|
const ourRenderers = rdtHook.renderers;
|
|
77
|
-
|
|
77
|
+
rdtHook = newHook;
|
|
78
78
|
if (ourRenderers.size > 0) {
|
|
79
79
|
ourRenderers.forEach((renderer, id) => {
|
|
80
80
|
newHook.renderers.set(id, renderer);
|
|
@@ -470,72 +470,6 @@ var getLatestFiber = (fiber) => {
|
|
|
470
470
|
}
|
|
471
471
|
return fiber;
|
|
472
472
|
};
|
|
473
|
-
var diffFiber = (thisFiber, otherFiber) => {
|
|
474
|
-
const path = [];
|
|
475
|
-
const diffs = [];
|
|
476
|
-
const traverse = (current, other, currentPath) => {
|
|
477
|
-
if (current.type !== other.type) {
|
|
478
|
-
diffs.push({
|
|
479
|
-
path: [...currentPath],
|
|
480
|
-
type: "type",
|
|
481
|
-
thisFiber: current,
|
|
482
|
-
otherFiber: other
|
|
483
|
-
});
|
|
484
|
-
}
|
|
485
|
-
if (current.ref !== other.ref) {
|
|
486
|
-
diffs.push({
|
|
487
|
-
path: [...currentPath],
|
|
488
|
-
type: "ref",
|
|
489
|
-
thisFiber: current,
|
|
490
|
-
otherFiber: other
|
|
491
|
-
});
|
|
492
|
-
}
|
|
493
|
-
const currentProps = current.memoizedProps || {};
|
|
494
|
-
const otherProps = other.memoizedProps || {};
|
|
495
|
-
const allProps = /* @__PURE__ */ new Set([...Object.keys(currentProps), ...Object.keys(otherProps)]);
|
|
496
|
-
for (const prop of allProps) {
|
|
497
|
-
if (currentProps[prop] !== otherProps[prop]) {
|
|
498
|
-
diffs.push({
|
|
499
|
-
path: [...currentPath],
|
|
500
|
-
type: "props",
|
|
501
|
-
thisFiber: current,
|
|
502
|
-
otherFiber: other
|
|
503
|
-
});
|
|
504
|
-
break;
|
|
505
|
-
}
|
|
506
|
-
}
|
|
507
|
-
if (current.memoizedState !== other.memoizedState) {
|
|
508
|
-
diffs.push({
|
|
509
|
-
path: [...currentPath],
|
|
510
|
-
type: "state",
|
|
511
|
-
thisFiber: current,
|
|
512
|
-
otherFiber: other
|
|
513
|
-
});
|
|
514
|
-
}
|
|
515
|
-
if (current.child && other.child) {
|
|
516
|
-
traverse(current.child, other.child, [...currentPath, "child"]);
|
|
517
|
-
} else if (current.child || other.child) {
|
|
518
|
-
diffs.push({
|
|
519
|
-
path: [...currentPath],
|
|
520
|
-
type: "children",
|
|
521
|
-
thisFiber: current,
|
|
522
|
-
otherFiber: other
|
|
523
|
-
});
|
|
524
|
-
}
|
|
525
|
-
if (current.sibling && other.sibling) {
|
|
526
|
-
traverse(current.sibling, other.sibling, [...currentPath, "sibling"]);
|
|
527
|
-
} else if (current.sibling || other.sibling) {
|
|
528
|
-
diffs.push({
|
|
529
|
-
path: [...currentPath],
|
|
530
|
-
type: "children",
|
|
531
|
-
thisFiber: current,
|
|
532
|
-
otherFiber: other
|
|
533
|
-
});
|
|
534
|
-
}
|
|
535
|
-
};
|
|
536
|
-
traverse(thisFiber, otherFiber, path);
|
|
537
|
-
return diffs;
|
|
538
|
-
};
|
|
539
473
|
var fiberId = 0;
|
|
540
474
|
var fiberIdMap = /* @__PURE__ */ new WeakMap();
|
|
541
475
|
var setFiberId = (fiber, id = fiberId++) => {
|
|
@@ -874,7 +808,6 @@ exports.createFiberVisitor = createFiberVisitor;
|
|
|
874
808
|
exports.detectReactBuildType = detectReactBuildType;
|
|
875
809
|
exports.didFiberCommit = didFiberCommit;
|
|
876
810
|
exports.didFiberRender = didFiberRender;
|
|
877
|
-
exports.diffFiber = diffFiber;
|
|
878
811
|
exports.fiberIdMap = fiberIdMap;
|
|
879
812
|
exports.getDisplayName = getDisplayName;
|
|
880
813
|
exports.getFiberFromHostInstance = getFiberFromHostInstance;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkA2JSZNGM_cjs = require('./chunk-A2JSZNGM.cjs');
|
|
4
4
|
var chunkAQ674A4M_cjs = require('./chunk-AQ674A4M.cjs');
|
|
5
5
|
var React = require('react');
|
|
6
6
|
|
|
@@ -2172,7 +2172,7 @@ var describeNativeComponentFrame = (fn, construct, currentDispatcherRef) => {
|
|
|
2172
2172
|
if (c < 0 || sampleLines[s] !== controlLines[c]) {
|
|
2173
2173
|
let frame = `
|
|
2174
2174
|
${sampleLines[s].replace(" at new ", " at ")}`;
|
|
2175
|
-
const displayName =
|
|
2175
|
+
const displayName = chunkA2JSZNGM_cjs.getDisplayName(fn);
|
|
2176
2176
|
if (displayName && frame.includes("<anonymous>")) {
|
|
2177
2177
|
frame = frame.replace("<anonymous>", displayName);
|
|
2178
2178
|
}
|
|
@@ -2190,7 +2190,7 @@ ${sampleLines[s].replace(" at new ", " at ")}`;
|
|
|
2190
2190
|
currentDispatcherRef.current = previousDispatcher;
|
|
2191
2191
|
reenableLogs(prevLogs);
|
|
2192
2192
|
}
|
|
2193
|
-
const name = fn ?
|
|
2193
|
+
const name = fn ? chunkA2JSZNGM_cjs.getDisplayName(fn) : "";
|
|
2194
2194
|
const syntheticFrame = name ? describeBuiltInComponentFrame(name) : "";
|
|
2195
2195
|
return syntheticFrame;
|
|
2196
2196
|
};
|
|
@@ -2212,7 +2212,7 @@ var getFiberSource = async (fiber) => {
|
|
|
2212
2212
|
if (fiber.memoizedProps?.__source) {
|
|
2213
2213
|
return fiber.memoizedProps.__source;
|
|
2214
2214
|
}
|
|
2215
|
-
const rdtHook =
|
|
2215
|
+
const rdtHook = chunkA2JSZNGM_cjs.getRDTHook();
|
|
2216
2216
|
let currentDispatcherRef = ReactSharedInternals?.ReactCurrentDispatcher || ReactSharedInternals?.H;
|
|
2217
2217
|
for (const renderer of rdtHook.renderers.values()) {
|
|
2218
2218
|
currentDispatcherRef = renderer.currentDispatcherRef;
|
|
@@ -2223,21 +2223,21 @@ var getFiberSource = async (fiber) => {
|
|
|
2223
2223
|
if (!currentDispatcherRef) {
|
|
2224
2224
|
return null;
|
|
2225
2225
|
}
|
|
2226
|
-
const componentFunction =
|
|
2227
|
-
|
|
2226
|
+
const componentFunction = chunkA2JSZNGM_cjs.isHostFiber(fiber) ? chunkA2JSZNGM_cjs.getType(
|
|
2227
|
+
chunkA2JSZNGM_cjs.traverseFiber(
|
|
2228
2228
|
fiber,
|
|
2229
2229
|
(f) => {
|
|
2230
|
-
if (
|
|
2230
|
+
if (chunkA2JSZNGM_cjs.isCompositeFiber(f)) return true;
|
|
2231
2231
|
},
|
|
2232
2232
|
true
|
|
2233
2233
|
)
|
|
2234
|
-
) :
|
|
2234
|
+
) : chunkA2JSZNGM_cjs.getType(fiber.type);
|
|
2235
2235
|
if (!componentFunction || reentry) {
|
|
2236
2236
|
return null;
|
|
2237
2237
|
}
|
|
2238
2238
|
const frame = describeNativeComponentFrame(
|
|
2239
2239
|
componentFunction,
|
|
2240
|
-
fiber.tag ===
|
|
2240
|
+
fiber.tag === chunkA2JSZNGM_cjs.ClassComponentTag,
|
|
2241
2241
|
ReactSharedInternals
|
|
2242
2242
|
);
|
|
2243
2243
|
return parseStackFrame(frame);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkA2JSZNGM_cjs = require('./chunk-A2JSZNGM.cjs');
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* @license bippy
|
|
@@ -12,4 +12,4 @@ var chunkHBEFN4VG_cjs = require('./chunk-HBEFN4VG.cjs');
|
|
|
12
12
|
*/
|
|
13
13
|
|
|
14
14
|
// src/index.ts
|
|
15
|
-
|
|
15
|
+
chunkA2JSZNGM_cjs.safelyInstallRDTHook();
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
// src/rdt-hook.ts
|
|
11
|
-
var version = "0.3.
|
|
11
|
+
var version = "0.3.5";
|
|
12
12
|
var BIPPY_INSTRUMENTATION_STRING = `bippy-${version}`;
|
|
13
13
|
var objectDefineProperty = Object.defineProperty;
|
|
14
14
|
var objectHasOwnProperty = Object.prototype.hasOwnProperty;
|
|
@@ -43,7 +43,7 @@ var onActiveListeners = /* @__PURE__ */ new Set();
|
|
|
43
43
|
var installRDTHook = (onActive) => {
|
|
44
44
|
const renderers = /* @__PURE__ */ new Map();
|
|
45
45
|
let i = 0;
|
|
46
|
-
|
|
46
|
+
let rdtHook = {
|
|
47
47
|
checkDCE,
|
|
48
48
|
supportsFiber: true,
|
|
49
49
|
supportsFlight: true,
|
|
@@ -72,7 +72,7 @@ var installRDTHook = (onActive) => {
|
|
|
72
72
|
set(newHook) {
|
|
73
73
|
if (newHook && typeof newHook === "object") {
|
|
74
74
|
const ourRenderers = rdtHook.renderers;
|
|
75
|
-
|
|
75
|
+
rdtHook = newHook;
|
|
76
76
|
if (ourRenderers.size > 0) {
|
|
77
77
|
ourRenderers.forEach((renderer, id) => {
|
|
78
78
|
newHook.renderers.set(id, renderer);
|
|
@@ -468,72 +468,6 @@ var getLatestFiber = (fiber) => {
|
|
|
468
468
|
}
|
|
469
469
|
return fiber;
|
|
470
470
|
};
|
|
471
|
-
var diffFiber = (thisFiber, otherFiber) => {
|
|
472
|
-
const path = [];
|
|
473
|
-
const diffs = [];
|
|
474
|
-
const traverse = (current, other, currentPath) => {
|
|
475
|
-
if (current.type !== other.type) {
|
|
476
|
-
diffs.push({
|
|
477
|
-
path: [...currentPath],
|
|
478
|
-
type: "type",
|
|
479
|
-
thisFiber: current,
|
|
480
|
-
otherFiber: other
|
|
481
|
-
});
|
|
482
|
-
}
|
|
483
|
-
if (current.ref !== other.ref) {
|
|
484
|
-
diffs.push({
|
|
485
|
-
path: [...currentPath],
|
|
486
|
-
type: "ref",
|
|
487
|
-
thisFiber: current,
|
|
488
|
-
otherFiber: other
|
|
489
|
-
});
|
|
490
|
-
}
|
|
491
|
-
const currentProps = current.memoizedProps || {};
|
|
492
|
-
const otherProps = other.memoizedProps || {};
|
|
493
|
-
const allProps = /* @__PURE__ */ new Set([...Object.keys(currentProps), ...Object.keys(otherProps)]);
|
|
494
|
-
for (const prop of allProps) {
|
|
495
|
-
if (currentProps[prop] !== otherProps[prop]) {
|
|
496
|
-
diffs.push({
|
|
497
|
-
path: [...currentPath],
|
|
498
|
-
type: "props",
|
|
499
|
-
thisFiber: current,
|
|
500
|
-
otherFiber: other
|
|
501
|
-
});
|
|
502
|
-
break;
|
|
503
|
-
}
|
|
504
|
-
}
|
|
505
|
-
if (current.memoizedState !== other.memoizedState) {
|
|
506
|
-
diffs.push({
|
|
507
|
-
path: [...currentPath],
|
|
508
|
-
type: "state",
|
|
509
|
-
thisFiber: current,
|
|
510
|
-
otherFiber: other
|
|
511
|
-
});
|
|
512
|
-
}
|
|
513
|
-
if (current.child && other.child) {
|
|
514
|
-
traverse(current.child, other.child, [...currentPath, "child"]);
|
|
515
|
-
} else if (current.child || other.child) {
|
|
516
|
-
diffs.push({
|
|
517
|
-
path: [...currentPath],
|
|
518
|
-
type: "children",
|
|
519
|
-
thisFiber: current,
|
|
520
|
-
otherFiber: other
|
|
521
|
-
});
|
|
522
|
-
}
|
|
523
|
-
if (current.sibling && other.sibling) {
|
|
524
|
-
traverse(current.sibling, other.sibling, [...currentPath, "sibling"]);
|
|
525
|
-
} else if (current.sibling || other.sibling) {
|
|
526
|
-
diffs.push({
|
|
527
|
-
path: [...currentPath],
|
|
528
|
-
type: "children",
|
|
529
|
-
thisFiber: current,
|
|
530
|
-
otherFiber: other
|
|
531
|
-
});
|
|
532
|
-
}
|
|
533
|
-
};
|
|
534
|
-
traverse(thisFiber, otherFiber, path);
|
|
535
|
-
return diffs;
|
|
536
|
-
};
|
|
537
471
|
var fiberId = 0;
|
|
538
472
|
var fiberIdMap = /* @__PURE__ */ new WeakMap();
|
|
539
473
|
var setFiberId = (fiber, id = fiberId++) => {
|
|
@@ -843,4 +777,4 @@ var onCommitFiberRoot = (handler) => {
|
|
|
843
777
|
);
|
|
844
778
|
};
|
|
845
779
|
|
|
846
|
-
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_ERROR, INSTALL_HOOK_SCRIPT_STRING, LegacyHiddenComponentTag, MemoComponentTag, OffscreenComponentTag, SimpleMemoComponentTag, SuspenseComponentTag, TRANSITIONAL_ELEMENT_TYPE_SYMBOL_STRING, _fiberRoots, createFiberVisitor, detectReactBuildType, didFiberCommit, didFiberRender,
|
|
780
|
+
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_ERROR, INSTALL_HOOK_SCRIPT_STRING, LegacyHiddenComponentTag, MemoComponentTag, OffscreenComponentTag, SimpleMemoComponentTag, SuspenseComponentTag, TRANSITIONAL_ELEMENT_TYPE_SYMBOL_STRING, _fiberRoots, createFiberVisitor, detectReactBuildType, didFiberCommit, didFiberRender, fiberIdMap, getDisplayName, getFiberFromHostInstance, getFiberId, getFiberStack, getLatestFiber, getMutatedHostFibers, getNearestHostFiber, getNearestHostFibers, getRDTHook, getTimings, getType, hasMemoCache, hasRDTHook, installRDTHook, instrument, isClientEnvironment, isCompositeFiber, isHostFiber, isInstrumentationActive, isReactRefresh, isRealReactDevtools, isValidElement, isValidFiber, mountFiberRecursively, onCommitFiberRoot, patchRDTHook, safelyInstallRDTHook, secure, setFiberId, shouldFilterFiber, traverseContexts, traverseFiber, traverseProps, traverseRenderedFibers, traverseState, unmountFiber, unmountFiberChildrenRecursively, updateFiberRecursively, version };
|
package/dist/core.cjs
CHANGED
|
@@ -1,287 +1,283 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkA2JSZNGM_cjs = require('./chunk-A2JSZNGM.cjs');
|
|
4
4
|
require('./chunk-AQ674A4M.cjs');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
Object.defineProperty(exports, "BIPPY_INSTRUMENTATION_STRING", {
|
|
9
9
|
enumerable: true,
|
|
10
|
-
get: function () { return
|
|
10
|
+
get: function () { return chunkA2JSZNGM_cjs.BIPPY_INSTRUMENTATION_STRING; }
|
|
11
11
|
});
|
|
12
12
|
Object.defineProperty(exports, "CONCURRENT_MODE_NUMBER", {
|
|
13
13
|
enumerable: true,
|
|
14
|
-
get: function () { return
|
|
14
|
+
get: function () { return chunkA2JSZNGM_cjs.CONCURRENT_MODE_NUMBER; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "CONCURRENT_MODE_SYMBOL_STRING", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkA2JSZNGM_cjs.CONCURRENT_MODE_SYMBOL_STRING; }
|
|
19
19
|
});
|
|
20
20
|
Object.defineProperty(exports, "ClassComponentTag", {
|
|
21
21
|
enumerable: true,
|
|
22
|
-
get: function () { return
|
|
22
|
+
get: function () { return chunkA2JSZNGM_cjs.ClassComponentTag; }
|
|
23
23
|
});
|
|
24
24
|
Object.defineProperty(exports, "ContextConsumerTag", {
|
|
25
25
|
enumerable: true,
|
|
26
|
-
get: function () { return
|
|
26
|
+
get: function () { return chunkA2JSZNGM_cjs.ContextConsumerTag; }
|
|
27
27
|
});
|
|
28
28
|
Object.defineProperty(exports, "DEPRECATED_ASYNC_MODE_SYMBOL_STRING", {
|
|
29
29
|
enumerable: true,
|
|
30
|
-
get: function () { return
|
|
30
|
+
get: function () { return chunkA2JSZNGM_cjs.DEPRECATED_ASYNC_MODE_SYMBOL_STRING; }
|
|
31
31
|
});
|
|
32
32
|
Object.defineProperty(exports, "DehydratedSuspenseComponentTag", {
|
|
33
33
|
enumerable: true,
|
|
34
|
-
get: function () { return
|
|
34
|
+
get: function () { return chunkA2JSZNGM_cjs.DehydratedSuspenseComponentTag; }
|
|
35
35
|
});
|
|
36
36
|
Object.defineProperty(exports, "ELEMENT_TYPE_SYMBOL_STRING", {
|
|
37
37
|
enumerable: true,
|
|
38
|
-
get: function () { return
|
|
38
|
+
get: function () { return chunkA2JSZNGM_cjs.ELEMENT_TYPE_SYMBOL_STRING; }
|
|
39
39
|
});
|
|
40
40
|
Object.defineProperty(exports, "ForwardRefTag", {
|
|
41
41
|
enumerable: true,
|
|
42
|
-
get: function () { return
|
|
42
|
+
get: function () { return chunkA2JSZNGM_cjs.ForwardRefTag; }
|
|
43
43
|
});
|
|
44
44
|
Object.defineProperty(exports, "FragmentTag", {
|
|
45
45
|
enumerable: true,
|
|
46
|
-
get: function () { return
|
|
46
|
+
get: function () { return chunkA2JSZNGM_cjs.FragmentTag; }
|
|
47
47
|
});
|
|
48
48
|
Object.defineProperty(exports, "FunctionComponentTag", {
|
|
49
49
|
enumerable: true,
|
|
50
|
-
get: function () { return
|
|
50
|
+
get: function () { return chunkA2JSZNGM_cjs.FunctionComponentTag; }
|
|
51
51
|
});
|
|
52
52
|
Object.defineProperty(exports, "HostComponentTag", {
|
|
53
53
|
enumerable: true,
|
|
54
|
-
get: function () { return
|
|
54
|
+
get: function () { return chunkA2JSZNGM_cjs.HostComponentTag; }
|
|
55
55
|
});
|
|
56
56
|
Object.defineProperty(exports, "HostHoistableTag", {
|
|
57
57
|
enumerable: true,
|
|
58
|
-
get: function () { return
|
|
58
|
+
get: function () { return chunkA2JSZNGM_cjs.HostHoistableTag; }
|
|
59
59
|
});
|
|
60
60
|
Object.defineProperty(exports, "HostRootTag", {
|
|
61
61
|
enumerable: true,
|
|
62
|
-
get: function () { return
|
|
62
|
+
get: function () { return chunkA2JSZNGM_cjs.HostRootTag; }
|
|
63
63
|
});
|
|
64
64
|
Object.defineProperty(exports, "HostSingletonTag", {
|
|
65
65
|
enumerable: true,
|
|
66
|
-
get: function () { return
|
|
66
|
+
get: function () { return chunkA2JSZNGM_cjs.HostSingletonTag; }
|
|
67
67
|
});
|
|
68
68
|
Object.defineProperty(exports, "HostTextTag", {
|
|
69
69
|
enumerable: true,
|
|
70
|
-
get: function () { return
|
|
70
|
+
get: function () { return chunkA2JSZNGM_cjs.HostTextTag; }
|
|
71
71
|
});
|
|
72
72
|
Object.defineProperty(exports, "INSTALL_ERROR", {
|
|
73
73
|
enumerable: true,
|
|
74
|
-
get: function () { return
|
|
74
|
+
get: function () { return chunkA2JSZNGM_cjs.INSTALL_ERROR; }
|
|
75
75
|
});
|
|
76
76
|
Object.defineProperty(exports, "INSTALL_HOOK_SCRIPT_STRING", {
|
|
77
77
|
enumerable: true,
|
|
78
|
-
get: function () { return
|
|
78
|
+
get: function () { return chunkA2JSZNGM_cjs.INSTALL_HOOK_SCRIPT_STRING; }
|
|
79
79
|
});
|
|
80
80
|
Object.defineProperty(exports, "LegacyHiddenComponentTag", {
|
|
81
81
|
enumerable: true,
|
|
82
|
-
get: function () { return
|
|
82
|
+
get: function () { return chunkA2JSZNGM_cjs.LegacyHiddenComponentTag; }
|
|
83
83
|
});
|
|
84
84
|
Object.defineProperty(exports, "MemoComponentTag", {
|
|
85
85
|
enumerable: true,
|
|
86
|
-
get: function () { return
|
|
86
|
+
get: function () { return chunkA2JSZNGM_cjs.MemoComponentTag; }
|
|
87
87
|
});
|
|
88
88
|
Object.defineProperty(exports, "OffscreenComponentTag", {
|
|
89
89
|
enumerable: true,
|
|
90
|
-
get: function () { return
|
|
90
|
+
get: function () { return chunkA2JSZNGM_cjs.OffscreenComponentTag; }
|
|
91
91
|
});
|
|
92
92
|
Object.defineProperty(exports, "SimpleMemoComponentTag", {
|
|
93
93
|
enumerable: true,
|
|
94
|
-
get: function () { return
|
|
94
|
+
get: function () { return chunkA2JSZNGM_cjs.SimpleMemoComponentTag; }
|
|
95
95
|
});
|
|
96
96
|
Object.defineProperty(exports, "SuspenseComponentTag", {
|
|
97
97
|
enumerable: true,
|
|
98
|
-
get: function () { return
|
|
98
|
+
get: function () { return chunkA2JSZNGM_cjs.SuspenseComponentTag; }
|
|
99
99
|
});
|
|
100
100
|
Object.defineProperty(exports, "TRANSITIONAL_ELEMENT_TYPE_SYMBOL_STRING", {
|
|
101
101
|
enumerable: true,
|
|
102
|
-
get: function () { return
|
|
102
|
+
get: function () { return chunkA2JSZNGM_cjs.TRANSITIONAL_ELEMENT_TYPE_SYMBOL_STRING; }
|
|
103
103
|
});
|
|
104
104
|
Object.defineProperty(exports, "_fiberRoots", {
|
|
105
105
|
enumerable: true,
|
|
106
|
-
get: function () { return
|
|
106
|
+
get: function () { return chunkA2JSZNGM_cjs._fiberRoots; }
|
|
107
107
|
});
|
|
108
108
|
Object.defineProperty(exports, "createFiberVisitor", {
|
|
109
109
|
enumerable: true,
|
|
110
|
-
get: function () { return
|
|
110
|
+
get: function () { return chunkA2JSZNGM_cjs.createFiberVisitor; }
|
|
111
111
|
});
|
|
112
112
|
Object.defineProperty(exports, "detectReactBuildType", {
|
|
113
113
|
enumerable: true,
|
|
114
|
-
get: function () { return
|
|
114
|
+
get: function () { return chunkA2JSZNGM_cjs.detectReactBuildType; }
|
|
115
115
|
});
|
|
116
116
|
Object.defineProperty(exports, "didFiberCommit", {
|
|
117
117
|
enumerable: true,
|
|
118
|
-
get: function () { return
|
|
118
|
+
get: function () { return chunkA2JSZNGM_cjs.didFiberCommit; }
|
|
119
119
|
});
|
|
120
120
|
Object.defineProperty(exports, "didFiberRender", {
|
|
121
121
|
enumerable: true,
|
|
122
|
-
get: function () { return
|
|
123
|
-
});
|
|
124
|
-
Object.defineProperty(exports, "diffFiber", {
|
|
125
|
-
enumerable: true,
|
|
126
|
-
get: function () { return chunkHBEFN4VG_cjs.diffFiber; }
|
|
122
|
+
get: function () { return chunkA2JSZNGM_cjs.didFiberRender; }
|
|
127
123
|
});
|
|
128
124
|
Object.defineProperty(exports, "fiberIdMap", {
|
|
129
125
|
enumerable: true,
|
|
130
|
-
get: function () { return
|
|
126
|
+
get: function () { return chunkA2JSZNGM_cjs.fiberIdMap; }
|
|
131
127
|
});
|
|
132
128
|
Object.defineProperty(exports, "getDisplayName", {
|
|
133
129
|
enumerable: true,
|
|
134
|
-
get: function () { return
|
|
130
|
+
get: function () { return chunkA2JSZNGM_cjs.getDisplayName; }
|
|
135
131
|
});
|
|
136
132
|
Object.defineProperty(exports, "getFiberFromHostInstance", {
|
|
137
133
|
enumerable: true,
|
|
138
|
-
get: function () { return
|
|
134
|
+
get: function () { return chunkA2JSZNGM_cjs.getFiberFromHostInstance; }
|
|
139
135
|
});
|
|
140
136
|
Object.defineProperty(exports, "getFiberId", {
|
|
141
137
|
enumerable: true,
|
|
142
|
-
get: function () { return
|
|
138
|
+
get: function () { return chunkA2JSZNGM_cjs.getFiberId; }
|
|
143
139
|
});
|
|
144
140
|
Object.defineProperty(exports, "getFiberStack", {
|
|
145
141
|
enumerable: true,
|
|
146
|
-
get: function () { return
|
|
142
|
+
get: function () { return chunkA2JSZNGM_cjs.getFiberStack; }
|
|
147
143
|
});
|
|
148
144
|
Object.defineProperty(exports, "getLatestFiber", {
|
|
149
145
|
enumerable: true,
|
|
150
|
-
get: function () { return
|
|
146
|
+
get: function () { return chunkA2JSZNGM_cjs.getLatestFiber; }
|
|
151
147
|
});
|
|
152
148
|
Object.defineProperty(exports, "getMutatedHostFibers", {
|
|
153
149
|
enumerable: true,
|
|
154
|
-
get: function () { return
|
|
150
|
+
get: function () { return chunkA2JSZNGM_cjs.getMutatedHostFibers; }
|
|
155
151
|
});
|
|
156
152
|
Object.defineProperty(exports, "getNearestHostFiber", {
|
|
157
153
|
enumerable: true,
|
|
158
|
-
get: function () { return
|
|
154
|
+
get: function () { return chunkA2JSZNGM_cjs.getNearestHostFiber; }
|
|
159
155
|
});
|
|
160
156
|
Object.defineProperty(exports, "getNearestHostFibers", {
|
|
161
157
|
enumerable: true,
|
|
162
|
-
get: function () { return
|
|
158
|
+
get: function () { return chunkA2JSZNGM_cjs.getNearestHostFibers; }
|
|
163
159
|
});
|
|
164
160
|
Object.defineProperty(exports, "getRDTHook", {
|
|
165
161
|
enumerable: true,
|
|
166
|
-
get: function () { return
|
|
162
|
+
get: function () { return chunkA2JSZNGM_cjs.getRDTHook; }
|
|
167
163
|
});
|
|
168
164
|
Object.defineProperty(exports, "getTimings", {
|
|
169
165
|
enumerable: true,
|
|
170
|
-
get: function () { return
|
|
166
|
+
get: function () { return chunkA2JSZNGM_cjs.getTimings; }
|
|
171
167
|
});
|
|
172
168
|
Object.defineProperty(exports, "getType", {
|
|
173
169
|
enumerable: true,
|
|
174
|
-
get: function () { return
|
|
170
|
+
get: function () { return chunkA2JSZNGM_cjs.getType; }
|
|
175
171
|
});
|
|
176
172
|
Object.defineProperty(exports, "hasMemoCache", {
|
|
177
173
|
enumerable: true,
|
|
178
|
-
get: function () { return
|
|
174
|
+
get: function () { return chunkA2JSZNGM_cjs.hasMemoCache; }
|
|
179
175
|
});
|
|
180
176
|
Object.defineProperty(exports, "hasRDTHook", {
|
|
181
177
|
enumerable: true,
|
|
182
|
-
get: function () { return
|
|
178
|
+
get: function () { return chunkA2JSZNGM_cjs.hasRDTHook; }
|
|
183
179
|
});
|
|
184
180
|
Object.defineProperty(exports, "installRDTHook", {
|
|
185
181
|
enumerable: true,
|
|
186
|
-
get: function () { return
|
|
182
|
+
get: function () { return chunkA2JSZNGM_cjs.installRDTHook; }
|
|
187
183
|
});
|
|
188
184
|
Object.defineProperty(exports, "instrument", {
|
|
189
185
|
enumerable: true,
|
|
190
|
-
get: function () { return
|
|
186
|
+
get: function () { return chunkA2JSZNGM_cjs.instrument; }
|
|
191
187
|
});
|
|
192
188
|
Object.defineProperty(exports, "isClientEnvironment", {
|
|
193
189
|
enumerable: true,
|
|
194
|
-
get: function () { return
|
|
190
|
+
get: function () { return chunkA2JSZNGM_cjs.isClientEnvironment; }
|
|
195
191
|
});
|
|
196
192
|
Object.defineProperty(exports, "isCompositeFiber", {
|
|
197
193
|
enumerable: true,
|
|
198
|
-
get: function () { return
|
|
194
|
+
get: function () { return chunkA2JSZNGM_cjs.isCompositeFiber; }
|
|
199
195
|
});
|
|
200
196
|
Object.defineProperty(exports, "isHostFiber", {
|
|
201
197
|
enumerable: true,
|
|
202
|
-
get: function () { return
|
|
198
|
+
get: function () { return chunkA2JSZNGM_cjs.isHostFiber; }
|
|
203
199
|
});
|
|
204
200
|
Object.defineProperty(exports, "isInstrumentationActive", {
|
|
205
201
|
enumerable: true,
|
|
206
|
-
get: function () { return
|
|
202
|
+
get: function () { return chunkA2JSZNGM_cjs.isInstrumentationActive; }
|
|
207
203
|
});
|
|
208
204
|
Object.defineProperty(exports, "isReactRefresh", {
|
|
209
205
|
enumerable: true,
|
|
210
|
-
get: function () { return
|
|
206
|
+
get: function () { return chunkA2JSZNGM_cjs.isReactRefresh; }
|
|
211
207
|
});
|
|
212
208
|
Object.defineProperty(exports, "isRealReactDevtools", {
|
|
213
209
|
enumerable: true,
|
|
214
|
-
get: function () { return
|
|
210
|
+
get: function () { return chunkA2JSZNGM_cjs.isRealReactDevtools; }
|
|
215
211
|
});
|
|
216
212
|
Object.defineProperty(exports, "isValidElement", {
|
|
217
213
|
enumerable: true,
|
|
218
|
-
get: function () { return
|
|
214
|
+
get: function () { return chunkA2JSZNGM_cjs.isValidElement; }
|
|
219
215
|
});
|
|
220
216
|
Object.defineProperty(exports, "isValidFiber", {
|
|
221
217
|
enumerable: true,
|
|
222
|
-
get: function () { return
|
|
218
|
+
get: function () { return chunkA2JSZNGM_cjs.isValidFiber; }
|
|
223
219
|
});
|
|
224
220
|
Object.defineProperty(exports, "mountFiberRecursively", {
|
|
225
221
|
enumerable: true,
|
|
226
|
-
get: function () { return
|
|
222
|
+
get: function () { return chunkA2JSZNGM_cjs.mountFiberRecursively; }
|
|
227
223
|
});
|
|
228
224
|
Object.defineProperty(exports, "onCommitFiberRoot", {
|
|
229
225
|
enumerable: true,
|
|
230
|
-
get: function () { return
|
|
226
|
+
get: function () { return chunkA2JSZNGM_cjs.onCommitFiberRoot; }
|
|
231
227
|
});
|
|
232
228
|
Object.defineProperty(exports, "patchRDTHook", {
|
|
233
229
|
enumerable: true,
|
|
234
|
-
get: function () { return
|
|
230
|
+
get: function () { return chunkA2JSZNGM_cjs.patchRDTHook; }
|
|
235
231
|
});
|
|
236
232
|
Object.defineProperty(exports, "safelyInstallRDTHook", {
|
|
237
233
|
enumerable: true,
|
|
238
|
-
get: function () { return
|
|
234
|
+
get: function () { return chunkA2JSZNGM_cjs.safelyInstallRDTHook; }
|
|
239
235
|
});
|
|
240
236
|
Object.defineProperty(exports, "secure", {
|
|
241
237
|
enumerable: true,
|
|
242
|
-
get: function () { return
|
|
238
|
+
get: function () { return chunkA2JSZNGM_cjs.secure; }
|
|
243
239
|
});
|
|
244
240
|
Object.defineProperty(exports, "setFiberId", {
|
|
245
241
|
enumerable: true,
|
|
246
|
-
get: function () { return
|
|
242
|
+
get: function () { return chunkA2JSZNGM_cjs.setFiberId; }
|
|
247
243
|
});
|
|
248
244
|
Object.defineProperty(exports, "shouldFilterFiber", {
|
|
249
245
|
enumerable: true,
|
|
250
|
-
get: function () { return
|
|
246
|
+
get: function () { return chunkA2JSZNGM_cjs.shouldFilterFiber; }
|
|
251
247
|
});
|
|
252
248
|
Object.defineProperty(exports, "traverseContexts", {
|
|
253
249
|
enumerable: true,
|
|
254
|
-
get: function () { return
|
|
250
|
+
get: function () { return chunkA2JSZNGM_cjs.traverseContexts; }
|
|
255
251
|
});
|
|
256
252
|
Object.defineProperty(exports, "traverseFiber", {
|
|
257
253
|
enumerable: true,
|
|
258
|
-
get: function () { return
|
|
254
|
+
get: function () { return chunkA2JSZNGM_cjs.traverseFiber; }
|
|
259
255
|
});
|
|
260
256
|
Object.defineProperty(exports, "traverseProps", {
|
|
261
257
|
enumerable: true,
|
|
262
|
-
get: function () { return
|
|
258
|
+
get: function () { return chunkA2JSZNGM_cjs.traverseProps; }
|
|
263
259
|
});
|
|
264
260
|
Object.defineProperty(exports, "traverseRenderedFibers", {
|
|
265
261
|
enumerable: true,
|
|
266
|
-
get: function () { return
|
|
262
|
+
get: function () { return chunkA2JSZNGM_cjs.traverseRenderedFibers; }
|
|
267
263
|
});
|
|
268
264
|
Object.defineProperty(exports, "traverseState", {
|
|
269
265
|
enumerable: true,
|
|
270
|
-
get: function () { return
|
|
266
|
+
get: function () { return chunkA2JSZNGM_cjs.traverseState; }
|
|
271
267
|
});
|
|
272
268
|
Object.defineProperty(exports, "unmountFiber", {
|
|
273
269
|
enumerable: true,
|
|
274
|
-
get: function () { return
|
|
270
|
+
get: function () { return chunkA2JSZNGM_cjs.unmountFiber; }
|
|
275
271
|
});
|
|
276
272
|
Object.defineProperty(exports, "unmountFiberChildrenRecursively", {
|
|
277
273
|
enumerable: true,
|
|
278
|
-
get: function () { return
|
|
274
|
+
get: function () { return chunkA2JSZNGM_cjs.unmountFiberChildrenRecursively; }
|
|
279
275
|
});
|
|
280
276
|
Object.defineProperty(exports, "updateFiberRecursively", {
|
|
281
277
|
enumerable: true,
|
|
282
|
-
get: function () { return
|
|
278
|
+
get: function () { return chunkA2JSZNGM_cjs.updateFiberRecursively; }
|
|
283
279
|
});
|
|
284
280
|
Object.defineProperty(exports, "version", {
|
|
285
281
|
enumerable: true,
|
|
286
|
-
get: function () { return
|
|
282
|
+
get: function () { return chunkA2JSZNGM_cjs.version; }
|
|
287
283
|
});
|