bippy 0.2.14 → 0.2.16
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-QNQFCLXE.js → chunk-O5YWN3HZ.js} +43 -20
- package/dist/{chunk-JDIIA6FQ.cjs → chunk-YQ2D7EYB.cjs} +43 -20
- package/dist/{core-B6ahy3zQ.d.cts → core-EcdVgvOZ.d.cts} +1 -1
- package/dist/{core-B6ahy3zQ.d.ts → core-EcdVgvOZ.d.ts} +1 -1
- package/dist/core.cjs +58 -58
- package/dist/core.d.cts +1 -1
- package/dist/core.d.ts +1 -1
- package/dist/core.js +1 -1
- package/dist/index.cjs +67 -67
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.global.js +1 -1
- package/dist/index.js +1 -1
- package/dist/inspect.cjs +54 -54
- package/dist/inspect.js +1 -1
- package/package.json +1 -1
|
@@ -8,8 +8,10 @@
|
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
// src/rdt-hook.ts
|
|
11
|
-
var version = "0.2.
|
|
11
|
+
var version = "0.2.16";
|
|
12
12
|
var BIPPY_INSTRUMENTATION_STRING = `bippy-${version}`;
|
|
13
|
+
var objectDefineProperty = Object.defineProperty;
|
|
14
|
+
var objectHasOwnProperty = Object.prototype.hasOwnProperty;
|
|
13
15
|
var NO_OP = () => {
|
|
14
16
|
};
|
|
15
17
|
var checkDCE = (fn) => {
|
|
@@ -62,8 +64,24 @@ var installRDTHook = (onActive) => {
|
|
|
62
64
|
_instrumentationIsActive: false
|
|
63
65
|
};
|
|
64
66
|
try {
|
|
65
|
-
|
|
66
|
-
value: rdtHook
|
|
67
|
+
objectDefineProperty(globalThis, "__REACT_DEVTOOLS_GLOBAL_HOOK__", {
|
|
68
|
+
value: rdtHook,
|
|
69
|
+
configurable: true,
|
|
70
|
+
writable: true
|
|
71
|
+
});
|
|
72
|
+
const originalWindowHasOwnProperty = window.hasOwnProperty;
|
|
73
|
+
let hasRanHack = false;
|
|
74
|
+
objectDefineProperty(window, "hasOwnProperty", {
|
|
75
|
+
value: function() {
|
|
76
|
+
if (!hasRanHack && arguments[0] === "__REACT_DEVTOOLS_GLOBAL_HOOK__") {
|
|
77
|
+
globalThis.__REACT_DEVTOOLS_GLOBAL_HOOK__ = void 0;
|
|
78
|
+
hasRanHack = true;
|
|
79
|
+
return -0;
|
|
80
|
+
}
|
|
81
|
+
return originalWindowHasOwnProperty.apply(this, arguments);
|
|
82
|
+
},
|
|
83
|
+
configurable: true,
|
|
84
|
+
writable: true
|
|
67
85
|
});
|
|
68
86
|
} catch {
|
|
69
87
|
patchRDTHook(onActive);
|
|
@@ -73,31 +91,36 @@ var installRDTHook = (onActive) => {
|
|
|
73
91
|
var patchRDTHook = (onActive) => {
|
|
74
92
|
try {
|
|
75
93
|
const rdtHook = globalThis.__REACT_DEVTOOLS_GLOBAL_HOOK__;
|
|
76
|
-
if (
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
rdtHook.
|
|
94
|
+
if (rdtHook) {
|
|
95
|
+
if (!rdtHook._instrumentationSource) {
|
|
96
|
+
isReactRefreshOverride = isReactRefresh(rdtHook);
|
|
97
|
+
rdtHook.checkDCE = checkDCE;
|
|
98
|
+
rdtHook.supportsFiber = true;
|
|
99
|
+
rdtHook.supportsFlight = true;
|
|
100
|
+
rdtHook.hasUnsupportedRendererAttached = false;
|
|
101
|
+
rdtHook._instrumentationSource = BIPPY_INSTRUMENTATION_STRING;
|
|
102
|
+
if (rdtHook.renderers.size) {
|
|
103
|
+
rdtHook._instrumentationIsActive = true;
|
|
104
|
+
onActive?.();
|
|
105
|
+
return;
|
|
106
|
+
}
|
|
107
|
+
const prevInject = rdtHook.inject;
|
|
108
|
+
rdtHook.inject = (renderer) => {
|
|
109
|
+
const id = prevInject(renderer);
|
|
110
|
+
rdtHook._instrumentationIsActive = true;
|
|
111
|
+
onActive?.();
|
|
112
|
+
return id;
|
|
113
|
+
};
|
|
114
|
+
} else if (rdtHook.renderers.size || rdtHook._instrumentationIsActive) {
|
|
85
115
|
onActive?.();
|
|
86
116
|
return;
|
|
87
117
|
}
|
|
88
|
-
const prevInject = rdtHook.inject;
|
|
89
|
-
rdtHook.inject = (renderer) => {
|
|
90
|
-
const id = prevInject(renderer);
|
|
91
|
-
rdtHook._instrumentationIsActive = true;
|
|
92
|
-
onActive?.();
|
|
93
|
-
return id;
|
|
94
|
-
};
|
|
95
118
|
}
|
|
96
119
|
} catch {
|
|
97
120
|
}
|
|
98
121
|
};
|
|
99
122
|
var hasRDTHook = () => {
|
|
100
|
-
return
|
|
123
|
+
return objectHasOwnProperty.call(
|
|
101
124
|
globalThis,
|
|
102
125
|
"__REACT_DEVTOOLS_GLOBAL_HOOK__"
|
|
103
126
|
);
|
|
@@ -10,8 +10,10 @@
|
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
12
|
// src/rdt-hook.ts
|
|
13
|
-
var version = "0.2.
|
|
13
|
+
var version = "0.2.16";
|
|
14
14
|
var BIPPY_INSTRUMENTATION_STRING = `bippy-${version}`;
|
|
15
|
+
var objectDefineProperty = Object.defineProperty;
|
|
16
|
+
var objectHasOwnProperty = Object.prototype.hasOwnProperty;
|
|
15
17
|
var NO_OP = () => {
|
|
16
18
|
};
|
|
17
19
|
var checkDCE = (fn) => {
|
|
@@ -64,8 +66,24 @@ var installRDTHook = (onActive) => {
|
|
|
64
66
|
_instrumentationIsActive: false
|
|
65
67
|
};
|
|
66
68
|
try {
|
|
67
|
-
|
|
68
|
-
value: rdtHook
|
|
69
|
+
objectDefineProperty(globalThis, "__REACT_DEVTOOLS_GLOBAL_HOOK__", {
|
|
70
|
+
value: rdtHook,
|
|
71
|
+
configurable: true,
|
|
72
|
+
writable: true
|
|
73
|
+
});
|
|
74
|
+
const originalWindowHasOwnProperty = window.hasOwnProperty;
|
|
75
|
+
let hasRanHack = false;
|
|
76
|
+
objectDefineProperty(window, "hasOwnProperty", {
|
|
77
|
+
value: function() {
|
|
78
|
+
if (!hasRanHack && arguments[0] === "__REACT_DEVTOOLS_GLOBAL_HOOK__") {
|
|
79
|
+
globalThis.__REACT_DEVTOOLS_GLOBAL_HOOK__ = void 0;
|
|
80
|
+
hasRanHack = true;
|
|
81
|
+
return -0;
|
|
82
|
+
}
|
|
83
|
+
return originalWindowHasOwnProperty.apply(this, arguments);
|
|
84
|
+
},
|
|
85
|
+
configurable: true,
|
|
86
|
+
writable: true
|
|
69
87
|
});
|
|
70
88
|
} catch {
|
|
71
89
|
patchRDTHook(onActive);
|
|
@@ -75,31 +93,36 @@ var installRDTHook = (onActive) => {
|
|
|
75
93
|
var patchRDTHook = (onActive) => {
|
|
76
94
|
try {
|
|
77
95
|
const rdtHook = globalThis.__REACT_DEVTOOLS_GLOBAL_HOOK__;
|
|
78
|
-
if (
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
rdtHook.
|
|
96
|
+
if (rdtHook) {
|
|
97
|
+
if (!rdtHook._instrumentationSource) {
|
|
98
|
+
isReactRefreshOverride = isReactRefresh(rdtHook);
|
|
99
|
+
rdtHook.checkDCE = checkDCE;
|
|
100
|
+
rdtHook.supportsFiber = true;
|
|
101
|
+
rdtHook.supportsFlight = true;
|
|
102
|
+
rdtHook.hasUnsupportedRendererAttached = false;
|
|
103
|
+
rdtHook._instrumentationSource = BIPPY_INSTRUMENTATION_STRING;
|
|
104
|
+
if (rdtHook.renderers.size) {
|
|
105
|
+
rdtHook._instrumentationIsActive = true;
|
|
106
|
+
onActive?.();
|
|
107
|
+
return;
|
|
108
|
+
}
|
|
109
|
+
const prevInject = rdtHook.inject;
|
|
110
|
+
rdtHook.inject = (renderer) => {
|
|
111
|
+
const id = prevInject(renderer);
|
|
112
|
+
rdtHook._instrumentationIsActive = true;
|
|
113
|
+
onActive?.();
|
|
114
|
+
return id;
|
|
115
|
+
};
|
|
116
|
+
} else if (rdtHook.renderers.size || rdtHook._instrumentationIsActive) {
|
|
87
117
|
onActive?.();
|
|
88
118
|
return;
|
|
89
119
|
}
|
|
90
|
-
const prevInject = rdtHook.inject;
|
|
91
|
-
rdtHook.inject = (renderer) => {
|
|
92
|
-
const id = prevInject(renderer);
|
|
93
|
-
rdtHook._instrumentationIsActive = true;
|
|
94
|
-
onActive?.();
|
|
95
|
-
return id;
|
|
96
|
-
};
|
|
97
120
|
}
|
|
98
121
|
} catch {
|
|
99
122
|
}
|
|
100
123
|
};
|
|
101
124
|
var hasRDTHook = () => {
|
|
102
|
-
return
|
|
125
|
+
return objectHasOwnProperty.call(
|
|
103
126
|
globalThis,
|
|
104
127
|
"__REACT_DEVTOOLS_GLOBAL_HOOK__"
|
|
105
128
|
);
|
|
@@ -65,7 +65,7 @@ interface Props {
|
|
|
65
65
|
[key: string]: unknown;
|
|
66
66
|
}
|
|
67
67
|
declare global {
|
|
68
|
-
var __REACT_DEVTOOLS_GLOBAL_HOOK__: ReactDevToolsGlobalHook;
|
|
68
|
+
var __REACT_DEVTOOLS_GLOBAL_HOOK__: ReactDevToolsGlobalHook | undefined;
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
declare const FunctionComponentTag = 0;
|
|
@@ -65,7 +65,7 @@ interface Props {
|
|
|
65
65
|
[key: string]: unknown;
|
|
66
66
|
}
|
|
67
67
|
declare global {
|
|
68
|
-
var __REACT_DEVTOOLS_GLOBAL_HOOK__: ReactDevToolsGlobalHook;
|
|
68
|
+
var __REACT_DEVTOOLS_GLOBAL_HOOK__: ReactDevToolsGlobalHook | undefined;
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
declare const FunctionComponentTag = 0;
|
package/dist/core.cjs
CHANGED
|
@@ -1,234 +1,234 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkYQ2D7EYB_cjs = require('./chunk-YQ2D7EYB.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 chunkYQ2D7EYB_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 chunkYQ2D7EYB_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 chunkYQ2D7EYB_cjs.ClassComponentTag; }
|
|
18
18
|
});
|
|
19
19
|
Object.defineProperty(exports, "ContextConsumerTag", {
|
|
20
20
|
enumerable: true,
|
|
21
|
-
get: function () { return
|
|
21
|
+
get: function () { return chunkYQ2D7EYB_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 chunkYQ2D7EYB_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 chunkYQ2D7EYB_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 chunkYQ2D7EYB_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 chunkYQ2D7EYB_cjs.ForwardRefTag; }
|
|
38
38
|
});
|
|
39
39
|
Object.defineProperty(exports, "FragmentTag", {
|
|
40
40
|
enumerable: true,
|
|
41
|
-
get: function () { return
|
|
41
|
+
get: function () { return chunkYQ2D7EYB_cjs.FragmentTag; }
|
|
42
42
|
});
|
|
43
43
|
Object.defineProperty(exports, "FunctionComponentTag", {
|
|
44
44
|
enumerable: true,
|
|
45
|
-
get: function () { return
|
|
45
|
+
get: function () { return chunkYQ2D7EYB_cjs.FunctionComponentTag; }
|
|
46
46
|
});
|
|
47
47
|
Object.defineProperty(exports, "HostComponentTag", {
|
|
48
48
|
enumerable: true,
|
|
49
|
-
get: function () { return
|
|
49
|
+
get: function () { return chunkYQ2D7EYB_cjs.HostComponentTag; }
|
|
50
50
|
});
|
|
51
51
|
Object.defineProperty(exports, "HostHoistableTag", {
|
|
52
52
|
enumerable: true,
|
|
53
|
-
get: function () { return
|
|
53
|
+
get: function () { return chunkYQ2D7EYB_cjs.HostHoistableTag; }
|
|
54
54
|
});
|
|
55
55
|
Object.defineProperty(exports, "HostRootTag", {
|
|
56
56
|
enumerable: true,
|
|
57
|
-
get: function () { return
|
|
57
|
+
get: function () { return chunkYQ2D7EYB_cjs.HostRootTag; }
|
|
58
58
|
});
|
|
59
59
|
Object.defineProperty(exports, "HostSingletonTag", {
|
|
60
60
|
enumerable: true,
|
|
61
|
-
get: function () { return
|
|
61
|
+
get: function () { return chunkYQ2D7EYB_cjs.HostSingletonTag; }
|
|
62
62
|
});
|
|
63
63
|
Object.defineProperty(exports, "HostTextTag", {
|
|
64
64
|
enumerable: true,
|
|
65
|
-
get: function () { return
|
|
65
|
+
get: function () { return chunkYQ2D7EYB_cjs.HostTextTag; }
|
|
66
66
|
});
|
|
67
67
|
Object.defineProperty(exports, "INSTALL_ERROR", {
|
|
68
68
|
enumerable: true,
|
|
69
|
-
get: function () { return
|
|
69
|
+
get: function () { return chunkYQ2D7EYB_cjs.INSTALL_ERROR; }
|
|
70
70
|
});
|
|
71
71
|
Object.defineProperty(exports, "LegacyHiddenComponentTag", {
|
|
72
72
|
enumerable: true,
|
|
73
|
-
get: function () { return
|
|
73
|
+
get: function () { return chunkYQ2D7EYB_cjs.LegacyHiddenComponentTag; }
|
|
74
74
|
});
|
|
75
75
|
Object.defineProperty(exports, "MemoComponentTag", {
|
|
76
76
|
enumerable: true,
|
|
77
|
-
get: function () { return
|
|
77
|
+
get: function () { return chunkYQ2D7EYB_cjs.MemoComponentTag; }
|
|
78
78
|
});
|
|
79
79
|
Object.defineProperty(exports, "OffscreenComponentTag", {
|
|
80
80
|
enumerable: true,
|
|
81
|
-
get: function () { return
|
|
81
|
+
get: function () { return chunkYQ2D7EYB_cjs.OffscreenComponentTag; }
|
|
82
82
|
});
|
|
83
83
|
Object.defineProperty(exports, "SimpleMemoComponentTag", {
|
|
84
84
|
enumerable: true,
|
|
85
|
-
get: function () { return
|
|
85
|
+
get: function () { return chunkYQ2D7EYB_cjs.SimpleMemoComponentTag; }
|
|
86
86
|
});
|
|
87
87
|
Object.defineProperty(exports, "SuspenseComponentTag", {
|
|
88
88
|
enumerable: true,
|
|
89
|
-
get: function () { return
|
|
89
|
+
get: function () { return chunkYQ2D7EYB_cjs.SuspenseComponentTag; }
|
|
90
90
|
});
|
|
91
91
|
Object.defineProperty(exports, "TRANSITIONAL_ELEMENT_TYPE_SYMBOL_STRING", {
|
|
92
92
|
enumerable: true,
|
|
93
|
-
get: function () { return
|
|
93
|
+
get: function () { return chunkYQ2D7EYB_cjs.TRANSITIONAL_ELEMENT_TYPE_SYMBOL_STRING; }
|
|
94
94
|
});
|
|
95
95
|
Object.defineProperty(exports, "createFiberVisitor", {
|
|
96
96
|
enumerable: true,
|
|
97
|
-
get: function () { return
|
|
97
|
+
get: function () { return chunkYQ2D7EYB_cjs.createFiberVisitor; }
|
|
98
98
|
});
|
|
99
99
|
Object.defineProperty(exports, "detectReactBuildType", {
|
|
100
100
|
enumerable: true,
|
|
101
|
-
get: function () { return
|
|
101
|
+
get: function () { return chunkYQ2D7EYB_cjs.detectReactBuildType; }
|
|
102
102
|
});
|
|
103
103
|
Object.defineProperty(exports, "didFiberCommit", {
|
|
104
104
|
enumerable: true,
|
|
105
|
-
get: function () { return
|
|
105
|
+
get: function () { return chunkYQ2D7EYB_cjs.didFiberCommit; }
|
|
106
106
|
});
|
|
107
107
|
Object.defineProperty(exports, "didFiberRender", {
|
|
108
108
|
enumerable: true,
|
|
109
|
-
get: function () { return
|
|
109
|
+
get: function () { return chunkYQ2D7EYB_cjs.didFiberRender; }
|
|
110
110
|
});
|
|
111
111
|
Object.defineProperty(exports, "fiberIdMap", {
|
|
112
112
|
enumerable: true,
|
|
113
|
-
get: function () { return
|
|
113
|
+
get: function () { return chunkYQ2D7EYB_cjs.fiberIdMap; }
|
|
114
114
|
});
|
|
115
115
|
Object.defineProperty(exports, "getDisplayName", {
|
|
116
116
|
enumerable: true,
|
|
117
|
-
get: function () { return
|
|
117
|
+
get: function () { return chunkYQ2D7EYB_cjs.getDisplayName; }
|
|
118
118
|
});
|
|
119
119
|
Object.defineProperty(exports, "getFiberFromHostInstance", {
|
|
120
120
|
enumerable: true,
|
|
121
|
-
get: function () { return
|
|
121
|
+
get: function () { return chunkYQ2D7EYB_cjs.getFiberFromHostInstance; }
|
|
122
122
|
});
|
|
123
123
|
Object.defineProperty(exports, "getFiberId", {
|
|
124
124
|
enumerable: true,
|
|
125
|
-
get: function () { return
|
|
125
|
+
get: function () { return chunkYQ2D7EYB_cjs.getFiberId; }
|
|
126
126
|
});
|
|
127
127
|
Object.defineProperty(exports, "getFiberStack", {
|
|
128
128
|
enumerable: true,
|
|
129
|
-
get: function () { return
|
|
129
|
+
get: function () { return chunkYQ2D7EYB_cjs.getFiberStack; }
|
|
130
130
|
});
|
|
131
131
|
Object.defineProperty(exports, "getMutatedHostFibers", {
|
|
132
132
|
enumerable: true,
|
|
133
|
-
get: function () { return
|
|
133
|
+
get: function () { return chunkYQ2D7EYB_cjs.getMutatedHostFibers; }
|
|
134
134
|
});
|
|
135
135
|
Object.defineProperty(exports, "getNearestHostFiber", {
|
|
136
136
|
enumerable: true,
|
|
137
|
-
get: function () { return
|
|
137
|
+
get: function () { return chunkYQ2D7EYB_cjs.getNearestHostFiber; }
|
|
138
138
|
});
|
|
139
139
|
Object.defineProperty(exports, "getNearestHostFibers", {
|
|
140
140
|
enumerable: true,
|
|
141
|
-
get: function () { return
|
|
141
|
+
get: function () { return chunkYQ2D7EYB_cjs.getNearestHostFibers; }
|
|
142
142
|
});
|
|
143
143
|
Object.defineProperty(exports, "getTimings", {
|
|
144
144
|
enumerable: true,
|
|
145
|
-
get: function () { return
|
|
145
|
+
get: function () { return chunkYQ2D7EYB_cjs.getTimings; }
|
|
146
146
|
});
|
|
147
147
|
Object.defineProperty(exports, "getType", {
|
|
148
148
|
enumerable: true,
|
|
149
|
-
get: function () { return
|
|
149
|
+
get: function () { return chunkYQ2D7EYB_cjs.getType; }
|
|
150
150
|
});
|
|
151
151
|
Object.defineProperty(exports, "hasMemoCache", {
|
|
152
152
|
enumerable: true,
|
|
153
|
-
get: function () { return
|
|
153
|
+
get: function () { return chunkYQ2D7EYB_cjs.hasMemoCache; }
|
|
154
154
|
});
|
|
155
155
|
Object.defineProperty(exports, "instrument", {
|
|
156
156
|
enumerable: true,
|
|
157
|
-
get: function () { return
|
|
157
|
+
get: function () { return chunkYQ2D7EYB_cjs.instrument; }
|
|
158
158
|
});
|
|
159
159
|
Object.defineProperty(exports, "isCompositeFiber", {
|
|
160
160
|
enumerable: true,
|
|
161
|
-
get: function () { return
|
|
161
|
+
get: function () { return chunkYQ2D7EYB_cjs.isCompositeFiber; }
|
|
162
162
|
});
|
|
163
163
|
Object.defineProperty(exports, "isHostFiber", {
|
|
164
164
|
enumerable: true,
|
|
165
|
-
get: function () { return
|
|
165
|
+
get: function () { return chunkYQ2D7EYB_cjs.isHostFiber; }
|
|
166
166
|
});
|
|
167
167
|
Object.defineProperty(exports, "isInstrumentationActive", {
|
|
168
168
|
enumerable: true,
|
|
169
|
-
get: function () { return
|
|
169
|
+
get: function () { return chunkYQ2D7EYB_cjs.isInstrumentationActive; }
|
|
170
170
|
});
|
|
171
171
|
Object.defineProperty(exports, "isValidElement", {
|
|
172
172
|
enumerable: true,
|
|
173
|
-
get: function () { return
|
|
173
|
+
get: function () { return chunkYQ2D7EYB_cjs.isValidElement; }
|
|
174
174
|
});
|
|
175
175
|
Object.defineProperty(exports, "isValidFiber", {
|
|
176
176
|
enumerable: true,
|
|
177
|
-
get: function () { return
|
|
177
|
+
get: function () { return chunkYQ2D7EYB_cjs.isValidFiber; }
|
|
178
178
|
});
|
|
179
179
|
Object.defineProperty(exports, "mountFiberRecursively", {
|
|
180
180
|
enumerable: true,
|
|
181
|
-
get: function () { return
|
|
181
|
+
get: function () { return chunkYQ2D7EYB_cjs.mountFiberRecursively; }
|
|
182
182
|
});
|
|
183
183
|
Object.defineProperty(exports, "onCommitFiberRoot", {
|
|
184
184
|
enumerable: true,
|
|
185
|
-
get: function () { return
|
|
185
|
+
get: function () { return chunkYQ2D7EYB_cjs.onCommitFiberRoot; }
|
|
186
186
|
});
|
|
187
187
|
Object.defineProperty(exports, "secure", {
|
|
188
188
|
enumerable: true,
|
|
189
|
-
get: function () { return
|
|
189
|
+
get: function () { return chunkYQ2D7EYB_cjs.secure; }
|
|
190
190
|
});
|
|
191
191
|
Object.defineProperty(exports, "setFiberId", {
|
|
192
192
|
enumerable: true,
|
|
193
|
-
get: function () { return
|
|
193
|
+
get: function () { return chunkYQ2D7EYB_cjs.setFiberId; }
|
|
194
194
|
});
|
|
195
195
|
Object.defineProperty(exports, "shouldFilterFiber", {
|
|
196
196
|
enumerable: true,
|
|
197
|
-
get: function () { return
|
|
197
|
+
get: function () { return chunkYQ2D7EYB_cjs.shouldFilterFiber; }
|
|
198
198
|
});
|
|
199
199
|
Object.defineProperty(exports, "traverseContexts", {
|
|
200
200
|
enumerable: true,
|
|
201
|
-
get: function () { return
|
|
201
|
+
get: function () { return chunkYQ2D7EYB_cjs.traverseContexts; }
|
|
202
202
|
});
|
|
203
203
|
Object.defineProperty(exports, "traverseEffects", {
|
|
204
204
|
enumerable: true,
|
|
205
|
-
get: function () { return
|
|
205
|
+
get: function () { return chunkYQ2D7EYB_cjs.traverseEffects; }
|
|
206
206
|
});
|
|
207
207
|
Object.defineProperty(exports, "traverseFiber", {
|
|
208
208
|
enumerable: true,
|
|
209
|
-
get: function () { return
|
|
209
|
+
get: function () { return chunkYQ2D7EYB_cjs.traverseFiber; }
|
|
210
210
|
});
|
|
211
211
|
Object.defineProperty(exports, "traverseProps", {
|
|
212
212
|
enumerable: true,
|
|
213
|
-
get: function () { return
|
|
213
|
+
get: function () { return chunkYQ2D7EYB_cjs.traverseProps; }
|
|
214
214
|
});
|
|
215
215
|
Object.defineProperty(exports, "traverseRenderedFibers", {
|
|
216
216
|
enumerable: true,
|
|
217
|
-
get: function () { return
|
|
217
|
+
get: function () { return chunkYQ2D7EYB_cjs.traverseRenderedFibers; }
|
|
218
218
|
});
|
|
219
219
|
Object.defineProperty(exports, "traverseState", {
|
|
220
220
|
enumerable: true,
|
|
221
|
-
get: function () { return
|
|
221
|
+
get: function () { return chunkYQ2D7EYB_cjs.traverseState; }
|
|
222
222
|
});
|
|
223
223
|
Object.defineProperty(exports, "unmountFiber", {
|
|
224
224
|
enumerable: true,
|
|
225
|
-
get: function () { return
|
|
225
|
+
get: function () { return chunkYQ2D7EYB_cjs.unmountFiber; }
|
|
226
226
|
});
|
|
227
227
|
Object.defineProperty(exports, "unmountFiberChildrenRecursively", {
|
|
228
228
|
enumerable: true,
|
|
229
|
-
get: function () { return
|
|
229
|
+
get: function () { return chunkYQ2D7EYB_cjs.unmountFiberChildrenRecursively; }
|
|
230
230
|
});
|
|
231
231
|
Object.defineProperty(exports, "updateFiberRecursively", {
|
|
232
232
|
enumerable: true,
|
|
233
|
-
get: function () { return
|
|
233
|
+
get: function () { return chunkYQ2D7EYB_cjs.updateFiberRecursively; }
|
|
234
234
|
});
|
package/dist/core.d.cts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import 'react';
|
|
2
|
-
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, a4 as INSTALL_ERROR, 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, a6 as onCommitFiberRoot, a5 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-
|
|
2
|
+
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, a4 as INSTALL_ERROR, 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, a6 as onCommitFiberRoot, a5 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-EcdVgvOZ.cjs';
|
|
3
3
|
import 'react-reconciler';
|
package/dist/core.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import 'react';
|
|
2
|
-
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, a4 as INSTALL_ERROR, 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, a6 as onCommitFiberRoot, a5 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-
|
|
2
|
+
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, a4 as INSTALL_ERROR, 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, a6 as onCommitFiberRoot, a5 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-EcdVgvOZ.js';
|
|
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, INSTALL_ERROR, 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-
|
|
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, INSTALL_ERROR, 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-O5YWN3HZ.js';
|