Socket
Socket
Sign inDemoInstall

react

Package Overview
Dependencies
2
Maintainers
4
Versions
1742
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.0-experimental-f0dd459e0-20220301 to 0.0.0-experimental-f0e808e5b-20240214

cjs/react-jsx-dev-runtime.production.js

413

cjs/react-jsx-dev-runtime.development.js

@@ -5,3 +5,3 @@ /**

*
* Copyright (c) Facebook, Inc. and its affiliates.
* Copyright (c) Meta Platforms, Inc. and affiliates.
*

@@ -29,3 +29,5 @@ * This source code is licensed under the MIT license found in the

var REACT_PROFILER_TYPE = Symbol.for('react.profiler');
var REACT_PROVIDER_TYPE = Symbol.for('react.provider');
var REACT_PROVIDER_TYPE = Symbol.for('react.provider'); // TODO: Delete with enableRenderableContext
var REACT_CONSUMER_TYPE = Symbol.for('react.consumer');
var REACT_CONTEXT_TYPE = Symbol.for('react.context');

@@ -37,7 +39,4 @@ var REACT_FORWARD_REF_TYPE = Symbol.for('react.forward_ref');

var REACT_LAZY_TYPE = Symbol.for('react.lazy');
var REACT_DEBUG_TRACING_MODE_TYPE = Symbol.for('react.debug_trace_mode');
var REACT_OFFSCREEN_TYPE = Symbol.for('react.offscreen');
var REACT_LEGACY_HIDDEN_TYPE = Symbol.for('react.legacy_hidden');
var REACT_CACHE_TYPE = Symbol.for('react.cache');
var REACT_TRACING_MARKER_TYPE = Symbol.for('react.tracing_marker');
var MAYBE_ITERATOR_SYMBOL = Symbol.iterator;

@@ -103,3 +102,10 @@ var FAUX_ITERATOR_SYMBOL = '@@iterator';

var REACT_MODULE_REFERENCE = Symbol.for('react.module.reference');
var enableLegacyHidden = false; // Enables unstable_avoidThisFallback feature in Fiber
var enableRenderableContext = false;
// stuff. Intended to enable React core members to more easily debug scheduling
// issues in DEV builds.
var enableDebugTracing = false;
var REACT_CLIENT_REFERENCE$2 = Symbol.for('react.client.reference');
function isValidElementType(type) {

@@ -111,3 +117,3 @@ if (typeof type === 'string' || typeof type === 'function') {

if (type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || type === REACT_DEBUG_TRACING_MODE_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || type === REACT_LEGACY_HIDDEN_TYPE || type === REACT_OFFSCREEN_TYPE || enableScopeAPI || type === REACT_CACHE_TYPE || enableTransitionTracing ) {
if (type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || enableDebugTracing || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || enableLegacyHidden || type === REACT_OFFSCREEN_TYPE || enableScopeAPI || type === REACT_CACHE_TYPE || enableTransitionTracing ) {
return true;

@@ -117,7 +123,7 @@ }

if (typeof type === 'object' && type !== null) {
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || enableRenderableContext || type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object
// types supported by any Flight configuration anywhere since
// we don't know which Flight build this will end up being used
// with.
type.$$typeof === REACT_MODULE_REFERENCE || type.getModuleId !== undefined) {
type.$$typeof === REACT_CLIENT_REFERENCE$2 || type.getModuleId !== undefined) {
return true;

@@ -144,4 +150,5 @@ }

return type.displayName || 'Context';
} // Note that the reconciler package should generally prefer to use getComponentNameFromFiber() instead.
}
var REACT_CLIENT_REFERENCE$1 = Symbol.for('react.client.reference'); // Note that the reconciler package should generally prefer to use getComponentNameFromFiber() instead.

@@ -154,9 +161,8 @@ function getComponentNameFromType(type) {

{
if (typeof type.tag === 'number') {
error('Received an unexpected object in getComponentNameFromType(). ' + 'This is likely a bug in React. Please file an issue.');
if (typeof type === 'function') {
if (type.$$typeof === REACT_CLIENT_REFERENCE$1) {
// TODO: Create a convention for naming client references with debug info.
return null;
}
}
if (typeof type === 'function') {
return type.displayName || type.name || null;

@@ -189,18 +195,34 @@ }

case REACT_CACHE_TYPE:
return 'Cache';
{
return 'Cache';
}
case REACT_TRACING_MARKER_TYPE:
return 'TracingMarker';
}
if (typeof type === 'object') {
{
if (typeof type.tag === 'number') {
error('Received an unexpected object in getComponentNameFromType(). ' + 'This is likely a bug in React. Please file an issue.');
}
}
switch (type.$$typeof) {
case REACT_PROVIDER_TYPE:
{
var provider = type;
return getContextName(provider._context) + '.Provider';
}
case REACT_CONTEXT_TYPE:
var context = type;
return getContextName(context) + '.Consumer';
case REACT_PROVIDER_TYPE:
var provider = type;
return getContextName(provider._context) + '.Provider';
{
return getContextName(context) + '.Consumer';
}
case REACT_CONSUMER_TYPE:
{
return null;
}
case REACT_FORWARD_REF_TYPE:

@@ -271,3 +293,3 @@ return getWrappedName(type, type.render, 'ForwardRef');

writable: true
}; // $FlowFixMe Flow thinks console is immutable.
}; // $FlowFixMe[cannot-write] Flow thinks console is immutable.

@@ -299,3 +321,3 @@ Object.defineProperties(console, {

writable: true
}; // $FlowFixMe Flow thinks console is immutable.
}; // $FlowFixMe[cannot-write] Flow thinks console is immutable.

@@ -336,3 +358,3 @@ Object.defineProperties(console, {

var prefix;
function describeBuiltInComponentFrame(name, source, ownerFn) {
function describeBuiltInComponentFrame(name, ownerFn) {
{

@@ -360,6 +382,18 @@ if (prefix === undefined) {

}
/**
* 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) {
// If something asked for a stack inside a fake render, it should get ignored.
if ( !fn || reentry) {
if (!fn || reentry) {
return '';

@@ -376,5 +410,4 @@ }

var control;
reentry = true;
var previousPrepareStackTrace = Error.prepareStackTrace; // $FlowFixMe It does accept undefined.
var previousPrepareStackTrace = Error.prepareStackTrace; // $FlowFixMe[incompatible-type] It does accept undefined.

@@ -391,68 +424,138 @@ Error.prepareStackTrace = 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
var RunInRootFrame = {
DetermineComponentFrameRoot: function () {
var control;
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();
}
});
try {
// This should throw.
if (construct) {
// Something should be setting the props in the constructor.
var Fake = function () {
throw Error();
}; // $FlowFixMe[prop-missing]
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;
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;
}
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
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 () {});
}
}
fn.call(Fake.prototype);
} 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];
}
}
} else {
try {
throw Error();
} catch (x) {
control = x;
}
fn();
return [null, null];
}
} catch (sample) {
// This is inlined manually because closure doesn't do it for us.
if (sample && control && typeof sample.stack === 'string') {
}; // $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) {
// 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 = sample.stack.split('\n');
var controlLines = control.stack.split('\n');
var s = sampleLines.length - 1;
var c = controlLines.length - 1;
var sampleLines = sampleStack.split('\n');
var controlLines = controlStack.split('\n');
var s = 0;
var c = 0;
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 (s < sampleLines.length && !sampleLines[s].includes('DetermineComponentFrameRoot')) {
s++;
}
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--) {

@@ -484,3 +587,3 @@ // Next we find the first one that isn't the same which should be the

{
if (true) {
if (typeof fn === 'function') {

@@ -524,3 +627,3 @@ componentFrameCache.set(fn, _frame);

}
function describeFunctionComponentFrame(fn, source, ownerFn) {
function describeFunctionComponentFrame(fn, ownerFn) {
{

@@ -536,3 +639,3 @@ return describeNativeComponentFrame(fn, false);

function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {
function describeUnknownElementTypeFrameInDEV(type, ownerFn) {

@@ -568,3 +671,3 @@ if (type == null) {

// Memo may contain any component type so we recursively resolve it.
return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);
return describeUnknownElementTypeFrameInDEV(type.type, ownerFn);

@@ -579,3 +682,3 @@ case REACT_LAZY_TYPE:

// Lazy may contain any component type so we recursively resolve it.
return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);
return describeUnknownElementTypeFrameInDEV(init(payload), ownerFn);
} catch (x) {}

@@ -589,15 +692,16 @@ }

// $FlowFixMe[method-unbinding]
var hasOwnProperty = Object.prototype.hasOwnProperty;
var loggedTypeFailures = {};
var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;
var ReactDebugCurrentFrame$1 = ReactSharedInternals.ReactDebugCurrentFrame;
function setCurrentlyValidatingElement(element) {
function setCurrentlyValidatingElement$1(element) {
{
if (element) {
var owner = element._owner;
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
ReactDebugCurrentFrame.setExtraStackFrame(stack);
var stack = describeUnknownElementTypeFrameInDEV(element.type, owner ? owner.type : null);
ReactDebugCurrentFrame$1.setExtraStackFrame(stack);
} else {
ReactDebugCurrentFrame.setExtraStackFrame(null);
ReactDebugCurrentFrame$1.setExtraStackFrame(null);
}

@@ -609,3 +713,3 @@ }

{
// $FlowFixMe This is okay but Flow doesn't know it.
// $FlowFixMe[incompatible-use] This is okay but Flow doesn't know it.
var has = Function.call.bind(hasOwnProperty);

@@ -635,7 +739,7 @@

if (error$1 && !(error$1 instanceof Error)) {
setCurrentlyValidatingElement(element);
setCurrentlyValidatingElement$1(element);
error('%s: type specification of %s' + ' `%s` is invalid; the type checker ' + 'function must return `null` or an `Error` but returned a %s. ' + 'You may have forgotten to pass an argument to the type checker ' + 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' + 'shape all require an argument).', componentName || 'React class', location, typeSpecName, typeof error$1);
setCurrentlyValidatingElement(null);
setCurrentlyValidatingElement$1(null);
}

@@ -647,7 +751,7 @@

loggedTypeFailures[error$1.message] = true;
setCurrentlyValidatingElement(element);
setCurrentlyValidatingElement$1(element);
error('Failed %s type: %s', location, error$1.message);
setCurrentlyValidatingElement(null);
setCurrentlyValidatingElement$1(null);
}

@@ -666,3 +770,3 @@ }

/*
* The `'' + value` pattern (used in in perf-sensitive code) throws for Symbol
* The `'' + value` pattern (used in perf-sensitive code) throws for Symbol
* and Temporal.* types. See https://github.com/facebook/react/pull/22064.

@@ -675,3 +779,3 @@ *

*/
// $FlowFixMe only called in DEV, so void return is not possible.
// $FlowFixMe[incompatible-return] only called in DEV, so void return is not possible.
function typeName(value) {

@@ -681,6 +785,7 @@ {

var hasToStringTag = typeof Symbol === 'function' && Symbol.toStringTag;
var type = hasToStringTag && value[Symbol.toStringTag] || value.constructor.name || 'Object';
var type = hasToStringTag && value[Symbol.toStringTag] || value.constructor.name || 'Object'; // $FlowFixMe[incompatible-return]
return type;
}
} // $FlowFixMe only called in DEV, so void return is not possible.
} // $FlowFixMe[incompatible-return] only called in DEV, so void return is not possible.

@@ -728,3 +833,3 @@

if (willCoercionThrow(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));
error('The provided key is an unsupported type %s.' + ' This value must be coerced to a string before using it here.', typeName(value));

@@ -736,9 +841,3 @@ return testStringCoercion(value); // throw (to help callers find troubleshooting comments)

var ReactCurrentOwner = ReactSharedInternals.ReactCurrentOwner;
var RESERVED_PROPS = {
key: true,
ref: true,
__self: true,
__source: true
};
var ReactCurrentOwner$1 = ReactSharedInternals.ReactCurrentOwner;
var specialPropKeyWarningShown;

@@ -782,7 +881,7 @@ var specialPropRefWarningShown;

{
if (typeof config.ref === 'string' && ReactCurrentOwner.current && self && ReactCurrentOwner.current.stateNode !== self) {
var componentName = getComponentNameFromType(ReactCurrentOwner.current.type);
if (typeof config.ref === 'string' && ReactCurrentOwner$1.current && self && ReactCurrentOwner$1.current.stateNode !== self) {
var componentName = getComponentNameFromType(ReactCurrentOwner$1.current.type);
if (!didWarnAboutStringRefs[componentName]) {
error('Component "%s" contains the string ref "%s". ' + 'Support for string refs will be removed in a future major release. ' + 'This case cannot be automatically converted to an arrow function. ' + 'We ask you to manually fix this case by using useRef() or createRef() instead. ' + 'Learn more about using refs safely here: ' + 'https://reactjs.org/link/strict-mode-string-ref', getComponentNameFromType(ReactCurrentOwner.current.type), config.ref);
error('Component "%s" contains the string ref "%s". ' + 'Support for string refs will be removed in a future major release. ' + 'This case cannot be automatically converted to an arrow function. ' + 'We ask you to manually fix this case by using useRef() or createRef() instead. ' + 'Learn more about using refs safely here: ' + 'https://reactjs.org/link/strict-mode-string-ref', getComponentNameFromType(ReactCurrentOwner$1.current.type), config.ref);

@@ -852,3 +951,3 @@ didWarnAboutStringRefs[componentName] = true;

var ReactElement = function (type, key, ref, self, source, owner, props) {
function ReactElement(type, key, ref, self, source, owner, props) {
var element = {

@@ -881,17 +980,9 @@ // This tag allows us to uniquely identify this as a React Element

value: false
}); // self and source are DEV only properties.
}); // debugInfo contains Server Component debug information.
Object.defineProperty(element, '_self', {
Object.defineProperty(element, '_debugInfo', {
configurable: false,
enumerable: false,
writable: false,
value: self
}); // Two elements created in two different places should be considered
// equal for testing purposes and therefore we hide it from enumeration.
Object.defineProperty(element, '_source', {
configurable: false,
enumerable: false,
writable: false,
value: source
writable: true,
value: null
});

@@ -906,3 +997,3 @@

return element;
};
}
/**

@@ -915,3 +1006,3 @@ * https://github.com/reactjs/rfcs/pull/107

function jsxDEV(type, config, maybeKey, source, self) {
function jsxDEV$1(type, config, maybeKey, source, self) {
{

@@ -952,3 +1043,5 @@ var propName; // Reserved names are extracted

for (propName in config) {
if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
if (hasOwnProperty.call(config, propName) && // Skip over reserved prop names
propName !== 'key' && // TODO: `ref` will no longer be reserved in the next major
propName !== 'ref') {
props[propName] = config[propName];

@@ -981,17 +1074,18 @@ }

return ReactElement(type, key, ref, self, source, ReactCurrentOwner.current, props);
return ReactElement(type, key, ref, self, source, ReactCurrentOwner$1.current, props);
}
}
var ReactCurrentOwner$1 = ReactSharedInternals.ReactCurrentOwner;
var ReactDebugCurrentFrame$1 = ReactSharedInternals.ReactDebugCurrentFrame;
var ReactCurrentOwner = ReactSharedInternals.ReactCurrentOwner;
var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;
var REACT_CLIENT_REFERENCE = Symbol.for('react.client.reference');
function setCurrentlyValidatingElement$1(element) {
function setCurrentlyValidatingElement(element) {
{
if (element) {
var owner = element._owner;
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
ReactDebugCurrentFrame$1.setExtraStackFrame(stack);
var stack = describeUnknownElementTypeFrameInDEV(element.type, owner ? owner.type : null);
ReactDebugCurrentFrame.setExtraStackFrame(stack);
} else {
ReactDebugCurrentFrame$1.setExtraStackFrame(null);
ReactDebugCurrentFrame.setExtraStackFrame(null);
}

@@ -1023,4 +1117,4 @@ }

{
if (ReactCurrentOwner$1.current) {
var name = getComponentNameFromType(ReactCurrentOwner$1.current.type);
if (ReactCurrentOwner.current) {
var name = getComponentNameFromType(ReactCurrentOwner.current.type);

@@ -1061,3 +1155,3 @@ if (name) {

if (!info) {
var parentName = typeof parentType === 'string' ? parentType : parentType.displayName || parentType.name;
var parentName = getComponentNameFromType(parentType);

@@ -1104,3 +1198,3 @@ if (parentName) {

if (element && element._owner && element._owner !== ReactCurrentOwner$1.current) {
if (element && element._owner && element._owner !== ReactCurrentOwner.current) {
// Give the component that originally created this child.

@@ -1110,7 +1204,7 @@ childOwner = " It was passed a child from " + getComponentNameFromType(element._owner.type) + ".";

setCurrentlyValidatingElement$1(element);
setCurrentlyValidatingElement(element);
error('Each child in a list should have a unique "key" prop.' + '%s%s See https://reactjs.org/link/warning-keys for more information.', currentComponentErrorInfo, childOwner);
setCurrentlyValidatingElement$1(null);
setCurrentlyValidatingElement(null);
}

@@ -1131,7 +1225,7 @@ }

{
if (typeof node !== 'object') {
if (typeof node !== 'object' || !node) {
return;
}
if (isArray(node)) {
if (node.$$typeof === REACT_CLIENT_REFERENCE) ; else if (isArray(node)) {
for (var i = 0; i < node.length; i++) {

@@ -1149,3 +1243,3 @@ var child = node[i];

}
} else if (node) {
} else {
var iteratorFn = getIteratorFn(node);

@@ -1186,2 +1280,6 @@

if (type.$$typeof === REACT_CLIENT_REFERENCE) {
return;
}
var propTypes;

@@ -1230,7 +1328,7 @@

if (key !== 'children' && key !== 'key') {
setCurrentlyValidatingElement$1(fragment);
setCurrentlyValidatingElement(fragment);
error('Invalid prop `%s` supplied to `React.Fragment`. ' + 'React.Fragment can only have `key` and `children` props.', key);
setCurrentlyValidatingElement$1(null);
setCurrentlyValidatingElement(null);
break;

@@ -1241,7 +1339,7 @@ }

if (fragment.ref !== null) {
setCurrentlyValidatingElement$1(fragment);
setCurrentlyValidatingElement(fragment);
error('Invalid attribute `ref` supplied to `React.Fragment`.');
setCurrentlyValidatingElement$1(null);
setCurrentlyValidatingElement(null);
}

@@ -1251,2 +1349,3 @@ }

var didWarnAboutKeySpread = {};
function jsxWithValidation(type, props, key, isStaticChildren, source, self) {

@@ -1288,3 +1387,3 @@ {

var element = jsxDEV(type, props, key, source, self); // The result can be nullish if a mock or a custom function is used.
var element = jsxDEV$1(type, props, key, source, self); // The result can be nullish if a mock or a custom function is used.
// TODO: Drop this when these are no longer allowed as the type argument.

@@ -1323,2 +1422,18 @@

if (hasOwnProperty.call(props, 'key')) {
var componentName = getComponentNameFromType(type);
var keys = Object.keys(props).filter(function (k) {
return k !== 'key';
});
var beforeExample = keys.length > 0 ? '{key: someKey, ' + keys.join(': ..., ') + ': ...}' : '{key: someKey}';
if (!didWarnAboutKeySpread[componentName + beforeExample]) {
var afterExample = keys.length > 0 ? '{' + keys.join(': ..., ') + ': ...}' : '{}';
error('A props object containing a "key" prop is being spread into JSX:\n' + ' let props = %s;\n' + ' <%s {...props} />\n' + 'React keys must be passed directly to JSX without using spread:\n' + ' let props = %s;\n' + ' <%s key={someKey} {...props} />', beforeExample, componentName, afterExample, componentName);
didWarnAboutKeySpread[componentName + beforeExample] = true;
}
}
if (type === REACT_FRAGMENT_TYPE) {

@@ -1334,7 +1449,7 @@ validateFragmentProps(element);

var jsxDEV$1 = jsxWithValidation ;
var jsxDEV = jsxWithValidation ;
exports.Fragment = REACT_FRAGMENT_TYPE;
exports.jsxDEV = jsxDEV$1;
exports.jsxDEV = jsxDEV;
})();
}

@@ -1,10 +0,12 @@

/**
* @license React
* react-jsx-dev-runtime.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/*
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,10 +0,12 @@

/**
* @license React
* react-jsx-dev-runtime.profiling.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/*
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

@@ -5,3 +5,3 @@ /**

*
* Copyright (c) Facebook, Inc. and its affiliates.
* Copyright (c) Meta Platforms, Inc. and affiliates.
*

@@ -29,3 +29,5 @@ * This source code is licensed under the MIT license found in the

var REACT_PROFILER_TYPE = Symbol.for('react.profiler');
var REACT_PROVIDER_TYPE = Symbol.for('react.provider');
var REACT_PROVIDER_TYPE = Symbol.for('react.provider'); // TODO: Delete with enableRenderableContext
var REACT_CONSUMER_TYPE = Symbol.for('react.consumer');
var REACT_CONTEXT_TYPE = Symbol.for('react.context');

@@ -37,7 +39,4 @@ var REACT_FORWARD_REF_TYPE = Symbol.for('react.forward_ref');

var REACT_LAZY_TYPE = Symbol.for('react.lazy');
var REACT_DEBUG_TRACING_MODE_TYPE = Symbol.for('react.debug_trace_mode');
var REACT_OFFSCREEN_TYPE = Symbol.for('react.offscreen');
var REACT_LEGACY_HIDDEN_TYPE = Symbol.for('react.legacy_hidden');
var REACT_CACHE_TYPE = Symbol.for('react.cache');
var REACT_TRACING_MARKER_TYPE = Symbol.for('react.tracing_marker');
var MAYBE_ITERATOR_SYMBOL = Symbol.iterator;

@@ -103,3 +102,10 @@ var FAUX_ITERATOR_SYMBOL = '@@iterator';

var REACT_MODULE_REFERENCE = Symbol.for('react.module.reference');
var enableLegacyHidden = false; // Enables unstable_avoidThisFallback feature in Fiber
var enableRenderableContext = false;
// stuff. Intended to enable React core members to more easily debug scheduling
// issues in DEV builds.
var enableDebugTracing = false;
var REACT_CLIENT_REFERENCE$2 = Symbol.for('react.client.reference');
function isValidElementType(type) {

@@ -111,3 +117,3 @@ if (typeof type === 'string' || typeof type === 'function') {

if (type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || type === REACT_DEBUG_TRACING_MODE_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || type === REACT_LEGACY_HIDDEN_TYPE || type === REACT_OFFSCREEN_TYPE || enableScopeAPI || type === REACT_CACHE_TYPE || enableTransitionTracing ) {
if (type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || enableDebugTracing || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || enableLegacyHidden || type === REACT_OFFSCREEN_TYPE || enableScopeAPI || type === REACT_CACHE_TYPE || enableTransitionTracing ) {
return true;

@@ -117,7 +123,7 @@ }

if (typeof type === 'object' && type !== null) {
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || enableRenderableContext || type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object
// types supported by any Flight configuration anywhere since
// we don't know which Flight build this will end up being used
// with.
type.$$typeof === REACT_MODULE_REFERENCE || type.getModuleId !== undefined) {
type.$$typeof === REACT_CLIENT_REFERENCE$2 || type.getModuleId !== undefined) {
return true;

@@ -144,4 +150,5 @@ }

return type.displayName || 'Context';
} // Note that the reconciler package should generally prefer to use getComponentNameFromFiber() instead.
}
var REACT_CLIENT_REFERENCE$1 = Symbol.for('react.client.reference'); // Note that the reconciler package should generally prefer to use getComponentNameFromFiber() instead.

@@ -154,9 +161,8 @@ function getComponentNameFromType(type) {

{
if (typeof type.tag === 'number') {
error('Received an unexpected object in getComponentNameFromType(). ' + 'This is likely a bug in React. Please file an issue.');
if (typeof type === 'function') {
if (type.$$typeof === REACT_CLIENT_REFERENCE$1) {
// TODO: Create a convention for naming client references with debug info.
return null;
}
}
if (typeof type === 'function') {
return type.displayName || type.name || null;

@@ -189,18 +195,34 @@ }

case REACT_CACHE_TYPE:
return 'Cache';
{
return 'Cache';
}
case REACT_TRACING_MARKER_TYPE:
return 'TracingMarker';
}
if (typeof type === 'object') {
{
if (typeof type.tag === 'number') {
error('Received an unexpected object in getComponentNameFromType(). ' + 'This is likely a bug in React. Please file an issue.');
}
}
switch (type.$$typeof) {
case REACT_PROVIDER_TYPE:
{
var provider = type;
return getContextName(provider._context) + '.Provider';
}
case REACT_CONTEXT_TYPE:
var context = type;
return getContextName(context) + '.Consumer';
case REACT_PROVIDER_TYPE:
var provider = type;
return getContextName(provider._context) + '.Provider';
{
return getContextName(context) + '.Consumer';
}
case REACT_CONSUMER_TYPE:
{
return null;
}
case REACT_FORWARD_REF_TYPE:

@@ -271,3 +293,3 @@ return getWrappedName(type, type.render, 'ForwardRef');

writable: true
}; // $FlowFixMe Flow thinks console is immutable.
}; // $FlowFixMe[cannot-write] Flow thinks console is immutable.

@@ -299,3 +321,3 @@ Object.defineProperties(console, {

writable: true
}; // $FlowFixMe Flow thinks console is immutable.
}; // $FlowFixMe[cannot-write] Flow thinks console is immutable.

@@ -336,3 +358,3 @@ Object.defineProperties(console, {

var prefix;
function describeBuiltInComponentFrame(name, source, ownerFn) {
function describeBuiltInComponentFrame(name, ownerFn) {
{

@@ -360,6 +382,18 @@ if (prefix === undefined) {

}
/**
* 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) {
// If something asked for a stack inside a fake render, it should get ignored.
if ( !fn || reentry) {
if (!fn || reentry) {
return '';

@@ -376,5 +410,4 @@ }

var control;
reentry = true;
var previousPrepareStackTrace = Error.prepareStackTrace; // $FlowFixMe It does accept undefined.
var previousPrepareStackTrace = Error.prepareStackTrace; // $FlowFixMe[incompatible-type] It does accept undefined.

@@ -391,68 +424,138 @@ Error.prepareStackTrace = 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
var RunInRootFrame = {
DetermineComponentFrameRoot: function () {
var control;
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();
}
});
try {
// This should throw.
if (construct) {
// Something should be setting the props in the constructor.
var Fake = function () {
throw Error();
}; // $FlowFixMe[prop-missing]
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;
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;
}
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
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 () {});
}
}
fn.call(Fake.prototype);
} 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];
}
}
} else {
try {
throw Error();
} catch (x) {
control = x;
}
fn();
return [null, null];
}
} catch (sample) {
// This is inlined manually because closure doesn't do it for us.
if (sample && control && typeof sample.stack === 'string') {
}; // $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) {
// 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 = sample.stack.split('\n');
var controlLines = control.stack.split('\n');
var s = sampleLines.length - 1;
var c = controlLines.length - 1;
var sampleLines = sampleStack.split('\n');
var controlLines = controlStack.split('\n');
var s = 0;
var c = 0;
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 (s < sampleLines.length && !sampleLines[s].includes('DetermineComponentFrameRoot')) {
s++;
}
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--) {

@@ -484,3 +587,3 @@ // Next we find the first one that isn't the same which should be the

{
if (true) {
if (typeof fn === 'function') {

@@ -524,3 +627,3 @@ componentFrameCache.set(fn, _frame);

}
function describeFunctionComponentFrame(fn, source, ownerFn) {
function describeFunctionComponentFrame(fn, ownerFn) {
{

@@ -536,3 +639,3 @@ return describeNativeComponentFrame(fn, false);

function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {
function describeUnknownElementTypeFrameInDEV(type, ownerFn) {

@@ -568,3 +671,3 @@ if (type == null) {

// Memo may contain any component type so we recursively resolve it.
return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);
return describeUnknownElementTypeFrameInDEV(type.type, ownerFn);

@@ -579,3 +682,3 @@ case REACT_LAZY_TYPE:

// Lazy may contain any component type so we recursively resolve it.
return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);
return describeUnknownElementTypeFrameInDEV(init(payload), ownerFn);
} catch (x) {}

@@ -589,15 +692,16 @@ }

// $FlowFixMe[method-unbinding]
var hasOwnProperty = Object.prototype.hasOwnProperty;
var loggedTypeFailures = {};
var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;
var ReactDebugCurrentFrame$1 = ReactSharedInternals.ReactDebugCurrentFrame;
function setCurrentlyValidatingElement(element) {
function setCurrentlyValidatingElement$1(element) {
{
if (element) {
var owner = element._owner;
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
ReactDebugCurrentFrame.setExtraStackFrame(stack);
var stack = describeUnknownElementTypeFrameInDEV(element.type, owner ? owner.type : null);
ReactDebugCurrentFrame$1.setExtraStackFrame(stack);
} else {
ReactDebugCurrentFrame.setExtraStackFrame(null);
ReactDebugCurrentFrame$1.setExtraStackFrame(null);
}

@@ -609,3 +713,3 @@ }

{
// $FlowFixMe This is okay but Flow doesn't know it.
// $FlowFixMe[incompatible-use] This is okay but Flow doesn't know it.
var has = Function.call.bind(hasOwnProperty);

@@ -635,7 +739,7 @@

if (error$1 && !(error$1 instanceof Error)) {
setCurrentlyValidatingElement(element);
setCurrentlyValidatingElement$1(element);
error('%s: type specification of %s' + ' `%s` is invalid; the type checker ' + 'function must return `null` or an `Error` but returned a %s. ' + 'You may have forgotten to pass an argument to the type checker ' + 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' + 'shape all require an argument).', componentName || 'React class', location, typeSpecName, typeof error$1);
setCurrentlyValidatingElement(null);
setCurrentlyValidatingElement$1(null);
}

@@ -647,7 +751,7 @@

loggedTypeFailures[error$1.message] = true;
setCurrentlyValidatingElement(element);
setCurrentlyValidatingElement$1(element);
error('Failed %s type: %s', location, error$1.message);
setCurrentlyValidatingElement(null);
setCurrentlyValidatingElement$1(null);
}

@@ -666,3 +770,3 @@ }

/*
* The `'' + value` pattern (used in in perf-sensitive code) throws for Symbol
* The `'' + value` pattern (used in perf-sensitive code) throws for Symbol
* and Temporal.* types. See https://github.com/facebook/react/pull/22064.

@@ -675,3 +779,3 @@ *

*/
// $FlowFixMe only called in DEV, so void return is not possible.
// $FlowFixMe[incompatible-return] only called in DEV, so void return is not possible.
function typeName(value) {

@@ -681,6 +785,7 @@ {

var hasToStringTag = typeof Symbol === 'function' && Symbol.toStringTag;
var type = hasToStringTag && value[Symbol.toStringTag] || value.constructor.name || 'Object';
var type = hasToStringTag && value[Symbol.toStringTag] || value.constructor.name || 'Object'; // $FlowFixMe[incompatible-return]
return type;
}
} // $FlowFixMe only called in DEV, so void return is not possible.
} // $FlowFixMe[incompatible-return] only called in DEV, so void return is not possible.

@@ -728,3 +833,3 @@

if (willCoercionThrow(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));
error('The provided key is an unsupported type %s.' + ' This value must be coerced to a string before using it here.', typeName(value));

@@ -736,9 +841,3 @@ return testStringCoercion(value); // throw (to help callers find troubleshooting comments)

var ReactCurrentOwner = ReactSharedInternals.ReactCurrentOwner;
var RESERVED_PROPS = {
key: true,
ref: true,
__self: true,
__source: true
};
var ReactCurrentOwner$1 = ReactSharedInternals.ReactCurrentOwner;
var specialPropKeyWarningShown;

@@ -782,7 +881,7 @@ var specialPropRefWarningShown;

{
if (typeof config.ref === 'string' && ReactCurrentOwner.current && self && ReactCurrentOwner.current.stateNode !== self) {
var componentName = getComponentNameFromType(ReactCurrentOwner.current.type);
if (typeof config.ref === 'string' && ReactCurrentOwner$1.current && self && ReactCurrentOwner$1.current.stateNode !== self) {
var componentName = getComponentNameFromType(ReactCurrentOwner$1.current.type);
if (!didWarnAboutStringRefs[componentName]) {
error('Component "%s" contains the string ref "%s". ' + 'Support for string refs will be removed in a future major release. ' + 'This case cannot be automatically converted to an arrow function. ' + 'We ask you to manually fix this case by using useRef() or createRef() instead. ' + 'Learn more about using refs safely here: ' + 'https://reactjs.org/link/strict-mode-string-ref', getComponentNameFromType(ReactCurrentOwner.current.type), config.ref);
error('Component "%s" contains the string ref "%s". ' + 'Support for string refs will be removed in a future major release. ' + 'This case cannot be automatically converted to an arrow function. ' + 'We ask you to manually fix this case by using useRef() or createRef() instead. ' + 'Learn more about using refs safely here: ' + 'https://reactjs.org/link/strict-mode-string-ref', getComponentNameFromType(ReactCurrentOwner$1.current.type), config.ref);

@@ -852,3 +951,3 @@ didWarnAboutStringRefs[componentName] = true;

var ReactElement = function (type, key, ref, self, source, owner, props) {
function ReactElement(type, key, ref, self, source, owner, props) {
var element = {

@@ -881,17 +980,9 @@ // This tag allows us to uniquely identify this as a React Element

value: false
}); // self and source are DEV only properties.
}); // debugInfo contains Server Component debug information.
Object.defineProperty(element, '_self', {
Object.defineProperty(element, '_debugInfo', {
configurable: false,
enumerable: false,
writable: false,
value: self
}); // Two elements created in two different places should be considered
// equal for testing purposes and therefore we hide it from enumeration.
Object.defineProperty(element, '_source', {
configurable: false,
enumerable: false,
writable: false,
value: source
writable: true,
value: null
});

@@ -906,3 +997,3 @@

return element;
};
}
/**

@@ -951,3 +1042,5 @@ * https://github.com/reactjs/rfcs/pull/107

for (propName in config) {
if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
if (hasOwnProperty.call(config, propName) && // Skip over reserved prop names
propName !== 'key' && // TODO: `ref` will no longer be reserved in the next major
propName !== 'ref') {
props[propName] = config[propName];

@@ -980,17 +1073,18 @@ }

return ReactElement(type, key, ref, self, source, ReactCurrentOwner.current, props);
return ReactElement(type, key, ref, self, source, ReactCurrentOwner$1.current, props);
}
}
var ReactCurrentOwner$1 = ReactSharedInternals.ReactCurrentOwner;
var ReactDebugCurrentFrame$1 = ReactSharedInternals.ReactDebugCurrentFrame;
var ReactCurrentOwner = ReactSharedInternals.ReactCurrentOwner;
var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;
var REACT_CLIENT_REFERENCE = Symbol.for('react.client.reference');
function setCurrentlyValidatingElement$1(element) {
function setCurrentlyValidatingElement(element) {
{
if (element) {
var owner = element._owner;
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
ReactDebugCurrentFrame$1.setExtraStackFrame(stack);
var stack = describeUnknownElementTypeFrameInDEV(element.type, owner ? owner.type : null);
ReactDebugCurrentFrame.setExtraStackFrame(stack);
} else {
ReactDebugCurrentFrame$1.setExtraStackFrame(null);
ReactDebugCurrentFrame.setExtraStackFrame(null);
}

@@ -1022,4 +1116,4 @@ }

{
if (ReactCurrentOwner$1.current) {
var name = getComponentNameFromType(ReactCurrentOwner$1.current.type);
if (ReactCurrentOwner.current) {
var name = getComponentNameFromType(ReactCurrentOwner.current.type);

@@ -1060,3 +1154,3 @@ if (name) {

if (!info) {
var parentName = typeof parentType === 'string' ? parentType : parentType.displayName || parentType.name;
var parentName = getComponentNameFromType(parentType);

@@ -1103,3 +1197,3 @@ if (parentName) {

if (element && element._owner && element._owner !== ReactCurrentOwner$1.current) {
if (element && element._owner && element._owner !== ReactCurrentOwner.current) {
// Give the component that originally created this child.

@@ -1109,7 +1203,7 @@ childOwner = " It was passed a child from " + getComponentNameFromType(element._owner.type) + ".";

setCurrentlyValidatingElement$1(element);
setCurrentlyValidatingElement(element);
error('Each child in a list should have a unique "key" prop.' + '%s%s See https://reactjs.org/link/warning-keys for more information.', currentComponentErrorInfo, childOwner);
setCurrentlyValidatingElement$1(null);
setCurrentlyValidatingElement(null);
}

@@ -1130,7 +1224,7 @@ }

{
if (typeof node !== 'object') {
if (typeof node !== 'object' || !node) {
return;
}
if (isArray(node)) {
if (node.$$typeof === REACT_CLIENT_REFERENCE) ; else if (isArray(node)) {
for (var i = 0; i < node.length; i++) {

@@ -1148,3 +1242,3 @@ var child = node[i];

}
} else if (node) {
} else {
var iteratorFn = getIteratorFn(node);

@@ -1185,2 +1279,6 @@

if (type.$$typeof === REACT_CLIENT_REFERENCE) {
return;
}
var propTypes;

@@ -1229,7 +1327,7 @@

if (key !== 'children' && key !== 'key') {
setCurrentlyValidatingElement$1(fragment);
setCurrentlyValidatingElement(fragment);
error('Invalid prop `%s` supplied to `React.Fragment`. ' + 'React.Fragment can only have `key` and `children` props.', key);
setCurrentlyValidatingElement$1(null);
setCurrentlyValidatingElement(null);
break;

@@ -1240,7 +1338,7 @@ }

if (fragment.ref !== null) {
setCurrentlyValidatingElement$1(fragment);
setCurrentlyValidatingElement(fragment);
error('Invalid attribute `ref` supplied to `React.Fragment`.');
setCurrentlyValidatingElement$1(null);
setCurrentlyValidatingElement(null);
}

@@ -1250,2 +1348,3 @@ }

var didWarnAboutKeySpread = {};
function jsxWithValidation(type, props, key, isStaticChildren, source, self) {

@@ -1321,2 +1420,18 @@ {

if (hasOwnProperty.call(props, 'key')) {
var componentName = getComponentNameFromType(type);
var keys = Object.keys(props).filter(function (k) {
return k !== 'key';
});
var beforeExample = keys.length > 0 ? '{key: someKey, ' + keys.join(': ..., ') + ': ...}' : '{key: someKey}';
if (!didWarnAboutKeySpread[componentName + beforeExample]) {
var afterExample = keys.length > 0 ? '{' + keys.join(': ..., ') + ': ...}' : '{}';
error('A props object containing a "key" prop is being spread into JSX:\n' + ' let props = %s;\n' + ' <%s {...props} />\n' + 'React keys must be passed directly to JSX without using spread:\n' + ' let props = %s;\n' + ' <%s key={someKey} {...props} />', beforeExample, componentName, afterExample, componentName);
didWarnAboutKeySpread[componentName + beforeExample] = true;
}
}
if (type === REACT_FRAGMENT_TYPE) {

@@ -1346,6 +1461,6 @@ validateFragmentProps(element);

var jsx = jsxWithValidationDynamic ; // we may want to special case jsxs internally to take advantage of static children.
var jsx = jsxWithValidationDynamic ; // we may want to special case jsxs internally to take advantage of static children.
// for now we can ship identical prod functions
var jsxs = jsxWithValidationStatic ;
var jsxs = jsxWithValidationStatic ;

@@ -1352,0 +1467,0 @@ exports.Fragment = REACT_FRAGMENT_TYPE;

@@ -1,11 +0,13 @@

/**
* @license React
* react-jsx-runtime.production.min.js
*
* Copyright (c) Facebook, Inc. and its 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;
/*
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;
function p(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)&&"key"!==b&&"ref"!==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=p;exports.jsxs=p;
//# sourceMappingURL=react-jsx-runtime.production.min.js.map

@@ -1,11 +0,13 @@

/**
* @license React
* react-jsx-runtime.profiling.min.js
*
* Copyright (c) Facebook, Inc. and its 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;
/*
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;
function p(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)&&"key"!==b&&"ref"!==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=p;exports.jsxs=p;
//# sourceMappingURL=react-jsx-runtime.profiling.min.js.map

@@ -1,27 +0,34 @@

/**
* @license React
* react.production.min.js
*
* Copyright (c) Facebook, Inc. and its 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.suspense_list"),y=Symbol.for("react.memo"),z=Symbol.for("react.lazy"),A=Symbol.for("react.debug_trace_mode"),B=Symbol.for("react.offscreen"),C=Symbol.for("react.legacy_hidden"),D=Symbol.for("react.cache"),
E=Symbol.iterator;function F(a){if(null===a||"object"!==typeof a)return null;a=E&&a[E]||a["@@iterator"];return"function"===typeof a?a:null}var G={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},H=Object.assign,I={};function J(a,b,e){this.props=a;this.context=b;this.refs=I;this.updater=e||G}J.prototype.isReactComponent={};
J.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")};J.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};function K(){}K.prototype=J.prototype;function L(a,b,e){this.props=a;this.context=b;this.refs=I;this.updater=e||G}var M=L.prototype=new K;
M.constructor=L;H(M,J.prototype);M.isPureReactComponent=!0;var N=Array.isArray,O=Object.prototype.hasOwnProperty,P={current:null},Q={key:!0,ref:!0,__self:!0,__source:!0};
function R(a,b,e){var d,c={},k=null,h=null;if(null!=b)for(d in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(k=""+b.key),b)O.call(b,d)&&!Q.hasOwnProperty(d)&&(c[d]=b[d]);var g=arguments.length-2;if(1===g)c.children=e;else if(1<g){for(var f=Array(g),m=0;m<g;m++)f[m]=arguments[m+2];c.children=f}if(a&&a.defaultProps)for(d in g=a.defaultProps,g)void 0===c[d]&&(c[d]=g[d]);return{$$typeof:l,type:a,key:k,ref:h,props:c,_owner:P.current}}
function S(a,b){return{$$typeof:l,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===l}function escape(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return b[a]})}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,e,d,c){var k=typeof a;if("undefined"===k||"boolean"===k)a=null;var h=!1;if(null===a)h=!0;else switch(k){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case l:case n:h=!0}}if(h)return h=a,c=c(h),a=""===d?"."+V(h,0):d,N(c)?(e="",null!=a&&(e=a.replace(U,"$&/")+"/"),W(c,b,e,"",function(a){return a})):null!=c&&(T(c)&&(c=S(c,e+(!c.key||h&&h.key===c.key?"":(""+c.key).replace(U,"$&/")+"/")+a)),b.push(c)),1;h=0;d=""===d?".":d+":";if(N(a))for(var g=0;g<a.length;g++){k=
a[g];var f=d+V(k,g);h+=W(k,b,e,f,c)}else if(f=F(a),"function"===typeof f)for(a=f.call(a),g=0;!(k=a.next()).done;)k=k.value,f=d+V(k,g++),h+=W(k,b,e,f,c);else if("object"===k)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 X(a,b,e){if(null==a)return a;var d=[],c=0;W(a,d,"","",function(a){return b.call(e,a,c++)});return d}function aa(a){if(-1===a._status){var b=a._result;b=b();b.then(function(b){if(0===a._status||-1===a._status)a._status=1,a._result=b},function(b){if(0===a._status||-1===a._status)a._status=2,a._result=b});-1===a._status&&(a._status=0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}
var Y={current:null},Z={transition:null},ba={ReactCurrentDispatcher:Y,ReactCurrentBatchConfig:Z,ReactCurrentOwner:P};exports.Children={map:X,forEach:function(a,b,e){X(a,function(){b.apply(this,arguments)},e)},count:function(a){var b=0;X(a,function(){b++});return b},toArray:function(a){return X(a,function(a){return a})||[]},only:function(a){if(!T(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};exports.Component=J;exports.Fragment=p;
exports.Profiler=r;exports.PureComponent=L;exports.StrictMode=q;exports.Suspense=w;exports.SuspenseList=x;exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=ba;
exports.cloneElement=function(a,b,e){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var d=H({},a.props),c=a.key,k=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(k=b.ref,h=P.current);void 0!==b.key&&(c=""+b.key);if(a.type&&a.type.defaultProps)var g=a.type.defaultProps;for(f in b)O.call(b,f)&&!Q.hasOwnProperty(f)&&(d[f]=void 0===b[f]&&void 0!==g?g[f]:b[f])}var f=arguments.length-2;if(1===f)d.children=e;else if(1<f){g=Array(f);
for(var m=0;m<f;m++)g[m]=arguments[m+2];d.children=g}return{$$typeof:l,type:a.type,key:c,ref:k,props:d,_owner:h}};exports.createContext=function(a){a={$$typeof:u,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:t,_context:a};return a.Consumer=a};exports.createElement=R;exports.createFactory=function(a){var b=R.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=T;exports.lazy=function(a){return{$$typeof:z,_payload:{_status:-1,_result:a},_init:aa}};exports.memo=function(a,b){return{$$typeof:y,type:a,compare:void 0===b?null:b}};exports.startTransition=function(a){var b=Z.transition;Z.transition={};try{a()}finally{Z.transition=b}};exports.unstable_Cache=D;exports.unstable_DebugTracingMode=A;exports.unstable_LegacyHidden=C;exports.unstable_Offscreen=B;
exports.unstable_act=function(){throw Error("act(...) is not supported in production builds of React.");};exports.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};exports.unstable_getCacheForType=function(a){return Y.current.getCacheForType(a)};exports.unstable_getCacheSignal=function(){return Y.current.getCacheSignal()};exports.unstable_useCacheRefresh=function(){return Y.current.useCacheRefresh()};
exports.useCallback=function(a,b){return Y.current.useCallback(a,b)};exports.useContext=function(a){return Y.current.useContext(a)};exports.useDebugValue=function(){};exports.useDeferredValue=function(a){return Y.current.useDeferredValue(a)};exports.useEffect=function(a,b){return Y.current.useEffect(a,b)};exports.useId=function(){return Y.current.useId()};exports.useImperativeHandle=function(a,b,e){return Y.current.useImperativeHandle(a,b,e)};
exports.useInsertionEffect=function(a,b){return Y.current.useInsertionEffect(a,b)};exports.useLayoutEffect=function(a,b){return Y.current.useLayoutEffect(a,b)};exports.useMemo=function(a,b){return Y.current.useMemo(a,b)};exports.useReducer=function(a,b,e){return Y.current.useReducer(a,b,e)};exports.useRef=function(a){return Y.current.useRef(a)};exports.useState=function(a){return Y.current.useState(a)};exports.useSyncExternalStore=function(a,b,e){return Y.current.useSyncExternalStore(a,b,e)};
exports.useTransition=function(){return Y.current.useTransition()};exports.version="18.0.0-rc.1-experimental-f0dd459e0-20220301";
/*
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 k=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.suspense_list"),y=Symbol.for("react.memo"),z=Symbol.for("react.lazy"),A=Symbol.for("react.debug_trace_mode"),aa=Symbol.for("react.offscreen"),ba=Symbol.for("react.cache"),ca=Symbol.for("react.postpone"),
B=Symbol.iterator;function da(a){if(null===a||"object"!==typeof a)return null;a=B&&a[B]||a["@@iterator"];return"function"===typeof a?a:null}var C={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},D=Object.assign,E={};function F(a,b,c){this.props=a;this.context=b;this.refs=E;this.updater=c||C}F.prototype.isReactComponent={};
F.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")};F.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};function G(){}G.prototype=F.prototype;function H(a,b,c){this.props=a;this.context=b;this.refs=E;this.updater=c||C}var I=H.prototype=new G;
I.constructor=H;D(I,F.prototype);I.isPureReactComponent=!0;var J=Array.isArray,K=Object.prototype.hasOwnProperty,L={current:null};function M(a,b,c,e,d){return{$$typeof:k,type:a,key:b,ref:c,props:d,_owner:e}}
function N(a,b,c){var e,d={},f=null,h=null;if(null!=b)for(e in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(f=""+b.key),b)K.call(b,e)&&"key"!==e&&"ref"!==e&&"__self"!==e&&"__source"!==e&&(d[e]=b[e]);var l=arguments.length-2;if(1===l)d.children=c;else if(1<l){for(var g=Array(l),m=0;m<l;m++)g[m]=arguments[m+2];d.children=g}if(a&&a.defaultProps)for(e in l=a.defaultProps,l)void 0===d[e]&&(d[e]=l[e]);return M(a,f,h,L.current,d)}function ea(a,b){return M(a.type,b,a.ref,a._owner,a.props)}
function O(a){return"object"===typeof a&&null!==a&&a.$$typeof===k}var P={current:null},Q={current:null},R={transition:null},fa={ReactCurrentDispatcher:P,ReactCurrentCache:Q,ReactCurrentBatchConfig:R,ReactCurrentOwner:L};function escape(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(c){return b[c]})}var S=/\/+/g;function T(a,b){return"object"===typeof a&&null!==a&&null!=a.key?escape(""+a.key):b.toString(36)}function U(){}
function ha(a){switch(a.status){case "fulfilled":return a.value;case "rejected":throw a.reason;default:switch("string"===typeof a.status?a.then(U,U):(a.status="pending",a.then(function(b){"pending"===a.status&&(a.status="fulfilled",a.value=b)},function(b){"pending"===a.status&&(a.status="rejected",a.reason=b)})),a.status){case "fulfilled":return a.value;case "rejected":throw a.reason;}}throw a;}
function V(a,b,c,e,d){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 k:case n:h=!0;break;case z:return h=a._init,V(h(a._payload),b,c,e,d)}}if(h)return d=d(a),h=""===e?"."+T(a,0):e,J(d)?(c="",null!=h&&(c=h.replace(S,"$&/")+"/"),V(d,b,c,"",function(m){return m})):null!=d&&(O(d)&&(d=ea(d,c+(!d.key||a&&a.key===d.key?"":(""+d.key).replace(S,"$&/")+"/")+h)),b.push(d)),1;h=0;var l=
""===e?".":e+":";if(J(a))for(var g=0;g<a.length;g++)e=a[g],f=l+T(e,g),h+=V(e,b,c,f,d);else if(g=da(a),"function"===typeof g)for(a=g.call(a),g=0;!(e=a.next()).done;)e=e.value,f=l+T(e,g++),h+=V(e,b,c,f,d);else if("object"===f){if("function"===typeof a.then)return V(ha(a),b,c,e,d);b=String(a);throw 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 W(a,b,c){if(null==a)return a;var e=[],d=0;V(a,e,"","",function(f){return b.call(c,f,d++)});return e}function ia(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 ja(){return new WeakMap}
function X(){return{s:0,v:void 0,o:null,p:null}}function Y(a,b){return P.current.useOptimistic(a,b)}function ka(){}var Z="function"===typeof reportError?reportError:function(a){console.error(a)};
exports.Children={map:W,forEach:function(a,b,c){W(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;W(a,function(){b++});return b},toArray:function(a){return W(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=F;exports.Fragment=p;exports.Profiler=r;exports.PureComponent=H;exports.StrictMode=q;exports.Suspense=w;
exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=fa;exports.act=function(){throw Error("act(...) is not supported in production builds of React.");};
exports.cache=function(a){return function(){var b=Q.current;if(!b)return a.apply(null,arguments);var c=b.getCacheForType(ja);b=c.get(a);void 0===b&&(b=X(),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 f=b.o;null===f&&(b.o=f=new WeakMap);b=f.get(d);void 0===b&&(b=X(),f.set(d,b))}else f=b.p,null===f&&(b.p=f=new Map),b=f.get(d),void 0===b&&(b=X(),f.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;}}};
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 e=D({},a.props),d=a.key,f=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(f=b.ref,h=L.current);void 0!==b.key&&(d=""+b.key);if(a.type&&a.type.defaultProps)var l=a.type.defaultProps;for(g in b)K.call(b,g)&&"key"!==g&&"ref"!==g&&"__self"!==g&&"__source"!==g&&(e[g]=void 0===b[g]&&void 0!==l?l[g]:b[g])}var g=arguments.length-2;if(1===g)e.children=
c;else if(1<g){l=Array(g);for(var m=0;m<g;m++)l[m]=arguments[m+2];e.children=l}return M(a.type,d,f,h,e)};exports.createContext=function(a){a={$$typeof:u,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:t,_context:a};return a.Consumer=a};exports.createElement=N;exports.createFactory=function(a){var b=N.bind(null,a);b.type=a;return b};exports.createRef=function(){return{current:null}};exports.experimental_useEffectEvent=function(a){return P.current.useEffectEvent(a)};
exports.experimental_useOptimistic=function(a,b){return Y(a,b)};exports.forwardRef=function(a){return{$$typeof:v,render:a}};exports.isValidElement=O;exports.lazy=function(a){return{$$typeof:z,_payload:{_status:-1,_result:a},_init:ia}};exports.memo=function(a,b){return{$$typeof:y,type:a,compare:void 0===b?null:b}};
exports.startTransition=function(a){var b=R.transition,c=new Set;R.transition={_callbacks:c};var e=R.transition;try{var d=a();"object"===typeof d&&null!==d&&"function"===typeof d.then&&(c.forEach(function(f){return f(e,d)}),d.then(ka,Z))}catch(f){Z(f)}finally{R.transition=b}};exports.unstable_Activity=aa;exports.unstable_Cache=ba;exports.unstable_DebugTracingMode=A;exports.unstable_SuspenseList=x;exports.unstable_getCacheForType=function(a){var b=Q.current;return b?b.getCacheForType(a):a()};
exports.unstable_getCacheSignal=function(){var a=Q.current;return a?a.getCacheSignal():(a=new AbortController,a.abort(Error("This CacheSignal was requested outside React which means that it is immediately aborted.")),a.signal)};exports.unstable_postpone=function(a){a=Error(a);a.$$typeof=ca;throw a;};exports.unstable_useCacheRefresh=function(){return P.current.useCacheRefresh()};exports.unstable_useMemoCache=function(a){return P.current.useMemoCache(a)};exports.use=function(a){return P.current.use(a)};
exports.useCallback=function(a,b){return P.current.useCallback(a,b)};exports.useContext=function(a){return P.current.useContext(a)};exports.useDebugValue=function(){};exports.useDeferredValue=function(a,b){return P.current.useDeferredValue(a,b)};exports.useEffect=function(a,b){return P.current.useEffect(a,b)};exports.useId=function(){return P.current.useId()};exports.useImperativeHandle=function(a,b,c){return P.current.useImperativeHandle(a,b,c)};
exports.useInsertionEffect=function(a,b){return P.current.useInsertionEffect(a,b)};exports.useLayoutEffect=function(a,b){return P.current.useLayoutEffect(a,b)};exports.useMemo=function(a,b){return P.current.useMemo(a,b)};exports.useOptimistic=Y;exports.useReducer=function(a,b,c){return P.current.useReducer(a,b,c)};exports.useRef=function(a){return P.current.useRef(a)};exports.useState=function(a){return P.current.useState(a)};
exports.useSyncExternalStore=function(a,b,c){return P.current.useSyncExternalStore(a,b,c)};exports.useTransition=function(){return P.current.useTransition()};exports.version="18.3.0-experimental-f0e808e5b-20240214";
//# sourceMappingURL=react.production.min.js.map

@@ -7,3 +7,3 @@ {

],
"version": "0.0.0-experimental-f0dd459e0-20220301",
"version": "0.0.0-experimental-f0e808e5b-20240214",
"homepage": "https://reactjs.org/",

@@ -19,4 +19,5 @@ "bugs": "https://github.com/facebook/react/issues",

"jsx-runtime.js",
"jsx-runtime.react-server.js",
"jsx-dev-runtime.js",
"react.shared-subset.js"
"react.react-server.js"
],

@@ -26,7 +27,10 @@ "main": "index.js",

".": {
"react-server": "./react.shared-subset.js",
"react-server": "./react.react-server.js",
"default": "./index.js"
},
"./package.json": "./package.json",
"./jsx-runtime": "./jsx-runtime.js",
"./jsx-runtime": {
"react-server": "./jsx-runtime.react-server.js",
"default": "./jsx-runtime.js"
},
"./jsx-dev-runtime": "./jsx-dev-runtime.js"

@@ -33,0 +37,0 @@ },

@@ -9,6 +9,30 @@ # `react`

## Example Usage
## Usage
```js
var React = require('react');
import { useState } from 'react';
import { createRoot } from 'react-dom/client';
function Counter() {
const [count, setCount] = useState(0);
return (
<>
<h1>{count}</h1>
<button onClick={() => setCount(count + 1)}>
Increment
</button>
</>
);
}
const root = createRoot(document.getElementById('root'));
root.render(<Counter />);
```
## Documentation
See https://react.dev/
## API
See https://react.dev/reference/react

@@ -5,3 +5,3 @@ /**

*
* Copyright (c) Facebook, Inc. and its affiliates.
* Copyright (c) Meta Platforms, Inc. and affiliates.
*

@@ -11,24 +11,28 @@ * This source code is licensed under the MIT license found in the

*/
(function(){'use strict';(function(c,x){"object"===typeof exports&&"undefined"!==typeof module?x(exports):"function"===typeof define&&define.amd?define(["exports"],x):(c=c||self,x(c.React={}))})(this,function(c){function x(a){if(null===a||"object"!==typeof a)return null;a=V&&a[V]||a["@@iterator"];return"function"===typeof a?a:null}function w(a,b,m){this.props=a;this.context=b;this.refs=W;this.updater=m||X}function Y(){}function K(a,b,m){this.props=a;this.context=b;this.refs=W;this.updater=m||X}function Z(a,b,
m){var d,c={},aa=null,h=null;if(null!=b)for(d in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(aa=""+b.key),b)ba.call(b,d)&&!ca.hasOwnProperty(d)&&(c[d]=b[d]);var l=arguments.length-2;if(1===l)c.children=m;else if(1<l){for(var g=Array(l),f=0;f<l;f++)g[f]=arguments[f+2];c.children=g}if(a&&a.defaultProps)for(d in l=a.defaultProps,l)void 0===c[d]&&(c[d]=l[d]);return{$$typeof:y,type:a,key:aa,ref:h,props:c,_owner:L.current}}function oa(a,b){return{$$typeof:y,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}
function M(a){return"object"===typeof a&&null!==a&&a.$$typeof===y}function pa(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return b[a]})}function N(a,b){return"object"===typeof a&&null!==a&&null!=a.key?pa(""+a.key):b.toString(36)}function B(a,b,m,c,e){var d=typeof a;if("undefined"===d||"boolean"===d)a=null;var h=!1;if(null===a)h=!0;else switch(d){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case y:case qa:h=!0}}if(h)return h=a,e=e(h),a=""===c?"."+
N(h,0):c,da(e)?(m="",null!=a&&(m=a.replace(ea,"$&/")+"/"),B(e,b,m,"",function(a){return a})):null!=e&&(M(e)&&(e=oa(e,m+(!e.key||h&&h.key===e.key?"":(""+e.key).replace(ea,"$&/")+"/")+a)),b.push(e)),1;h=0;c=""===c?".":c+":";if(da(a))for(var l=0;l<a.length;l++){d=a[l];var g=c+N(d,l);h+=B(d,b,m,g,e)}else if(g=x(a),"function"===typeof g)for(a=g.call(a),l=0;!(d=a.next()).done;)d=d.value,g=c+N(d,l++),h+=B(d,b,m,g,e);else if("object"===d)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 C(a,b,m){if(null==a)return a;var c=[],e=0;B(a,c,"","",function(a){return b.call(m,a,e++)});return c}function ra(a){if(-1===a._status){var b=a._result;b=b();b.then(function(b){if(0===a._status||-1===a._status)a._status=1,a._result=b},function(b){if(0===a._status||-1===a._status)a._status=2,a._result=b});-1===a._status&&(a._status=
0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}function O(a,b){var c=a.length;a.push(b);a:for(;0<c;){var d=c-1>>>1,e=a[d];if(0<D(e,b))a[d]=b,a[c]=e,c=d;else break a}}function p(a){return 0===a.length?null:a[0]}function E(a){if(0===a.length)return null;var b=a[0],c=a.pop();if(c!==b){a[0]=c;a:for(var d=0,e=a.length,f=e>>>1;d<f;){var h=2*(d+1)-1,l=a[h],g=h+1,k=a[g];if(0>D(l,c))g<e&&0>D(k,l)?(a[d]=k,a[g]=c,d=g):(a[d]=l,a[h]=c,d=h);else if(g<e&&0>D(k,c))a[d]=k,a[g]=c,d=g;else break a}}return b}
function D(a,b){var c=a.sortIndex-b.sortIndex;return 0!==c?c:a.id-b.id}function P(a){for(var b=p(r);null!==b;){if(null===b.callback)E(r);else if(b.startTime<=a)E(r),b.sortIndex=b.expirationTime,O(q,b);else break;b=p(r)}}function Q(a){z=!1;P(a);if(!u)if(null!==p(q))u=!0,R(S);else{var b=p(r);null!==b&&T(Q,b.startTime-a)}}function S(a,b){u=!1;z&&(z=!1,fa(A),A=-1);F=!0;var c=k;try{P(b);for(n=p(q);null!==n&&(!(n.expirationTime>b)||a&&!ha());){var d=n.callback;if("function"===typeof d){n.callback=null;
k=n.priorityLevel;var e=d(n.expirationTime<=b);b=v();"function"===typeof e?n.callback=e:n===p(q)&&E(q);P(b)}else E(q);n=p(q)}if(null!==n)var f=!0;else{var h=p(r);null!==h&&T(Q,h.startTime-b);f=!1}return f}finally{n=null,k=c,F=!1}}function ha(){return v()-ia<ja?!1:!0}function R(a){G=a;H||(H=!0,I())}function T(a,b){A=ka(function(){a(v())},b)}var y=Symbol.for("react.element"),qa=Symbol.for("react.portal"),sa=Symbol.for("react.fragment"),ta=Symbol.for("react.strict_mode"),ua=Symbol.for("react.profiler"),
va=Symbol.for("react.provider"),wa=Symbol.for("react.context"),xa=Symbol.for("react.forward_ref"),ya=Symbol.for("react.suspense"),za=Symbol.for("react.suspense_list"),Aa=Symbol.for("react.memo"),Ba=Symbol.for("react.lazy"),Ca=Symbol.for("react.debug_trace_mode"),Da=Symbol.for("react.offscreen"),Ea=Symbol.for("react.legacy_hidden"),Fa=Symbol.for("react.cache"),V=Symbol.iterator,X={isMounted:function(a){return!1},enqueueForceUpdate:function(a,b,c){},enqueueReplaceState:function(a,b,c,d){},enqueueSetState:function(a,
b,c,d){}},la=Object.assign,W={};w.prototype.isReactComponent={};w.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")};w.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};Y.prototype=w.prototype;var t=K.prototype=new Y;t.constructor=K;la(t,w.prototype);
t.isPureReactComponent=!0;var da=Array.isArray,ba=Object.prototype.hasOwnProperty,L={current:null},ca={key:!0,ref:!0,__self:!0,__source:!0},ea=/\/+/g,f={current:null},J={transition:null};if("object"===typeof performance&&"function"===typeof performance.now){var Ga=performance;var v=function(){return Ga.now()}}else{var ma=Date,Ha=ma.now();v=function(){return ma.now()-Ha}}var q=[],r=[],Ia=1,n=null,k=3,F=!1,u=!1,z=!1,ka="function"===typeof setTimeout?setTimeout:null,fa="function"===typeof clearTimeout?
clearTimeout:null,na="undefined"!==typeof setImmediate?setImmediate:null;"undefined"!==typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending&&navigator.scheduling.isInputPending.bind(navigator.scheduling);var H=!1,G=null,A=-1,ja=5,ia=-1,U=function(){if(null!==G){var a=v();ia=a;var b=!0;try{b=G(!0,a)}finally{b?I():(H=!1,G=null)}}else H=!1};if("function"===typeof na)var I=function(){na(U)};else if("undefined"!==typeof MessageChannel){t=new MessageChannel;var Ja=
t.port2;t.port1.onmessage=U;I=function(){Ja.postMessage(null)}}else I=function(){ka(U,0)};t={ReactCurrentDispatcher:f,ReactCurrentOwner:L,ReactCurrentBatchConfig:J,Scheduler:{__proto__:null,unstable_ImmediatePriority:1,unstable_UserBlockingPriority:2,unstable_NormalPriority:3,unstable_IdlePriority:5,unstable_LowPriority:4,unstable_runWithPriority:function(a,b){switch(a){case 1:case 2:case 3:case 4:case 5:break;default:a=3}var c=k;k=a;try{return b()}finally{k=c}},unstable_next:function(a){switch(k){case 1:case 2:case 3:var b=
3;break;default:b=k}var c=k;k=b;try{return a()}finally{k=c}},unstable_scheduleCallback:function(a,b,c){var d=v();"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,O(r,a),null===p(q)&&a===p(r)&&(z?(fa(A),A=-1):z=!0,T(Q,c-d))):(a.sortIndex=e,O(q,a),u||F||(u=
!0,R(S)));return a},unstable_cancelCallback:function(a){a.callback=null},unstable_wrapCallback:function(a){var b=k;return function(){var c=k;k=b;try{return a.apply(this,arguments)}finally{k=c}}},unstable_getCurrentPriorityLevel:function(){return k},unstable_shouldYield:ha,unstable_requestPaint:function(){},unstable_continueExecution:function(){u||F||(u=!0,R(S))},unstable_pauseExecution:function(){},unstable_getFirstCallbackNode:function(){return p(q)},get unstable_now(){return v},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"):ja=0<a?Math.floor(1E3/a):5},unstable_Profiling:null}};c.Children={map:C,forEach:function(a,b,c){C(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;C(a,function(){b++});return b},toArray:function(a){return C(a,function(a){return a})||[]},only:function(a){if(!M(a))throw Error("React.Children.only expected to receive a single React element child.");
return a}};c.Component=w;c.Fragment=sa;c.Profiler=ua;c.PureComponent=K;c.StrictMode=ta;c.Suspense=ya;c.SuspenseList=za;c.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=t;c.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=la({},a.props),e=a.key,f=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(f=b.ref,h=L.current);void 0!==b.key&&(e=""+b.key);if(a.type&&a.type.defaultProps)var l=a.type.defaultProps;
for(g in b)ba.call(b,g)&&!ca.hasOwnProperty(g)&&(d[g]=void 0===b[g]&&void 0!==l?l[g]:b[g])}var g=arguments.length-2;if(1===g)d.children=c;else if(1<g){l=Array(g);for(var k=0;k<g;k++)l[k]=arguments[k+2];d.children=l}return{$$typeof:y,type:a.type,key:e,ref:f,props:d,_owner:h}};c.createContext=function(a){a={$$typeof:wa,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:va,_context:a};return a.Consumer=a};c.createElement=Z;c.createFactory=function(a){var b=
Z.bind(null,a);b.type=a;return b};c.createRef=function(){return{current:null}};c.forwardRef=function(a){return{$$typeof:xa,render:a}};c.isValidElement=M;c.lazy=function(a){return{$$typeof:Ba,_payload:{_status:-1,_result:a},_init:ra}};c.memo=function(a,b){return{$$typeof:Aa,type:a,compare:void 0===b?null:b}};c.startTransition=function(a,b){b=J.transition;J.transition={};try{a()}finally{J.transition=b}};c.unstable_Cache=Fa;c.unstable_DebugTracingMode=Ca;c.unstable_LegacyHidden=Ea;c.unstable_Offscreen=
Da;c.unstable_act=function(a){throw Error("act(...) is not supported in production builds of React.");};c.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};c.unstable_getCacheForType=function(a){return f.current.getCacheForType(a)};c.unstable_getCacheSignal=function(){return f.current.getCacheSignal()};c.unstable_useCacheRefresh=function(){return f.current.useCacheRefresh()};c.useCallback=function(a,
b){return f.current.useCallback(a,b)};c.useContext=function(a){return f.current.useContext(a)};c.useDebugValue=function(a,b){};c.useDeferredValue=function(a){return f.current.useDeferredValue(a)};c.useEffect=function(a,b){return f.current.useEffect(a,b)};c.useId=function(){return f.current.useId()};c.useImperativeHandle=function(a,b,c){return f.current.useImperativeHandle(a,b,c)};c.useInsertionEffect=function(a,b){return f.current.useInsertionEffect(a,b)};c.useLayoutEffect=function(a,b){return f.current.useLayoutEffect(a,
b)};c.useMemo=function(a,b){return f.current.useMemo(a,b)};c.useReducer=function(a,b,c){return f.current.useReducer(a,b,c)};c.useRef=function(a){return f.current.useRef(a)};c.useState=function(a){return f.current.useState(a)};c.useSyncExternalStore=function(a,b,c){return f.current.useSyncExternalStore(a,b,c)};c.useTransition=function(){return f.current.useTransition()};c.version="18.0.0-rc.1-experimental-f0dd459e0-20220301"});
})();
'use strict';(function(){(function(f,A){"object"===typeof exports&&"undefined"!==typeof module?A(exports):"function"===typeof define&&define.amd?define(["exports"],A):(f="undefined"!==typeof globalThis?globalThis:f||self,A(f.React={}))})(this,function(f){function A(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 M(a,b,c){this.props=a;this.context=
b;this.refs=Z;this.updater=c||aa}function N(a,b,c,d,e){return{$$typeof:O,type:a,key:b,ref:c,props:e,_owner:d}}function ca(a,b,c){var d,e={},g=null,k=null;if(null!=b)for(d in void 0!==b.ref&&(k=b.ref),void 0!==b.key&&(g=""+b.key),b)da.call(b,d)&&"key"!==d&&"ref"!==d&&"__self"!==d&&"__source"!==d&&(e[d]=b[d]);var l=arguments.length-2;if(1===l)e.children=c;else if(1<l){for(var h=Array(l),n=0;n<l;n++)h[n]=arguments[n+2];e.children=h}if(a&&a.defaultProps)for(d in l=a.defaultProps,l)void 0===e[d]&&(e[d]=
l[d]);return N(a,g,k,P.current,e)}function ta(a,b){return N(a.type,b,a.ref,a._owner,a.props)}function Q(a){return"object"===typeof a&&null!==a&&a.$$typeof===O}function ua(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(c){return b[c]})}function R(a,b){return"object"===typeof a&&null!==a&&null!=a.key?ua(""+a.key):b.toString(36)}function ea(){}function va(a){switch(a.status){case "fulfilled":return a.value;case "rejected":throw a.reason;default:switch("string"===typeof a.status?a.then(ea,
ea):(a.status="pending",a.then(function(b){"pending"===a.status&&(a.status="fulfilled",a.value=b)},function(b){"pending"===a.status&&(a.status="rejected",a.reason=b)})),a.status){case "fulfilled":return a.value;case "rejected":throw a.reason;}}throw a;}function z(a,b,c,d,e){var g=typeof a;if("undefined"===g||"boolean"===g)a=null;var k=!1;if(null===a)k=!0;else switch(g){case "string":case "number":k=!0;break;case "object":switch(a.$$typeof){case O:case wa:k=!0;break;case fa:return k=a._init,z(k(a._payload),
b,c,d,e)}}if(k)return e=e(a),k=""===d?"."+R(a,0):d,ha(e)?(c="",null!=k&&(c=k.replace(ia,"$&/")+"/"),z(e,b,c,"",function(n){return n})):null!=e&&(Q(e)&&(e=ta(e,c+(!e.key||a&&a.key===e.key?"":(""+e.key).replace(ia,"$&/")+"/")+k)),b.push(e)),1;k=0;var l=""===d?".":d+":";if(ha(a))for(var h=0;h<a.length;h++)d=a[h],g=l+R(d,h),k+=z(d,b,c,g,e);else if(h=A(a),"function"===typeof h)for(a=h.call(a),h=0;!(d=a.next()).done;)d=d.value,g=l+R(d,h++),k+=z(d,b,c,g,e);else if("object"===g){if("function"===typeof a.then)return z(va(a),
b,c,d,e);b=String(a);throw 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 k}function E(a,b,c){if(null==a)return a;var d=[],e=0;z(a,d,"","",function(g){return b.call(c,g,e++)});return d}function xa(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 ya(){return new WeakMap}function S(){return{s:0,v:void 0,o:null,p:null}}function ja(a,b){return m.current.useOptimistic(a,b)}function T(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 k=2*(d+1)-1,l=a[k],h=k+1,n=a[h];if(0>F(l,c))h<e&&0>F(n,l)?(a[d]=n,a[h]=c,d=h):(a[d]=l,a[k]=c,d=k);else if(h<e&&0>F(n,c))a[d]=n,a[h]=c,d=h;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,T(t,b);else break;b=r(u)}}function U(a){B=!1;H(a);if(!w)if(null!==r(t))w=!0,
V();else{var b=r(u);null!==b&&W(U,b.startTime-a)}}function ka(){return x()-la<ma?!1:!0}function V(){I||(I=!0,J())}function W(a,b){C=na(function(){a(x())},b)}function za(){}var O=Symbol.for("react.element"),wa=Symbol.for("react.portal"),Aa=Symbol.for("react.fragment"),Ba=Symbol.for("react.strict_mode"),Ca=Symbol.for("react.profiler"),Da=Symbol.for("react.provider"),Ea=Symbol.for("react.context"),Fa=Symbol.for("react.forward_ref"),Ga=Symbol.for("react.suspense"),Ha=Symbol.for("react.suspense_list"),
Ia=Symbol.for("react.memo"),fa=Symbol.for("react.lazy"),Ja=Symbol.for("react.debug_trace_mode"),Ka=Symbol.for("react.offscreen"),La=Symbol.for("react.cache"),Ma=Symbol.for("react.postpone"),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){}},oa=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=M.prototype=new ba;v.constructor=M;oa(v,y.prototype);v.isPureReactComponent=!0;var ha=Array.isArray,da=Object.prototype.hasOwnProperty,P={current:null},m={current:null},K={current:null},D={transition:null},ia=/\/+/g;if("object"===typeof performance&&"function"===typeof performance.now){var Na=performance;var x=function(){return Na.now()}}else{var pa=
Date,Oa=pa.now();x=function(){return pa.now()-Oa}}var t=[],u=[],Pa=1,q=null,p=3,L=!1,w=!1,B=!1,na="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,ma=5,la=-1,X=function(){if(I){var a=x();la=a;var b=!0;try{a:{w=
!1;B&&(B=!1,qa(C),C=-1);L=!0;var c=p;try{b:{H(a);for(q=r(t);null!==q&&!(q.expirationTime>a&&ka());){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&&W(U,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 ra)var J=function(){ra(X)};else if("undefined"!==
typeof MessageChannel){v=new MessageChannel;var Qa=v.port2;v.port1.onmessage=X;J=function(){Qa.postMessage(null)}}else J=function(){na(X,0)};v={ReactCurrentDispatcher:m,ReactCurrentCache:K,ReactCurrentOwner:P,ReactCurrentBatchConfig:D,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,V())},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"):ma=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:Pa++,callback:b,priorityLevel:a,startTime:c,expirationTime:e,sortIndex:-1};
c>d?(a.sortIndex=c,T(u,a),null===r(t)&&a===r(u)&&(B?(qa(C),C=-1):B=!0,W(U,c-d))):(a.sortIndex=e,T(t,a),w||L||(w=!0,V()));return a},unstable_shouldYield:ka,unstable_wrapCallback:function(a){var b=p;return function(){var c=p;p=b;try{return a.apply(this,arguments)}finally{p=c}}}}};var sa="function"===typeof reportError?reportError:function(a){console.error(a)};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(!Q(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};f.Component=y;f.Fragment=Aa;f.Profiler=Ca;f.PureComponent=M;f.StrictMode=Ba;f.Suspense=Ga;f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=v;f.act=function(a){throw Error("act(...) is not supported in production builds of React.");};f.cache=function(a){return function(){var b=K.current;if(!b)return a.apply(null,arguments);
var c=b.getCacheForType(ya);b=c.get(a);void 0===b&&(b=S(),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=S(),g.set(e,b))}else g=b.p,null===g&&(b.p=g=new Map),b=g.get(e),void 0===b&&(b=S(),g.set(e,b))}if(1===b.s)return b.v;if(2===b.s)throw b.v;try{var k=a.apply(null,arguments);c=b;c.s=1;return c.v=k}catch(l){throw k=b,k.s=2,k.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=oa({},a.props),e=a.key,g=a.ref,k=a._owner;if(null!=b){void 0!==b.ref&&(g=b.ref,k=P.current);void 0!==b.key&&(e=""+b.key);if(a.type&&a.type.defaultProps)var l=a.type.defaultProps;for(h in b)da.call(b,h)&&"key"!==h&&"ref"!==h&&"__self"!==h&&"__source"!==h&&(d[h]=void 0===b[h]&&void 0!==l?l[h]:b[h])}var h=arguments.length-2;if(1===h)d.children=c;else if(1<h){l=Array(h);
for(var n=0;n<h;n++)l[n]=arguments[n+2];d.children=l}return N(a.type,e,g,k,d)};f.createContext=function(a){a={$$typeof:Ea,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:Da,_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.experimental_useEffectEvent=function(a){return m.current.useEffectEvent(a)};f.experimental_useOptimistic=function(a,
b){return ja(a,b)};f.forwardRef=function(a){return{$$typeof:Fa,render:a}};f.isValidElement=Q;f.lazy=function(a){return{$$typeof:fa,_payload:{_status:-1,_result:a},_init:xa}};f.memo=function(a,b){return{$$typeof:Ia,type:a,compare:void 0===b?null:b}};f.startTransition=function(a,b){b=D.transition;var c=new Set;D.transition={_callbacks:c};var d=D.transition;try{var e=a();"object"===typeof e&&null!==e&&"function"===typeof e.then&&(c.forEach(function(g){return g(d,e)}),e.then(za,sa))}catch(g){sa(g)}finally{D.transition=
b}};f.unstable_Activity=Ka;f.unstable_Cache=La;f.unstable_DebugTracingMode=Ja;f.unstable_SuspenseList=Ha;f.unstable_getCacheForType=function(a){var b=K.current;return b?b.getCacheForType(a):a()};f.unstable_getCacheSignal=function(){var a=K.current;return a?a.getCacheSignal():(a=new AbortController,a.abort(Error("This CacheSignal was requested outside React which means that it is immediately aborted.")),a.signal)};f.unstable_postpone=function(a){a=Error(a);a.$$typeof=Ma;throw a;};f.unstable_useCacheRefresh=
function(){return m.current.useCacheRefresh()};f.unstable_useMemoCache=function(a){return m.current.useMemoCache(a)};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=ja;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-experimental-f0e808e5b-20240214"})})();

@@ -5,3 +5,3 @@ /**

*
* Copyright (c) Facebook, Inc. and its affiliates.
* Copyright (c) Meta Platforms, Inc. and affiliates.
*

@@ -11,24 +11,28 @@ * This source code is licensed under the MIT license found in the

*/
(function(){'use strict';(function(c,x){"object"===typeof exports&&"undefined"!==typeof module?x(exports):"function"===typeof define&&define.amd?define(["exports"],x):(c=c||self,x(c.React={}))})(this,function(c){function x(a){if(null===a||"object"!==typeof a)return null;a=V&&a[V]||a["@@iterator"];return"function"===typeof a?a:null}function w(a,b,m){this.props=a;this.context=b;this.refs=W;this.updater=m||X}function Y(){}function K(a,b,m){this.props=a;this.context=b;this.refs=W;this.updater=m||X}function Z(a,b,
m){var d,c={},aa=null,h=null;if(null!=b)for(d in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(aa=""+b.key),b)ba.call(b,d)&&!ca.hasOwnProperty(d)&&(c[d]=b[d]);var l=arguments.length-2;if(1===l)c.children=m;else if(1<l){for(var g=Array(l),f=0;f<l;f++)g[f]=arguments[f+2];c.children=g}if(a&&a.defaultProps)for(d in l=a.defaultProps,l)void 0===c[d]&&(c[d]=l[d]);return{$$typeof:y,type:a,key:aa,ref:h,props:c,_owner:L.current}}function oa(a,b){return{$$typeof:y,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}
function M(a){return"object"===typeof a&&null!==a&&a.$$typeof===y}function pa(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return b[a]})}function N(a,b){return"object"===typeof a&&null!==a&&null!=a.key?pa(""+a.key):b.toString(36)}function B(a,b,m,c,e){var d=typeof a;if("undefined"===d||"boolean"===d)a=null;var h=!1;if(null===a)h=!0;else switch(d){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case y:case qa:h=!0}}if(h)return h=a,e=e(h),a=""===c?"."+
N(h,0):c,da(e)?(m="",null!=a&&(m=a.replace(ea,"$&/")+"/"),B(e,b,m,"",function(a){return a})):null!=e&&(M(e)&&(e=oa(e,m+(!e.key||h&&h.key===e.key?"":(""+e.key).replace(ea,"$&/")+"/")+a)),b.push(e)),1;h=0;c=""===c?".":c+":";if(da(a))for(var l=0;l<a.length;l++){d=a[l];var g=c+N(d,l);h+=B(d,b,m,g,e)}else if(g=x(a),"function"===typeof g)for(a=g.call(a),l=0;!(d=a.next()).done;)d=d.value,g=c+N(d,l++),h+=B(d,b,m,g,e);else if("object"===d)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 C(a,b,m){if(null==a)return a;var c=[],e=0;B(a,c,"","",function(a){return b.call(m,a,e++)});return c}function ra(a){if(-1===a._status){var b=a._result;b=b();b.then(function(b){if(0===a._status||-1===a._status)a._status=1,a._result=b},function(b){if(0===a._status||-1===a._status)a._status=2,a._result=b});-1===a._status&&(a._status=
0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}function O(a,b){var c=a.length;a.push(b);a:for(;0<c;){var d=c-1>>>1,e=a[d];if(0<D(e,b))a[d]=b,a[c]=e,c=d;else break a}}function p(a){return 0===a.length?null:a[0]}function E(a){if(0===a.length)return null;var b=a[0],c=a.pop();if(c!==b){a[0]=c;a:for(var d=0,e=a.length,f=e>>>1;d<f;){var h=2*(d+1)-1,l=a[h],g=h+1,k=a[g];if(0>D(l,c))g<e&&0>D(k,l)?(a[d]=k,a[g]=c,d=g):(a[d]=l,a[h]=c,d=h);else if(g<e&&0>D(k,c))a[d]=k,a[g]=c,d=g;else break a}}return b}
function D(a,b){var c=a.sortIndex-b.sortIndex;return 0!==c?c:a.id-b.id}function P(a){for(var b=p(r);null!==b;){if(null===b.callback)E(r);else if(b.startTime<=a)E(r),b.sortIndex=b.expirationTime,O(q,b);else break;b=p(r)}}function Q(a){z=!1;P(a);if(!u)if(null!==p(q))u=!0,R(S);else{var b=p(r);null!==b&&T(Q,b.startTime-a)}}function S(a,b){u=!1;z&&(z=!1,fa(A),A=-1);F=!0;var c=k;try{P(b);for(n=p(q);null!==n&&(!(n.expirationTime>b)||a&&!ha());){var d=n.callback;if("function"===typeof d){n.callback=null;
k=n.priorityLevel;var e=d(n.expirationTime<=b);b=v();"function"===typeof e?n.callback=e:n===p(q)&&E(q);P(b)}else E(q);n=p(q)}if(null!==n)var f=!0;else{var h=p(r);null!==h&&T(Q,h.startTime-b);f=!1}return f}finally{n=null,k=c,F=!1}}function ha(){return v()-ia<ja?!1:!0}function R(a){G=a;H||(H=!0,I())}function T(a,b){A=ka(function(){a(v())},b)}var y=Symbol.for("react.element"),qa=Symbol.for("react.portal"),sa=Symbol.for("react.fragment"),ta=Symbol.for("react.strict_mode"),ua=Symbol.for("react.profiler"),
va=Symbol.for("react.provider"),wa=Symbol.for("react.context"),xa=Symbol.for("react.forward_ref"),ya=Symbol.for("react.suspense"),za=Symbol.for("react.suspense_list"),Aa=Symbol.for("react.memo"),Ba=Symbol.for("react.lazy"),Ca=Symbol.for("react.debug_trace_mode"),Da=Symbol.for("react.offscreen"),Ea=Symbol.for("react.legacy_hidden"),Fa=Symbol.for("react.cache"),V=Symbol.iterator,X={isMounted:function(a){return!1},enqueueForceUpdate:function(a,b,c){},enqueueReplaceState:function(a,b,c,d){},enqueueSetState:function(a,
b,c,d){}},la=Object.assign,W={};w.prototype.isReactComponent={};w.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")};w.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};Y.prototype=w.prototype;var t=K.prototype=new Y;t.constructor=K;la(t,w.prototype);
t.isPureReactComponent=!0;var da=Array.isArray,ba=Object.prototype.hasOwnProperty,L={current:null},ca={key:!0,ref:!0,__self:!0,__source:!0},ea=/\/+/g,f={current:null},J={transition:null};if("object"===typeof performance&&"function"===typeof performance.now){var Ga=performance;var v=function(){return Ga.now()}}else{var ma=Date,Ha=ma.now();v=function(){return ma.now()-Ha}}var q=[],r=[],Ia=1,n=null,k=3,F=!1,u=!1,z=!1,ka="function"===typeof setTimeout?setTimeout:null,fa="function"===typeof clearTimeout?
clearTimeout:null,na="undefined"!==typeof setImmediate?setImmediate:null;"undefined"!==typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending&&navigator.scheduling.isInputPending.bind(navigator.scheduling);var H=!1,G=null,A=-1,ja=5,ia=-1,U=function(){if(null!==G){var a=v();ia=a;var b=!0;try{b=G(!0,a)}finally{b?I():(H=!1,G=null)}}else H=!1};if("function"===typeof na)var I=function(){na(U)};else if("undefined"!==typeof MessageChannel){t=new MessageChannel;var Ja=
t.port2;t.port1.onmessage=U;I=function(){Ja.postMessage(null)}}else I=function(){ka(U,0)};t={ReactCurrentDispatcher:f,ReactCurrentOwner:L,ReactCurrentBatchConfig:J,Scheduler:{__proto__:null,unstable_ImmediatePriority:1,unstable_UserBlockingPriority:2,unstable_NormalPriority:3,unstable_IdlePriority:5,unstable_LowPriority:4,unstable_runWithPriority:function(a,b){switch(a){case 1:case 2:case 3:case 4:case 5:break;default:a=3}var c=k;k=a;try{return b()}finally{k=c}},unstable_next:function(a){switch(k){case 1:case 2:case 3:var b=
3;break;default:b=k}var c=k;k=b;try{return a()}finally{k=c}},unstable_scheduleCallback:function(a,b,c){var d=v();"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,O(r,a),null===p(q)&&a===p(r)&&(z?(fa(A),A=-1):z=!0,T(Q,c-d))):(a.sortIndex=e,O(q,a),u||F||(u=
!0,R(S)));return a},unstable_cancelCallback:function(a){a.callback=null},unstable_wrapCallback:function(a){var b=k;return function(){var c=k;k=b;try{return a.apply(this,arguments)}finally{k=c}}},unstable_getCurrentPriorityLevel:function(){return k},unstable_shouldYield:ha,unstable_requestPaint:function(){},unstable_continueExecution:function(){u||F||(u=!0,R(S))},unstable_pauseExecution:function(){},unstable_getFirstCallbackNode:function(){return p(q)},get unstable_now(){return v},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"):ja=0<a?Math.floor(1E3/a):5},unstable_Profiling:null}};c.Children={map:C,forEach:function(a,b,c){C(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;C(a,function(){b++});return b},toArray:function(a){return C(a,function(a){return a})||[]},only:function(a){if(!M(a))throw Error("React.Children.only expected to receive a single React element child.");
return a}};c.Component=w;c.Fragment=sa;c.Profiler=ua;c.PureComponent=K;c.StrictMode=ta;c.Suspense=ya;c.SuspenseList=za;c.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=t;c.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=la({},a.props),e=a.key,f=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(f=b.ref,h=L.current);void 0!==b.key&&(e=""+b.key);if(a.type&&a.type.defaultProps)var l=a.type.defaultProps;
for(g in b)ba.call(b,g)&&!ca.hasOwnProperty(g)&&(d[g]=void 0===b[g]&&void 0!==l?l[g]:b[g])}var g=arguments.length-2;if(1===g)d.children=c;else if(1<g){l=Array(g);for(var k=0;k<g;k++)l[k]=arguments[k+2];d.children=l}return{$$typeof:y,type:a.type,key:e,ref:f,props:d,_owner:h}};c.createContext=function(a){a={$$typeof:wa,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:va,_context:a};return a.Consumer=a};c.createElement=Z;c.createFactory=function(a){var b=
Z.bind(null,a);b.type=a;return b};c.createRef=function(){return{current:null}};c.forwardRef=function(a){return{$$typeof:xa,render:a}};c.isValidElement=M;c.lazy=function(a){return{$$typeof:Ba,_payload:{_status:-1,_result:a},_init:ra}};c.memo=function(a,b){return{$$typeof:Aa,type:a,compare:void 0===b?null:b}};c.startTransition=function(a,b){b=J.transition;J.transition={};try{a()}finally{J.transition=b}};c.unstable_Cache=Fa;c.unstable_DebugTracingMode=Ca;c.unstable_LegacyHidden=Ea;c.unstable_Offscreen=
Da;c.unstable_act=function(a){throw Error("act(...) is not supported in production builds of React.");};c.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};c.unstable_getCacheForType=function(a){return f.current.getCacheForType(a)};c.unstable_getCacheSignal=function(){return f.current.getCacheSignal()};c.unstable_useCacheRefresh=function(){return f.current.useCacheRefresh()};c.useCallback=function(a,
b){return f.current.useCallback(a,b)};c.useContext=function(a){return f.current.useContext(a)};c.useDebugValue=function(a,b){};c.useDeferredValue=function(a){return f.current.useDeferredValue(a)};c.useEffect=function(a,b){return f.current.useEffect(a,b)};c.useId=function(){return f.current.useId()};c.useImperativeHandle=function(a,b,c){return f.current.useImperativeHandle(a,b,c)};c.useInsertionEffect=function(a,b){return f.current.useInsertionEffect(a,b)};c.useLayoutEffect=function(a,b){return f.current.useLayoutEffect(a,
b)};c.useMemo=function(a,b){return f.current.useMemo(a,b)};c.useReducer=function(a,b,c){return f.current.useReducer(a,b,c)};c.useRef=function(a){return f.current.useRef(a)};c.useState=function(a){return f.current.useState(a)};c.useSyncExternalStore=function(a,b,c){return f.current.useSyncExternalStore(a,b,c)};c.useTransition=function(){return f.current.useTransition()};c.version="18.0.0-rc.1-experimental-f0dd459e0-20220301"});
})();
'use strict';(function(){(function(f,A){"object"===typeof exports&&"undefined"!==typeof module?A(exports):"function"===typeof define&&define.amd?define(["exports"],A):(f="undefined"!==typeof globalThis?globalThis:f||self,A(f.React={}))})(this,function(f){function A(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 M(a,b,c){this.props=a;this.context=
b;this.refs=Z;this.updater=c||aa}function N(a,b,c,d,e){return{$$typeof:O,type:a,key:b,ref:c,props:e,_owner:d}}function ca(a,b,c){var d,e={},g=null,k=null;if(null!=b)for(d in void 0!==b.ref&&(k=b.ref),void 0!==b.key&&(g=""+b.key),b)da.call(b,d)&&"key"!==d&&"ref"!==d&&"__self"!==d&&"__source"!==d&&(e[d]=b[d]);var l=arguments.length-2;if(1===l)e.children=c;else if(1<l){for(var h=Array(l),n=0;n<l;n++)h[n]=arguments[n+2];e.children=h}if(a&&a.defaultProps)for(d in l=a.defaultProps,l)void 0===e[d]&&(e[d]=
l[d]);return N(a,g,k,P.current,e)}function ta(a,b){return N(a.type,b,a.ref,a._owner,a.props)}function Q(a){return"object"===typeof a&&null!==a&&a.$$typeof===O}function ua(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(c){return b[c]})}function R(a,b){return"object"===typeof a&&null!==a&&null!=a.key?ua(""+a.key):b.toString(36)}function ea(){}function va(a){switch(a.status){case "fulfilled":return a.value;case "rejected":throw a.reason;default:switch("string"===typeof a.status?a.then(ea,
ea):(a.status="pending",a.then(function(b){"pending"===a.status&&(a.status="fulfilled",a.value=b)},function(b){"pending"===a.status&&(a.status="rejected",a.reason=b)})),a.status){case "fulfilled":return a.value;case "rejected":throw a.reason;}}throw a;}function z(a,b,c,d,e){var g=typeof a;if("undefined"===g||"boolean"===g)a=null;var k=!1;if(null===a)k=!0;else switch(g){case "string":case "number":k=!0;break;case "object":switch(a.$$typeof){case O:case wa:k=!0;break;case fa:return k=a._init,z(k(a._payload),
b,c,d,e)}}if(k)return e=e(a),k=""===d?"."+R(a,0):d,ha(e)?(c="",null!=k&&(c=k.replace(ia,"$&/")+"/"),z(e,b,c,"",function(n){return n})):null!=e&&(Q(e)&&(e=ta(e,c+(!e.key||a&&a.key===e.key?"":(""+e.key).replace(ia,"$&/")+"/")+k)),b.push(e)),1;k=0;var l=""===d?".":d+":";if(ha(a))for(var h=0;h<a.length;h++)d=a[h],g=l+R(d,h),k+=z(d,b,c,g,e);else if(h=A(a),"function"===typeof h)for(a=h.call(a),h=0;!(d=a.next()).done;)d=d.value,g=l+R(d,h++),k+=z(d,b,c,g,e);else if("object"===g){if("function"===typeof a.then)return z(va(a),
b,c,d,e);b=String(a);throw 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 k}function E(a,b,c){if(null==a)return a;var d=[],e=0;z(a,d,"","",function(g){return b.call(c,g,e++)});return d}function xa(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 ya(){return new WeakMap}function S(){return{s:0,v:void 0,o:null,p:null}}function ja(a,b){return m.current.useOptimistic(a,b)}function T(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 k=2*(d+1)-1,l=a[k],h=k+1,n=a[h];if(0>F(l,c))h<e&&0>F(n,l)?(a[d]=n,a[h]=c,d=h):(a[d]=l,a[k]=c,d=k);else if(h<e&&0>F(n,c))a[d]=n,a[h]=c,d=h;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,T(t,b);else break;b=r(u)}}function U(a){B=!1;H(a);if(!w)if(null!==r(t))w=!0,
V();else{var b=r(u);null!==b&&W(U,b.startTime-a)}}function ka(){return x()-la<ma?!1:!0}function V(){I||(I=!0,J())}function W(a,b){C=na(function(){a(x())},b)}function za(){}var O=Symbol.for("react.element"),wa=Symbol.for("react.portal"),Aa=Symbol.for("react.fragment"),Ba=Symbol.for("react.strict_mode"),Ca=Symbol.for("react.profiler"),Da=Symbol.for("react.provider"),Ea=Symbol.for("react.context"),Fa=Symbol.for("react.forward_ref"),Ga=Symbol.for("react.suspense"),Ha=Symbol.for("react.suspense_list"),
Ia=Symbol.for("react.memo"),fa=Symbol.for("react.lazy"),Ja=Symbol.for("react.debug_trace_mode"),Ka=Symbol.for("react.offscreen"),La=Symbol.for("react.cache"),Ma=Symbol.for("react.postpone"),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){}},oa=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=M.prototype=new ba;v.constructor=M;oa(v,y.prototype);v.isPureReactComponent=!0;var ha=Array.isArray,da=Object.prototype.hasOwnProperty,P={current:null},m={current:null},K={current:null},D={transition:null},ia=/\/+/g;if("object"===typeof performance&&"function"===typeof performance.now){var Na=performance;var x=function(){return Na.now()}}else{var pa=
Date,Oa=pa.now();x=function(){return pa.now()-Oa}}var t=[],u=[],Pa=1,q=null,p=3,L=!1,w=!1,B=!1,na="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,ma=5,la=-1,X=function(){if(I){var a=x();la=a;var b=!0;try{a:{w=
!1;B&&(B=!1,qa(C),C=-1);L=!0;var c=p;try{b:{H(a);for(q=r(t);null!==q&&!(q.expirationTime>a&&ka());){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&&W(U,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 ra)var J=function(){ra(X)};else if("undefined"!==
typeof MessageChannel){v=new MessageChannel;var Qa=v.port2;v.port1.onmessage=X;J=function(){Qa.postMessage(null)}}else J=function(){na(X,0)};v={ReactCurrentDispatcher:m,ReactCurrentCache:K,ReactCurrentOwner:P,ReactCurrentBatchConfig:D,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,V())},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"):ma=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:Pa++,callback:b,priorityLevel:a,startTime:c,expirationTime:e,sortIndex:-1};
c>d?(a.sortIndex=c,T(u,a),null===r(t)&&a===r(u)&&(B?(qa(C),C=-1):B=!0,W(U,c-d))):(a.sortIndex=e,T(t,a),w||L||(w=!0,V()));return a},unstable_shouldYield:ka,unstable_wrapCallback:function(a){var b=p;return function(){var c=p;p=b;try{return a.apply(this,arguments)}finally{p=c}}}}};var sa="function"===typeof reportError?reportError:function(a){console.error(a)};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(!Q(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};f.Component=y;f.Fragment=Aa;f.Profiler=Ca;f.PureComponent=M;f.StrictMode=Ba;f.Suspense=Ga;f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=v;f.act=function(a){throw Error("act(...) is not supported in production builds of React.");};f.cache=function(a){return function(){var b=K.current;if(!b)return a.apply(null,arguments);
var c=b.getCacheForType(ya);b=c.get(a);void 0===b&&(b=S(),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=S(),g.set(e,b))}else g=b.p,null===g&&(b.p=g=new Map),b=g.get(e),void 0===b&&(b=S(),g.set(e,b))}if(1===b.s)return b.v;if(2===b.s)throw b.v;try{var k=a.apply(null,arguments);c=b;c.s=1;return c.v=k}catch(l){throw k=b,k.s=2,k.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=oa({},a.props),e=a.key,g=a.ref,k=a._owner;if(null!=b){void 0!==b.ref&&(g=b.ref,k=P.current);void 0!==b.key&&(e=""+b.key);if(a.type&&a.type.defaultProps)var l=a.type.defaultProps;for(h in b)da.call(b,h)&&"key"!==h&&"ref"!==h&&"__self"!==h&&"__source"!==h&&(d[h]=void 0===b[h]&&void 0!==l?l[h]:b[h])}var h=arguments.length-2;if(1===h)d.children=c;else if(1<h){l=Array(h);
for(var n=0;n<h;n++)l[n]=arguments[n+2];d.children=l}return N(a.type,e,g,k,d)};f.createContext=function(a){a={$$typeof:Ea,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:Da,_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.experimental_useEffectEvent=function(a){return m.current.useEffectEvent(a)};f.experimental_useOptimistic=function(a,
b){return ja(a,b)};f.forwardRef=function(a){return{$$typeof:Fa,render:a}};f.isValidElement=Q;f.lazy=function(a){return{$$typeof:fa,_payload:{_status:-1,_result:a},_init:xa}};f.memo=function(a,b){return{$$typeof:Ia,type:a,compare:void 0===b?null:b}};f.startTransition=function(a,b){b=D.transition;var c=new Set;D.transition={_callbacks:c};var d=D.transition;try{var e=a();"object"===typeof e&&null!==e&&"function"===typeof e.then&&(c.forEach(function(g){return g(d,e)}),e.then(za,sa))}catch(g){sa(g)}finally{D.transition=
b}};f.unstable_Activity=Ka;f.unstable_Cache=La;f.unstable_DebugTracingMode=Ja;f.unstable_SuspenseList=Ha;f.unstable_getCacheForType=function(a){var b=K.current;return b?b.getCacheForType(a):a()};f.unstable_getCacheSignal=function(){var a=K.current;return a?a.getCacheSignal():(a=new AbortController,a.abort(Error("This CacheSignal was requested outside React which means that it is immediately aborted.")),a.signal)};f.unstable_postpone=function(a){a=Error(a);a.$$typeof=Ma;throw a;};f.unstable_useCacheRefresh=
function(){return m.current.useCacheRefresh()};f.unstable_useMemoCache=function(a){return m.current.useMemoCache(a)};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=ja;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-experimental-f0e808e5b-20240214"})})();

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc