react 0.0.0-experimental-0935a1db3 → 0.0.0-experimental-bbb2ba8c8
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/cjs/react-jsx-dev-runtime.development.js +1 -3
- package/cjs/react-jsx-runtime.development.js +1 -3
- package/cjs/react-unstable-shared-subset.development.js +2 -17
- package/cjs/react-unstable-shared-subset.production.min.js +1 -1
- package/cjs/react.development.js +2 -17
- package/cjs/react.production.min.js +1 -1
- package/package.json +1 -1
- package/umd/react.development.js +2 -17
- package/umd/react.production.min.js +1 -1
- package/umd/react.profiling.min.js +1 -1
|
@@ -33,7 +33,6 @@ var REACT_SUSPENSE_TYPE = 0xead1;
|
|
|
33
33
|
var REACT_SUSPENSE_LIST_TYPE = 0xead8;
|
|
34
34
|
var REACT_MEMO_TYPE = 0xead3;
|
|
35
35
|
var REACT_LAZY_TYPE = 0xead4;
|
|
36
|
-
var REACT_FUNDAMENTAL_TYPE = 0xead5;
|
|
37
36
|
var REACT_SCOPE_TYPE = 0xead7;
|
|
38
37
|
var REACT_OPAQUE_ID_TYPE = 0xeae0;
|
|
39
38
|
var REACT_DEBUG_TRACING_MODE_TYPE = 0xeae1;
|
|
@@ -55,7 +54,6 @@ if (typeof Symbol === 'function' && Symbol.for) {
|
|
|
55
54
|
REACT_SUSPENSE_LIST_TYPE = symbolFor('react.suspense_list');
|
|
56
55
|
REACT_MEMO_TYPE = symbolFor('react.memo');
|
|
57
56
|
REACT_LAZY_TYPE = symbolFor('react.lazy');
|
|
58
|
-
REACT_FUNDAMENTAL_TYPE = symbolFor('react.fundamental');
|
|
59
57
|
REACT_SCOPE_TYPE = symbolFor('react.scope');
|
|
60
58
|
REACT_OPAQUE_ID_TYPE = symbolFor('react.opaque.id');
|
|
61
59
|
REACT_DEBUG_TRACING_MODE_TYPE = symbolFor('react.debug_trace_mode');
|
|
@@ -137,7 +135,7 @@ function isValidElementType(type) {
|
|
|
137
135
|
}
|
|
138
136
|
|
|
139
137
|
if (typeof type === 'object' && type !== null) {
|
|
140
|
-
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE ||
|
|
138
|
+
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object
|
|
141
139
|
// types supported by any Flight configuration anywhere since
|
|
142
140
|
// we don't know which Flight build this will end up being used
|
|
143
141
|
// with.
|
|
@@ -33,7 +33,6 @@ var REACT_SUSPENSE_TYPE = 0xead1;
|
|
|
33
33
|
var REACT_SUSPENSE_LIST_TYPE = 0xead8;
|
|
34
34
|
var REACT_MEMO_TYPE = 0xead3;
|
|
35
35
|
var REACT_LAZY_TYPE = 0xead4;
|
|
36
|
-
var REACT_FUNDAMENTAL_TYPE = 0xead5;
|
|
37
36
|
var REACT_SCOPE_TYPE = 0xead7;
|
|
38
37
|
var REACT_OPAQUE_ID_TYPE = 0xeae0;
|
|
39
38
|
var REACT_DEBUG_TRACING_MODE_TYPE = 0xeae1;
|
|
@@ -55,7 +54,6 @@ if (typeof Symbol === 'function' && Symbol.for) {
|
|
|
55
54
|
REACT_SUSPENSE_LIST_TYPE = symbolFor('react.suspense_list');
|
|
56
55
|
REACT_MEMO_TYPE = symbolFor('react.memo');
|
|
57
56
|
REACT_LAZY_TYPE = symbolFor('react.lazy');
|
|
58
|
-
REACT_FUNDAMENTAL_TYPE = symbolFor('react.fundamental');
|
|
59
57
|
REACT_SCOPE_TYPE = symbolFor('react.scope');
|
|
60
58
|
REACT_OPAQUE_ID_TYPE = symbolFor('react.opaque.id');
|
|
61
59
|
REACT_DEBUG_TRACING_MODE_TYPE = symbolFor('react.debug_trace_mode');
|
|
@@ -137,7 +135,7 @@ function isValidElementType(type) {
|
|
|
137
135
|
}
|
|
138
136
|
|
|
139
137
|
if (typeof type === 'object' && type !== null) {
|
|
140
|
-
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE ||
|
|
138
|
+
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object
|
|
141
139
|
// types supported by any Flight configuration anywhere since
|
|
142
140
|
// we don't know which Flight build this will end up being used
|
|
143
141
|
// with.
|
|
@@ -15,7 +15,7 @@ if (process.env.NODE_ENV !== "production") {
|
|
|
15
15
|
|
|
16
16
|
var _assign = require('object-assign');
|
|
17
17
|
|
|
18
|
-
var ReactVersion = '17.0.2-experimental-
|
|
18
|
+
var ReactVersion = '17.0.2-experimental-bbb2ba8c8';
|
|
19
19
|
|
|
20
20
|
// ATTENTION
|
|
21
21
|
// When adding new symbols to this file,
|
|
@@ -34,7 +34,6 @@ exports.Suspense = 0xead1;
|
|
|
34
34
|
exports.unstable_SuspenseList = 0xead8;
|
|
35
35
|
var REACT_MEMO_TYPE = 0xead3;
|
|
36
36
|
var REACT_LAZY_TYPE = 0xead4;
|
|
37
|
-
var REACT_FUNDAMENTAL_TYPE = 0xead5;
|
|
38
37
|
var REACT_SCOPE_TYPE = 0xead7;
|
|
39
38
|
var REACT_OPAQUE_ID_TYPE = 0xeae0;
|
|
40
39
|
exports.unstable_DebugTracingMode = 0xeae1;
|
|
@@ -56,7 +55,6 @@ if (typeof Symbol === 'function' && Symbol.for) {
|
|
|
56
55
|
exports.unstable_SuspenseList = symbolFor('react.suspense_list');
|
|
57
56
|
REACT_MEMO_TYPE = symbolFor('react.memo');
|
|
58
57
|
REACT_LAZY_TYPE = symbolFor('react.lazy');
|
|
59
|
-
REACT_FUNDAMENTAL_TYPE = symbolFor('react.fundamental');
|
|
60
58
|
REACT_SCOPE_TYPE = symbolFor('react.scope');
|
|
61
59
|
REACT_OPAQUE_ID_TYPE = symbolFor('react.opaque.id');
|
|
62
60
|
exports.unstable_DebugTracingMode = symbolFor('react.debug_trace_mode');
|
|
@@ -1308,7 +1306,7 @@ function isValidElementType(type) {
|
|
|
1308
1306
|
}
|
|
1309
1307
|
|
|
1310
1308
|
if (typeof type === 'object' && type !== null) {
|
|
1311
|
-
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE ||
|
|
1309
|
+
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object
|
|
1312
1310
|
// types supported by any Flight configuration anywhere since
|
|
1313
1311
|
// we don't know which Flight build this will end up being used
|
|
1314
1312
|
// with.
|
|
@@ -2152,19 +2150,6 @@ function createMutableSource(source, getVersion) {
|
|
|
2152
2150
|
return mutableSource;
|
|
2153
2151
|
}
|
|
2154
2152
|
|
|
2155
|
-
{
|
|
2156
|
-
|
|
2157
|
-
try {
|
|
2158
|
-
var frozenObject = Object.freeze({});
|
|
2159
|
-
/* eslint-disable no-new */
|
|
2160
|
-
|
|
2161
|
-
new Map([[frozenObject, null]]);
|
|
2162
|
-
new Set([frozenObject]);
|
|
2163
|
-
/* eslint-enable no-new */
|
|
2164
|
-
} catch (e) {
|
|
2165
|
-
}
|
|
2166
|
-
}
|
|
2167
|
-
|
|
2168
2153
|
var createElement$1 = createElementWithValidation ;
|
|
2169
2154
|
var cloneElement$1 = cloneElementWithValidation ;
|
|
2170
2155
|
var Children = {
|
|
@@ -20,4 +20,4 @@ exports.cloneElement=function(a,b,e){if(null===a||void 0===a)throw Error(x(267,a
|
|
|
20
20
|
key:c,ref:k,props:d,_owner:h}};exports.createElement=function(a,b,e){var d,c={},k=null,h=null;if(null!=b)for(d in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(k=""+b.key),b)F.call(b,d)&&!G.hasOwnProperty(d)&&(c[d]=b[d]);var g=arguments.length-2;if(1===g)c.children=e;else if(1<g){for(var f=Array(g),m=0;m<g;m++)f[m]=arguments[m+2];c.children=f}if(a&&a.defaultProps)for(d in g=a.defaultProps,g)void 0===c[d]&&(c[d]=g[d]);return{$$typeof:n,type:a,key:k,ref:h,props:c,_owner:E.current}};exports.createRef=function(){return{current:null}};
|
|
21
21
|
exports.forwardRef=function(a){return{$$typeof:q,render:a}};exports.isValidElement=I;exports.lazy=function(a){return{$$typeof:t,_payload:{_status:-1,_result:a},_init:N}};exports.memo=function(a,b){return{$$typeof:r,type:a,compare:void 0===b?null:b}};exports.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};exports.unstable_getCacheForType=function(a){return O.current.getCacheForType(a)};
|
|
22
22
|
exports.unstable_useDeferredValue=function(a){return O.current.useDeferredValue(a)};exports.unstable_useMutableSource=function(a,b,e){return O.current.useMutableSource(a,b,e)};exports.unstable_useOpaqueIdentifier=function(){return O.current.useOpaqueIdentifier()};exports.useCallback=function(a,b){return O.current.useCallback(a,b)};exports.useContext=function(a,b){return O.current.useContext(a,b)};exports.useDebugValue=function(){};exports.useMemo=function(a,b){return O.current.useMemo(a,b)};
|
|
23
|
-
exports.version="17.0.2-experimental-
|
|
23
|
+
exports.version="17.0.2-experimental-bbb2ba8c8";
|
package/cjs/react.development.js
CHANGED
|
@@ -15,7 +15,7 @@ if (process.env.NODE_ENV !== "production") {
|
|
|
15
15
|
|
|
16
16
|
var _assign = require('object-assign');
|
|
17
17
|
|
|
18
|
-
var ReactVersion = '17.0.2-experimental-
|
|
18
|
+
var ReactVersion = '17.0.2-experimental-bbb2ba8c8';
|
|
19
19
|
|
|
20
20
|
// ATTENTION
|
|
21
21
|
// When adding new symbols to this file,
|
|
@@ -34,7 +34,6 @@ exports.Suspense = 0xead1;
|
|
|
34
34
|
exports.unstable_SuspenseList = 0xead8;
|
|
35
35
|
var REACT_MEMO_TYPE = 0xead3;
|
|
36
36
|
var REACT_LAZY_TYPE = 0xead4;
|
|
37
|
-
var REACT_FUNDAMENTAL_TYPE = 0xead5;
|
|
38
37
|
var REACT_SCOPE_TYPE = 0xead7;
|
|
39
38
|
var REACT_OPAQUE_ID_TYPE = 0xeae0;
|
|
40
39
|
exports.unstable_DebugTracingMode = 0xeae1;
|
|
@@ -56,7 +55,6 @@ if (typeof Symbol === 'function' && Symbol.for) {
|
|
|
56
55
|
exports.unstable_SuspenseList = symbolFor('react.suspense_list');
|
|
57
56
|
REACT_MEMO_TYPE = symbolFor('react.memo');
|
|
58
57
|
REACT_LAZY_TYPE = symbolFor('react.lazy');
|
|
59
|
-
REACT_FUNDAMENTAL_TYPE = symbolFor('react.fundamental');
|
|
60
58
|
REACT_SCOPE_TYPE = symbolFor('react.scope');
|
|
61
59
|
REACT_OPAQUE_ID_TYPE = symbolFor('react.opaque.id');
|
|
62
60
|
exports.unstable_DebugTracingMode = symbolFor('react.debug_trace_mode');
|
|
@@ -1429,7 +1427,7 @@ function isValidElementType(type) {
|
|
|
1429
1427
|
}
|
|
1430
1428
|
|
|
1431
1429
|
if (typeof type === 'object' && type !== null) {
|
|
1432
|
-
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE ||
|
|
1430
|
+
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object
|
|
1433
1431
|
// types supported by any Flight configuration anywhere since
|
|
1434
1432
|
// we don't know which Flight build this will end up being used
|
|
1435
1433
|
// with.
|
|
@@ -2334,19 +2332,6 @@ function createMutableSource(source, getVersion) {
|
|
|
2334
2332
|
return mutableSource;
|
|
2335
2333
|
}
|
|
2336
2334
|
|
|
2337
|
-
{
|
|
2338
|
-
|
|
2339
|
-
try {
|
|
2340
|
-
var frozenObject = Object.freeze({});
|
|
2341
|
-
/* eslint-disable no-new */
|
|
2342
|
-
|
|
2343
|
-
new Map([[frozenObject, null]]);
|
|
2344
|
-
new Set([frozenObject]);
|
|
2345
|
-
/* eslint-enable no-new */
|
|
2346
|
-
} catch (e) {
|
|
2347
|
-
}
|
|
2348
|
-
}
|
|
2349
|
-
|
|
2350
2335
|
function startTransition(scope) {
|
|
2351
2336
|
var prevTransition = ReactCurrentBatchConfig.transition;
|
|
2352
2337
|
ReactCurrentBatchConfig.transition = 1;
|
|
@@ -23,4 +23,4 @@ key:d,ref:k,props:e,_owner:h}};exports.createContext=function(a,b){void 0===b&&(
|
|
|
23
23
|
exports.lazy=function(a){return{$$typeof:v,_payload:{_status:-1,_result:a},_init:Q}};exports.memo=function(a,b){return{$$typeof:u,type:a,compare:void 0===b?null:b}};exports.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};exports.unstable_getCacheForType=function(a){return R.current.getCacheForType(a)};
|
|
24
24
|
exports.unstable_startTransition=function(a){var b=S.transition;S.transition=1;try{a()}finally{S.transition=b}};exports.unstable_useCacheRefresh=function(){return R.current.useCacheRefresh()};exports.unstable_useDeferredValue=function(a){return R.current.useDeferredValue(a)};exports.unstable_useMutableSource=function(a,b,c){return R.current.useMutableSource(a,b,c)};exports.unstable_useOpaqueIdentifier=function(){return R.current.useOpaqueIdentifier()};exports.unstable_useTransition=function(){return R.current.useTransition()};
|
|
25
25
|
exports.useCallback=function(a,b){return R.current.useCallback(a,b)};exports.useContext=function(a,b){return R.current.useContext(a,b)};exports.useDebugValue=function(){};exports.useEffect=function(a,b){return R.current.useEffect(a,b)};exports.useImperativeHandle=function(a,b,c){return R.current.useImperativeHandle(a,b,c)};exports.useLayoutEffect=function(a,b){return R.current.useLayoutEffect(a,b)};exports.useMemo=function(a,b){return R.current.useMemo(a,b)};
|
|
26
|
-
exports.useReducer=function(a,b,c){return R.current.useReducer(a,b,c)};exports.useRef=function(a){return R.current.useRef(a)};exports.useState=function(a){return R.current.useState(a)};exports.version="17.0.2-experimental-
|
|
26
|
+
exports.useReducer=function(a,b,c){return R.current.useReducer(a,b,c)};exports.useRef=function(a){return R.current.useRef(a)};exports.useState=function(a){return R.current.useState(a)};exports.version="17.0.2-experimental-bbb2ba8c8";
|
package/package.json
CHANGED
package/umd/react.development.js
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
(global = global || self, factory(global.React = {}));
|
|
13
13
|
}(this, (function (exports) { 'use strict';
|
|
14
14
|
|
|
15
|
-
var ReactVersion = '17.0.2-experimental-
|
|
15
|
+
var ReactVersion = '17.0.2-experimental-bbb2ba8c8';
|
|
16
16
|
|
|
17
17
|
// ATTENTION
|
|
18
18
|
// When adding new symbols to this file,
|
|
@@ -31,7 +31,6 @@
|
|
|
31
31
|
exports.unstable_SuspenseList = 0xead8;
|
|
32
32
|
var REACT_MEMO_TYPE = 0xead3;
|
|
33
33
|
var REACT_LAZY_TYPE = 0xead4;
|
|
34
|
-
var REACT_FUNDAMENTAL_TYPE = 0xead5;
|
|
35
34
|
var REACT_SCOPE_TYPE = 0xead7;
|
|
36
35
|
var REACT_OPAQUE_ID_TYPE = 0xeae0;
|
|
37
36
|
exports.unstable_DebugTracingMode = 0xeae1;
|
|
@@ -53,7 +52,6 @@
|
|
|
53
52
|
exports.unstable_SuspenseList = symbolFor('react.suspense_list');
|
|
54
53
|
REACT_MEMO_TYPE = symbolFor('react.memo');
|
|
55
54
|
REACT_LAZY_TYPE = symbolFor('react.lazy');
|
|
56
|
-
REACT_FUNDAMENTAL_TYPE = symbolFor('react.fundamental');
|
|
57
55
|
REACT_SCOPE_TYPE = symbolFor('react.scope');
|
|
58
56
|
REACT_OPAQUE_ID_TYPE = symbolFor('react.opaque.id');
|
|
59
57
|
exports.unstable_DebugTracingMode = symbolFor('react.debug_trace_mode');
|
|
@@ -1454,7 +1452,7 @@
|
|
|
1454
1452
|
}
|
|
1455
1453
|
|
|
1456
1454
|
if (typeof type === 'object' && type !== null) {
|
|
1457
|
-
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE ||
|
|
1455
|
+
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object
|
|
1458
1456
|
// types supported by any Flight configuration anywhere since
|
|
1459
1457
|
// we don't know which Flight build this will end up being used
|
|
1460
1458
|
// with.
|
|
@@ -3501,19 +3499,6 @@
|
|
|
3501
3499
|
ReactSharedInternals$1.ReactDebugCurrentFrame = ReactDebugCurrentFrame;
|
|
3502
3500
|
}
|
|
3503
3501
|
|
|
3504
|
-
{
|
|
3505
|
-
|
|
3506
|
-
try {
|
|
3507
|
-
var frozenObject = Object.freeze({});
|
|
3508
|
-
/* eslint-disable no-new */
|
|
3509
|
-
|
|
3510
|
-
new Map([[frozenObject, null]]);
|
|
3511
|
-
new Set([frozenObject]);
|
|
3512
|
-
/* eslint-enable no-new */
|
|
3513
|
-
} catch (e) {
|
|
3514
|
-
}
|
|
3515
|
-
}
|
|
3516
|
-
|
|
3517
3502
|
function startTransition(scope) {
|
|
3518
3503
|
var prevTransition = ReactCurrentBatchConfig.transition;
|
|
3519
3504
|
ReactCurrentBatchConfig.transition = 1;
|
|
@@ -28,5 +28,5 @@ d;c.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error(A(267,a));v
|
|
|
28
28
|
key:e,ref:k,props:d,_owner:g}};c.createContext=function(a,b){void 0===b&&(b=null);a={$$typeof:ka,_calculateChangedBits:b,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:ja,_context:a};return a.Consumer=a};c.createElement=Y;c.createFactory=function(a){var b=Y.bind(null,a);b.type=a;return b};c.createRef=function(){return{current:null}};c.forwardRef=function(a){return{$$typeof:la,render:a}};c.isValidElement=L;c.lazy=function(a){return{$$typeof:na,_payload:{_status:-1,
|
|
29
29
|
_result:a},_init:sa}};c.memo=function(a,b){return{$$typeof:ma,type:a,compare:void 0===b?null:b}};c.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};c.unstable_getCacheForType=function(a){return g.current.getCacheForType(a)};c.unstable_startTransition=function(a){var b=I.transition;I.transition=1;try{a()}finally{I.transition=b}};c.unstable_useCacheRefresh=function(){return g.current.useCacheRefresh()};
|
|
30
30
|
c.unstable_useDeferredValue=function(a){return g.current.useDeferredValue(a)};c.unstable_useMutableSource=function(a,b,c){return g.current.useMutableSource(a,b,c)};c.unstable_useOpaqueIdentifier=function(){return g.current.useOpaqueIdentifier()};c.unstable_useTransition=function(){return g.current.useTransition()};c.useCallback=function(a,b){return g.current.useCallback(a,b)};c.useContext=function(a,b){return g.current.useContext(a,b)};c.useDebugValue=function(a,b){};c.useEffect=function(a,b){return g.current.useEffect(a,
|
|
31
|
-
b)};c.useImperativeHandle=function(a,b,c){return g.current.useImperativeHandle(a,b,c)};c.useLayoutEffect=function(a,b){return g.current.useLayoutEffect(a,b)};c.useMemo=function(a,b){return g.current.useMemo(a,b)};c.useReducer=function(a,b,c){return g.current.useReducer(a,b,c)};c.useRef=function(a){return g.current.useRef(a)};c.useState=function(a){return g.current.useState(a)};c.version="17.0.2-experimental-
|
|
31
|
+
b)};c.useImperativeHandle=function(a,b,c){return g.current.useImperativeHandle(a,b,c)};c.useLayoutEffect=function(a,b){return g.current.useLayoutEffect(a,b)};c.useMemo=function(a,b){return g.current.useMemo(a,b)};c.useReducer=function(a,b,c){return g.current.useReducer(a,b,c)};c.useRef=function(a){return g.current.useRef(a)};c.useState=function(a){return g.current.useState(a)};c.version="17.0.2-experimental-bbb2ba8c8"});
|
|
32
32
|
})();
|
|
@@ -35,5 +35,5 @@ return a}};c.Component=E;c.PureComponent=W;c.__SECRET_INTERNALS_DO_NOT_USE_OR_YO
|
|
|
35
35
|
l){h=Array(l);for(var m=0;m<l;m++)h[m]=arguments[m+2];d.children=h}return{$$typeof:F,type:a.type,key:e,ref:g,props:d,_owner:k}};c.createContext=function(a,b){void 0===b&&(b=null);a={$$typeof:za,_calculateChangedBits:b,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:ya,_context:a};return a.Consumer=a};c.createElement=na;c.createFactory=function(a){var b=na.bind(null,a);b.type=a;return b};c.createRef=function(){return{current:null}};c.forwardRef=function(a){return{$$typeof:Aa,
|
|
36
36
|
render:a}};c.isValidElement=Y;c.lazy=function(a){return{$$typeof:Ca,_payload:{_status:-1,_result:a},_init:Ha}};c.memo=function(a,b){return{$$typeof:Ba,type:a,compare:void 0===b?null:b}};c.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};c.unstable_getCacheForType=function(a){return n.current.getCacheForType(a)};c.unstable_startTransition=function(a){var b=U.transition;U.transition=1;try{a()}finally{U.transition=
|
|
37
37
|
b}};c.unstable_useCacheRefresh=function(){return n.current.useCacheRefresh()};c.unstable_useDeferredValue=function(a){return n.current.useDeferredValue(a)};c.unstable_useMutableSource=function(a,b,c){return n.current.useMutableSource(a,b,c)};c.unstable_useOpaqueIdentifier=function(){return n.current.useOpaqueIdentifier()};c.unstable_useTransition=function(){return n.current.useTransition()};c.useCallback=function(a,b){return n.current.useCallback(a,b)};c.useContext=function(a,b){return n.current.useContext(a,
|
|
38
|
-
b)};c.useDebugValue=function(a,b){};c.useEffect=function(a,b){return n.current.useEffect(a,b)};c.useImperativeHandle=function(a,b,c){return n.current.useImperativeHandle(a,b,c)};c.useLayoutEffect=function(a,b){return n.current.useLayoutEffect(a,b)};c.useMemo=function(a,b){return n.current.useMemo(a,b)};c.useReducer=function(a,b,c){return n.current.useReducer(a,b,c)};c.useRef=function(a){return n.current.useRef(a)};c.useState=function(a){return n.current.useState(a)};c.version="17.0.2-experimental-
|
|
38
|
+
b)};c.useDebugValue=function(a,b){};c.useEffect=function(a,b){return n.current.useEffect(a,b)};c.useImperativeHandle=function(a,b,c){return n.current.useImperativeHandle(a,b,c)};c.useLayoutEffect=function(a,b){return n.current.useLayoutEffect(a,b)};c.useMemo=function(a,b){return n.current.useMemo(a,b)};c.useReducer=function(a,b,c){return n.current.useReducer(a,b,c)};c.useRef=function(a){return n.current.useRef(a)};c.useState=function(a){return n.current.useState(a)};c.version="17.0.2-experimental-bbb2ba8c8"});
|
|
39
39
|
})();
|