react 0.0.0-experimental-b8fda6cab → 0.0.0-experimental-2bf4805e4
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-unstable-shared-subset.development.js +24 -6
- package/cjs/react-unstable-shared-subset.production.min.js +7 -7
- package/cjs/react.development.js +9 -9
- package/cjs/react.production.min.js +7 -7
- package/package.json +1 -1
- package/umd/react.development.js +9 -9
- package/umd/react.production.min.js +6 -6
- package/umd/react.profiling.min.js +6 -6
|
@@ -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.3-experimental-
|
|
18
|
+
var ReactVersion = '17.0.3-experimental-2bf4805e4';
|
|
19
19
|
|
|
20
20
|
// ATTENTION
|
|
21
21
|
// When adding new symbols to this file,
|
|
@@ -31,7 +31,7 @@ var REACT_PROVIDER_TYPE = 0xeacd;
|
|
|
31
31
|
var REACT_CONTEXT_TYPE = 0xeace;
|
|
32
32
|
var REACT_FORWARD_REF_TYPE = 0xead0;
|
|
33
33
|
exports.Suspense = 0xead1;
|
|
34
|
-
exports.
|
|
34
|
+
exports.SuspenseList = 0xead8;
|
|
35
35
|
var REACT_MEMO_TYPE = 0xead3;
|
|
36
36
|
var REACT_LAZY_TYPE = 0xead4;
|
|
37
37
|
var REACT_SCOPE_TYPE = 0xead7;
|
|
@@ -52,7 +52,7 @@ if (typeof Symbol === 'function' && Symbol.for) {
|
|
|
52
52
|
REACT_CONTEXT_TYPE = symbolFor('react.context');
|
|
53
53
|
REACT_FORWARD_REF_TYPE = symbolFor('react.forward_ref');
|
|
54
54
|
exports.Suspense = symbolFor('react.suspense');
|
|
55
|
-
exports.
|
|
55
|
+
exports.SuspenseList = symbolFor('react.suspense_list');
|
|
56
56
|
REACT_MEMO_TYPE = symbolFor('react.memo');
|
|
57
57
|
REACT_LAZY_TYPE = symbolFor('react.lazy');
|
|
58
58
|
REACT_SCOPE_TYPE = symbolFor('react.scope');
|
|
@@ -502,7 +502,7 @@ function getComponentNameFromType(type) {
|
|
|
502
502
|
case exports.Suspense:
|
|
503
503
|
return 'Suspense';
|
|
504
504
|
|
|
505
|
-
case exports.
|
|
505
|
+
case exports.SuspenseList:
|
|
506
506
|
return 'SuspenseList';
|
|
507
507
|
|
|
508
508
|
case REACT_CACHE_TYPE:
|
|
@@ -1328,7 +1328,7 @@ function isValidElementType(type) {
|
|
|
1328
1328
|
} // Note: typeof might be other than 'symbol' or 'number' (e.g. if it's a polyfill).
|
|
1329
1329
|
|
|
1330
1330
|
|
|
1331
|
-
if (type === exports.Fragment || type === exports.Profiler || type === exports.unstable_DebugTracingMode || type === exports.StrictMode || type === exports.Suspense || type === exports.
|
|
1331
|
+
if (type === exports.Fragment || type === exports.Profiler || type === exports.unstable_DebugTracingMode || type === exports.StrictMode || type === exports.Suspense || type === exports.SuspenseList || type === REACT_LEGACY_HIDDEN_TYPE || enableScopeAPI || type === REACT_CACHE_TYPE) {
|
|
1332
1332
|
return true;
|
|
1333
1333
|
}
|
|
1334
1334
|
|
|
@@ -1438,6 +1438,10 @@ function useDebugValue(value, formatterFn) {
|
|
|
1438
1438
|
return dispatcher.useDebugValue(value, formatterFn);
|
|
1439
1439
|
}
|
|
1440
1440
|
}
|
|
1441
|
+
function useTransition() {
|
|
1442
|
+
var dispatcher = resolveDispatcher();
|
|
1443
|
+
return dispatcher.useTransition();
|
|
1444
|
+
}
|
|
1441
1445
|
function useDeferredValue(value) {
|
|
1442
1446
|
var dispatcher = resolveDispatcher();
|
|
1443
1447
|
return dispatcher.useDeferredValue(value);
|
|
@@ -1754,7 +1758,7 @@ function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {
|
|
|
1754
1758
|
case exports.Suspense:
|
|
1755
1759
|
return describeBuiltInComponentFrame('Suspense');
|
|
1756
1760
|
|
|
1757
|
-
case exports.
|
|
1761
|
+
case exports.SuspenseList:
|
|
1758
1762
|
return describeBuiltInComponentFrame('SuspenseList');
|
|
1759
1763
|
}
|
|
1760
1764
|
|
|
@@ -2179,6 +2183,17 @@ function createMutableSource(source, getVersion) {
|
|
|
2179
2183
|
return mutableSource;
|
|
2180
2184
|
}
|
|
2181
2185
|
|
|
2186
|
+
function startTransition(scope) {
|
|
2187
|
+
var prevTransition = ReactCurrentBatchConfig.transition;
|
|
2188
|
+
ReactCurrentBatchConfig.transition = 1;
|
|
2189
|
+
|
|
2190
|
+
try {
|
|
2191
|
+
scope();
|
|
2192
|
+
} finally {
|
|
2193
|
+
ReactCurrentBatchConfig.transition = prevTransition;
|
|
2194
|
+
}
|
|
2195
|
+
}
|
|
2196
|
+
|
|
2182
2197
|
var createElement$1 = createElementWithValidation ;
|
|
2183
2198
|
var cloneElement$1 = cloneElementWithValidation ;
|
|
2184
2199
|
var Children = {
|
|
@@ -2198,6 +2213,7 @@ exports.forwardRef = forwardRef;
|
|
|
2198
2213
|
exports.isValidElement = isValidElement;
|
|
2199
2214
|
exports.lazy = lazy;
|
|
2200
2215
|
exports.memo = memo;
|
|
2216
|
+
exports.startTransition = startTransition;
|
|
2201
2217
|
exports.unstable_createMutableSource = createMutableSource;
|
|
2202
2218
|
exports.unstable_getCacheForType = getCacheForType;
|
|
2203
2219
|
exports.unstable_useDeferredValue = useDeferredValue;
|
|
@@ -2206,7 +2222,9 @@ exports.unstable_useOpaqueIdentifier = useOpaqueIdentifier;
|
|
|
2206
2222
|
exports.useCallback = useCallback;
|
|
2207
2223
|
exports.useContext = useContext;
|
|
2208
2224
|
exports.useDebugValue = useDebugValue;
|
|
2225
|
+
exports.useDeferredValue = useDeferredValue;
|
|
2209
2226
|
exports.useMemo = useMemo;
|
|
2227
|
+
exports.useTransition = useTransition;
|
|
2210
2228
|
exports.version = ReactVersion;
|
|
2211
2229
|
})();
|
|
2212
2230
|
}
|
|
@@ -6,18 +6,18 @@
|
|
|
6
6
|
* This source code is licensed under the MIT license found in the
|
|
7
7
|
* LICENSE file in the root directory of this source tree.
|
|
8
8
|
*/
|
|
9
|
-
'use strict';var l=require("object-assign"),n=60103,p=60106;exports.Fragment=60107;exports.StrictMode=60108;exports.Profiler=60114;var q=60112;exports.Suspense=60113;exports.
|
|
10
|
-
if("function"===typeof Symbol&&Symbol.for){var u=Symbol.for;n=u("react.element");p=u("react.portal");exports.Fragment=u("react.fragment");exports.StrictMode=u("react.strict_mode");exports.Profiler=u("react.profiler");q=u("react.forward_ref");exports.Suspense=u("react.suspense");exports.
|
|
9
|
+
'use strict';var l=require("object-assign"),n=60103,p=60106;exports.Fragment=60107;exports.StrictMode=60108;exports.Profiler=60114;var q=60112;exports.Suspense=60113;exports.SuspenseList=60120;var r=60115,t=60116;exports.unstable_DebugTracingMode=60129;
|
|
10
|
+
if("function"===typeof Symbol&&Symbol.for){var u=Symbol.for;n=u("react.element");p=u("react.portal");exports.Fragment=u("react.fragment");exports.StrictMode=u("react.strict_mode");exports.Profiler=u("react.profiler");q=u("react.forward_ref");exports.Suspense=u("react.suspense");exports.SuspenseList=u("react.suspense_list");r=u("react.memo");t=u("react.lazy");exports.unstable_DebugTracingMode=u("react.debug_trace_mode")}var v="function"===typeof Symbol&&Symbol.iterator;
|
|
11
11
|
function w(a){if(null===a||"object"!==typeof a)return null;a=v&&a[v]||a["@@iterator"];return"function"===typeof a?a:null}function x(a){for(var b="https://reactjs.org/docs/error-decoder.html?invariant="+a,e=1;e<arguments.length;e++)b+="&args[]="+encodeURIComponent(arguments[e]);return"Minified React error #"+a+"; visit "+b+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}
|
|
12
12
|
var y={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},z={};function A(a,b,e){this.props=a;this.context=b;this.refs=z;this.updater=e||y}A.prototype.isReactComponent={};A.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error(x(85));this.updater.enqueueSetState(this,a,b,"setState")};A.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};
|
|
13
13
|
function B(){}B.prototype=A.prototype;function C(a,b,e){this.props=a;this.context=b;this.refs=z;this.updater=e||y}var D=C.prototype=new B;D.constructor=C;l(D,A.prototype);D.isPureReactComponent=!0;var E=Array.isArray,F=Object.prototype.hasOwnProperty,G={current:null},H={key:!0,ref:!0,__self:!0,__source:!0};function I(a,b){return{$$typeof:n,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function J(a){return"object"===typeof a&&null!==a&&a.$$typeof===n}
|
|
14
14
|
function escape(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return b[a]})}var K=/\/+/g;function L(a,b){return"object"===typeof a&&null!==a&&null!=a.key?escape(""+a.key):b.toString(36)}
|
|
15
15
|
function M(a,b,e,d,c){var k=typeof a;if("undefined"===k||"boolean"===k)a=null;var h=!1;if(null===a)h=!0;else switch(k){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case n:case p:h=!0}}if(h)return h=a,c=c(h),a=""===d?"."+L(h,0):d,E(c)?(e="",null!=a&&(e=a.replace(K,"$&/")+"/"),M(c,b,e,"",function(a){return a})):null!=c&&(J(c)&&(c=I(c,e+(!c.key||h&&h.key===c.key?"":(""+c.key).replace(K,"$&/")+"/")+a)),b.push(c)),1;h=0;d=""===d?".":d+":";if(E(a))for(var g=0;g<a.length;g++){k=
|
|
16
16
|
a[g];var f=d+L(k,g);h+=M(k,b,e,f,c)}else if(f=w(a),"function"===typeof f)for(a=f.call(a),g=0;!(k=a.next()).done;)k=k.value,f=d+L(k,g++),h+=M(k,b,e,f,c);else if("object"===k)throw b=""+a,Error(x(31,"[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b));return h}function N(a,b,e){if(null==a)return a;var d=[],c=0;M(a,d,"","",function(a){return b.call(e,a,c++)});return d}
|
|
17
|
-
function O(a){if(-1===a._status){var b=a._result;b=b();a._status=0;a._result=b;b.then(function(b){0===a._status&&(b=b.default,a._status=1,a._result=b)},function(b){0===a._status&&(a._status=2,a._result=b)})}if(1===a._status)return a._result;throw a._result;}var P={current:null}
|
|
18
|
-
exports.Children={map:N,forEach:function(a,b,e){N(a,function(){b.apply(this,arguments)},e)},count:function(a){var b=0;N(a,function(){b++});return b},toArray:function(a){return N(a,function(a){return a})||[]},only:function(a){if(!J(a))throw Error(x(143));return a}};exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=
|
|
17
|
+
function O(a){if(-1===a._status){var b=a._result;b=b();a._status=0;a._result=b;b.then(function(b){0===a._status&&(b=b.default,a._status=1,a._result=b)},function(b){0===a._status&&(a._status=2,a._result=b)})}if(1===a._status)return a._result;throw a._result;}var P={current:null};function Q(a){return P.current.useDeferredValue(a)}var R={transition:0},S={ReactCurrentDispatcher:P,ReactCurrentBatchConfig:R,ReactCurrentOwner:G,IsSomeRendererActing:{current:!1},assign:l};
|
|
18
|
+
exports.Children={map:N,forEach:function(a,b,e){N(a,function(){b.apply(this,arguments)},e)},count:function(a){var b=0;N(a,function(){b++});return b},toArray:function(a){return N(a,function(a){return a})||[]},only:function(a){if(!J(a))throw Error(x(143));return a}};exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=S;
|
|
19
19
|
exports.cloneElement=function(a,b,e){if(null===a||void 0===a)throw Error(x(267,a));var d=l({},a.props),c=a.key,k=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(k=b.ref,h=G.current);void 0!==b.key&&(c=""+b.key);if(a.type&&a.type.defaultProps)var g=a.type.defaultProps;for(f in b)F.call(b,f)&&!H.hasOwnProperty(f)&&(d[f]=void 0===b[f]&&void 0!==g?g[f]:b[f])}var f=arguments.length-2;if(1===f)d.children=e;else if(1<f){g=Array(f);for(var m=0;m<f;m++)g[m]=arguments[m+2];d.children=g}return{$$typeof:n,type:a.type,
|
|
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)&&!H.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:G.current}};exports.createRef=function(){return{current:null}};
|
|
21
|
-
exports.forwardRef=function(a){return{$$typeof:q,render:a}};exports.isValidElement=J;exports.lazy=function(a){return{$$typeof:t,_payload:{_status:-1,_result:a},_init:O}};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}};
|
|
22
|
-
exports.
|
|
23
|
-
exports.version="17.0.3-experimental-
|
|
21
|
+
exports.forwardRef=function(a){return{$$typeof:q,render:a}};exports.isValidElement=J;exports.lazy=function(a){return{$$typeof:t,_payload:{_status:-1,_result:a},_init:O}};exports.memo=function(a,b){return{$$typeof:r,type:a,compare:void 0===b?null:b}};exports.startTransition=function(a){var b=R.transition;R.transition=1;try{a()}finally{R.transition=b}};exports.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};
|
|
22
|
+
exports.unstable_getCacheForType=function(a){return P.current.getCacheForType(a)};exports.unstable_useDeferredValue=Q;exports.unstable_useMutableSource=function(a,b,e){return P.current.useMutableSource(a,b,e)};exports.unstable_useOpaqueIdentifier=function(){return P.current.useOpaqueIdentifier()};exports.useCallback=function(a,b){return P.current.useCallback(a,b)};exports.useContext=function(a){return P.current.useContext(a)};exports.useDebugValue=function(){};exports.useDeferredValue=Q;
|
|
23
|
+
exports.useMemo=function(a,b){return P.current.useMemo(a,b)};exports.useTransition=function(){return P.current.useTransition()};exports.version="17.0.3-experimental-2bf4805e4";
|
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.3-experimental-
|
|
18
|
+
var ReactVersion = '17.0.3-experimental-2bf4805e4';
|
|
19
19
|
|
|
20
20
|
// ATTENTION
|
|
21
21
|
// When adding new symbols to this file,
|
|
@@ -31,7 +31,7 @@ var REACT_PROVIDER_TYPE = 0xeacd;
|
|
|
31
31
|
var REACT_CONTEXT_TYPE = 0xeace;
|
|
32
32
|
var REACT_FORWARD_REF_TYPE = 0xead0;
|
|
33
33
|
exports.Suspense = 0xead1;
|
|
34
|
-
exports.
|
|
34
|
+
exports.SuspenseList = 0xead8;
|
|
35
35
|
var REACT_MEMO_TYPE = 0xead3;
|
|
36
36
|
var REACT_LAZY_TYPE = 0xead4;
|
|
37
37
|
var REACT_SCOPE_TYPE = 0xead7;
|
|
@@ -52,7 +52,7 @@ if (typeof Symbol === 'function' && Symbol.for) {
|
|
|
52
52
|
REACT_CONTEXT_TYPE = symbolFor('react.context');
|
|
53
53
|
REACT_FORWARD_REF_TYPE = symbolFor('react.forward_ref');
|
|
54
54
|
exports.Suspense = symbolFor('react.suspense');
|
|
55
|
-
exports.
|
|
55
|
+
exports.SuspenseList = symbolFor('react.suspense_list');
|
|
56
56
|
REACT_MEMO_TYPE = symbolFor('react.memo');
|
|
57
57
|
REACT_LAZY_TYPE = symbolFor('react.lazy');
|
|
58
58
|
REACT_SCOPE_TYPE = symbolFor('react.scope');
|
|
@@ -502,7 +502,7 @@ function getComponentNameFromType(type) {
|
|
|
502
502
|
case exports.Suspense:
|
|
503
503
|
return 'Suspense';
|
|
504
504
|
|
|
505
|
-
case exports.
|
|
505
|
+
case exports.SuspenseList:
|
|
506
506
|
return 'SuspenseList';
|
|
507
507
|
|
|
508
508
|
case exports.unstable_Cache:
|
|
@@ -1439,7 +1439,7 @@ function isValidElementType(type) {
|
|
|
1439
1439
|
} // Note: typeof might be other than 'symbol' or 'number' (e.g. if it's a polyfill).
|
|
1440
1440
|
|
|
1441
1441
|
|
|
1442
|
-
if (type === exports.Fragment || type === exports.Profiler || type === exports.unstable_DebugTracingMode || type === exports.StrictMode || type === exports.Suspense || type === exports.
|
|
1442
|
+
if (type === exports.Fragment || type === exports.Profiler || type === exports.unstable_DebugTracingMode || type === exports.StrictMode || type === exports.Suspense || type === exports.SuspenseList || type === exports.unstable_LegacyHidden || enableScopeAPI || type === exports.unstable_Cache) {
|
|
1443
1443
|
return true;
|
|
1444
1444
|
}
|
|
1445
1445
|
|
|
@@ -1898,7 +1898,7 @@ function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {
|
|
|
1898
1898
|
case exports.Suspense:
|
|
1899
1899
|
return describeBuiltInComponentFrame('Suspense');
|
|
1900
1900
|
|
|
1901
|
-
case exports.
|
|
1901
|
+
case exports.SuspenseList:
|
|
1902
1902
|
return describeBuiltInComponentFrame('SuspenseList');
|
|
1903
1903
|
}
|
|
1904
1904
|
|
|
@@ -2386,17 +2386,16 @@ exports.forwardRef = forwardRef;
|
|
|
2386
2386
|
exports.isValidElement = isValidElement;
|
|
2387
2387
|
exports.lazy = lazy;
|
|
2388
2388
|
exports.memo = memo;
|
|
2389
|
+
exports.startTransition = startTransition;
|
|
2389
2390
|
exports.unstable_createMutableSource = createMutableSource;
|
|
2390
2391
|
exports.unstable_getCacheForType = getCacheForType;
|
|
2391
|
-
exports.unstable_startTransition = startTransition;
|
|
2392
2392
|
exports.unstable_useCacheRefresh = useCacheRefresh;
|
|
2393
|
-
exports.unstable_useDeferredValue = useDeferredValue;
|
|
2394
2393
|
exports.unstable_useMutableSource = useMutableSource;
|
|
2395
2394
|
exports.unstable_useOpaqueIdentifier = useOpaqueIdentifier;
|
|
2396
|
-
exports.unstable_useTransition = useTransition;
|
|
2397
2395
|
exports.useCallback = useCallback;
|
|
2398
2396
|
exports.useContext = useContext;
|
|
2399
2397
|
exports.useDebugValue = useDebugValue;
|
|
2398
|
+
exports.useDeferredValue = useDeferredValue;
|
|
2400
2399
|
exports.useEffect = useEffect;
|
|
2401
2400
|
exports.useImperativeHandle = useImperativeHandle;
|
|
2402
2401
|
exports.useLayoutEffect = useLayoutEffect;
|
|
@@ -2404,6 +2403,7 @@ exports.useMemo = useMemo;
|
|
|
2404
2403
|
exports.useReducer = useReducer;
|
|
2405
2404
|
exports.useRef = useRef;
|
|
2406
2405
|
exports.useState = useState;
|
|
2406
|
+
exports.useTransition = useTransition;
|
|
2407
2407
|
exports.version = ReactVersion;
|
|
2408
2408
|
})();
|
|
2409
2409
|
}
|
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
* This source code is licensed under the MIT license found in the
|
|
7
7
|
* LICENSE file in the root directory of this source tree.
|
|
8
8
|
*/
|
|
9
|
-
'use strict';var l=require("object-assign"),m=60103,p=60106;exports.Fragment=60107;exports.StrictMode=60108;exports.Profiler=60114;var q=60109,r=60110,t=60112;exports.Suspense=60113;exports.
|
|
10
|
-
if("function"===typeof Symbol&&Symbol.for){var w=Symbol.for;m=w("react.element");p=w("react.portal");exports.Fragment=w("react.fragment");exports.StrictMode=w("react.strict_mode");exports.Profiler=w("react.profiler");q=w("react.provider");r=w("react.context");t=w("react.forward_ref");exports.Suspense=w("react.suspense");exports.
|
|
11
|
-
|
|
9
|
+
'use strict';var l=require("object-assign"),m=60103,p=60106;exports.Fragment=60107;exports.StrictMode=60108;exports.Profiler=60114;var q=60109,r=60110,t=60112;exports.Suspense=60113;exports.SuspenseList=60120;var u=60115,v=60116;exports.unstable_DebugTracingMode=60129;exports.unstable_LegacyHidden=60131;exports.unstable_Cache=60132;
|
|
10
|
+
if("function"===typeof Symbol&&Symbol.for){var w=Symbol.for;m=w("react.element");p=w("react.portal");exports.Fragment=w("react.fragment");exports.StrictMode=w("react.strict_mode");exports.Profiler=w("react.profiler");q=w("react.provider");r=w("react.context");t=w("react.forward_ref");exports.Suspense=w("react.suspense");exports.SuspenseList=w("react.suspense_list");u=w("react.memo");v=w("react.lazy");exports.unstable_DebugTracingMode=w("react.debug_trace_mode");exports.unstable_LegacyHidden=w("react.legacy_hidden");
|
|
11
|
+
exports.unstable_Cache=w("react.cache")}var x="function"===typeof Symbol&&Symbol.iterator;function y(a){if(null===a||"object"!==typeof a)return null;a=x&&a[x]||a["@@iterator"];return"function"===typeof a?a:null}
|
|
12
12
|
function z(a){for(var b="https://reactjs.org/docs/error-decoder.html?invariant="+a,c=1;c<arguments.length;c++)b+="&args[]="+encodeURIComponent(arguments[c]);return"Minified React error #"+a+"; visit "+b+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var A={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},B={};
|
|
13
13
|
function C(a,b,c){this.props=a;this.context=b;this.refs=B;this.updater=c||A}C.prototype.isReactComponent={};C.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error(z(85));this.updater.enqueueSetState(this,a,b,"setState")};C.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};function D(){}D.prototype=C.prototype;function E(a,b,c){this.props=a;this.context=b;this.refs=B;this.updater=c||A}var F=E.prototype=new D;
|
|
14
14
|
F.constructor=E;l(F,C.prototype);F.isPureReactComponent=!0;var G=Array.isArray,H=Object.prototype.hasOwnProperty,I={current:null},J={key:!0,ref:!0,__self:!0,__source:!0};
|
|
@@ -20,7 +20,7 @@ function R(a){if(-1===a._status){var b=a._result;b=b();a._status=0;a._result=b;b
|
|
|
20
20
|
exports.Children={map:Q,forEach:function(a,b,c){Q(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;Q(a,function(){b++});return b},toArray:function(a){return Q(a,function(a){return a})||[]},only:function(a){if(!M(a))throw Error(z(143));return a}};exports.Component=C;exports.PureComponent=E;exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=U;
|
|
21
21
|
exports.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error(z(267,a));var e=l({},a.props),d=a.key,k=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(k=b.ref,h=I.current);void 0!==b.key&&(d=""+b.key);if(a.type&&a.type.defaultProps)var g=a.type.defaultProps;for(f in b)H.call(b,f)&&!J.hasOwnProperty(f)&&(e[f]=void 0===b[f]&&void 0!==g?g[f]:b[f])}var f=arguments.length-2;if(1===f)e.children=c;else if(1<f){g=Array(f);for(var n=0;n<f;n++)g[n]=arguments[n+2];e.children=g}return{$$typeof:m,type:a.type,
|
|
22
22
|
key:d,ref:k,props:e,_owner:h}};exports.createContext=function(a){a={$$typeof:r,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:q,_context:a};return a.Consumer=a};exports.createElement=K;exports.createFactory=function(a){var b=K.bind(null,a);b.type=a;return b};exports.createRef=function(){return{current:null}};exports.forwardRef=function(a){return{$$typeof:t,render:a}};exports.isValidElement=M;
|
|
23
|
-
exports.lazy=function(a){return{$$typeof:v,_payload:{_status:-1,_result:a},_init:R}};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 S.current.getCacheForType(a)};
|
|
24
|
-
exports.
|
|
25
|
-
exports.
|
|
26
|
-
exports.
|
|
23
|
+
exports.lazy=function(a){return{$$typeof:v,_payload:{_status:-1,_result:a},_init:R}};exports.memo=function(a,b){return{$$typeof:u,type:a,compare:void 0===b?null:b}};exports.startTransition=function(a){var b=T.transition;T.transition=1;try{a()}finally{T.transition=b}};exports.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};exports.unstable_getCacheForType=function(a){return S.current.getCacheForType(a)};
|
|
24
|
+
exports.unstable_useCacheRefresh=function(){return S.current.useCacheRefresh()};exports.unstable_useMutableSource=function(a,b,c){return S.current.useMutableSource(a,b,c)};exports.unstable_useOpaqueIdentifier=function(){return S.current.useOpaqueIdentifier()};exports.useCallback=function(a,b){return S.current.useCallback(a,b)};exports.useContext=function(a){return S.current.useContext(a)};exports.useDebugValue=function(){};exports.useDeferredValue=function(a){return S.current.useDeferredValue(a)};
|
|
25
|
+
exports.useEffect=function(a,b){return S.current.useEffect(a,b)};exports.useImperativeHandle=function(a,b,c){return S.current.useImperativeHandle(a,b,c)};exports.useLayoutEffect=function(a,b){return S.current.useLayoutEffect(a,b)};exports.useMemo=function(a,b){return S.current.useMemo(a,b)};exports.useReducer=function(a,b,c){return S.current.useReducer(a,b,c)};exports.useRef=function(a){return S.current.useRef(a)};exports.useState=function(a){return S.current.useState(a)};exports.useTransition=function(){return S.current.useTransition()};
|
|
26
|
+
exports.version="17.0.3-experimental-2bf4805e4";
|
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.3-experimental-
|
|
15
|
+
var ReactVersion = '17.0.3-experimental-2bf4805e4';
|
|
16
16
|
|
|
17
17
|
// ATTENTION
|
|
18
18
|
// When adding new symbols to this file,
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
var REACT_CONTEXT_TYPE = 0xeace;
|
|
29
29
|
var REACT_FORWARD_REF_TYPE = 0xead0;
|
|
30
30
|
exports.Suspense = 0xead1;
|
|
31
|
-
exports.
|
|
31
|
+
exports.SuspenseList = 0xead8;
|
|
32
32
|
var REACT_MEMO_TYPE = 0xead3;
|
|
33
33
|
var REACT_LAZY_TYPE = 0xead4;
|
|
34
34
|
var REACT_SCOPE_TYPE = 0xead7;
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
REACT_CONTEXT_TYPE = symbolFor('react.context');
|
|
50
50
|
REACT_FORWARD_REF_TYPE = symbolFor('react.forward_ref');
|
|
51
51
|
exports.Suspense = symbolFor('react.suspense');
|
|
52
|
-
exports.
|
|
52
|
+
exports.SuspenseList = symbolFor('react.suspense_list');
|
|
53
53
|
REACT_MEMO_TYPE = symbolFor('react.memo');
|
|
54
54
|
REACT_LAZY_TYPE = symbolFor('react.lazy');
|
|
55
55
|
REACT_SCOPE_TYPE = symbolFor('react.scope');
|
|
@@ -527,7 +527,7 @@
|
|
|
527
527
|
case exports.Suspense:
|
|
528
528
|
return 'Suspense';
|
|
529
529
|
|
|
530
|
-
case exports.
|
|
530
|
+
case exports.SuspenseList:
|
|
531
531
|
return 'SuspenseList';
|
|
532
532
|
|
|
533
533
|
case exports.unstable_Cache:
|
|
@@ -1464,7 +1464,7 @@
|
|
|
1464
1464
|
} // Note: typeof might be other than 'symbol' or 'number' (e.g. if it's a polyfill).
|
|
1465
1465
|
|
|
1466
1466
|
|
|
1467
|
-
if (type === exports.Fragment || type === exports.Profiler || type === exports.unstable_DebugTracingMode || type === exports.StrictMode || type === exports.Suspense || type === exports.
|
|
1467
|
+
if (type === exports.Fragment || type === exports.Profiler || type === exports.unstable_DebugTracingMode || type === exports.StrictMode || type === exports.Suspense || type === exports.SuspenseList || type === exports.unstable_LegacyHidden || enableScopeAPI || type === exports.unstable_Cache) {
|
|
1468
1468
|
return true;
|
|
1469
1469
|
}
|
|
1470
1470
|
|
|
@@ -1923,7 +1923,7 @@
|
|
|
1923
1923
|
case exports.Suspense:
|
|
1924
1924
|
return describeBuiltInComponentFrame('Suspense');
|
|
1925
1925
|
|
|
1926
|
-
case exports.
|
|
1926
|
+
case exports.SuspenseList:
|
|
1927
1927
|
return describeBuiltInComponentFrame('SuspenseList');
|
|
1928
1928
|
}
|
|
1929
1929
|
|
|
@@ -3039,17 +3039,16 @@
|
|
|
3039
3039
|
exports.isValidElement = isValidElement;
|
|
3040
3040
|
exports.lazy = lazy;
|
|
3041
3041
|
exports.memo = memo;
|
|
3042
|
+
exports.startTransition = startTransition;
|
|
3042
3043
|
exports.unstable_createMutableSource = createMutableSource;
|
|
3043
3044
|
exports.unstable_getCacheForType = getCacheForType;
|
|
3044
|
-
exports.unstable_startTransition = startTransition;
|
|
3045
3045
|
exports.unstable_useCacheRefresh = useCacheRefresh;
|
|
3046
|
-
exports.unstable_useDeferredValue = useDeferredValue;
|
|
3047
3046
|
exports.unstable_useMutableSource = useMutableSource;
|
|
3048
3047
|
exports.unstable_useOpaqueIdentifier = useOpaqueIdentifier;
|
|
3049
|
-
exports.unstable_useTransition = useTransition;
|
|
3050
3048
|
exports.useCallback = useCallback;
|
|
3051
3049
|
exports.useContext = useContext;
|
|
3052
3050
|
exports.useDebugValue = useDebugValue;
|
|
3051
|
+
exports.useDeferredValue = useDeferredValue;
|
|
3053
3052
|
exports.useEffect = useEffect;
|
|
3054
3053
|
exports.useImperativeHandle = useImperativeHandle;
|
|
3055
3054
|
exports.useLayoutEffect = useLayoutEffect;
|
|
@@ -3057,6 +3056,7 @@
|
|
|
3057
3056
|
exports.useReducer = useReducer;
|
|
3058
3057
|
exports.useRef = useRef;
|
|
3059
3058
|
exports.useState = useState;
|
|
3059
|
+
exports.useTransition = useTransition;
|
|
3060
3060
|
exports.version = ReactVersion;
|
|
3061
3061
|
|
|
3062
3062
|
})));
|
|
@@ -14,8 +14,8 @@ typeof a&&null!==a&&null!=a.key?ua(""+a.key):b.toString(36)}function B(a,b,k,c,e
|
|
|
14
14
|
b=b();a._status=0;a._result=b;b.then(function(b){0===a._status&&(b=b.default,a._status=1,a._result=b)},function(b){0===a._status&&(a._status=2,a._result=b)})}if(1===a._status)return a._result;throw a._result;}function N(a,b){var k=a.length;a.push(b);a:for(;0<k;){var c=k-1>>>1,d=a[c];if(0<D(d,b))a[c]=b,a[k]=d,k=c;else break a}}function m(a){return 0===a.length?null:a[0]}function E(a){if(0===a.length)return null;var b=a[0],c=a.pop();if(c!==b){a[0]=c;a:for(var d=0,e=a.length,f=e>>>1;d<f;){var g=2*(d+
|
|
15
15
|
1)-1,n=a[g],h=g+1,m=a[h];if(0>D(n,c))h<e&&0>D(m,n)?(a[d]=m,a[h]=c,d=h):(a[d]=n,a[g]=c,d=g);else if(h<e&&0>D(m,c))a[d]=m,a[h]=c,d=h;else break a}}return b}function D(a,b){var c=a.sortIndex-b.sortIndex;return 0!==c?c:a.id-b.id}function O(a){for(var b=m(q);null!==b;){if(null===b.callback)E(q);else if(b.startTime<=a)E(q),b.sortIndex=b.expirationTime,N(p,b);else break;b=m(q)}}function P(a){y=!1;O(a);if(!r)if(null!==m(p))r=!0,Q(R);else{var b=m(q);null!==b&&S(P,b.startTime-a)}}function R(a,b){r=!1;y&&(y=
|
|
16
16
|
!1,ha(z),z=-1);F=!0;var c=f;try{O(b);for(n=m(p);null!==n&&(!(n.expirationTime>b)||a&&!ia());){var d=n.callback;if("function"===typeof d){n.callback=null;f=n.priorityLevel;var e=d(n.expirationTime<=b);b=t();"function"===typeof e?n.callback=e:n===m(p)&&E(p);O(b)}else E(p);n=m(p)}if(null!==n)var g=!0;else{var x=m(q);null!==x&&S(P,x.startTime-b);g=!1}return g}finally{n=null,f=c,F=!1}}function ia(){return t()>=ja}function Q(a){G=a;H||(H=!0,T())}function S(a,b){z=wa(function(){a(t())},b)}var v=60103,da=
|
|
17
|
-
60106;c.Fragment=60107;c.StrictMode=60108;c.Profiler=60114;var ka=60109,la=60110,ma=60112;c.Suspense=60113;c.
|
|
18
|
-
c.Suspense=d("react.suspense");c.
|
|
17
|
+
60106;c.Fragment=60107;c.StrictMode=60108;c.Profiler=60114;var ka=60109,la=60110,ma=60112;c.Suspense=60113;c.SuspenseList=60120;var na=60115,oa=60116;c.unstable_DebugTracingMode=60129;c.unstable_LegacyHidden=60131;c.unstable_Cache=60132;if("function"===typeof Symbol&&Symbol.for){var d=Symbol.for;v=d("react.element");da=d("react.portal");c.Fragment=d("react.fragment");c.StrictMode=d("react.strict_mode");c.Profiler=d("react.profiler");ka=d("react.provider");la=d("react.context");ma=d("react.forward_ref");
|
|
18
|
+
c.Suspense=d("react.suspense");c.SuspenseList=d("react.suspense_list");na=d("react.memo");oa=d("react.lazy");c.unstable_DebugTracingMode=d("react.debug_trace_mode");c.unstable_LegacyHidden=d("react.legacy_hidden");c.unstable_Cache=d("react.cache")}var V="function"===typeof Symbol&&Symbol.iterator,xa=Object.prototype.hasOwnProperty,U=Object.assign||function(a,b){if(null==a)throw new TypeError("Object.assign target cannot be null or undefined");for(var c=Object(a),d=1;d<arguments.length;d++){var e=
|
|
19
19
|
arguments[d];if(null!=e){var f=void 0;e=Object(e);for(f in e)xa.call(e,f)&&(c[f]=e[f])}}return c},X={isMounted:function(a){return!1},enqueueForceUpdate:function(a,b,c){},enqueueReplaceState:function(a,b,c,d){},enqueueSetState:function(a,b,c,d){}},W={};u.prototype.isReactComponent={};u.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error(A(85));this.updater.enqueueSetState(this,a,b,"setState")};u.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,
|
|
20
20
|
a,"forceUpdate")};Y.prototype=u.prototype;d=J.prototype=new Y;d.constructor=J;U(d,u.prototype);d.isPureReactComponent=!0;var ea=Array.isArray,ba=Object.prototype.hasOwnProperty,K={current:null},ca={key:!0,ref:!0,__self:!0,__source:!0},fa=/\/+/g,g={current:null},I={transition:0};if("object"===typeof performance&&"function"===typeof performance.now){var ya=performance;var t=function(){return ya.now()}}else{var pa=Date,za=pa.now();t=function(){return pa.now()-za}}var p=[],q=[],Aa=1,n=null,f=3,F=!1,r=
|
|
21
21
|
!1,y=!1,wa=window.setTimeout,ha=window.clearTimeout,qa=window.setImmediate;"undefined"!==typeof console&&(d=window.cancelAnimationFrame,"function"!==typeof window.requestAnimationFrame&&console.error("This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills"),"function"!==typeof d&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills"));
|
|
@@ -25,8 +25,8 @@ unstable_IdlePriority:5,unstable_LowPriority:4,unstable_runWithPriority:function
|
|
|
25
25
|
unstable_requestPaint:function(){},unstable_continueExecution:function(){r||F||(r=!0,Q(R))},unstable_pauseExecution:function(){},unstable_getFirstCallbackNode:function(){return m(p)},get unstable_now(){return t},unstable_forceFrameRate:function(a){0>a||125<a?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):ra=0<a?Math.floor(1E3/a):5},unstable_Profiling:null}};c.Children={map:C,forEach:function(a,b,c){C(a,function(){b.apply(this,
|
|
26
26
|
arguments)},c)},count:function(a){var b=0;C(a,function(){b++});return b},toArray:function(a){return C(a,function(a){return a})||[]},only:function(a){if(!L(a))throw Error(A(143));return a}};c.Component=u;c.PureComponent=J;c.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=d;c.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error(A(267,a));var d=U({},a.props),e=a.key,f=a.ref,k=a._owner;if(null!=b){void 0!==b.ref&&(f=b.ref,k=K.current);void 0!==b.key&&(e=""+b.key);if(a.type&&a.type.defaultProps)var g=
|
|
27
27
|
a.type.defaultProps;for(h in b)ba.call(b,h)&&!ca.hasOwnProperty(h)&&(d[h]=void 0===b[h]&&void 0!==g?g[h]:b[h])}var h=arguments.length-2;if(1===h)d.children=c;else if(1<h){g=Array(h);for(var m=0;m<h;m++)g[m]=arguments[m+2];d.children=g}return{$$typeof:v,type:a.type,key:e,ref:f,props:d,_owner:k}};c.createContext=function(a){a={$$typeof:la,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:ka,_context:a};return a.Consumer=a};c.createElement=Z;c.createFactory=
|
|
28
|
-
function(a){var b=Z.bind(null,a);b.type=a;return b};c.createRef=function(){return{current:null}};c.forwardRef=function(a){return{$$typeof:ma,render:a}};c.isValidElement=L;c.lazy=function(a){return{$$typeof:oa,_payload:{_status:-1,_result:a},_init:va}};c.memo=function(a,b){return{$$typeof:na,type:a,compare:void 0===b?null:b}};c.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,
|
|
29
|
-
function(a){return g.current.getCacheForType(a)};c.
|
|
30
|
-
|
|
31
|
-
c.
|
|
28
|
+
function(a){var b=Z.bind(null,a);b.type=a;return b};c.createRef=function(){return{current:null}};c.forwardRef=function(a){return{$$typeof:ma,render:a}};c.isValidElement=L;c.lazy=function(a){return{$$typeof:oa,_payload:{_status:-1,_result:a},_init:va}};c.memo=function(a,b){return{$$typeof:na,type:a,compare:void 0===b?null:b}};c.startTransition=function(a){var b=I.transition;I.transition=1;try{a()}finally{I.transition=b}};c.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,
|
|
29
|
+
_workInProgressVersionSecondary:null}};c.unstable_getCacheForType=function(a){return g.current.getCacheForType(a)};c.unstable_useCacheRefresh=function(){return g.current.useCacheRefresh()};c.unstable_useMutableSource=function(a,b,c){return g.current.useMutableSource(a,b,c)};c.unstable_useOpaqueIdentifier=function(){return g.current.useOpaqueIdentifier()};c.useCallback=function(a,b){return g.current.useCallback(a,b)};c.useContext=function(a){return g.current.useContext(a)};c.useDebugValue=function(a,
|
|
30
|
+
b){};c.useDeferredValue=function(a){return g.current.useDeferredValue(a)};c.useEffect=function(a,b){return g.current.useEffect(a,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)};
|
|
31
|
+
c.useTransition=function(){return g.current.useTransition()};c.version="17.0.3-experimental-2bf4805e4"});
|
|
32
32
|
})();
|
|
@@ -14,8 +14,8 @@ typeof a&&null!==a&&null!=a.key?ua(""+a.key):b.toString(36)}function B(a,b,k,c,e
|
|
|
14
14
|
b=b();a._status=0;a._result=b;b.then(function(b){0===a._status&&(b=b.default,a._status=1,a._result=b)},function(b){0===a._status&&(a._status=2,a._result=b)})}if(1===a._status)return a._result;throw a._result;}function N(a,b){var k=a.length;a.push(b);a:for(;0<k;){var c=k-1>>>1,d=a[c];if(0<D(d,b))a[c]=b,a[k]=d,k=c;else break a}}function m(a){return 0===a.length?null:a[0]}function E(a){if(0===a.length)return null;var b=a[0],c=a.pop();if(c!==b){a[0]=c;a:for(var d=0,e=a.length,f=e>>>1;d<f;){var g=2*(d+
|
|
15
15
|
1)-1,n=a[g],h=g+1,m=a[h];if(0>D(n,c))h<e&&0>D(m,n)?(a[d]=m,a[h]=c,d=h):(a[d]=n,a[g]=c,d=g);else if(h<e&&0>D(m,c))a[d]=m,a[h]=c,d=h;else break a}}return b}function D(a,b){var c=a.sortIndex-b.sortIndex;return 0!==c?c:a.id-b.id}function O(a){for(var b=m(q);null!==b;){if(null===b.callback)E(q);else if(b.startTime<=a)E(q),b.sortIndex=b.expirationTime,N(p,b);else break;b=m(q)}}function P(a){y=!1;O(a);if(!r)if(null!==m(p))r=!0,Q(R);else{var b=m(q);null!==b&&S(P,b.startTime-a)}}function R(a,b){r=!1;y&&(y=
|
|
16
16
|
!1,ha(z),z=-1);F=!0;var c=f;try{O(b);for(n=m(p);null!==n&&(!(n.expirationTime>b)||a&&!ia());){var d=n.callback;if("function"===typeof d){n.callback=null;f=n.priorityLevel;var e=d(n.expirationTime<=b);b=t();"function"===typeof e?n.callback=e:n===m(p)&&E(p);O(b)}else E(p);n=m(p)}if(null!==n)var g=!0;else{var x=m(q);null!==x&&S(P,x.startTime-b);g=!1}return g}finally{n=null,f=c,F=!1}}function ia(){return t()>=ja}function Q(a){G=a;H||(H=!0,T())}function S(a,b){z=wa(function(){a(t())},b)}var v=60103,da=
|
|
17
|
-
60106;c.Fragment=60107;c.StrictMode=60108;c.Profiler=60114;var ka=60109,la=60110,ma=60112;c.Suspense=60113;c.
|
|
18
|
-
c.Suspense=d("react.suspense");c.
|
|
17
|
+
60106;c.Fragment=60107;c.StrictMode=60108;c.Profiler=60114;var ka=60109,la=60110,ma=60112;c.Suspense=60113;c.SuspenseList=60120;var na=60115,oa=60116;c.unstable_DebugTracingMode=60129;c.unstable_LegacyHidden=60131;c.unstable_Cache=60132;if("function"===typeof Symbol&&Symbol.for){var d=Symbol.for;v=d("react.element");da=d("react.portal");c.Fragment=d("react.fragment");c.StrictMode=d("react.strict_mode");c.Profiler=d("react.profiler");ka=d("react.provider");la=d("react.context");ma=d("react.forward_ref");
|
|
18
|
+
c.Suspense=d("react.suspense");c.SuspenseList=d("react.suspense_list");na=d("react.memo");oa=d("react.lazy");c.unstable_DebugTracingMode=d("react.debug_trace_mode");c.unstable_LegacyHidden=d("react.legacy_hidden");c.unstable_Cache=d("react.cache")}var V="function"===typeof Symbol&&Symbol.iterator,xa=Object.prototype.hasOwnProperty,U=Object.assign||function(a,b){if(null==a)throw new TypeError("Object.assign target cannot be null or undefined");for(var c=Object(a),d=1;d<arguments.length;d++){var e=
|
|
19
19
|
arguments[d];if(null!=e){var f=void 0;e=Object(e);for(f in e)xa.call(e,f)&&(c[f]=e[f])}}return c},X={isMounted:function(a){return!1},enqueueForceUpdate:function(a,b,c){},enqueueReplaceState:function(a,b,c,d){},enqueueSetState:function(a,b,c,d){}},W={};u.prototype.isReactComponent={};u.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error(A(85));this.updater.enqueueSetState(this,a,b,"setState")};u.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,
|
|
20
20
|
a,"forceUpdate")};Y.prototype=u.prototype;d=J.prototype=new Y;d.constructor=J;U(d,u.prototype);d.isPureReactComponent=!0;var ea=Array.isArray,ba=Object.prototype.hasOwnProperty,K={current:null},ca={key:!0,ref:!0,__self:!0,__source:!0},fa=/\/+/g,g={current:null},I={transition:0};if("object"===typeof performance&&"function"===typeof performance.now){var ya=performance;var t=function(){return ya.now()}}else{var pa=Date,za=pa.now();t=function(){return pa.now()-za}}var p=[],q=[],Aa=1,n=null,f=3,F=!1,r=
|
|
21
21
|
!1,y=!1,wa=window.setTimeout,ha=window.clearTimeout,qa=window.setImmediate;"undefined"!==typeof console&&(d=window.cancelAnimationFrame,"function"!==typeof window.requestAnimationFrame&&console.error("This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills"),"function"!==typeof d&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills"));
|
|
@@ -25,8 +25,8 @@ unstable_IdlePriority:5,unstable_LowPriority:4,unstable_runWithPriority:function
|
|
|
25
25
|
unstable_requestPaint:function(){},unstable_continueExecution:function(){r||F||(r=!0,Q(R))},unstable_pauseExecution:function(){},unstable_getFirstCallbackNode:function(){return m(p)},get unstable_now(){return t},unstable_forceFrameRate:function(a){0>a||125<a?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):ra=0<a?Math.floor(1E3/a):5},unstable_Profiling:null}};c.Children={map:C,forEach:function(a,b,c){C(a,function(){b.apply(this,
|
|
26
26
|
arguments)},c)},count:function(a){var b=0;C(a,function(){b++});return b},toArray:function(a){return C(a,function(a){return a})||[]},only:function(a){if(!L(a))throw Error(A(143));return a}};c.Component=u;c.PureComponent=J;c.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=d;c.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error(A(267,a));var d=U({},a.props),e=a.key,f=a.ref,k=a._owner;if(null!=b){void 0!==b.ref&&(f=b.ref,k=K.current);void 0!==b.key&&(e=""+b.key);if(a.type&&a.type.defaultProps)var g=
|
|
27
27
|
a.type.defaultProps;for(h in b)ba.call(b,h)&&!ca.hasOwnProperty(h)&&(d[h]=void 0===b[h]&&void 0!==g?g[h]:b[h])}var h=arguments.length-2;if(1===h)d.children=c;else if(1<h){g=Array(h);for(var m=0;m<h;m++)g[m]=arguments[m+2];d.children=g}return{$$typeof:v,type:a.type,key:e,ref:f,props:d,_owner:k}};c.createContext=function(a){a={$$typeof:la,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:ka,_context:a};return a.Consumer=a};c.createElement=Z;c.createFactory=
|
|
28
|
-
function(a){var b=Z.bind(null,a);b.type=a;return b};c.createRef=function(){return{current:null}};c.forwardRef=function(a){return{$$typeof:ma,render:a}};c.isValidElement=L;c.lazy=function(a){return{$$typeof:oa,_payload:{_status:-1,_result:a},_init:va}};c.memo=function(a,b){return{$$typeof:na,type:a,compare:void 0===b?null:b}};c.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,
|
|
29
|
-
function(a){return g.current.getCacheForType(a)};c.
|
|
30
|
-
|
|
31
|
-
c.
|
|
28
|
+
function(a){var b=Z.bind(null,a);b.type=a;return b};c.createRef=function(){return{current:null}};c.forwardRef=function(a){return{$$typeof:ma,render:a}};c.isValidElement=L;c.lazy=function(a){return{$$typeof:oa,_payload:{_status:-1,_result:a},_init:va}};c.memo=function(a,b){return{$$typeof:na,type:a,compare:void 0===b?null:b}};c.startTransition=function(a){var b=I.transition;I.transition=1;try{a()}finally{I.transition=b}};c.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,
|
|
29
|
+
_workInProgressVersionSecondary:null}};c.unstable_getCacheForType=function(a){return g.current.getCacheForType(a)};c.unstable_useCacheRefresh=function(){return g.current.useCacheRefresh()};c.unstable_useMutableSource=function(a,b,c){return g.current.useMutableSource(a,b,c)};c.unstable_useOpaqueIdentifier=function(){return g.current.useOpaqueIdentifier()};c.useCallback=function(a,b){return g.current.useCallback(a,b)};c.useContext=function(a){return g.current.useContext(a)};c.useDebugValue=function(a,
|
|
30
|
+
b){};c.useDeferredValue=function(a){return g.current.useDeferredValue(a)};c.useEffect=function(a,b){return g.current.useEffect(a,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)};
|
|
31
|
+
c.useTransition=function(){return g.current.useTransition()};c.version="17.0.3-experimental-2bf4805e4"});
|
|
32
32
|
})();
|