react 18.3.0-next-189f70e17-20230216 → 18.3.0-next-ca2cf319f-20230223

Sign up to get free protection for your applications and to get access to all the features.
@@ -17,7 +17,7 @@ if (process.env.NODE_ENV !== "production") {
17
17
  /**
18
18
  * Keeps track of the current dispatcher.
19
19
  */
20
- var ReactCurrentDispatcher = {
20
+ var ReactCurrentDispatcher$1 = {
21
21
  current: null
22
22
  };
23
23
 
@@ -61,7 +61,7 @@ var ReactCurrentOwner = {
61
61
  current: null
62
62
  };
63
63
 
64
- var ReactDebugCurrentFrame = {};
64
+ var ReactDebugCurrentFrame$1 = {};
65
65
  var currentExtraStackFrame = null;
66
66
  function setExtraStackFrame(stack) {
67
67
  {
@@ -70,16 +70,16 @@ function setExtraStackFrame(stack) {
70
70
  }
71
71
 
72
72
  {
73
- ReactDebugCurrentFrame.setExtraStackFrame = function (stack) {
73
+ ReactDebugCurrentFrame$1.setExtraStackFrame = function (stack) {
74
74
  {
75
75
  currentExtraStackFrame = stack;
76
76
  }
77
77
  }; // Stack implementation injected by the current renderer.
78
78
 
79
79
 
80
- ReactDebugCurrentFrame.getCurrentStack = null;
80
+ ReactDebugCurrentFrame$1.getCurrentStack = null;
81
81
 
82
- ReactDebugCurrentFrame.getStackAddendum = function () {
82
+ ReactDebugCurrentFrame$1.getStackAddendum = function () {
83
83
  var stack = ''; // Add an extra top frame while an element is being validated
84
84
 
85
85
  if (currentExtraStackFrame) {
@@ -87,7 +87,7 @@ function setExtraStackFrame(stack) {
87
87
  } // Delegate to the injected renderer-specific implementation
88
88
 
89
89
 
90
- var impl = ReactDebugCurrentFrame.getCurrentStack;
90
+ var impl = ReactDebugCurrentFrame$1.getCurrentStack;
91
91
 
92
92
  if (impl) {
93
93
  stack += impl() || '';
@@ -109,22 +109,22 @@ var enableLegacyHidden = false; // Enables unstable_avoidThisFallback feature in
109
109
 
110
110
  var enableDebugTracing = false; // Track which Fiber(s) schedule render work.
111
111
 
112
- var ContextRegistry = {};
112
+ var ContextRegistry$1 = {};
113
113
 
114
114
  var ReactSharedInternals = {
115
- ReactCurrentDispatcher: ReactCurrentDispatcher,
115
+ ReactCurrentDispatcher: ReactCurrentDispatcher$1,
116
116
  ReactCurrentCache: ReactCurrentCache,
117
117
  ReactCurrentBatchConfig: ReactCurrentBatchConfig,
118
118
  ReactCurrentOwner: ReactCurrentOwner
119
119
  };
120
120
 
121
121
  {
122
- ReactSharedInternals.ReactDebugCurrentFrame = ReactDebugCurrentFrame;
122
+ ReactSharedInternals.ReactDebugCurrentFrame = ReactDebugCurrentFrame$1;
123
123
  ReactSharedInternals.ReactCurrentActQueue = ReactCurrentActQueue;
124
124
  }
125
125
 
126
126
  {
127
- ReactSharedInternals.ContextRegistry = ContextRegistry;
127
+ ReactSharedInternals.ContextRegistry = ContextRegistry$1;
128
128
  }
129
129
 
130
130
  // by calls to these methods by a Babel plugin.
@@ -302,7 +302,7 @@ function generateCacheKey(request) {
302
302
  }
303
303
  }
304
304
 
305
- var ReactVersion = '18.3.0-next-189f70e17-20230216';
305
+ var ReactVersion = '18.3.0-next-ca2cf319f-20230223';
306
306
 
307
307
  // ATTENTION
308
308
  // When adding new symbols to this file,
@@ -921,7 +921,7 @@ var ReactElement = function (type, key, ref, self, source, owner, props) {
921
921
  * See https://reactjs.org/docs/react-api.html#createelement
922
922
  */
923
923
 
924
- function createElement(type, config, children) {
924
+ function createElement$1(type, config, children) {
925
925
  var propName; // Reserved names are extracted
926
926
 
927
927
  var props = {};
@@ -1015,7 +1015,7 @@ function cloneAndReplaceKey(oldElement, newKey) {
1015
1015
  * See https://reactjs.org/docs/react-api.html#cloneelement
1016
1016
  */
1017
1017
 
1018
- function cloneElement(element, config, children) {
1018
+ function cloneElement$1(element, config, children) {
1019
1019
  if (element === null || element === undefined) {
1020
1020
  throw new Error("React.cloneElement(...): The argument must be a React element, but you passed " + element + ".");
1021
1021
  }
@@ -1547,7 +1547,7 @@ function forwardRef(render) {
1547
1547
  return elementType;
1548
1548
  }
1549
1549
 
1550
- var REACT_CLIENT_REFERENCE = Symbol.for('react.client.reference');
1550
+ var REACT_CLIENT_REFERENCE$1 = Symbol.for('react.client.reference');
1551
1551
  function isValidElementType(type) {
1552
1552
  if (typeof type === 'string' || typeof type === 'function') {
1553
1553
  return true;
@@ -1563,7 +1563,7 @@ function isValidElementType(type) {
1563
1563
  // types supported by any Flight configuration anywhere since
1564
1564
  // we don't know which Flight build this will end up being used
1565
1565
  // with.
1566
- type.$$typeof === REACT_CLIENT_REFERENCE || type.getModuleId !== undefined) {
1566
+ type.$$typeof === REACT_CLIENT_REFERENCE$1 || type.getModuleId !== undefined) {
1567
1567
  return true;
1568
1568
  }
1569
1569
  }
@@ -1717,7 +1717,7 @@ function cache(fn) {
1717
1717
  }
1718
1718
 
1719
1719
  function resolveDispatcher() {
1720
- var dispatcher = ReactCurrentDispatcher.current;
1720
+ var dispatcher = ReactCurrentDispatcher$1.current;
1721
1721
 
1722
1722
  {
1723
1723
  if (dispatcher === null) {
@@ -1867,7 +1867,7 @@ function reenableLogs() {
1867
1867
  }
1868
1868
  }
1869
1869
 
1870
- var ReactCurrentDispatcher$1 = ReactSharedInternals.ReactCurrentDispatcher;
1870
+ var ReactCurrentDispatcher = ReactSharedInternals.ReactCurrentDispatcher;
1871
1871
  var prefix;
1872
1872
  function describeBuiltInComponentFrame(name, source, ownerFn) {
1873
1873
  {
@@ -1895,7 +1895,7 @@ var componentFrameCache;
1895
1895
 
1896
1896
  function describeNativeComponentFrame(fn, construct) {
1897
1897
  // If something asked for a stack inside a fake render, it should get ignored.
1898
- if ( !fn || reentry) {
1898
+ if (!fn || reentry) {
1899
1899
  return '';
1900
1900
  }
1901
1901
 
@@ -1915,10 +1915,10 @@ function describeNativeComponentFrame(fn, construct) {
1915
1915
  var previousDispatcher;
1916
1916
 
1917
1917
  {
1918
- previousDispatcher = ReactCurrentDispatcher$1.current; // Set the dispatcher in DEV because this might be call in the render function
1918
+ previousDispatcher = ReactCurrentDispatcher.current; // Set the dispatcher in DEV because this might be call in the render function
1919
1919
  // for warnings.
1920
1920
 
1921
- ReactCurrentDispatcher$1.current = null;
1921
+ ReactCurrentDispatcher.current = null;
1922
1922
  disableLogs();
1923
1923
  }
1924
1924
 
@@ -2037,7 +2037,7 @@ function describeNativeComponentFrame(fn, construct) {
2037
2037
  reentry = false;
2038
2038
 
2039
2039
  {
2040
- ReactCurrentDispatcher$1.current = previousDispatcher;
2040
+ ReactCurrentDispatcher.current = previousDispatcher;
2041
2041
  reenableLogs();
2042
2042
  }
2043
2043
 
@@ -2118,16 +2118,16 @@ function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {
2118
2118
  }
2119
2119
 
2120
2120
  var loggedTypeFailures = {};
2121
- var ReactDebugCurrentFrame$1 = ReactSharedInternals.ReactDebugCurrentFrame;
2121
+ var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;
2122
2122
 
2123
- function setCurrentlyValidatingElement(element) {
2123
+ function setCurrentlyValidatingElement$1(element) {
2124
2124
  {
2125
2125
  if (element) {
2126
2126
  var owner = element._owner;
2127
2127
  var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
2128
- ReactDebugCurrentFrame$1.setExtraStackFrame(stack);
2128
+ ReactDebugCurrentFrame.setExtraStackFrame(stack);
2129
2129
  } else {
2130
- ReactDebugCurrentFrame$1.setExtraStackFrame(null);
2130
+ ReactDebugCurrentFrame.setExtraStackFrame(null);
2131
2131
  }
2132
2132
  }
2133
2133
  }
@@ -2159,31 +2159,31 @@ function checkPropTypes(typeSpecs, values, location, componentName, element) {
2159
2159
  }
2160
2160
 
2161
2161
  if (error$1 && !(error$1 instanceof Error)) {
2162
- setCurrentlyValidatingElement(element);
2162
+ setCurrentlyValidatingElement$1(element);
2163
2163
 
2164
2164
  error('%s: type specification of %s' + ' `%s` is invalid; the type checker ' + 'function must return `null` or an `Error` but returned a %s. ' + 'You may have forgotten to pass an argument to the type checker ' + 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' + 'shape all require an argument).', componentName || 'React class', location, typeSpecName, typeof error$1);
2165
2165
 
2166
- setCurrentlyValidatingElement(null);
2166
+ setCurrentlyValidatingElement$1(null);
2167
2167
  }
2168
2168
 
2169
2169
  if (error$1 instanceof Error && !(error$1.message in loggedTypeFailures)) {
2170
2170
  // Only monitor this failure once because there tends to be a lot of the
2171
2171
  // same error.
2172
2172
  loggedTypeFailures[error$1.message] = true;
2173
- setCurrentlyValidatingElement(element);
2173
+ setCurrentlyValidatingElement$1(element);
2174
2174
 
2175
2175
  error('Failed %s type: %s', location, error$1.message);
2176
2176
 
2177
- setCurrentlyValidatingElement(null);
2177
+ setCurrentlyValidatingElement$1(null);
2178
2178
  }
2179
2179
  }
2180
2180
  }
2181
2181
  }
2182
2182
  }
2183
2183
 
2184
- var REACT_CLIENT_REFERENCE$1 = Symbol.for('react.client.reference');
2184
+ var REACT_CLIENT_REFERENCE = Symbol.for('react.client.reference');
2185
2185
 
2186
- function setCurrentlyValidatingElement$1(element) {
2186
+ function setCurrentlyValidatingElement(element) {
2187
2187
  {
2188
2188
  if (element) {
2189
2189
  var owner = element._owner;
@@ -2289,11 +2289,11 @@ function validateExplicitKey(element, parentType) {
2289
2289
  }
2290
2290
 
2291
2291
  {
2292
- setCurrentlyValidatingElement$1(element);
2292
+ setCurrentlyValidatingElement(element);
2293
2293
 
2294
2294
  error('Each child in a list should have a unique "key" prop.' + '%s%s See https://reactjs.org/link/warning-keys for more information.', currentComponentErrorInfo, childOwner);
2295
2295
 
2296
- setCurrentlyValidatingElement$1(null);
2296
+ setCurrentlyValidatingElement(null);
2297
2297
  }
2298
2298
  }
2299
2299
  /**
@@ -2312,7 +2312,7 @@ function validateChildKeys(node, parentType) {
2312
2312
  return;
2313
2313
  }
2314
2314
 
2315
- if (node.$$typeof === REACT_CLIENT_REFERENCE$1) ; else if (isArray(node)) {
2315
+ if (node.$$typeof === REACT_CLIENT_REFERENCE) ; else if (isArray(node)) {
2316
2316
  for (var i = 0; i < node.length; i++) {
2317
2317
  var child = node[i];
2318
2318
 
@@ -2360,7 +2360,7 @@ function validatePropTypes(element) {
2360
2360
  return;
2361
2361
  }
2362
2362
 
2363
- if (type.$$typeof === REACT_CLIENT_REFERENCE$1) {
2363
+ if (type.$$typeof === REACT_CLIENT_REFERENCE) {
2364
2364
  return;
2365
2365
  }
2366
2366
 
@@ -2407,21 +2407,21 @@ function validateFragmentProps(fragment) {
2407
2407
  var key = keys[i];
2408
2408
 
2409
2409
  if (key !== 'children' && key !== 'key') {
2410
- setCurrentlyValidatingElement$1(fragment);
2410
+ setCurrentlyValidatingElement(fragment);
2411
2411
 
2412
2412
  error('Invalid prop `%s` supplied to `React.Fragment`. ' + 'React.Fragment can only have `key` and `children` props.', key);
2413
2413
 
2414
- setCurrentlyValidatingElement$1(null);
2414
+ setCurrentlyValidatingElement(null);
2415
2415
  break;
2416
2416
  }
2417
2417
  }
2418
2418
 
2419
2419
  if (fragment.ref !== null) {
2420
- setCurrentlyValidatingElement$1(fragment);
2420
+ setCurrentlyValidatingElement(fragment);
2421
2421
 
2422
2422
  error('Invalid attribute `ref` supplied to `React.Fragment`.');
2423
2423
 
2424
- setCurrentlyValidatingElement$1(null);
2424
+ setCurrentlyValidatingElement(null);
2425
2425
  }
2426
2426
  }
2427
2427
  }
@@ -2462,7 +2462,7 @@ function createElementWithValidation(type, props, children) {
2462
2462
  }
2463
2463
  }
2464
2464
 
2465
- var element = createElement.apply(this, arguments); // The result can be nullish if a mock or a custom function is used.
2465
+ var element = createElement$1.apply(this, arguments); // The result can be nullish if a mock or a custom function is used.
2466
2466
  // TODO: Drop this when these are no longer allowed as the type argument.
2467
2467
 
2468
2468
  if (element == null) {
@@ -2489,7 +2489,7 @@ function createElementWithValidation(type, props, children) {
2489
2489
  return element;
2490
2490
  }
2491
2491
  function cloneElementWithValidation(element, props, children) {
2492
- var newElement = cloneElement.apply(this, arguments);
2492
+ var newElement = cloneElement$1.apply(this, arguments);
2493
2493
 
2494
2494
  for (var i = 2; i < arguments.length; i++) {
2495
2495
  validateChildKeys(arguments[i], newElement.type);
@@ -2499,12 +2499,12 @@ function cloneElementWithValidation(element, props, children) {
2499
2499
  return newElement;
2500
2500
  }
2501
2501
 
2502
- var ContextRegistry$1 = ReactSharedInternals.ContextRegistry;
2502
+ var ContextRegistry = ReactSharedInternals.ContextRegistry;
2503
2503
  function createServerContext(globalName, defaultValue) {
2504
2504
 
2505
2505
  var wasDefined = true;
2506
2506
 
2507
- if (!ContextRegistry$1[globalName]) {
2507
+ if (!ContextRegistry[globalName]) {
2508
2508
  wasDefined = false;
2509
2509
  var _context = {
2510
2510
  $$typeof: REACT_SERVER_CONTEXT_TYPE,
@@ -2548,10 +2548,10 @@ function createServerContext(globalName, defaultValue) {
2548
2548
  });
2549
2549
  }
2550
2550
 
2551
- ContextRegistry$1[globalName] = _context;
2551
+ ContextRegistry[globalName] = _context;
2552
2552
  }
2553
2553
 
2554
- var context = ContextRegistry$1[globalName];
2554
+ var context = ContextRegistry[globalName];
2555
2555
 
2556
2556
  if (context._defaultValue === REACT_SERVER_CONTEXT_DEFAULT_VALUE_NOT_LOADED) {
2557
2557
  context._defaultValue = defaultValue;
@@ -2598,8 +2598,8 @@ function startTransition(scope, options) {
2598
2598
  }
2599
2599
  }
2600
2600
 
2601
- var createElement$1 = createElementWithValidation ;
2602
- var cloneElement$1 = cloneElementWithValidation ;
2601
+ var createElement = createElementWithValidation ;
2602
+ var cloneElement = cloneElementWithValidation ;
2603
2603
  var Children = {
2604
2604
  map: mapChildren,
2605
2605
  forEach: forEachChildren,
@@ -2615,8 +2615,8 @@ exports.StrictMode = REACT_STRICT_MODE_TYPE;
2615
2615
  exports.Suspense = REACT_SUSPENSE_TYPE;
2616
2616
  exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = ReactSharedInternals;
2617
2617
  exports.cache = cache;
2618
- exports.cloneElement = cloneElement$1;
2619
- exports.createElement = createElement$1;
2618
+ exports.cloneElement = cloneElement;
2619
+ exports.createElement = createElement;
2620
2620
  exports.createRef = createRef;
2621
2621
  exports.createServerContext = createServerContext;
2622
2622
  exports.forwardRef = forwardRef;
@@ -9,21 +9,21 @@
9
9
  */
10
10
  'use strict';var m=Object.assign,n={current:null};function p(){return new Map}
11
11
  if("function"===typeof fetch){var q=fetch,r=function(a,b){var d=n.current;if(!d||b&&b.signal&&b.signal!==d.getCacheSignal())return q(a,b);if("string"!==typeof a||b){var c=new Request(a,b);if("GET"!==c.method&&"HEAD"!==c.method||c.keepalive)return q(a,b);var e=JSON.stringify([c.method,Array.from(c.headers.entries()),c.mode,c.redirect,c.credentials,c.referrer,c.referrerPolicy,c.integrity]);c=c.url}else e='["GET",[],null,"follow",null,null,null,null]',c=a;var f=d.getCacheForType(p);d=f.get(c);if(void 0===
12
- d)a=q(a,b),f.set(c,[e,a]);else{c=0;for(f=d.length;c<f;c+=2){var g=d[c+1];if(d[c]===e)return a=g,a.then(function(a){return a.clone()})}a=q(a,b);d.push(e,a)}return a.then(function(a){return a.clone()})};m(r,q);try{fetch=r}catch(a){try{globalThis.fetch=r}catch(b){console.warn("React was unable to patch the fetch() function in this environment. Suspensey APIs might not work correctly as a result.")}}}
12
+ d)a=q(a,b),f.set(c,[e,a]);else{c=0;for(f=d.length;c<f;c+=2){var h=d[c+1];if(d[c]===e)return a=h,a.then(function(g){return g.clone()})}a=q(a,b);d.push(e,a)}return a.then(function(g){return g.clone()})};m(r,q);try{fetch=r}catch(a){try{globalThis.fetch=r}catch(b){console.warn("React was unable to patch the fetch() function in this environment. Suspensey APIs might not work correctly as a result.")}}}
13
13
  var t=Symbol.for("react.element"),u=Symbol.for("react.portal"),v=Symbol.for("react.fragment"),w=Symbol.for("react.strict_mode"),x=Symbol.for("react.profiler"),y=Symbol.for("react.provider"),z=Symbol.for("react.server_context"),A=Symbol.for("react.forward_ref"),B=Symbol.for("react.suspense"),C=Symbol.for("react.memo"),aa=Symbol.for("react.lazy"),D=Symbol.for("react.default_value"),E=Symbol.iterator;
14
14
  function ba(a){if(null===a||"object"!==typeof a)return null;a=E&&a[E]||a["@@iterator"];return"function"===typeof a?a:null}function F(a){for(var b="https://reactjs.org/docs/error-decoder.html?invariant="+a,d=1;d<arguments.length;d++)b+="&args[]="+encodeURIComponent(arguments[d]);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."}
15
15
  var G={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},H={};function I(a,b,d){this.props=a;this.context=b;this.refs=H;this.updater=d||G}I.prototype.isReactComponent={};I.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error(F(85));this.updater.enqueueSetState(this,a,b,"setState")};I.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};
16
16
  function J(){}J.prototype=I.prototype;function K(a,b,d){this.props=a;this.context=b;this.refs=H;this.updater=d||G}var L=K.prototype=new J;L.constructor=K;m(L,I.prototype);L.isPureReactComponent=!0;var M=Array.isArray,N=Object.prototype.hasOwnProperty,O={current:null},P={key:!0,ref:!0,__self:!0,__source:!0};function ca(a,b){return{$$typeof:t,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function Q(a){return"object"===typeof a&&null!==a&&a.$$typeof===t}
17
- function escape(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return b[a]})}var R=/\/+/g;function S(a,b){return"object"===typeof a&&null!==a&&null!=a.key?escape(""+a.key):b.toString(36)}
18
- function T(a,b,d,c,e){var f=typeof a;if("undefined"===f||"boolean"===f)a=null;var g=!1;if(null===a)g=!0;else switch(f){case "string":case "number":g=!0;break;case "object":switch(a.$$typeof){case t:case u:g=!0}}if(g)return g=a,e=e(g),a=""===c?"."+S(g,0):c,M(e)?(d="",null!=a&&(d=a.replace(R,"$&/")+"/"),T(e,b,d,"",function(a){return a})):null!=e&&(Q(e)&&(e=ca(e,d+(!e.key||g&&g.key===e.key?"":(""+e.key).replace(R,"$&/")+"/")+a)),b.push(e)),1;g=0;c=""===c?".":c+":";if(M(a))for(var h=0;h<a.length;h++){f=
19
- a[h];var k=c+S(f,h);g+=T(f,b,d,k,e)}else if(k=ba(a),"function"===typeof k)for(a=k.call(a),h=0;!(f=a.next()).done;)f=f.value,k=c+S(f,h++),g+=T(f,b,d,k,e);else if("object"===f)throw b=String(a),Error(F(31,"[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b));return g}function U(a,b,d){if(null==a)return a;var c=[],e=0;T(a,c,"","",function(a){return b.call(d,a,e++)});return c}
20
- function da(a){if(-1===a._status){var b=a._result;b=b();b.then(function(b){if(0===a._status||-1===a._status)a._status=1,a._result=b},function(b){if(0===a._status||-1===a._status)a._status=2,a._result=b});-1===a._status&&(a._status=0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}function ea(){return new WeakMap}function V(){return{s:0,v:void 0,o:null,p:null}}
21
- var W={current:null},X={transition:null},Y={ReactCurrentDispatcher:W,ReactCurrentCache:n,ReactCurrentBatchConfig:X,ReactCurrentOwner:O,ContextRegistry:{}},Z=Y.ContextRegistry;exports.Children={map:U,forEach:function(a,b,d){U(a,function(){b.apply(this,arguments)},d)},count:function(a){var b=0;U(a,function(){b++});return b},toArray:function(a){return U(a,function(a){return a})||[]},only:function(a){if(!Q(a))throw Error(F(143));return a}};exports.Fragment=v;exports.Profiler=x;exports.StrictMode=w;
17
+ function escape(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(d){return b[d]})}var R=/\/+/g;function S(a,b){return"object"===typeof a&&null!==a&&null!=a.key?escape(""+a.key):b.toString(36)}
18
+ function T(a,b,d,c,e){var f=typeof a;if("undefined"===f||"boolean"===f)a=null;var h=!1;if(null===a)h=!0;else switch(f){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case t:case u:h=!0}}if(h)return h=a,e=e(h),a=""===c?"."+S(h,0):c,M(e)?(d="",null!=a&&(d=a.replace(R,"$&/")+"/"),T(e,b,d,"",function(l){return l})):null!=e&&(Q(e)&&(e=ca(e,d+(!e.key||h&&h.key===e.key?"":(""+e.key).replace(R,"$&/")+"/")+a)),b.push(e)),1;h=0;c=""===c?".":c+":";if(M(a))for(var g=0;g<a.length;g++){f=
19
+ a[g];var k=c+S(f,g);h+=T(f,b,d,k,e)}else if(k=ba(a),"function"===typeof k)for(a=k.call(a),g=0;!(f=a.next()).done;)f=f.value,k=c+S(f,g++),h+=T(f,b,d,k,e);else if("object"===f)throw b=String(a),Error(F(31,"[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b));return h}function U(a,b,d){if(null==a)return a;var c=[],e=0;T(a,c,"","",function(f){return b.call(d,f,e++)});return c}
20
+ function da(a){if(-1===a._status){var b=a._result;b=b();b.then(function(d){if(0===a._status||-1===a._status)a._status=1,a._result=d},function(d){if(0===a._status||-1===a._status)a._status=2,a._result=d});-1===a._status&&(a._status=0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}function ea(){return new WeakMap}function V(){return{s:0,v:void 0,o:null,p:null}}
21
+ var W={current:null},X={transition:null},Y={ReactCurrentDispatcher:W,ReactCurrentCache:n,ReactCurrentBatchConfig:X,ReactCurrentOwner:O,ContextRegistry:{}},Z=Y.ContextRegistry;exports.Children={map:U,forEach:function(a,b,d){U(a,function(){b.apply(this,arguments)},d)},count:function(a){var b=0;U(a,function(){b++});return b},toArray:function(a){return U(a,function(b){return b})||[]},only:function(a){if(!Q(a))throw Error(F(143));return a}};exports.Fragment=v;exports.Profiler=x;exports.StrictMode=w;
22
22
  exports.Suspense=B;exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=Y;
23
- exports.cache=function(a){return function(){var b=n.current;if(!b)return a.apply(null,arguments);var d=b.getCacheForType(ea);b=d.get(a);void 0===b&&(b=V(),d.set(a,b));d=0;for(var c=arguments.length;d<c;d++){var e=arguments[d];if("function"===typeof e||"object"===typeof e&&null!==e){var f=b.o;null===f&&(b.o=f=new WeakMap);b=f.get(e);void 0===b&&(b=V(),f.set(e,b))}else f=b.p,null===f&&(b.p=f=new Map),b=f.get(e),void 0===b&&(b=V(),f.set(e,b))}if(1===b.s)return b.v;if(2===b.s)throw b.v;try{var g=a.apply(null,
24
- arguments);d=b;d.s=1;return d.v=g}catch(h){throw g=b,g.s=2,g.v=h,h;}}};
25
- exports.cloneElement=function(a,b,d){if(null===a||void 0===a)throw Error(F(267,a));var c=m({},a.props),e=a.key,f=a.ref,g=a._owner;if(null!=b){void 0!==b.ref&&(f=b.ref,g=O.current);void 0!==b.key&&(e=""+b.key);if(a.type&&a.type.defaultProps)var h=a.type.defaultProps;for(k in b)N.call(b,k)&&!P.hasOwnProperty(k)&&(c[k]=void 0===b[k]&&void 0!==h?h[k]:b[k])}var k=arguments.length-2;if(1===k)c.children=d;else if(1<k){h=Array(k);for(var l=0;l<k;l++)h[l]=arguments[l+2];c.children=h}return{$$typeof:t,type:a.type,
26
- key:e,ref:f,props:c,_owner:g}};exports.createElement=function(a,b,d){var c,e={},f=null,g=null;if(null!=b)for(c in void 0!==b.ref&&(g=b.ref),void 0!==b.key&&(f=""+b.key),b)N.call(b,c)&&!P.hasOwnProperty(c)&&(e[c]=b[c]);var h=arguments.length-2;if(1===h)e.children=d;else if(1<h){for(var k=Array(h),l=0;l<h;l++)k[l]=arguments[l+2];e.children=k}if(a&&a.defaultProps)for(c in h=a.defaultProps,h)void 0===e[c]&&(e[c]=h[c]);return{$$typeof:t,type:a,key:f,ref:g,props:e,_owner:O.current}};exports.createRef=function(){return{current:null}};
23
+ exports.cache=function(a){return function(){var b=n.current;if(!b)return a.apply(null,arguments);var d=b.getCacheForType(ea);b=d.get(a);void 0===b&&(b=V(),d.set(a,b));d=0;for(var c=arguments.length;d<c;d++){var e=arguments[d];if("function"===typeof e||"object"===typeof e&&null!==e){var f=b.o;null===f&&(b.o=f=new WeakMap);b=f.get(e);void 0===b&&(b=V(),f.set(e,b))}else f=b.p,null===f&&(b.p=f=new Map),b=f.get(e),void 0===b&&(b=V(),f.set(e,b))}if(1===b.s)return b.v;if(2===b.s)throw b.v;try{var h=a.apply(null,
24
+ arguments);d=b;d.s=1;return d.v=h}catch(g){throw h=b,h.s=2,h.v=g,g;}}};
25
+ exports.cloneElement=function(a,b,d){if(null===a||void 0===a)throw Error(F(267,a));var c=m({},a.props),e=a.key,f=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(f=b.ref,h=O.current);void 0!==b.key&&(e=""+b.key);if(a.type&&a.type.defaultProps)var g=a.type.defaultProps;for(k in b)N.call(b,k)&&!P.hasOwnProperty(k)&&(c[k]=void 0===b[k]&&void 0!==g?g[k]:b[k])}var k=arguments.length-2;if(1===k)c.children=d;else if(1<k){g=Array(k);for(var l=0;l<k;l++)g[l]=arguments[l+2];c.children=g}return{$$typeof:t,type:a.type,
26
+ key:e,ref:f,props:c,_owner:h}};exports.createElement=function(a,b,d){var c,e={},f=null,h=null;if(null!=b)for(c in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(f=""+b.key),b)N.call(b,c)&&!P.hasOwnProperty(c)&&(e[c]=b[c]);var g=arguments.length-2;if(1===g)e.children=d;else if(1<g){for(var k=Array(g),l=0;l<g;l++)k[l]=arguments[l+2];e.children=k}if(a&&a.defaultProps)for(c in g=a.defaultProps,g)void 0===e[c]&&(e[c]=g[c]);return{$$typeof:t,type:a,key:f,ref:h,props:e,_owner:O.current}};exports.createRef=function(){return{current:null}};
27
27
  exports.createServerContext=function(a,b){var d=!0;if(!Z[a]){d=!1;var c={$$typeof:z,_currentValue:b,_currentValue2:b,_defaultValue:b,_threadCount:0,Provider:null,Consumer:null,_globalName:a};c.Provider={$$typeof:y,_context:c};Z[a]=c}c=Z[a];if(c._defaultValue===D)c._defaultValue=b,c._currentValue===D&&(c._currentValue=b),c._currentValue2===D&&(c._currentValue2=b);else if(d)throw Error(F(429,a));return c};exports.forwardRef=function(a){return{$$typeof:A,render:a}};exports.isValidElement=Q;
28
28
  exports.lazy=function(a){return{$$typeof:aa,_payload:{_status:-1,_result:a},_init:da}};exports.memo=function(a,b){return{$$typeof:C,type:a,compare:void 0===b?null:b}};exports.startTransition=function(a){var b=X.transition;X.transition={};try{a()}finally{X.transition=b}};exports.use=function(a){return W.current.use(a)};exports.useCallback=function(a,b){return W.current.useCallback(a,b)};exports.useContext=function(a){return W.current.useContext(a)};exports.useDebugValue=function(){};
29
- exports.useId=function(){return W.current.useId()};exports.useMemo=function(a,b){return W.current.useMemo(a,b)};exports.version="18.3.0-next-189f70e17-20230216";
29
+ exports.useId=function(){return W.current.useId()};exports.useMemo=function(a,b){return W.current.useMemo(a,b)};exports.version="18.3.0-next-ca2cf319f-20230223";
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "keywords": [
5
5
  "react"
6
6
  ],
7
- "version": "18.3.0-next-189f70e17-20230216",
7
+ "version": "18.3.0-next-ca2cf319f-20230223",
8
8
  "homepage": "https://reactjs.org/",
9
9
  "bugs": "https://github.com/facebook/react/issues",
10
10
  "license": "MIT",