Comparing version 18.3.0-canary-1d5667a12-20240102 to 18.3.0-canary-1dba980e1f-20241220
@@ -30,2 +30,3 @@ /** | ||
var REACT_CONTEXT_TYPE = Symbol.for('react.context'); | ||
var REACT_SERVER_CONTEXT_TYPE = Symbol.for('react.server_context'); | ||
var REACT_FORWARD_REF_TYPE = Symbol.for('react.forward_ref'); | ||
@@ -103,3 +104,3 @@ var REACT_SUSPENSE_TYPE = Symbol.for('react.suspense'); | ||
var enableDebugTracing = false; | ||
var enableDebugTracing = false; // Track which Fiber(s) schedule render work. | ||
@@ -228,2 +229,8 @@ var REACT_CLIENT_REFERENCE$1 = Symbol.for('react.client.reference'); | ||
case REACT_SERVER_CONTEXT_TYPE: | ||
{ | ||
var context2 = type; | ||
return (context2.displayName || context2._globalName) + '.Provider'; | ||
} | ||
} | ||
@@ -356,15 +363,3 @@ } | ||
} | ||
/** | ||
* Leverages native browser/VM stack frames to get proper details (e.g. | ||
* filename, line + col number) for a single component in a component stack. We | ||
* do this by: | ||
* (1) throwing and catching an error in the function - this will be our | ||
* control error. | ||
* (2) calling the component which will eventually throw an error that we'll | ||
* catch - this will be our sample error. | ||
* (3) diffing the control and sample error stacks to find the stack frame | ||
* which represents our component. | ||
*/ | ||
function describeNativeComponentFrame(fn, construct) { | ||
@@ -384,2 +379,3 @@ // If something asked for a stack inside a fake render, it should get ignored. | ||
var control; | ||
reentry = true; | ||
@@ -398,138 +394,79 @@ var previousPrepareStackTrace = Error.prepareStackTrace; // $FlowFixMe[incompatible-type] It does accept undefined. | ||
} | ||
/** | ||
* Finding a common stack frame between sample and control errors can be | ||
* tricky given the different types and levels of stack trace truncation from | ||
* different JS VMs. So instead we'll attempt to control what that common | ||
* frame should be through this object method: | ||
* Having both the sample and control errors be in the function under the | ||
* `DescribeNativeComponentFrameRoot` property, + setting the `name` and | ||
* `displayName` properties of the function ensures that a stack | ||
* frame exists that has the method name `DescribeNativeComponentFrameRoot` in | ||
* it for both control and sample stacks. | ||
*/ | ||
try { | ||
// This should throw. | ||
if (construct) { | ||
// Something should be setting the props in the constructor. | ||
var Fake = function () { | ||
throw Error(); | ||
}; // $FlowFixMe[prop-missing] | ||
var RunInRootFrame = { | ||
DetermineComponentFrameRoot: function () { | ||
var control; | ||
try { | ||
// This should throw. | ||
if (construct) { | ||
// Something should be setting the props in the constructor. | ||
var Fake = function () { | ||
throw Error(); | ||
}; // $FlowFixMe[prop-missing] | ||
Object.defineProperty(Fake.prototype, 'props', { | ||
set: function () { | ||
// We use a throwing setter instead of frozen or non-writable props | ||
// because that won't throw in a non-strict mode function. | ||
throw Error(); | ||
} | ||
}); | ||
if (typeof Reflect === 'object' && Reflect.construct) { | ||
// We construct a different control for this case to include any extra | ||
// frames added by the construct call. | ||
try { | ||
Reflect.construct(Fake, []); | ||
} catch (x) { | ||
control = x; | ||
} | ||
Object.defineProperty(Fake.prototype, 'props', { | ||
set: function () { | ||
// We use a throwing setter instead of frozen or non-writable props | ||
// because that won't throw in a non-strict mode function. | ||
throw Error(); | ||
} | ||
}); | ||
Reflect.construct(fn, [], Fake); | ||
} else { | ||
try { | ||
Fake.call(); | ||
} catch (x) { | ||
control = x; | ||
} // $FlowFixMe[prop-missing] found when upgrading Flow | ||
if (typeof Reflect === 'object' && Reflect.construct) { | ||
// We construct a different control for this case to include any extra | ||
// frames added by the construct call. | ||
try { | ||
Reflect.construct(Fake, []); | ||
} catch (x) { | ||
control = x; | ||
} | ||
Reflect.construct(fn, [], Fake); | ||
} else { | ||
try { | ||
Fake.call(); | ||
} catch (x) { | ||
control = x; | ||
} // $FlowFixMe[prop-missing] found when upgrading Flow | ||
fn.call(Fake.prototype); | ||
} | ||
} else { | ||
try { | ||
throw Error(); | ||
} catch (x) { | ||
control = x; | ||
} // TODO(luna): This will currently only throw if the function component | ||
// tries to access React/ReactDOM/props. We should probably make this throw | ||
// in simple components too | ||
fn.call(Fake.prototype); | ||
} | ||
} else { | ||
try { | ||
throw Error(); | ||
} catch (x) { | ||
control = x; | ||
} // TODO(luna): This will currently only throw if the function component | ||
// tries to access React/ReactDOM/props. We should probably make this throw | ||
// in simple components too | ||
var maybePromise = fn(); // If the function component returns a promise, it's likely an async | ||
// component, which we don't yet support. Attach a noop catch handler to | ||
// silence the error. | ||
// TODO: Implement component stacks for async client components? | ||
var maybePromise = fn(); // If the function component returns a promise, it's likely an async | ||
// component, which we don't yet support. Attach a noop catch handler to | ||
// silence the error. | ||
// TODO: Implement component stacks for async client components? | ||
if (maybePromise && typeof maybePromise.catch === 'function') { | ||
maybePromise.catch(function () {}); | ||
} | ||
} | ||
} catch (sample) { | ||
// This is inlined manually because closure doesn't do it for us. | ||
if (sample && control && typeof sample.stack === 'string') { | ||
return [sample.stack, control.stack]; | ||
} | ||
if (maybePromise && typeof maybePromise.catch === 'function') { | ||
maybePromise.catch(function () {}); | ||
} | ||
return [null, null]; | ||
} | ||
}; // $FlowFixMe[prop-missing] | ||
RunInRootFrame.DetermineComponentFrameRoot.displayName = 'DetermineComponentFrameRoot'; | ||
var namePropDescriptor = Object.getOwnPropertyDescriptor(RunInRootFrame.DetermineComponentFrameRoot, 'name'); // Before ES6, the `name` property was not configurable. | ||
if (namePropDescriptor && namePropDescriptor.configurable) { | ||
// V8 utilizes a function's `name` property when generating a stack trace. | ||
Object.defineProperty(RunInRootFrame.DetermineComponentFrameRoot, // Configurable properties can be updated even if its writable descriptor | ||
// is set to `false`. | ||
// $FlowFixMe[cannot-write] | ||
'name', { | ||
value: 'DetermineComponentFrameRoot' | ||
}); | ||
} | ||
try { | ||
var _RunInRootFrame$Deter = RunInRootFrame.DetermineComponentFrameRoot(), | ||
sampleStack = _RunInRootFrame$Deter[0], | ||
controlStack = _RunInRootFrame$Deter[1]; | ||
if (sampleStack && controlStack) { | ||
} catch (sample) { | ||
// This is inlined manually because closure doesn't do it for us. | ||
if (sample && control && typeof sample.stack === 'string') { | ||
// This extracts the first frame from the sample that isn't also in the control. | ||
// Skipping one frame that we assume is the frame that calls the two. | ||
var sampleLines = sampleStack.split('\n'); | ||
var controlLines = controlStack.split('\n'); | ||
var s = 0; | ||
var c = 0; | ||
var sampleLines = sample.stack.split('\n'); | ||
var controlLines = control.stack.split('\n'); | ||
var s = sampleLines.length - 1; | ||
var c = controlLines.length - 1; | ||
while (s < sampleLines.length && !sampleLines[s].includes('DetermineComponentFrameRoot')) { | ||
s++; | ||
while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) { | ||
// We expect at least one stack frame to be shared. | ||
// Typically this will be the root most one. However, stack frames may be | ||
// cut off due to maximum stack limits. In this case, one maybe cut off | ||
// earlier than the other. We assume that the sample is longer or the same | ||
// and there for cut off earlier. So we should find the root most frame in | ||
// the sample somewhere in the control. | ||
c--; | ||
} | ||
while (c < controlLines.length && !controlLines[c].includes('DetermineComponentFrameRoot')) { | ||
c++; | ||
} // We couldn't find our intentionally injected common root frame, attempt | ||
// to find another common root frame by search from the bottom of the | ||
// control stack... | ||
if (s === sampleLines.length || c === controlLines.length) { | ||
s = sampleLines.length - 1; | ||
c = controlLines.length - 1; | ||
while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) { | ||
// We expect at least one stack frame to be shared. | ||
// Typically this will be the root most one. However, stack frames may be | ||
// cut off due to maximum stack limits. In this case, one maybe cut off | ||
// earlier than the other. We assume that the sample is longer or the same | ||
// and there for cut off earlier. So we should find the root most frame in | ||
// the sample somewhere in the control. | ||
c--; | ||
} | ||
} | ||
for (; s >= 1 && c >= 0; s--, c--) { | ||
@@ -561,3 +498,3 @@ // Next we find the first one that isn't the same which should be the | ||
if (true) { | ||
{ | ||
if (typeof fn === 'function') { | ||
@@ -796,3 +733,3 @@ componentFrameCache.set(fn, _frame); | ||
if (willCoercionThrow(value)) { | ||
error('The provided key is an unsupported type %s.' + ' This value must be coerced to a string before using it here.', typeName(value)); | ||
error('The provided key is an unsupported type %s.' + ' This value must be coerced to a string before before using it here.', typeName(value)); | ||
@@ -799,0 +736,0 @@ return testStringCoercion(value); // throw (to help callers find troubleshooting comments) |
@@ -1,12 +0,10 @@ | ||
/* | ||
React | ||
react-jsx-dev-runtime.production.min.js | ||
Copyright (c) Meta Platforms, Inc. and affiliates. | ||
This source code is licensed under the MIT license found in the | ||
LICENSE file in the root directory of this source tree. | ||
*/ | ||
/** | ||
* @license React | ||
* react-jsx-dev-runtime.production.min.js | ||
* | ||
* Copyright (c) Meta Platforms, Inc. and affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
'use strict';var a=Symbol.for("react.fragment");exports.Fragment=a;exports.jsxDEV=void 0; | ||
//# sourceMappingURL=react-jsx-dev-runtime.production.min.js.map |
@@ -1,12 +0,10 @@ | ||
/* | ||
React | ||
react-jsx-dev-runtime.profiling.min.js | ||
Copyright (c) Meta Platforms, Inc. and affiliates. | ||
This source code is licensed under the MIT license found in the | ||
LICENSE file in the root directory of this source tree. | ||
*/ | ||
/** | ||
* @license React | ||
* react-jsx-dev-runtime.profiling.min.js | ||
* | ||
* Copyright (c) Meta Platforms, Inc. and affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
'use strict';var a=Symbol.for("react.fragment");exports.Fragment=a;exports.jsxDEV=void 0; | ||
//# sourceMappingURL=react-jsx-dev-runtime.profiling.min.js.map |
@@ -30,2 +30,3 @@ /** | ||
var REACT_CONTEXT_TYPE = Symbol.for('react.context'); | ||
var REACT_SERVER_CONTEXT_TYPE = Symbol.for('react.server_context'); | ||
var REACT_FORWARD_REF_TYPE = Symbol.for('react.forward_ref'); | ||
@@ -103,3 +104,3 @@ var REACT_SUSPENSE_TYPE = Symbol.for('react.suspense'); | ||
var enableDebugTracing = false; | ||
var enableDebugTracing = false; // Track which Fiber(s) schedule render work. | ||
@@ -228,2 +229,8 @@ var REACT_CLIENT_REFERENCE$1 = Symbol.for('react.client.reference'); | ||
case REACT_SERVER_CONTEXT_TYPE: | ||
{ | ||
var context2 = type; | ||
return (context2.displayName || context2._globalName) + '.Provider'; | ||
} | ||
} | ||
@@ -356,15 +363,3 @@ } | ||
} | ||
/** | ||
* Leverages native browser/VM stack frames to get proper details (e.g. | ||
* filename, line + col number) for a single component in a component stack. We | ||
* do this by: | ||
* (1) throwing and catching an error in the function - this will be our | ||
* control error. | ||
* (2) calling the component which will eventually throw an error that we'll | ||
* catch - this will be our sample error. | ||
* (3) diffing the control and sample error stacks to find the stack frame | ||
* which represents our component. | ||
*/ | ||
function describeNativeComponentFrame(fn, construct) { | ||
@@ -384,2 +379,3 @@ // If something asked for a stack inside a fake render, it should get ignored. | ||
var control; | ||
reentry = true; | ||
@@ -398,138 +394,79 @@ var previousPrepareStackTrace = Error.prepareStackTrace; // $FlowFixMe[incompatible-type] It does accept undefined. | ||
} | ||
/** | ||
* Finding a common stack frame between sample and control errors can be | ||
* tricky given the different types and levels of stack trace truncation from | ||
* different JS VMs. So instead we'll attempt to control what that common | ||
* frame should be through this object method: | ||
* Having both the sample and control errors be in the function under the | ||
* `DescribeNativeComponentFrameRoot` property, + setting the `name` and | ||
* `displayName` properties of the function ensures that a stack | ||
* frame exists that has the method name `DescribeNativeComponentFrameRoot` in | ||
* it for both control and sample stacks. | ||
*/ | ||
try { | ||
// This should throw. | ||
if (construct) { | ||
// Something should be setting the props in the constructor. | ||
var Fake = function () { | ||
throw Error(); | ||
}; // $FlowFixMe[prop-missing] | ||
var RunInRootFrame = { | ||
DetermineComponentFrameRoot: function () { | ||
var control; | ||
try { | ||
// This should throw. | ||
if (construct) { | ||
// Something should be setting the props in the constructor. | ||
var Fake = function () { | ||
throw Error(); | ||
}; // $FlowFixMe[prop-missing] | ||
Object.defineProperty(Fake.prototype, 'props', { | ||
set: function () { | ||
// We use a throwing setter instead of frozen or non-writable props | ||
// because that won't throw in a non-strict mode function. | ||
throw Error(); | ||
} | ||
}); | ||
if (typeof Reflect === 'object' && Reflect.construct) { | ||
// We construct a different control for this case to include any extra | ||
// frames added by the construct call. | ||
try { | ||
Reflect.construct(Fake, []); | ||
} catch (x) { | ||
control = x; | ||
} | ||
Object.defineProperty(Fake.prototype, 'props', { | ||
set: function () { | ||
// We use a throwing setter instead of frozen or non-writable props | ||
// because that won't throw in a non-strict mode function. | ||
throw Error(); | ||
} | ||
}); | ||
Reflect.construct(fn, [], Fake); | ||
} else { | ||
try { | ||
Fake.call(); | ||
} catch (x) { | ||
control = x; | ||
} // $FlowFixMe[prop-missing] found when upgrading Flow | ||
if (typeof Reflect === 'object' && Reflect.construct) { | ||
// We construct a different control for this case to include any extra | ||
// frames added by the construct call. | ||
try { | ||
Reflect.construct(Fake, []); | ||
} catch (x) { | ||
control = x; | ||
} | ||
Reflect.construct(fn, [], Fake); | ||
} else { | ||
try { | ||
Fake.call(); | ||
} catch (x) { | ||
control = x; | ||
} // $FlowFixMe[prop-missing] found when upgrading Flow | ||
fn.call(Fake.prototype); | ||
} | ||
} else { | ||
try { | ||
throw Error(); | ||
} catch (x) { | ||
control = x; | ||
} // TODO(luna): This will currently only throw if the function component | ||
// tries to access React/ReactDOM/props. We should probably make this throw | ||
// in simple components too | ||
fn.call(Fake.prototype); | ||
} | ||
} else { | ||
try { | ||
throw Error(); | ||
} catch (x) { | ||
control = x; | ||
} // TODO(luna): This will currently only throw if the function component | ||
// tries to access React/ReactDOM/props. We should probably make this throw | ||
// in simple components too | ||
var maybePromise = fn(); // If the function component returns a promise, it's likely an async | ||
// component, which we don't yet support. Attach a noop catch handler to | ||
// silence the error. | ||
// TODO: Implement component stacks for async client components? | ||
var maybePromise = fn(); // If the function component returns a promise, it's likely an async | ||
// component, which we don't yet support. Attach a noop catch handler to | ||
// silence the error. | ||
// TODO: Implement component stacks for async client components? | ||
if (maybePromise && typeof maybePromise.catch === 'function') { | ||
maybePromise.catch(function () {}); | ||
} | ||
} | ||
} catch (sample) { | ||
// This is inlined manually because closure doesn't do it for us. | ||
if (sample && control && typeof sample.stack === 'string') { | ||
return [sample.stack, control.stack]; | ||
} | ||
if (maybePromise && typeof maybePromise.catch === 'function') { | ||
maybePromise.catch(function () {}); | ||
} | ||
return [null, null]; | ||
} | ||
}; // $FlowFixMe[prop-missing] | ||
RunInRootFrame.DetermineComponentFrameRoot.displayName = 'DetermineComponentFrameRoot'; | ||
var namePropDescriptor = Object.getOwnPropertyDescriptor(RunInRootFrame.DetermineComponentFrameRoot, 'name'); // Before ES6, the `name` property was not configurable. | ||
if (namePropDescriptor && namePropDescriptor.configurable) { | ||
// V8 utilizes a function's `name` property when generating a stack trace. | ||
Object.defineProperty(RunInRootFrame.DetermineComponentFrameRoot, // Configurable properties can be updated even if its writable descriptor | ||
// is set to `false`. | ||
// $FlowFixMe[cannot-write] | ||
'name', { | ||
value: 'DetermineComponentFrameRoot' | ||
}); | ||
} | ||
try { | ||
var _RunInRootFrame$Deter = RunInRootFrame.DetermineComponentFrameRoot(), | ||
sampleStack = _RunInRootFrame$Deter[0], | ||
controlStack = _RunInRootFrame$Deter[1]; | ||
if (sampleStack && controlStack) { | ||
} catch (sample) { | ||
// This is inlined manually because closure doesn't do it for us. | ||
if (sample && control && typeof sample.stack === 'string') { | ||
// This extracts the first frame from the sample that isn't also in the control. | ||
// Skipping one frame that we assume is the frame that calls the two. | ||
var sampleLines = sampleStack.split('\n'); | ||
var controlLines = controlStack.split('\n'); | ||
var s = 0; | ||
var c = 0; | ||
var sampleLines = sample.stack.split('\n'); | ||
var controlLines = control.stack.split('\n'); | ||
var s = sampleLines.length - 1; | ||
var c = controlLines.length - 1; | ||
while (s < sampleLines.length && !sampleLines[s].includes('DetermineComponentFrameRoot')) { | ||
s++; | ||
while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) { | ||
// We expect at least one stack frame to be shared. | ||
// Typically this will be the root most one. However, stack frames may be | ||
// cut off due to maximum stack limits. In this case, one maybe cut off | ||
// earlier than the other. We assume that the sample is longer or the same | ||
// and there for cut off earlier. So we should find the root most frame in | ||
// the sample somewhere in the control. | ||
c--; | ||
} | ||
while (c < controlLines.length && !controlLines[c].includes('DetermineComponentFrameRoot')) { | ||
c++; | ||
} // We couldn't find our intentionally injected common root frame, attempt | ||
// to find another common root frame by search from the bottom of the | ||
// control stack... | ||
if (s === sampleLines.length || c === controlLines.length) { | ||
s = sampleLines.length - 1; | ||
c = controlLines.length - 1; | ||
while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) { | ||
// We expect at least one stack frame to be shared. | ||
// Typically this will be the root most one. However, stack frames may be | ||
// cut off due to maximum stack limits. In this case, one maybe cut off | ||
// earlier than the other. We assume that the sample is longer or the same | ||
// and there for cut off earlier. So we should find the root most frame in | ||
// the sample somewhere in the control. | ||
c--; | ||
} | ||
} | ||
for (; s >= 1 && c >= 0; s--, c--) { | ||
@@ -561,3 +498,3 @@ // Next we find the first one that isn't the same which should be the | ||
if (true) { | ||
{ | ||
if (typeof fn === 'function') { | ||
@@ -796,3 +733,3 @@ componentFrameCache.set(fn, _frame); | ||
if (willCoercionThrow(value)) { | ||
error('The provided key is an unsupported type %s.' + ' This value must be coerced to a string before using it here.', typeName(value)); | ||
error('The provided key is an unsupported type %s.' + ' This value must be coerced to a string before before using it here.', typeName(value)); | ||
@@ -799,0 +736,0 @@ return testStringCoercion(value); // throw (to help callers find troubleshooting comments) |
@@ -1,13 +0,11 @@ | ||
/* | ||
React | ||
react-jsx-runtime.production.min.js | ||
Copyright (c) Meta Platforms, Inc. and affiliates. | ||
This source code is licensed under the MIT license found in the | ||
LICENSE file in the root directory of this source tree. | ||
*/ | ||
/** | ||
* @license React | ||
* react-jsx-runtime.production.min.js | ||
* | ||
* Copyright (c) Meta Platforms, Inc. and affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
'use strict';var f=require("react"),k=Symbol.for("react.element"),l=Symbol.for("react.fragment"),m=Object.prototype.hasOwnProperty,n=f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,p={key:!0,ref:!0,__self:!0,__source:!0}; | ||
function q(c,a,g){var b,d={},e=null,h=null;void 0!==g&&(e=""+g);void 0!==a.key&&(e=""+a.key);void 0!==a.ref&&(h=a.ref);for(b in a)m.call(a,b)&&!p.hasOwnProperty(b)&&(d[b]=a[b]);if(c&&c.defaultProps)for(b in a=c.defaultProps,a)void 0===d[b]&&(d[b]=a[b]);return{$$typeof:k,type:c,key:e,ref:h,props:d,_owner:n.current}}exports.Fragment=l;exports.jsx=q;exports.jsxs=q; | ||
//# sourceMappingURL=react-jsx-runtime.production.min.js.map |
@@ -1,13 +0,11 @@ | ||
/* | ||
React | ||
react-jsx-runtime.profiling.min.js | ||
Copyright (c) Meta Platforms, Inc. and affiliates. | ||
This source code is licensed under the MIT license found in the | ||
LICENSE file in the root directory of this source tree. | ||
*/ | ||
/** | ||
* @license React | ||
* react-jsx-runtime.profiling.min.js | ||
* | ||
* Copyright (c) Meta Platforms, Inc. and affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
'use strict';var f=require("react"),k=Symbol.for("react.element"),l=Symbol.for("react.fragment"),m=Object.prototype.hasOwnProperty,n=f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,p={key:!0,ref:!0,__self:!0,__source:!0}; | ||
function q(c,a,g){var b,d={},e=null,h=null;void 0!==g&&(e=""+g);void 0!==a.key&&(e=""+a.key);void 0!==a.ref&&(h=a.ref);for(b in a)m.call(a,b)&&!p.hasOwnProperty(b)&&(d[b]=a[b]);if(c&&c.defaultProps)for(b in a=c.defaultProps,a)void 0===d[b]&&(d[b]=a[b]);return{$$typeof:k,type:c,key:e,ref:h,props:d,_owner:n.current}}exports.Fragment=l;exports.jsx=q;exports.jsxs=q; | ||
//# sourceMappingURL=react-jsx-runtime.profiling.min.js.map |
@@ -1,31 +0,30 @@ | ||
/* | ||
React | ||
react.production.min.js | ||
Copyright (c) Meta Platforms, Inc. and affiliates. | ||
This source code is licensed under the MIT license found in the | ||
LICENSE file in the root directory of this source tree. | ||
*/ | ||
'use strict';var l=Symbol.for("react.element"),n=Symbol.for("react.portal"),p=Symbol.for("react.fragment"),q=Symbol.for("react.strict_mode"),r=Symbol.for("react.profiler"),t=Symbol.for("react.provider"),u=Symbol.for("react.context"),v=Symbol.for("react.forward_ref"),w=Symbol.for("react.suspense"),x=Symbol.for("react.memo"),y=Symbol.for("react.lazy"),z=Symbol.iterator;function A(a){if(null===a||"object"!==typeof a)return null;a=z&&a[z]||a["@@iterator"];return"function"===typeof a?a:null} | ||
var B={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},C=Object.assign,D={};function E(a,b,c){this.props=a;this.context=b;this.refs=D;this.updater=c||B}E.prototype.isReactComponent={}; | ||
E.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,a,b,"setState")};E.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};function F(){}F.prototype=E.prototype;function G(a,b,c){this.props=a;this.context=b;this.refs=D;this.updater=c||B}var H=G.prototype=new F; | ||
H.constructor=G;C(H,E.prototype);H.isPureReactComponent=!0;var I=Array.isArray,J=Object.prototype.hasOwnProperty,K={current:null},L={key:!0,ref:!0,__self:!0,__source:!0}; | ||
function M(a,b,c){var f,d={},e=null,g=null;if(null!=b)for(f in void 0!==b.ref&&(g=b.ref),void 0!==b.key&&(e=""+b.key),b)J.call(b,f)&&!L.hasOwnProperty(f)&&(d[f]=b[f]);var h=arguments.length-2;if(1===h)d.children=c;else if(1<h){for(var k=Array(h),m=0;m<h;m++)k[m]=arguments[m+2];d.children=k}if(a&&a.defaultProps)for(f in h=a.defaultProps,h)void 0===d[f]&&(d[f]=h[f]);return{$$typeof:l,type:a,key:e,ref:g,props:d,_owner:K.current}} | ||
function N(a,b){return{$$typeof:l,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function O(a){return"object"===typeof a&&null!==a&&a.$$typeof===l}function escape(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(c){return b[c]})}var P=/\/+/g;function Q(a,b){return"object"===typeof a&&null!==a&&null!=a.key?escape(""+a.key):b.toString(36)} | ||
function R(a,b,c,f,d){var e=typeof a;if("undefined"===e||"boolean"===e)a=null;var g=!1;if(null===a)g=!0;else switch(e){case "string":case "number":g=!0;break;case "object":switch(a.$$typeof){case l:case n:g=!0}}if(g)return g=a,d=d(g),a=""===f?"."+Q(g,0):f,I(d)?(c="",null!=a&&(c=a.replace(P,"$&/")+"/"),R(d,b,c,"",function(m){return m})):null!=d&&(O(d)&&(d=N(d,c+(!d.key||g&&g.key===d.key?"":(""+d.key).replace(P,"$&/")+"/")+a)),b.push(d)),1;g=0;f=""===f?".":f+":";if(I(a))for(var h=0;h<a.length;h++){e= | ||
a[h];var k=f+Q(e,h);g+=R(e,b,c,k,d)}else if(k=A(a),"function"===typeof k)for(a=k.call(a),h=0;!(e=a.next()).done;)e=e.value,k=f+Q(e,h++),g+=R(e,b,c,k,d);else if("object"===e)throw b=String(a),Error("Objects are not valid as a React child (found: "+("[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b)+"). If you meant to render a collection of children, use an array instead.");return g} | ||
function S(a,b,c){if(null==a)return a;var f=[],d=0;R(a,f,"","",function(e){return b.call(c,e,d++)});return f}function T(a){if(-1===a._status){var b=a._result;b=b();b.then(function(c){if(0===a._status||-1===a._status)a._status=1,a._result=c},function(c){if(0===a._status||-1===a._status)a._status=2,a._result=c});-1===a._status&&(a._status=0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}var U={current:null};function V(){return new WeakMap} | ||
function W(){return{s:0,v:void 0,o:null,p:null}}var X={current:null},Y={transition:null},Z={ReactCurrentDispatcher:X,ReactCurrentCache:U,ReactCurrentBatchConfig:Y,ReactCurrentOwner:K}; | ||
exports.Children={map:S,forEach:function(a,b,c){S(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;S(a,function(){b++});return b},toArray:function(a){return S(a,function(b){return b})||[]},only:function(a){if(!O(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};exports.Component=E;exports.Fragment=p;exports.Profiler=r;exports.PureComponent=G;exports.StrictMode=q;exports.Suspense=w; | ||
exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=Z; | ||
exports.cache=function(a){return function(){var b=U.current;if(!b)return a.apply(null,arguments);var c=b.getCacheForType(V);b=c.get(a);void 0===b&&(b=W(),c.set(a,b));c=0;for(var f=arguments.length;c<f;c++){var d=arguments[c];if("function"===typeof d||"object"===typeof d&&null!==d){var e=b.o;null===e&&(b.o=e=new WeakMap);b=e.get(d);void 0===b&&(b=W(),e.set(d,b))}else e=b.p,null===e&&(b.p=e=new Map),b=e.get(d),void 0===b&&(b=W(),e.set(d,b))}if(1===b.s)return b.v;if(2===b.s)throw b.v;try{var g=a.apply(null, | ||
/** | ||
* @license React | ||
* react.production.min.js | ||
* | ||
* Copyright (c) Meta Platforms, Inc. and affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
'use strict';var l=Symbol.for("react.element"),n=Symbol.for("react.portal"),p=Symbol.for("react.fragment"),q=Symbol.for("react.strict_mode"),r=Symbol.for("react.profiler"),t=Symbol.for("react.provider"),u=Symbol.for("react.context"),v=Symbol.for("react.server_context"),w=Symbol.for("react.forward_ref"),x=Symbol.for("react.suspense"),y=Symbol.for("react.memo"),z=Symbol.for("react.lazy"),A=Symbol.for("react.default_value"),B=Symbol.iterator; | ||
function C(a){if(null===a||"object"!==typeof a)return null;a=B&&a[B]||a["@@iterator"];return"function"===typeof a?a:null}var D={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},E=Object.assign,F={};function G(a,b,c){this.props=a;this.context=b;this.refs=F;this.updater=c||D}G.prototype.isReactComponent={}; | ||
G.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,a,b,"setState")};G.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};function H(){}H.prototype=G.prototype;function I(a,b,c){this.props=a;this.context=b;this.refs=F;this.updater=c||D}var J=I.prototype=new H; | ||
J.constructor=I;E(J,G.prototype);J.isPureReactComponent=!0;var K=Array.isArray,L=Object.prototype.hasOwnProperty,M={current:null},N={key:!0,ref:!0,__self:!0,__source:!0}; | ||
function O(a,b,c){var d,e={},f=null,g=null;if(null!=b)for(d in void 0!==b.ref&&(g=b.ref),void 0!==b.key&&(f=""+b.key),b)L.call(b,d)&&!N.hasOwnProperty(d)&&(e[d]=b[d]);var h=arguments.length-2;if(1===h)e.children=c;else if(1<h){for(var k=Array(h),m=0;m<h;m++)k[m]=arguments[m+2];e.children=k}if(a&&a.defaultProps)for(d in h=a.defaultProps,h)void 0===e[d]&&(e[d]=h[d]);return{$$typeof:l,type:a,key:f,ref:g,props:e,_owner:M.current}} | ||
function aa(a,b){return{$$typeof:l,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function P(a){return"object"===typeof a&&null!==a&&a.$$typeof===l}function escape(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(c){return b[c]})}var Q=/\/+/g;function R(a,b){return"object"===typeof a&&null!==a&&null!=a.key?escape(""+a.key):b.toString(36)} | ||
function S(a,b,c,d,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 l:case n:g=!0}}if(g)return g=a,e=e(g),a=""===d?"."+R(g,0):d,K(e)?(c="",null!=a&&(c=a.replace(Q,"$&/")+"/"),S(e,b,c,"",function(m){return m})):null!=e&&(P(e)&&(e=aa(e,c+(!e.key||g&&g.key===e.key?"":(""+e.key).replace(Q,"$&/")+"/")+a)),b.push(e)),1;g=0;d=""===d?".":d+":";if(K(a))for(var h=0;h<a.length;h++){f= | ||
a[h];var k=d+R(f,h);g+=S(f,b,c,k,e)}else if(k=C(a),"function"===typeof k)for(a=k.call(a),h=0;!(f=a.next()).done;)f=f.value,k=d+R(f,h++),g+=S(f,b,c,k,e);else if("object"===f)throw b=String(a),Error("Objects are not valid as a React child (found: "+("[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b)+"). If you meant to render a collection of children, use an array instead.");return g} | ||
function T(a,b,c){if(null==a)return a;var d=[],e=0;S(a,d,"","",function(f){return b.call(c,f,e++)});return d}function ba(a){if(-1===a._status){var b=a._result;b=b();b.then(function(c){if(0===a._status||-1===a._status)a._status=1,a._result=c},function(c){if(0===a._status||-1===a._status)a._status=2,a._result=c});-1===a._status&&(a._status=0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}var U={current:null};function ca(){return new WeakMap} | ||
function V(){return{s:0,v:void 0,o:null,p:null}}var W={current:null},X={transition:null},Y={ReactCurrentDispatcher:W,ReactCurrentCache:U,ReactCurrentBatchConfig:X,ReactCurrentOwner:M,ContextRegistry:{}},Z=Y.ContextRegistry; | ||
exports.Children={map:T,forEach:function(a,b,c){T(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;T(a,function(){b++});return b},toArray:function(a){return T(a,function(b){return b})||[]},only:function(a){if(!P(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};exports.Component=G;exports.Fragment=p;exports.Profiler=r;exports.PureComponent=I;exports.StrictMode=q;exports.Suspense=x; | ||
exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=Y; | ||
exports.cache=function(a){return function(){var b=U.current;if(!b)return a.apply(null,arguments);var c=b.getCacheForType(ca);b=c.get(a);void 0===b&&(b=V(),c.set(a,b));c=0;for(var d=arguments.length;c<d;c++){var e=arguments[c];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, | ||
arguments);c=b;c.s=1;return c.v=g}catch(h){throw g=b,g.s=2,g.v=h,h;}}}; | ||
exports.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var f=C({},a.props),d=a.key,e=a.ref,g=a._owner;if(null!=b){void 0!==b.ref&&(e=b.ref,g=K.current);void 0!==b.key&&(d=""+b.key);if(a.type&&a.type.defaultProps)var h=a.type.defaultProps;for(k in b)J.call(b,k)&&!L.hasOwnProperty(k)&&(f[k]=void 0===b[k]&&void 0!==h?h[k]:b[k])}var k=arguments.length-2;if(1===k)f.children=c;else if(1<k){h=Array(k); | ||
for(var m=0;m<k;m++)h[m]=arguments[m+2];f.children=h}return{$$typeof:l,type:a.type,key:d,ref:e,props:f,_owner:g}};exports.createContext=function(a){a={$$typeof:u,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null};a.Provider={$$typeof:t,_context:a};return a.Consumer=a};exports.createElement=M;exports.createFactory=function(a){var b=M.bind(null,a);b.type=a;return b};exports.createRef=function(){return{current:null}}; | ||
exports.forwardRef=function(a){return{$$typeof:v,render:a}};exports.isValidElement=O;exports.lazy=function(a){return{$$typeof:y,_payload:{_status:-1,_result:a},_init:T}};exports.memo=function(a,b){return{$$typeof:x,type:a,compare:void 0===b?null:b}};exports.startTransition=function(a){var b=Y.transition;Y.transition={};try{a()}finally{Y.transition=b}};exports.unstable_act=function(){throw Error("act(...) is not supported in production builds of React.");};exports.unstable_useCacheRefresh=function(){return X.current.useCacheRefresh()}; | ||
exports.use=function(a){return X.current.use(a)};exports.useCallback=function(a,b){return X.current.useCallback(a,b)};exports.useContext=function(a){return X.current.useContext(a)};exports.useDebugValue=function(){};exports.useDeferredValue=function(a,b){return X.current.useDeferredValue(a,b)};exports.useEffect=function(a,b){return X.current.useEffect(a,b)};exports.useId=function(){return X.current.useId()};exports.useImperativeHandle=function(a,b,c){return X.current.useImperativeHandle(a,b,c)}; | ||
exports.useInsertionEffect=function(a,b){return X.current.useInsertionEffect(a,b)};exports.useLayoutEffect=function(a,b){return X.current.useLayoutEffect(a,b)};exports.useMemo=function(a,b){return X.current.useMemo(a,b)};exports.useOptimistic=function(a,b){return X.current.useOptimistic(a,b)};exports.useReducer=function(a,b,c){return X.current.useReducer(a,b,c)};exports.useRef=function(a){return X.current.useRef(a)};exports.useState=function(a){return X.current.useState(a)}; | ||
exports.useSyncExternalStore=function(a,b,c){return X.current.useSyncExternalStore(a,b,c)};exports.useTransition=function(){return X.current.useTransition()};exports.version="18.3.0-canary-1d5667a12-20240102"; | ||
//# sourceMappingURL=react.production.min.js.map | ||
exports.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var d=E({},a.props),e=a.key,f=a.ref,g=a._owner;if(null!=b){void 0!==b.ref&&(f=b.ref,g=M.current);void 0!==b.key&&(e=""+b.key);if(a.type&&a.type.defaultProps)var h=a.type.defaultProps;for(k in b)L.call(b,k)&&!N.hasOwnProperty(k)&&(d[k]=void 0===b[k]&&void 0!==h?h[k]:b[k])}var k=arguments.length-2;if(1===k)d.children=c;else if(1<k){h=Array(k); | ||
for(var m=0;m<k;m++)h[m]=arguments[m+2];d.children=h}return{$$typeof:l,type:a.type,key:e,ref:f,props:d,_owner:g}};exports.createContext=function(a){a={$$typeof:u,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null};a.Provider={$$typeof:t,_context:a};return a.Consumer=a};exports.createElement=O;exports.createFactory=function(a){var b=O.bind(null,a);b.type=a;return b};exports.createRef=function(){return{current:null}}; | ||
exports.createServerContext=function(a,b){var c=!0;if(!Z[a]){c=!1;var d={$$typeof:v,_currentValue:b,_currentValue2:b,_defaultValue:b,_threadCount:0,Provider:null,Consumer:null,_globalName:a};d.Provider={$$typeof:t,_context:d};Z[a]=d}d=Z[a];if(d._defaultValue===A)d._defaultValue=b,d._currentValue===A&&(d._currentValue=b),d._currentValue2===A&&(d._currentValue2=b);else if(c)throw Error("ServerContext: "+a+" already defined");return d};exports.forwardRef=function(a){return{$$typeof:w,render:a}}; | ||
exports.isValidElement=P;exports.lazy=function(a){return{$$typeof:z,_payload:{_status:-1,_result:a},_init:ba}};exports.memo=function(a,b){return{$$typeof:y,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.unstable_act=function(){throw Error("act(...) is not supported in production builds of React.");};exports.unstable_useCacheRefresh=function(){return W.current.useCacheRefresh()};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(){};exports.useDeferredValue=function(a){return W.current.useDeferredValue(a)};exports.useEffect=function(a,b){return W.current.useEffect(a,b)};exports.useId=function(){return W.current.useId()};exports.useImperativeHandle=function(a,b,c){return W.current.useImperativeHandle(a,b,c)}; | ||
exports.useInsertionEffect=function(a,b){return W.current.useInsertionEffect(a,b)};exports.useLayoutEffect=function(a,b){return W.current.useLayoutEffect(a,b)};exports.useMemo=function(a,b){return W.current.useMemo(a,b)};exports.useReducer=function(a,b,c){return W.current.useReducer(a,b,c)};exports.useRef=function(a){return W.current.useRef(a)};exports.useState=function(a){return W.current.useState(a)};exports.useSyncExternalStore=function(a,b,c){return W.current.useSyncExternalStore(a,b,c)}; | ||
exports.useTransition=function(){return W.current.useTransition()};exports.version="18.3.0-canary-1dba980e1f-20241220"; |
@@ -1,29 +0,29 @@ | ||
/* | ||
React | ||
react.shared-subset.production.min.js | ||
Copyright (c) Meta Platforms, Inc. and affiliates. | ||
This source code is licensed under the MIT license found in the | ||
LICENSE file in the root directory of this source tree. | ||
*/ | ||
/** | ||
* @license React | ||
* react.shared-subset.production.min.js | ||
* | ||
* Copyright (c) Meta Platforms, Inc. and affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
'use strict';var m=Object.assign,n={current:null};function p(){return new Map} | ||
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="string"===typeof a||a instanceof URL?new Request(a,b):a;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===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.")}}} | ||
var t={current:null},u={current:null},v={ReactCurrentDispatcher:t,ReactCurrentOwner:u},w={ReactCurrentCache:n},x=Symbol.for("react.element"),y=Symbol.for("react.portal"),z=Symbol.for("react.fragment"),A=Symbol.for("react.strict_mode"),B=Symbol.for("react.profiler"),C=Symbol.for("react.forward_ref"),D=Symbol.for("react.suspense"),E=Symbol.for("react.memo"),F=Symbol.for("react.lazy"),G=Symbol.iterator; | ||
function H(a){if(null===a||"object"!==typeof a)return null;a=G&&a[G]||a["@@iterator"];return"function"===typeof a?a:null}function I(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."} | ||
var J={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},K={};function L(a,b,d){this.props=a;this.context=b;this.refs=K;this.updater=d||J}L.prototype.isReactComponent={};L.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error(I(85));this.updater.enqueueSetState(this,a,b,"setState")};L.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")}; | ||
function M(){}M.prototype=L.prototype;function N(a,b,d){this.props=a;this.context=b;this.refs=K;this.updater=d||J}var O=N.prototype=new M;O.constructor=N;m(O,L.prototype);O.isPureReactComponent=!0;var P=Array.isArray,Q=Object.prototype.hasOwnProperty,R={key:!0,ref:!0,__self:!0,__source:!0};function S(a,b){return{$$typeof:x,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function T(a){return"object"===typeof a&&null!==a&&a.$$typeof===x} | ||
function escape(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(d){return b[d]})}var U=/\/+/g;function V(a,b){return"object"===typeof a&&null!==a&&null!=a.key?escape(""+a.key):b.toString(36)} | ||
function W(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 x:case y:h=!0}}if(h)return h=a,e=e(h),a=""===c?"."+V(h,0):c,P(e)?(d="",null!=a&&(d=a.replace(U,"$&/")+"/"),W(e,b,d,"",function(l){return l})):null!=e&&(T(e)&&(e=S(e,d+(!e.key||h&&h.key===e.key?"":(""+e.key).replace(U,"$&/")+"/")+a)),b.push(e)),1;h=0;c=""===c?".":c+":";if(P(a))for(var g=0;g<a.length;g++){f= | ||
a[g];var k=c+V(f,g);h+=W(f,b,d,k,e)}else if(k=H(a),"function"===typeof k)for(a=k.call(a),g=0;!(f=a.next()).done;)f=f.value,k=c+V(f,g++),h+=W(f,b,d,k,e);else if("object"===f)throw b=String(a),Error(I(31,"[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b));return h}function X(a,b,d){if(null==a)return a;var c=[],e=0;W(a,c,"","",function(f){return b.call(d,f,e++)});return c} | ||
function Y(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 aa(){return new WeakMap}function Z(){return{s:0,v:void 0,o:null,p:null}} | ||
exports.Children={map:X,forEach:function(a,b,d){X(a,function(){b.apply(this,arguments)},d)},count:function(a){var b=0;X(a,function(){b++});return b},toArray:function(a){return X(a,function(b){return b})||[]},only:function(a){if(!T(a))throw Error(I(143));return a}};exports.Fragment=z;exports.Profiler=B;exports.StrictMode=A;exports.Suspense=D;exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=v;exports.__SECRET_SERVER_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=w; | ||
exports.cache=function(a){return function(){var b=n.current;if(!b)return a.apply(null,arguments);var d=b.getCacheForType(aa);b=d.get(a);void 0===b&&(b=Z(),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=Z(),f.set(e,b))}else f=b.p,null===f&&(b.p=f=new Map),b=f.get(e),void 0===b&&(b=Z(),f.set(e,b))}if(1===b.s)return b.v;if(2===b.s)throw b.v;try{var h=a.apply(null, | ||
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; | ||
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."} | ||
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")}; | ||
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} | ||
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)} | ||
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= | ||
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} | ||
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}} | ||
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; | ||
exports.Suspense=B;exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=Y; | ||
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, | ||
arguments);d=b;d.s=1;return d.v=h}catch(g){throw h=b,h.s=2,h.v=g,g;}}}; | ||
exports.cloneElement=function(a,b,d){if(null===a||void 0===a)throw Error(I(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=u.current);void 0!==b.key&&(e=""+b.key);if(a.type&&a.type.defaultProps)var g=a.type.defaultProps;for(k in b)Q.call(b,k)&&!R.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:x,type:a.type, | ||
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)Q.call(b,c)&&!R.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:x,type:a,key:f,ref:h,props:e,_owner:u.current}};exports.createRef=function(){return{current:null}}; | ||
exports.createServerContext=function(){throw Error(I(248));};exports.forwardRef=function(a){return{$$typeof:C,render:a}};exports.isValidElement=T;exports.lazy=function(a){return{$$typeof:F,_payload:{_status:-1,_result:a},_init:Y}};exports.memo=function(a,b){return{$$typeof:E,type:a,compare:void 0===b?null:b}};exports.startTransition=function(a){a()};exports.use=function(a){return t.current.use(a)};exports.useCallback=function(a,b){return t.current.useCallback(a,b)};exports.useContext=function(a){return t.current.useContext(a)}; | ||
exports.useDebugValue=function(){};exports.useId=function(){return t.current.useId()};exports.useMemo=function(a,b){return t.current.useMemo(a,b)};exports.version="18.3.0-canary-1d5667a12-20240102"; | ||
//# sourceMappingURL=react.shared-subset.production.min.js.map | ||
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, | ||
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}}; | ||
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; | ||
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(){}; | ||
exports.useId=function(){return W.current.useId()};exports.useMemo=function(a,b){return W.current.useMemo(a,b)};exports.version="18.3.0-canary-1dba980e1f-20241220"; |
@@ -7,3 +7,3 @@ { | ||
], | ||
"version": "18.3.0-canary-1d5667a12-20240102", | ||
"version": "18.3.0-canary-1dba980e1f-20241220", | ||
"homepage": "https://reactjs.org/", | ||
@@ -10,0 +10,0 @@ "bugs": "https://github.com/facebook/react/issues", |
@@ -10,25 +10,26 @@ /** | ||
*/ | ||
'use strict';(function(){(function(f,z){"object"===typeof exports&&"undefined"!==typeof module?z(exports):"function"===typeof define&&define.amd?define(["exports"],z):(f="undefined"!==typeof globalThis?globalThis:f||self,z(f.React={}))})(this,function(f){function z(a){if(null===a||"object"!==typeof a)return null;a=W&&a[W]||a["@@iterator"];return"function"===typeof a?a:null}function y(a,b,c){this.props=a;this.context=b;this.refs=X;this.updater=c||Y}function Z(){}function M(a,b,c){this.props=a;this.context= | ||
b;this.refs=X;this.updater=c||Y}function aa(a,b,c){var e,d={},g=null,h=null;if(null!=b)for(e in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(g=""+b.key),b)ba.call(b,e)&&!ca.hasOwnProperty(e)&&(d[e]=b[e]);var l=arguments.length-2;if(1===l)d.children=c;else if(1<l){for(var k=Array(l),n=0;n<l;n++)k[n]=arguments[n+2];d.children=k}if(a&&a.defaultProps)for(e in l=a.defaultProps,l)void 0===d[e]&&(d[e]=l[e]);return{$$typeof:A,type:a,key:g,ref:h,props:d,_owner:N.current}}function pa(a,b){return{$$typeof:A,type:a.type, | ||
key:b,ref:a.ref,props:a.props,_owner:a._owner}}function O(a){return"object"===typeof a&&null!==a&&a.$$typeof===A}function qa(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(c){return b[c]})}function P(a,b){return"object"===typeof a&&null!==a&&null!=a.key?qa(""+a.key):b.toString(36)}function D(a,b,c,e,d){var g=typeof a;if("undefined"===g||"boolean"===g)a=null;var h=!1;if(null===a)h=!0;else switch(g){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case A:case ra:h= | ||
!0}}if(h)return h=a,d=d(h),a=""===e?"."+P(h,0):e,da(d)?(c="",null!=a&&(c=a.replace(ea,"$&/")+"/"),D(d,b,c,"",function(n){return n})):null!=d&&(O(d)&&(d=pa(d,c+(!d.key||h&&h.key===d.key?"":(""+d.key).replace(ea,"$&/")+"/")+a)),b.push(d)),1;h=0;e=""===e?".":e+":";if(da(a))for(var l=0;l<a.length;l++){g=a[l];var k=e+P(g,l);h+=D(g,b,c,k,d)}else if(k=z(a),"function"===typeof k)for(a=k.call(a),l=0;!(g=a.next()).done;)g=g.value,k=e+P(g,l++),h+=D(g,b,c,k,d);else if("object"===g)throw b=String(a),Error("Objects are not valid as a React child (found: "+ | ||
("[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b)+"). If you meant to render a collection of children, use an array instead.");return h}function E(a,b,c){if(null==a)return a;var e=[],d=0;D(a,e,"","",function(g){return b.call(c,g,d++)});return e}function sa(a){if(-1===a._status){var b=a._result;b=b();b.then(function(c){if(0===a._status||-1===a._status)a._status=1,a._result=c},function(c){if(0===a._status||-1===a._status)a._status=2,a._result=c});-1===a._status&&(a._status= | ||
0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}function ta(){return new WeakMap}function Q(){return{s:0,v:void 0,o:null,p:null}}function R(a,b){var c=a.length;a.push(b);a:for(;0<c;){var e=c-1>>>1,d=a[e];if(0<F(d,b))a[e]=b,a[c]=d,c=e;else break a}}function r(a){return 0===a.length?null:a[0]}function G(a){if(0===a.length)return null;var b=a[0],c=a.pop();if(c!==b){a[0]=c;a:for(var e=0,d=a.length,g=d>>>1;e<g;){var h=2*(e+1)-1,l=a[h],k=h+1,n=a[k];if(0>F(l,c))k<d&&0>F(n,l)?(a[e]= | ||
n,a[k]=c,e=k):(a[e]=l,a[h]=c,e=h);else if(k<d&&0>F(n,c))a[e]=n,a[k]=c,e=k;else break a}}return b}function F(a,b){var c=a.sortIndex-b.sortIndex;return 0!==c?c:a.id-b.id}function H(a){for(var b=r(u);null!==b;){if(null===b.callback)G(u);else if(b.startTime<=a)G(u),b.sortIndex=b.expirationTime,R(t,b);else break;b=r(u)}}function S(a){B=!1;H(a);if(!w)if(null!==r(t))w=!0,T();else{var b=r(u);null!==b&&U(S,b.startTime-a)}}function fa(){return x()-ha<ia?!1:!0}function T(){I||(I=!0,J())}function U(a,b){C=ja(function(){a(x())}, | ||
b)}var A=Symbol.for("react.element"),ra=Symbol.for("react.portal"),ua=Symbol.for("react.fragment"),va=Symbol.for("react.strict_mode"),wa=Symbol.for("react.profiler"),xa=Symbol.for("react.provider"),ya=Symbol.for("react.context"),za=Symbol.for("react.forward_ref"),Aa=Symbol.for("react.suspense"),Ba=Symbol.for("react.memo"),Ca=Symbol.for("react.lazy"),W=Symbol.iterator,Y={isMounted:function(a){return!1},enqueueForceUpdate:function(a,b,c){},enqueueReplaceState:function(a,b,c,e){},enqueueSetState:function(a, | ||
b,c,e){}},ka=Object.assign,X={};y.prototype.isReactComponent={};y.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,a,b,"setState")};y.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};Z.prototype=y.prototype;var v=M.prototype=new Z;v.constructor=M;ka(v,y.prototype); | ||
v.isPureReactComponent=!0;var da=Array.isArray,ba=Object.prototype.hasOwnProperty,N={current:null},ca={key:!0,ref:!0,__self:!0,__source:!0},ea=/\/+/g,la={current:null},m={current:null},K={transition:null};if("object"===typeof performance&&"function"===typeof performance.now){var Da=performance;var x=function(){return Da.now()}}else{var ma=Date,Ea=ma.now();x=function(){return ma.now()-Ea}}var t=[],u=[],Fa=1,q=null,p=3,L=!1,w=!1,B=!1,ja="function"===typeof setTimeout?setTimeout:null,na="function"=== | ||
typeof clearTimeout?clearTimeout:null,oa="undefined"!==typeof setImmediate?setImmediate:null;"undefined"!==typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending?navigator.scheduling.isInputPending.bind(navigator.scheduling):null;var I=!1,C=-1,ia=5,ha=-1,V=function(){if(I){var a=x();ha=a;var b=!0;try{a:{w=!1;B&&(B=!1,na(C),C=-1);L=!0;var c=p;try{b:{H(a);for(q=r(t);null!==q&&!(q.expirationTime>a&&fa());){var e=q.callback;if("function"===typeof e){q.callback=null; | ||
p=q.priorityLevel;var d=e(q.expirationTime<=a);a=x();if("function"===typeof d){q.callback=d;H(a);b=!0;break b}q===r(t)&&G(t);H(a)}else G(t);q=r(t)}if(null!==q)b=!0;else{var g=r(u);null!==g&&U(S,g.startTime-a);b=!1}}break a}finally{q=null,p=c,L=!1}b=void 0}}finally{b?J():I=!1}}};if("function"===typeof oa)var J=function(){oa(V)};else if("undefined"!==typeof MessageChannel){v=new MessageChannel;var Ga=v.port2;v.port1.onmessage=V;J=function(){Ga.postMessage(null)}}else J=function(){ja(V,0)};v={ReactCurrentDispatcher:m, | ||
ReactCurrentCache:la,ReactCurrentOwner:N,ReactCurrentBatchConfig:K,Scheduler:{__proto__:null,unstable_IdlePriority:5,unstable_ImmediatePriority:1,unstable_LowPriority:4,unstable_NormalPriority:3,unstable_Profiling:null,unstable_UserBlockingPriority:2,unstable_cancelCallback:function(a){a.callback=null},unstable_continueExecution:function(){w||L||(w=!0,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"): | ||
ia=0<a?Math.floor(1E3/a):5},unstable_getCurrentPriorityLevel:function(){return p},unstable_getFirstCallbackNode:function(){return r(t)},unstable_next:function(a){switch(p){case 1:case 2:case 3:var b=3;break;default:b=p}var c=p;p=b;try{return a()}finally{p=c}},get unstable_now(){return x},unstable_pauseExecution:function(){},unstable_requestPaint:function(){},unstable_runWithPriority:function(a,b){switch(a){case 1:case 2:case 3:case 4:case 5:break;default:a=3}var c=p;p=a;try{return b()}finally{p=c}}, | ||
unstable_scheduleCallback:function(a,b,c){var e=x();"object"===typeof c&&null!==c?(c=c.delay,c="number"===typeof c&&0<c?e+c:e):c=e;switch(a){case 1:var d=-1;break;case 2:d=250;break;case 5:d=1073741823;break;case 4:d=1E4;break;default:d=5E3}d=c+d;a={id:Fa++,callback:b,priorityLevel:a,startTime:c,expirationTime:d,sortIndex:-1};c>e?(a.sortIndex=c,R(u,a),null===r(t)&&a===r(u)&&(B?(na(C),C=-1):B=!0,U(S,c-e))):(a.sortIndex=d,R(t,a),w||L||(w=!0,T()));return a},unstable_shouldYield:fa,unstable_wrapCallback:function(a){var b= | ||
p;return function(){var c=p;p=b;try{return a.apply(this,arguments)}finally{p=c}}}}};f.Children={map:E,forEach:function(a,b,c){E(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;E(a,function(){b++});return b},toArray:function(a){return E(a,function(b){return b})||[]},only:function(a){if(!O(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};f.Component=y;f.Fragment=ua;f.Profiler=wa;f.PureComponent=M;f.StrictMode=va;f.Suspense=Aa;f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED= | ||
v;f.cache=function(a){return function(){var b=la.current;if(!b)return a.apply(null,arguments);var c=b.getCacheForType(ta);b=c.get(a);void 0===b&&(b=Q(),c.set(a,b));c=0;for(var e=arguments.length;c<e;c++){var d=arguments[c];if("function"===typeof d||"object"===typeof d&&null!==d){var g=b.o;null===g&&(b.o=g=new WeakMap);b=g.get(d);void 0===b&&(b=Q(),g.set(d,b))}else g=b.p,null===g&&(b.p=g=new Map),b=g.get(d),void 0===b&&(b=Q(),g.set(d,b))}if(1===b.s)return b.v;if(2===b.s)throw b.v;try{var h=a.apply(null, | ||
arguments);c=b;c.s=1;return c.v=h}catch(l){throw h=b,h.s=2,h.v=l,l;}}};f.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var e=ka({},a.props),d=a.key,g=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(g=b.ref,h=N.current);void 0!==b.key&&(d=""+b.key);if(a.type&&a.type.defaultProps)var l=a.type.defaultProps;for(k in b)ba.call(b,k)&&!ca.hasOwnProperty(k)&&(e[k]=void 0===b[k]&&void 0!==l?l[k]:b[k])}var k= | ||
arguments.length-2;if(1===k)e.children=c;else if(1<k){l=Array(k);for(var n=0;n<k;n++)l[n]=arguments[n+2];e.children=l}return{$$typeof:A,type:a.type,key:d,ref:g,props:e,_owner:h}};f.createContext=function(a){a={$$typeof:ya,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null};a.Provider={$$typeof:xa,_context:a};return a.Consumer=a};f.createElement=aa;f.createFactory=function(a){var b=aa.bind(null,a);b.type=a;return b};f.createRef=function(){return{current:null}}; | ||
f.forwardRef=function(a){return{$$typeof:za,render:a}};f.isValidElement=O;f.lazy=function(a){return{$$typeof:Ca,_payload:{_status:-1,_result:a},_init:sa}};f.memo=function(a,b){return{$$typeof:Ba,type:a,compare:void 0===b?null:b}};f.startTransition=function(a,b){b=K.transition;K.transition={};try{a()}finally{K.transition=b}};f.unstable_act=function(a){throw Error("act(...) is not supported in production builds of React.");};f.unstable_useCacheRefresh=function(){return m.current.useCacheRefresh()}; | ||
f.use=function(a){return m.current.use(a)};f.useCallback=function(a,b){return m.current.useCallback(a,b)};f.useContext=function(a){return m.current.useContext(a)};f.useDebugValue=function(a,b){};f.useDeferredValue=function(a,b){return m.current.useDeferredValue(a,b)};f.useEffect=function(a,b){return m.current.useEffect(a,b)};f.useId=function(){return m.current.useId()};f.useImperativeHandle=function(a,b,c){return m.current.useImperativeHandle(a,b,c)};f.useInsertionEffect=function(a,b){return m.current.useInsertionEffect(a, | ||
b)};f.useLayoutEffect=function(a,b){return m.current.useLayoutEffect(a,b)};f.useMemo=function(a,b){return m.current.useMemo(a,b)};f.useOptimistic=function(a,b){return m.current.useOptimistic(a,b)};f.useReducer=function(a,b,c){return m.current.useReducer(a,b,c)};f.useRef=function(a){return m.current.useRef(a)};f.useState=function(a){return m.current.useState(a)};f.useSyncExternalStore=function(a,b,c){return m.current.useSyncExternalStore(a,b,c)};f.useTransition=function(){return m.current.useTransition()}; | ||
f.version="18.3.0-canary-1d5667a12-20240102"})})(); | ||
(function(){'use strict';(function(f,z){"object"===typeof exports&&"undefined"!==typeof module?z(exports):"function"===typeof define&&define.amd?define(["exports"],z):(f="undefined"!==typeof globalThis?globalThis:f||self,z(f.React={}))})(this,function(f){function z(a){if(null===a||"object"!==typeof a)return null;a=Y&&a[Y]||a["@@iterator"];return"function"===typeof a?a:null}function y(a,b,c){this.props=a;this.context=b;this.refs=Z;this.updater=c||aa}function ba(){}function N(a,b,c){this.props=a;this.context=b; | ||
this.refs=Z;this.updater=c||aa}function ca(a,b,c){var d,e={},g=null,h=null;if(null!=b)for(d in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(g=""+b.key),b)da.call(b,d)&&!ea.hasOwnProperty(d)&&(e[d]=b[d]);var l=arguments.length-2;if(1===l)e.children=c;else if(1<l){for(var k=Array(l),n=0;n<l;n++)k[n]=arguments[n+2];e.children=k}if(a&&a.defaultProps)for(d in l=a.defaultProps,l)void 0===e[d]&&(e[d]=l[d]);return{$$typeof:A,type:a,key:g,ref:h,props:e,_owner:O.current}}function sa(a,b){return{$$typeof:A,type:a.type, | ||
key:b,ref:a.ref,props:a.props,_owner:a._owner}}function P(a){return"object"===typeof a&&null!==a&&a.$$typeof===A}function ta(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(c){return b[c]})}function Q(a,b){return"object"===typeof a&&null!==a&&null!=a.key?ta(""+a.key):b.toString(36)}function D(a,b,c,d,e){var g=typeof a;if("undefined"===g||"boolean"===g)a=null;var h=!1;if(null===a)h=!0;else switch(g){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case A:case ua:h= | ||
!0}}if(h)return h=a,e=e(h),a=""===d?"."+Q(h,0):d,fa(e)?(c="",null!=a&&(c=a.replace(ha,"$&/")+"/"),D(e,b,c,"",function(n){return n})):null!=e&&(P(e)&&(e=sa(e,c+(!e.key||h&&h.key===e.key?"":(""+e.key).replace(ha,"$&/")+"/")+a)),b.push(e)),1;h=0;d=""===d?".":d+":";if(fa(a))for(var l=0;l<a.length;l++){g=a[l];var k=d+Q(g,l);h+=D(g,b,c,k,e)}else if(k=z(a),"function"===typeof k)for(a=k.call(a),l=0;!(g=a.next()).done;)g=g.value,k=d+Q(g,l++),h+=D(g,b,c,k,e);else if("object"===g)throw b=String(a),Error("Objects are not valid as a React child (found: "+ | ||
("[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b)+"). If you meant to render a collection of children, use an array instead.");return h}function E(a,b,c){if(null==a)return a;var d=[],e=0;D(a,d,"","",function(g){return b.call(c,g,e++)});return d}function va(a){if(-1===a._status){var b=a._result;b=b();b.then(function(c){if(0===a._status||-1===a._status)a._status=1,a._result=c},function(c){if(0===a._status||-1===a._status)a._status=2,a._result=c});-1===a._status&&(a._status= | ||
0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}function wa(){return new WeakMap}function R(){return{s:0,v:void 0,o:null,p:null}}function S(a,b){var c=a.length;a.push(b);a:for(;0<c;){var d=c-1>>>1,e=a[d];if(0<F(e,b))a[d]=b,a[c]=e,c=d;else break a}}function r(a){return 0===a.length?null:a[0]}function G(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,g=e>>>1;d<g;){var h=2*(d+1)-1,l=a[h],k=h+1,n=a[k];if(0>F(l,c))k<e&&0>F(n,l)?(a[d]= | ||
n,a[k]=c,d=k):(a[d]=l,a[h]=c,d=h);else if(k<e&&0>F(n,c))a[d]=n,a[k]=c,d=k;else break a}}return b}function F(a,b){var c=a.sortIndex-b.sortIndex;return 0!==c?c:a.id-b.id}function H(a){for(var b=r(u);null!==b;){if(null===b.callback)G(u);else if(b.startTime<=a)G(u),b.sortIndex=b.expirationTime,S(t,b);else break;b=r(u)}}function T(a){B=!1;H(a);if(!w)if(null!==r(t))w=!0,U();else{var b=r(u);null!==b&&V(T,b.startTime-a)}}function ia(){return x()-ja<ka?!1:!0}function U(){I||(I=!0,J())}function V(a,b){C=la(function(){a(x())}, | ||
b)}var A=Symbol.for("react.element"),ua=Symbol.for("react.portal"),xa=Symbol.for("react.fragment"),ya=Symbol.for("react.strict_mode"),za=Symbol.for("react.profiler"),ma=Symbol.for("react.provider"),Aa=Symbol.for("react.context"),Ba=Symbol.for("react.server_context"),Ca=Symbol.for("react.forward_ref"),Da=Symbol.for("react.suspense"),Ea=Symbol.for("react.memo"),Fa=Symbol.for("react.lazy"),W=Symbol.for("react.default_value"),Y=Symbol.iterator,aa={isMounted:function(a){return!1},enqueueForceUpdate:function(a, | ||
b,c){},enqueueReplaceState:function(a,b,c,d){},enqueueSetState:function(a,b,c,d){}},na=Object.assign,Z={};y.prototype.isReactComponent={};y.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,a,b,"setState")};y.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")}; | ||
ba.prototype=y.prototype;var v=N.prototype=new ba;v.constructor=N;na(v,y.prototype);v.isPureReactComponent=!0;var fa=Array.isArray,da=Object.prototype.hasOwnProperty,O={current:null},ea={key:!0,ref:!0,__self:!0,__source:!0},ha=/\/+/g,oa={current:null},m={current:null},K={transition:null},L={};if("object"===typeof performance&&"function"===typeof performance.now){var Ga=performance;var x=function(){return Ga.now()}}else{var pa=Date,Ha=pa.now();x=function(){return pa.now()-Ha}}var t=[],u=[],Ia=1,q= | ||
null,p=3,M=!1,w=!1,B=!1,la="function"===typeof setTimeout?setTimeout:null,qa="function"===typeof clearTimeout?clearTimeout:null,ra="undefined"!==typeof setImmediate?setImmediate:null;"undefined"!==typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending?navigator.scheduling.isInputPending.bind(navigator.scheduling):null;var I=!1,C=-1,ka=5,ja=-1,X=function(){if(I){var a=x();ja=a;var b=!0;try{a:{w=!1;B&&(B=!1,qa(C),C=-1);M=!0;var c=p;try{b:{H(a);for(q=r(t);null!== | ||
q&&!(q.expirationTime>a&&ia());){var d=q.callback;if("function"===typeof d){q.callback=null;p=q.priorityLevel;var e=d(q.expirationTime<=a);a=x();if("function"===typeof e){q.callback=e;H(a);b=!0;break b}q===r(t)&&G(t);H(a)}else G(t);q=r(t)}if(null!==q)b=!0;else{var g=r(u);null!==g&&V(T,g.startTime-a);b=!1}}break a}finally{q=null,p=c,M=!1}b=void 0}}finally{b?J():I=!1}}};if("function"===typeof ra)var J=function(){ra(X)};else if("undefined"!==typeof MessageChannel){v=new MessageChannel;var Ja=v.port2; | ||
v.port1.onmessage=X;J=function(){Ja.postMessage(null)}}else J=function(){la(X,0)};v={ReactCurrentDispatcher:m,ReactCurrentCache:oa,ReactCurrentOwner:O,ReactCurrentBatchConfig:K,Scheduler:{__proto__:null,unstable_IdlePriority:5,unstable_ImmediatePriority:1,unstable_LowPriority:4,unstable_NormalPriority:3,unstable_Profiling:null,unstable_UserBlockingPriority:2,unstable_cancelCallback:function(a){a.callback=null},unstable_continueExecution:function(){w||M||(w=!0,U())},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"):ka=0<a?Math.floor(1E3/a):5},unstable_getCurrentPriorityLevel:function(){return p},unstable_getFirstCallbackNode:function(){return r(t)},unstable_next:function(a){switch(p){case 1:case 2:case 3:var b=3;break;default:b=p}var c=p;p=b;try{return a()}finally{p=c}},get unstable_now(){return x},unstable_pauseExecution:function(){},unstable_requestPaint:function(){},unstable_runWithPriority:function(a, | ||
b){switch(a){case 1:case 2:case 3:case 4:case 5:break;default:a=3}var c=p;p=a;try{return b()}finally{p=c}},unstable_scheduleCallback:function(a,b,c){var d=x();"object"===typeof c&&null!==c?(c=c.delay,c="number"===typeof c&&0<c?d+c:d):c=d;switch(a){case 1:var e=-1;break;case 2:e=250;break;case 5:e=1073741823;break;case 4:e=1E4;break;default:e=5E3}e=c+e;a={id:Ia++,callback:b,priorityLevel:a,startTime:c,expirationTime:e,sortIndex:-1};c>d?(a.sortIndex=c,S(u,a),null===r(t)&&a===r(u)&&(B?(qa(C),C=-1):B= | ||
!0,V(T,c-d))):(a.sortIndex=e,S(t,a),w||M||(w=!0,U()));return a},unstable_shouldYield:ia,unstable_wrapCallback:function(a){var b=p;return function(){var c=p;p=b;try{return a.apply(this,arguments)}finally{p=c}}}},ContextRegistry:L};f.Children={map:E,forEach:function(a,b,c){E(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;E(a,function(){b++});return b},toArray:function(a){return E(a,function(b){return b})||[]},only:function(a){if(!P(a))throw Error("React.Children.only expected to receive a single React element child."); | ||
return a}};f.Component=y;f.Fragment=xa;f.Profiler=za;f.PureComponent=N;f.StrictMode=ya;f.Suspense=Da;f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=v;f.cache=function(a){return function(){var b=oa.current;if(!b)return a.apply(null,arguments);var c=b.getCacheForType(wa);b=c.get(a);void 0===b&&(b=R(),c.set(a,b));c=0;for(var d=arguments.length;c<d;c++){var e=arguments[c];if("function"===typeof e||"object"===typeof e&&null!==e){var g=b.o;null===g&&(b.o=g=new WeakMap);b=g.get(e);void 0===b&&(b=R(), | ||
g.set(e,b))}else g=b.p,null===g&&(b.p=g=new Map),b=g.get(e),void 0===b&&(b=R(),g.set(e,b))}if(1===b.s)return b.v;if(2===b.s)throw b.v;try{var h=a.apply(null,arguments);c=b;c.s=1;return c.v=h}catch(l){throw h=b,h.s=2,h.v=l,l;}}};f.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var d=na({},a.props),e=a.key,g=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(g=b.ref,h=O.current);void 0!==b.key&&(e=""+ | ||
b.key);if(a.type&&a.type.defaultProps)var l=a.type.defaultProps;for(k in b)da.call(b,k)&&!ea.hasOwnProperty(k)&&(d[k]=void 0===b[k]&&void 0!==l?l[k]:b[k])}var k=arguments.length-2;if(1===k)d.children=c;else if(1<k){l=Array(k);for(var n=0;n<k;n++)l[n]=arguments[n+2];d.children=l}return{$$typeof:A,type:a.type,key:e,ref:g,props:d,_owner:h}};f.createContext=function(a){a={$$typeof:Aa,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null};a.Provider= | ||
{$$typeof:ma,_context:a};return a.Consumer=a};f.createElement=ca;f.createFactory=function(a){var b=ca.bind(null,a);b.type=a;return b};f.createRef=function(){return{current:null}};f.createServerContext=function(a,b){var c=!0;if(!L[a]){c=!1;var d={$$typeof:Ba,_currentValue:b,_currentValue2:b,_defaultValue:b,_threadCount:0,Provider:null,Consumer:null,_globalName:a};d.Provider={$$typeof:ma,_context:d};L[a]=d}d=L[a];if(d._defaultValue===W)d._defaultValue=b,d._currentValue===W&&(d._currentValue=b),d._currentValue2=== | ||
W&&(d._currentValue2=b);else if(c)throw Error("ServerContext: "+a+" already defined");return d};f.forwardRef=function(a){return{$$typeof:Ca,render:a}};f.isValidElement=P;f.lazy=function(a){return{$$typeof:Fa,_payload:{_status:-1,_result:a},_init:va}};f.memo=function(a,b){return{$$typeof:Ea,type:a,compare:void 0===b?null:b}};f.startTransition=function(a,b){b=K.transition;K.transition={};try{a()}finally{K.transition=b}};f.unstable_act=function(a){throw Error("act(...) is not supported in production builds of React."); | ||
};f.unstable_useCacheRefresh=function(){return m.current.useCacheRefresh()};f.use=function(a){return m.current.use(a)};f.useCallback=function(a,b){return m.current.useCallback(a,b)};f.useContext=function(a){return m.current.useContext(a)};f.useDebugValue=function(a,b){};f.useDeferredValue=function(a){return m.current.useDeferredValue(a)};f.useEffect=function(a,b){return m.current.useEffect(a,b)};f.useId=function(){return m.current.useId()};f.useImperativeHandle=function(a,b,c){return m.current.useImperativeHandle(a, | ||
b,c)};f.useInsertionEffect=function(a,b){return m.current.useInsertionEffect(a,b)};f.useLayoutEffect=function(a,b){return m.current.useLayoutEffect(a,b)};f.useMemo=function(a,b){return m.current.useMemo(a,b)};f.useReducer=function(a,b,c){return m.current.useReducer(a,b,c)};f.useRef=function(a){return m.current.useRef(a)};f.useState=function(a){return m.current.useState(a)};f.useSyncExternalStore=function(a,b,c){return m.current.useSyncExternalStore(a,b,c)};f.useTransition=function(){return m.current.useTransition()}; | ||
f.version="18.3.0-canary-1dba980e1f-20241220"}); | ||
})(); |
@@ -10,25 +10,26 @@ /** | ||
*/ | ||
'use strict';(function(){(function(f,z){"object"===typeof exports&&"undefined"!==typeof module?z(exports):"function"===typeof define&&define.amd?define(["exports"],z):(f="undefined"!==typeof globalThis?globalThis:f||self,z(f.React={}))})(this,function(f){function z(a){if(null===a||"object"!==typeof a)return null;a=W&&a[W]||a["@@iterator"];return"function"===typeof a?a:null}function y(a,b,c){this.props=a;this.context=b;this.refs=X;this.updater=c||Y}function Z(){}function M(a,b,c){this.props=a;this.context= | ||
b;this.refs=X;this.updater=c||Y}function aa(a,b,c){var e,d={},g=null,h=null;if(null!=b)for(e in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(g=""+b.key),b)ba.call(b,e)&&!ca.hasOwnProperty(e)&&(d[e]=b[e]);var l=arguments.length-2;if(1===l)d.children=c;else if(1<l){for(var k=Array(l),n=0;n<l;n++)k[n]=arguments[n+2];d.children=k}if(a&&a.defaultProps)for(e in l=a.defaultProps,l)void 0===d[e]&&(d[e]=l[e]);return{$$typeof:A,type:a,key:g,ref:h,props:d,_owner:N.current}}function pa(a,b){return{$$typeof:A,type:a.type, | ||
key:b,ref:a.ref,props:a.props,_owner:a._owner}}function O(a){return"object"===typeof a&&null!==a&&a.$$typeof===A}function qa(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(c){return b[c]})}function P(a,b){return"object"===typeof a&&null!==a&&null!=a.key?qa(""+a.key):b.toString(36)}function D(a,b,c,e,d){var g=typeof a;if("undefined"===g||"boolean"===g)a=null;var h=!1;if(null===a)h=!0;else switch(g){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case A:case ra:h= | ||
!0}}if(h)return h=a,d=d(h),a=""===e?"."+P(h,0):e,da(d)?(c="",null!=a&&(c=a.replace(ea,"$&/")+"/"),D(d,b,c,"",function(n){return n})):null!=d&&(O(d)&&(d=pa(d,c+(!d.key||h&&h.key===d.key?"":(""+d.key).replace(ea,"$&/")+"/")+a)),b.push(d)),1;h=0;e=""===e?".":e+":";if(da(a))for(var l=0;l<a.length;l++){g=a[l];var k=e+P(g,l);h+=D(g,b,c,k,d)}else if(k=z(a),"function"===typeof k)for(a=k.call(a),l=0;!(g=a.next()).done;)g=g.value,k=e+P(g,l++),h+=D(g,b,c,k,d);else if("object"===g)throw b=String(a),Error("Objects are not valid as a React child (found: "+ | ||
("[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b)+"). If you meant to render a collection of children, use an array instead.");return h}function E(a,b,c){if(null==a)return a;var e=[],d=0;D(a,e,"","",function(g){return b.call(c,g,d++)});return e}function sa(a){if(-1===a._status){var b=a._result;b=b();b.then(function(c){if(0===a._status||-1===a._status)a._status=1,a._result=c},function(c){if(0===a._status||-1===a._status)a._status=2,a._result=c});-1===a._status&&(a._status= | ||
0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}function ta(){return new WeakMap}function Q(){return{s:0,v:void 0,o:null,p:null}}function R(a,b){var c=a.length;a.push(b);a:for(;0<c;){var e=c-1>>>1,d=a[e];if(0<F(d,b))a[e]=b,a[c]=d,c=e;else break a}}function r(a){return 0===a.length?null:a[0]}function G(a){if(0===a.length)return null;var b=a[0],c=a.pop();if(c!==b){a[0]=c;a:for(var e=0,d=a.length,g=d>>>1;e<g;){var h=2*(e+1)-1,l=a[h],k=h+1,n=a[k];if(0>F(l,c))k<d&&0>F(n,l)?(a[e]= | ||
n,a[k]=c,e=k):(a[e]=l,a[h]=c,e=h);else if(k<d&&0>F(n,c))a[e]=n,a[k]=c,e=k;else break a}}return b}function F(a,b){var c=a.sortIndex-b.sortIndex;return 0!==c?c:a.id-b.id}function H(a){for(var b=r(u);null!==b;){if(null===b.callback)G(u);else if(b.startTime<=a)G(u),b.sortIndex=b.expirationTime,R(t,b);else break;b=r(u)}}function S(a){B=!1;H(a);if(!w)if(null!==r(t))w=!0,T();else{var b=r(u);null!==b&&U(S,b.startTime-a)}}function fa(){return x()-ha<ia?!1:!0}function T(){I||(I=!0,J())}function U(a,b){C=ja(function(){a(x())}, | ||
b)}var A=Symbol.for("react.element"),ra=Symbol.for("react.portal"),ua=Symbol.for("react.fragment"),va=Symbol.for("react.strict_mode"),wa=Symbol.for("react.profiler"),xa=Symbol.for("react.provider"),ya=Symbol.for("react.context"),za=Symbol.for("react.forward_ref"),Aa=Symbol.for("react.suspense"),Ba=Symbol.for("react.memo"),Ca=Symbol.for("react.lazy"),W=Symbol.iterator,Y={isMounted:function(a){return!1},enqueueForceUpdate:function(a,b,c){},enqueueReplaceState:function(a,b,c,e){},enqueueSetState:function(a, | ||
b,c,e){}},ka=Object.assign,X={};y.prototype.isReactComponent={};y.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,a,b,"setState")};y.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};Z.prototype=y.prototype;var v=M.prototype=new Z;v.constructor=M;ka(v,y.prototype); | ||
v.isPureReactComponent=!0;var da=Array.isArray,ba=Object.prototype.hasOwnProperty,N={current:null},ca={key:!0,ref:!0,__self:!0,__source:!0},ea=/\/+/g,la={current:null},m={current:null},K={transition:null};if("object"===typeof performance&&"function"===typeof performance.now){var Da=performance;var x=function(){return Da.now()}}else{var ma=Date,Ea=ma.now();x=function(){return ma.now()-Ea}}var t=[],u=[],Fa=1,q=null,p=3,L=!1,w=!1,B=!1,ja="function"===typeof setTimeout?setTimeout:null,na="function"=== | ||
typeof clearTimeout?clearTimeout:null,oa="undefined"!==typeof setImmediate?setImmediate:null;"undefined"!==typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending?navigator.scheduling.isInputPending.bind(navigator.scheduling):null;var I=!1,C=-1,ia=5,ha=-1,V=function(){if(I){var a=x();ha=a;var b=!0;try{a:{w=!1;B&&(B=!1,na(C),C=-1);L=!0;var c=p;try{b:{H(a);for(q=r(t);null!==q&&!(q.expirationTime>a&&fa());){var e=q.callback;if("function"===typeof e){q.callback=null; | ||
p=q.priorityLevel;var d=e(q.expirationTime<=a);a=x();if("function"===typeof d){q.callback=d;H(a);b=!0;break b}q===r(t)&&G(t);H(a)}else G(t);q=r(t)}if(null!==q)b=!0;else{var g=r(u);null!==g&&U(S,g.startTime-a);b=!1}}break a}finally{q=null,p=c,L=!1}b=void 0}}finally{b?J():I=!1}}};if("function"===typeof oa)var J=function(){oa(V)};else if("undefined"!==typeof MessageChannel){v=new MessageChannel;var Ga=v.port2;v.port1.onmessage=V;J=function(){Ga.postMessage(null)}}else J=function(){ja(V,0)};v={ReactCurrentDispatcher:m, | ||
ReactCurrentCache:la,ReactCurrentOwner:N,ReactCurrentBatchConfig:K,Scheduler:{__proto__:null,unstable_IdlePriority:5,unstable_ImmediatePriority:1,unstable_LowPriority:4,unstable_NormalPriority:3,unstable_Profiling:null,unstable_UserBlockingPriority:2,unstable_cancelCallback:function(a){a.callback=null},unstable_continueExecution:function(){w||L||(w=!0,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"): | ||
ia=0<a?Math.floor(1E3/a):5},unstable_getCurrentPriorityLevel:function(){return p},unstable_getFirstCallbackNode:function(){return r(t)},unstable_next:function(a){switch(p){case 1:case 2:case 3:var b=3;break;default:b=p}var c=p;p=b;try{return a()}finally{p=c}},get unstable_now(){return x},unstable_pauseExecution:function(){},unstable_requestPaint:function(){},unstable_runWithPriority:function(a,b){switch(a){case 1:case 2:case 3:case 4:case 5:break;default:a=3}var c=p;p=a;try{return b()}finally{p=c}}, | ||
unstable_scheduleCallback:function(a,b,c){var e=x();"object"===typeof c&&null!==c?(c=c.delay,c="number"===typeof c&&0<c?e+c:e):c=e;switch(a){case 1:var d=-1;break;case 2:d=250;break;case 5:d=1073741823;break;case 4:d=1E4;break;default:d=5E3}d=c+d;a={id:Fa++,callback:b,priorityLevel:a,startTime:c,expirationTime:d,sortIndex:-1};c>e?(a.sortIndex=c,R(u,a),null===r(t)&&a===r(u)&&(B?(na(C),C=-1):B=!0,U(S,c-e))):(a.sortIndex=d,R(t,a),w||L||(w=!0,T()));return a},unstable_shouldYield:fa,unstable_wrapCallback:function(a){var b= | ||
p;return function(){var c=p;p=b;try{return a.apply(this,arguments)}finally{p=c}}}}};f.Children={map:E,forEach:function(a,b,c){E(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;E(a,function(){b++});return b},toArray:function(a){return E(a,function(b){return b})||[]},only:function(a){if(!O(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};f.Component=y;f.Fragment=ua;f.Profiler=wa;f.PureComponent=M;f.StrictMode=va;f.Suspense=Aa;f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED= | ||
v;f.cache=function(a){return function(){var b=la.current;if(!b)return a.apply(null,arguments);var c=b.getCacheForType(ta);b=c.get(a);void 0===b&&(b=Q(),c.set(a,b));c=0;for(var e=arguments.length;c<e;c++){var d=arguments[c];if("function"===typeof d||"object"===typeof d&&null!==d){var g=b.o;null===g&&(b.o=g=new WeakMap);b=g.get(d);void 0===b&&(b=Q(),g.set(d,b))}else g=b.p,null===g&&(b.p=g=new Map),b=g.get(d),void 0===b&&(b=Q(),g.set(d,b))}if(1===b.s)return b.v;if(2===b.s)throw b.v;try{var h=a.apply(null, | ||
arguments);c=b;c.s=1;return c.v=h}catch(l){throw h=b,h.s=2,h.v=l,l;}}};f.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var e=ka({},a.props),d=a.key,g=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(g=b.ref,h=N.current);void 0!==b.key&&(d=""+b.key);if(a.type&&a.type.defaultProps)var l=a.type.defaultProps;for(k in b)ba.call(b,k)&&!ca.hasOwnProperty(k)&&(e[k]=void 0===b[k]&&void 0!==l?l[k]:b[k])}var k= | ||
arguments.length-2;if(1===k)e.children=c;else if(1<k){l=Array(k);for(var n=0;n<k;n++)l[n]=arguments[n+2];e.children=l}return{$$typeof:A,type:a.type,key:d,ref:g,props:e,_owner:h}};f.createContext=function(a){a={$$typeof:ya,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null};a.Provider={$$typeof:xa,_context:a};return a.Consumer=a};f.createElement=aa;f.createFactory=function(a){var b=aa.bind(null,a);b.type=a;return b};f.createRef=function(){return{current:null}}; | ||
f.forwardRef=function(a){return{$$typeof:za,render:a}};f.isValidElement=O;f.lazy=function(a){return{$$typeof:Ca,_payload:{_status:-1,_result:a},_init:sa}};f.memo=function(a,b){return{$$typeof:Ba,type:a,compare:void 0===b?null:b}};f.startTransition=function(a,b){b=K.transition;K.transition={};try{a()}finally{K.transition=b}};f.unstable_act=function(a){throw Error("act(...) is not supported in production builds of React.");};f.unstable_useCacheRefresh=function(){return m.current.useCacheRefresh()}; | ||
f.use=function(a){return m.current.use(a)};f.useCallback=function(a,b){return m.current.useCallback(a,b)};f.useContext=function(a){return m.current.useContext(a)};f.useDebugValue=function(a,b){};f.useDeferredValue=function(a,b){return m.current.useDeferredValue(a,b)};f.useEffect=function(a,b){return m.current.useEffect(a,b)};f.useId=function(){return m.current.useId()};f.useImperativeHandle=function(a,b,c){return m.current.useImperativeHandle(a,b,c)};f.useInsertionEffect=function(a,b){return m.current.useInsertionEffect(a, | ||
b)};f.useLayoutEffect=function(a,b){return m.current.useLayoutEffect(a,b)};f.useMemo=function(a,b){return m.current.useMemo(a,b)};f.useOptimistic=function(a,b){return m.current.useOptimistic(a,b)};f.useReducer=function(a,b,c){return m.current.useReducer(a,b,c)};f.useRef=function(a){return m.current.useRef(a)};f.useState=function(a){return m.current.useState(a)};f.useSyncExternalStore=function(a,b,c){return m.current.useSyncExternalStore(a,b,c)};f.useTransition=function(){return m.current.useTransition()}; | ||
f.version="18.3.0-canary-1d5667a12-20240102"})})(); | ||
(function(){'use strict';(function(f,z){"object"===typeof exports&&"undefined"!==typeof module?z(exports):"function"===typeof define&&define.amd?define(["exports"],z):(f="undefined"!==typeof globalThis?globalThis:f||self,z(f.React={}))})(this,function(f){function z(a){if(null===a||"object"!==typeof a)return null;a=Y&&a[Y]||a["@@iterator"];return"function"===typeof a?a:null}function y(a,b,c){this.props=a;this.context=b;this.refs=Z;this.updater=c||aa}function ba(){}function N(a,b,c){this.props=a;this.context=b; | ||
this.refs=Z;this.updater=c||aa}function ca(a,b,c){var d,e={},g=null,h=null;if(null!=b)for(d in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(g=""+b.key),b)da.call(b,d)&&!ea.hasOwnProperty(d)&&(e[d]=b[d]);var l=arguments.length-2;if(1===l)e.children=c;else if(1<l){for(var k=Array(l),n=0;n<l;n++)k[n]=arguments[n+2];e.children=k}if(a&&a.defaultProps)for(d in l=a.defaultProps,l)void 0===e[d]&&(e[d]=l[d]);return{$$typeof:A,type:a,key:g,ref:h,props:e,_owner:O.current}}function sa(a,b){return{$$typeof:A,type:a.type, | ||
key:b,ref:a.ref,props:a.props,_owner:a._owner}}function P(a){return"object"===typeof a&&null!==a&&a.$$typeof===A}function ta(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(c){return b[c]})}function Q(a,b){return"object"===typeof a&&null!==a&&null!=a.key?ta(""+a.key):b.toString(36)}function D(a,b,c,d,e){var g=typeof a;if("undefined"===g||"boolean"===g)a=null;var h=!1;if(null===a)h=!0;else switch(g){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case A:case ua:h= | ||
!0}}if(h)return h=a,e=e(h),a=""===d?"."+Q(h,0):d,fa(e)?(c="",null!=a&&(c=a.replace(ha,"$&/")+"/"),D(e,b,c,"",function(n){return n})):null!=e&&(P(e)&&(e=sa(e,c+(!e.key||h&&h.key===e.key?"":(""+e.key).replace(ha,"$&/")+"/")+a)),b.push(e)),1;h=0;d=""===d?".":d+":";if(fa(a))for(var l=0;l<a.length;l++){g=a[l];var k=d+Q(g,l);h+=D(g,b,c,k,e)}else if(k=z(a),"function"===typeof k)for(a=k.call(a),l=0;!(g=a.next()).done;)g=g.value,k=d+Q(g,l++),h+=D(g,b,c,k,e);else if("object"===g)throw b=String(a),Error("Objects are not valid as a React child (found: "+ | ||
("[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b)+"). If you meant to render a collection of children, use an array instead.");return h}function E(a,b,c){if(null==a)return a;var d=[],e=0;D(a,d,"","",function(g){return b.call(c,g,e++)});return d}function va(a){if(-1===a._status){var b=a._result;b=b();b.then(function(c){if(0===a._status||-1===a._status)a._status=1,a._result=c},function(c){if(0===a._status||-1===a._status)a._status=2,a._result=c});-1===a._status&&(a._status= | ||
0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}function wa(){return new WeakMap}function R(){return{s:0,v:void 0,o:null,p:null}}function S(a,b){var c=a.length;a.push(b);a:for(;0<c;){var d=c-1>>>1,e=a[d];if(0<F(e,b))a[d]=b,a[c]=e,c=d;else break a}}function r(a){return 0===a.length?null:a[0]}function G(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,g=e>>>1;d<g;){var h=2*(d+1)-1,l=a[h],k=h+1,n=a[k];if(0>F(l,c))k<e&&0>F(n,l)?(a[d]= | ||
n,a[k]=c,d=k):(a[d]=l,a[h]=c,d=h);else if(k<e&&0>F(n,c))a[d]=n,a[k]=c,d=k;else break a}}return b}function F(a,b){var c=a.sortIndex-b.sortIndex;return 0!==c?c:a.id-b.id}function H(a){for(var b=r(u);null!==b;){if(null===b.callback)G(u);else if(b.startTime<=a)G(u),b.sortIndex=b.expirationTime,S(t,b);else break;b=r(u)}}function T(a){B=!1;H(a);if(!w)if(null!==r(t))w=!0,U();else{var b=r(u);null!==b&&V(T,b.startTime-a)}}function ia(){return x()-ja<ka?!1:!0}function U(){I||(I=!0,J())}function V(a,b){C=la(function(){a(x())}, | ||
b)}var A=Symbol.for("react.element"),ua=Symbol.for("react.portal"),xa=Symbol.for("react.fragment"),ya=Symbol.for("react.strict_mode"),za=Symbol.for("react.profiler"),ma=Symbol.for("react.provider"),Aa=Symbol.for("react.context"),Ba=Symbol.for("react.server_context"),Ca=Symbol.for("react.forward_ref"),Da=Symbol.for("react.suspense"),Ea=Symbol.for("react.memo"),Fa=Symbol.for("react.lazy"),W=Symbol.for("react.default_value"),Y=Symbol.iterator,aa={isMounted:function(a){return!1},enqueueForceUpdate:function(a, | ||
b,c){},enqueueReplaceState:function(a,b,c,d){},enqueueSetState:function(a,b,c,d){}},na=Object.assign,Z={};y.prototype.isReactComponent={};y.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,a,b,"setState")};y.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")}; | ||
ba.prototype=y.prototype;var v=N.prototype=new ba;v.constructor=N;na(v,y.prototype);v.isPureReactComponent=!0;var fa=Array.isArray,da=Object.prototype.hasOwnProperty,O={current:null},ea={key:!0,ref:!0,__self:!0,__source:!0},ha=/\/+/g,oa={current:null},m={current:null},K={transition:null},L={};if("object"===typeof performance&&"function"===typeof performance.now){var Ga=performance;var x=function(){return Ga.now()}}else{var pa=Date,Ha=pa.now();x=function(){return pa.now()-Ha}}var t=[],u=[],Ia=1,q= | ||
null,p=3,M=!1,w=!1,B=!1,la="function"===typeof setTimeout?setTimeout:null,qa="function"===typeof clearTimeout?clearTimeout:null,ra="undefined"!==typeof setImmediate?setImmediate:null;"undefined"!==typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending?navigator.scheduling.isInputPending.bind(navigator.scheduling):null;var I=!1,C=-1,ka=5,ja=-1,X=function(){if(I){var a=x();ja=a;var b=!0;try{a:{w=!1;B&&(B=!1,qa(C),C=-1);M=!0;var c=p;try{b:{H(a);for(q=r(t);null!== | ||
q&&!(q.expirationTime>a&&ia());){var d=q.callback;if("function"===typeof d){q.callback=null;p=q.priorityLevel;var e=d(q.expirationTime<=a);a=x();if("function"===typeof e){q.callback=e;H(a);b=!0;break b}q===r(t)&&G(t);H(a)}else G(t);q=r(t)}if(null!==q)b=!0;else{var g=r(u);null!==g&&V(T,g.startTime-a);b=!1}}break a}finally{q=null,p=c,M=!1}b=void 0}}finally{b?J():I=!1}}};if("function"===typeof ra)var J=function(){ra(X)};else if("undefined"!==typeof MessageChannel){v=new MessageChannel;var Ja=v.port2; | ||
v.port1.onmessage=X;J=function(){Ja.postMessage(null)}}else J=function(){la(X,0)};v={ReactCurrentDispatcher:m,ReactCurrentCache:oa,ReactCurrentOwner:O,ReactCurrentBatchConfig:K,Scheduler:{__proto__:null,unstable_IdlePriority:5,unstable_ImmediatePriority:1,unstable_LowPriority:4,unstable_NormalPriority:3,unstable_Profiling:null,unstable_UserBlockingPriority:2,unstable_cancelCallback:function(a){a.callback=null},unstable_continueExecution:function(){w||M||(w=!0,U())},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"):ka=0<a?Math.floor(1E3/a):5},unstable_getCurrentPriorityLevel:function(){return p},unstable_getFirstCallbackNode:function(){return r(t)},unstable_next:function(a){switch(p){case 1:case 2:case 3:var b=3;break;default:b=p}var c=p;p=b;try{return a()}finally{p=c}},get unstable_now(){return x},unstable_pauseExecution:function(){},unstable_requestPaint:function(){},unstable_runWithPriority:function(a, | ||
b){switch(a){case 1:case 2:case 3:case 4:case 5:break;default:a=3}var c=p;p=a;try{return b()}finally{p=c}},unstable_scheduleCallback:function(a,b,c){var d=x();"object"===typeof c&&null!==c?(c=c.delay,c="number"===typeof c&&0<c?d+c:d):c=d;switch(a){case 1:var e=-1;break;case 2:e=250;break;case 5:e=1073741823;break;case 4:e=1E4;break;default:e=5E3}e=c+e;a={id:Ia++,callback:b,priorityLevel:a,startTime:c,expirationTime:e,sortIndex:-1};c>d?(a.sortIndex=c,S(u,a),null===r(t)&&a===r(u)&&(B?(qa(C),C=-1):B= | ||
!0,V(T,c-d))):(a.sortIndex=e,S(t,a),w||M||(w=!0,U()));return a},unstable_shouldYield:ia,unstable_wrapCallback:function(a){var b=p;return function(){var c=p;p=b;try{return a.apply(this,arguments)}finally{p=c}}}},ContextRegistry:L};f.Children={map:E,forEach:function(a,b,c){E(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;E(a,function(){b++});return b},toArray:function(a){return E(a,function(b){return b})||[]},only:function(a){if(!P(a))throw Error("React.Children.only expected to receive a single React element child."); | ||
return a}};f.Component=y;f.Fragment=xa;f.Profiler=za;f.PureComponent=N;f.StrictMode=ya;f.Suspense=Da;f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=v;f.cache=function(a){return function(){var b=oa.current;if(!b)return a.apply(null,arguments);var c=b.getCacheForType(wa);b=c.get(a);void 0===b&&(b=R(),c.set(a,b));c=0;for(var d=arguments.length;c<d;c++){var e=arguments[c];if("function"===typeof e||"object"===typeof e&&null!==e){var g=b.o;null===g&&(b.o=g=new WeakMap);b=g.get(e);void 0===b&&(b=R(), | ||
g.set(e,b))}else g=b.p,null===g&&(b.p=g=new Map),b=g.get(e),void 0===b&&(b=R(),g.set(e,b))}if(1===b.s)return b.v;if(2===b.s)throw b.v;try{var h=a.apply(null,arguments);c=b;c.s=1;return c.v=h}catch(l){throw h=b,h.s=2,h.v=l,l;}}};f.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var d=na({},a.props),e=a.key,g=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(g=b.ref,h=O.current);void 0!==b.key&&(e=""+ | ||
b.key);if(a.type&&a.type.defaultProps)var l=a.type.defaultProps;for(k in b)da.call(b,k)&&!ea.hasOwnProperty(k)&&(d[k]=void 0===b[k]&&void 0!==l?l[k]:b[k])}var k=arguments.length-2;if(1===k)d.children=c;else if(1<k){l=Array(k);for(var n=0;n<k;n++)l[n]=arguments[n+2];d.children=l}return{$$typeof:A,type:a.type,key:e,ref:g,props:d,_owner:h}};f.createContext=function(a){a={$$typeof:Aa,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null};a.Provider= | ||
{$$typeof:ma,_context:a};return a.Consumer=a};f.createElement=ca;f.createFactory=function(a){var b=ca.bind(null,a);b.type=a;return b};f.createRef=function(){return{current:null}};f.createServerContext=function(a,b){var c=!0;if(!L[a]){c=!1;var d={$$typeof:Ba,_currentValue:b,_currentValue2:b,_defaultValue:b,_threadCount:0,Provider:null,Consumer:null,_globalName:a};d.Provider={$$typeof:ma,_context:d};L[a]=d}d=L[a];if(d._defaultValue===W)d._defaultValue=b,d._currentValue===W&&(d._currentValue=b),d._currentValue2=== | ||
W&&(d._currentValue2=b);else if(c)throw Error("ServerContext: "+a+" already defined");return d};f.forwardRef=function(a){return{$$typeof:Ca,render:a}};f.isValidElement=P;f.lazy=function(a){return{$$typeof:Fa,_payload:{_status:-1,_result:a},_init:va}};f.memo=function(a,b){return{$$typeof:Ea,type:a,compare:void 0===b?null:b}};f.startTransition=function(a,b){b=K.transition;K.transition={};try{a()}finally{K.transition=b}};f.unstable_act=function(a){throw Error("act(...) is not supported in production builds of React."); | ||
};f.unstable_useCacheRefresh=function(){return m.current.useCacheRefresh()};f.use=function(a){return m.current.use(a)};f.useCallback=function(a,b){return m.current.useCallback(a,b)};f.useContext=function(a){return m.current.useContext(a)};f.useDebugValue=function(a,b){};f.useDeferredValue=function(a){return m.current.useDeferredValue(a)};f.useEffect=function(a,b){return m.current.useEffect(a,b)};f.useId=function(){return m.current.useId()};f.useImperativeHandle=function(a,b,c){return m.current.useImperativeHandle(a, | ||
b,c)};f.useInsertionEffect=function(a,b){return m.current.useInsertionEffect(a,b)};f.useLayoutEffect=function(a,b){return m.current.useLayoutEffect(a,b)};f.useMemo=function(a,b){return m.current.useMemo(a,b)};f.useReducer=function(a,b,c){return m.current.useReducer(a,b,c)};f.useRef=function(a){return m.current.useRef(a)};f.useState=function(a){return m.current.useState(a)};f.useSyncExternalStore=function(a,b,c){return m.current.useSyncExternalStore(a,b,c)};f.useTransition=function(){return m.current.useTransition()}; | ||
f.version="18.3.0-canary-1dba980e1f-20241220"}); | ||
})(); |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4
442477
20
10291