xshell 1.2.39 → 1.2.40

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,15 +2,67 @@
2
2
  /******/ "use strict";
3
3
  /******/ var __webpack_modules__ = ({
4
4
 
5
- /***/ 218:
6
- /*!************************************************************************************!*\
7
- !*** ./node_modules/.pnpm/react@19.1.0/node_modules/react/cjs/react.production.js ***!
8
- \************************************************************************************/
9
- /***/ ((__unused_webpack_module, exports) => {
5
+ /***/ 213:
6
+ /*!*********************************************************************!*\
7
+ !*** ./node_modules/.pnpm/react@19.1.0/node_modules/react/index.js ***!
8
+ \*********************************************************************/
9
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
10
+
11
+
12
+
13
+ if (true) {
14
+ module.exports = __webpack_require__(/*! ./cjs/react.production.js */ 826);
15
+ } else {}
16
+
17
+
18
+ /***/ }),
19
+
20
+ /***/ 373:
21
+ /*!*******************************************************************************************!*\
22
+ !*** ./node_modules/.pnpm/react-dom@19.1.0_react@19.1.0/node_modules/react-dom/client.js ***!
23
+ \*******************************************************************************************/
24
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
25
+
26
+
27
+
28
+ function checkDCE() {
29
+ /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */
30
+ if (
31
+ typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined' ||
32
+ typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE !== 'function'
33
+ ) {
34
+ return;
35
+ }
36
+ if (false) {}
37
+ try {
38
+ // Verify that the code above has been dead code eliminated (DCE'd).
39
+ __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(checkDCE);
40
+ } catch (err) {
41
+ // DevTools shouldn't crash React, no matter what.
42
+ // We should still report in case we break this code.
43
+ console.error(err);
44
+ }
45
+ }
46
+
47
+ if (true) {
48
+ // DCE check should happen before ReactDOM bundle executes so that
49
+ // DevTools can report bad minification during injection.
50
+ checkDCE();
51
+ module.exports = __webpack_require__(/*! ./cjs/react-dom-client.production.js */ 722);
52
+ } else {}
53
+
54
+
55
+ /***/ }),
56
+
57
+ /***/ 458:
58
+ /*!*************************************************************************************************************!*\
59
+ !*** ./node_modules/.pnpm/react-dom@19.1.0_react@19.1.0/node_modules/react-dom/cjs/react-dom.production.js ***!
60
+ \*************************************************************************************************************/
61
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
10
62
 
11
63
  /**
12
64
  * @license React
13
- * react.production.js
65
+ * react-dom.production.js
14
66
  *
15
67
  * Copyright (c) Meta Platforms, Inc. and affiliates.
16
68
  *
@@ -19,561 +71,210 @@
19
71
  */
20
72
 
21
73
 
22
- var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
23
- REACT_PORTAL_TYPE = Symbol.for("react.portal"),
24
- REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
25
- REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
26
- REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
27
- REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
28
- REACT_CONTEXT_TYPE = Symbol.for("react.context"),
29
- REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
30
- REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"),
31
- REACT_MEMO_TYPE = Symbol.for("react.memo"),
32
- REACT_LAZY_TYPE = Symbol.for("react.lazy"),
33
- MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
34
- function getIteratorFn(maybeIterable) {
35
- if (null === maybeIterable || "object" !== typeof maybeIterable) return null;
36
- maybeIterable =
37
- (MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL]) ||
38
- maybeIterable["@@iterator"];
39
- return "function" === typeof maybeIterable ? maybeIterable : null;
74
+ var React = __webpack_require__(/*! react */ 213);
75
+ function formatProdErrorMessage(code) {
76
+ var url = "https://react.dev/errors/" + code;
77
+ if (1 < arguments.length) {
78
+ url += "?args[]=" + encodeURIComponent(arguments[1]);
79
+ for (var i = 2; i < arguments.length; i++)
80
+ url += "&args[]=" + encodeURIComponent(arguments[i]);
81
+ }
82
+ return (
83
+ "Minified React error #" +
84
+ code +
85
+ "; visit " +
86
+ url +
87
+ " for the full message or use the non-minified dev environment for full errors and additional helpful warnings."
88
+ );
40
89
  }
41
- var ReactNoopUpdateQueue = {
42
- isMounted: function () {
43
- return !1;
90
+ function noop() {}
91
+ var Internals = {
92
+ d: {
93
+ f: noop,
94
+ r: function () {
95
+ throw Error(formatProdErrorMessage(522));
96
+ },
97
+ D: noop,
98
+ C: noop,
99
+ L: noop,
100
+ m: noop,
101
+ X: noop,
102
+ S: noop,
103
+ M: noop
44
104
  },
45
- enqueueForceUpdate: function () {},
46
- enqueueReplaceState: function () {},
47
- enqueueSetState: function () {}
105
+ p: 0,
106
+ findDOMNode: null
48
107
  },
49
- assign = Object.assign,
50
- emptyObject = {};
51
- function Component(props, context, updater) {
52
- this.props = props;
53
- this.context = context;
54
- this.refs = emptyObject;
55
- this.updater = updater || ReactNoopUpdateQueue;
56
- }
57
- Component.prototype.isReactComponent = {};
58
- Component.prototype.setState = function (partialState, callback) {
59
- if (
60
- "object" !== typeof partialState &&
61
- "function" !== typeof partialState &&
62
- null != partialState
63
- )
64
- throw Error(
65
- "takes an object of state variables to update or a function which returns an object of state variables."
66
- );
67
- this.updater.enqueueSetState(this, partialState, callback, "setState");
68
- };
69
- Component.prototype.forceUpdate = function (callback) {
70
- this.updater.enqueueForceUpdate(this, callback, "forceUpdate");
71
- };
72
- function ComponentDummy() {}
73
- ComponentDummy.prototype = Component.prototype;
74
- function PureComponent(props, context, updater) {
75
- this.props = props;
76
- this.context = context;
77
- this.refs = emptyObject;
78
- this.updater = updater || ReactNoopUpdateQueue;
79
- }
80
- var pureComponentPrototype = (PureComponent.prototype = new ComponentDummy());
81
- pureComponentPrototype.constructor = PureComponent;
82
- assign(pureComponentPrototype, Component.prototype);
83
- pureComponentPrototype.isPureReactComponent = !0;
84
- var isArrayImpl = Array.isArray,
85
- ReactSharedInternals = { H: null, A: null, T: null, S: null, V: null },
86
- hasOwnProperty = Object.prototype.hasOwnProperty;
87
- function ReactElement(type, key, self, source, owner, props) {
88
- self = props.ref;
108
+ REACT_PORTAL_TYPE = Symbol.for("react.portal");
109
+ function createPortal$1(children, containerInfo, implementation) {
110
+ var key =
111
+ 3 < arguments.length && void 0 !== arguments[3] ? arguments[3] : null;
89
112
  return {
90
- $$typeof: REACT_ELEMENT_TYPE,
91
- type: type,
92
- key: key,
93
- ref: void 0 !== self ? self : null,
94
- props: props
113
+ $$typeof: REACT_PORTAL_TYPE,
114
+ key: null == key ? null : "" + key,
115
+ children: children,
116
+ containerInfo: containerInfo,
117
+ implementation: implementation
95
118
  };
96
119
  }
97
- function cloneAndReplaceKey(oldElement, newKey) {
98
- return ReactElement(
99
- oldElement.type,
100
- newKey,
101
- void 0,
102
- void 0,
103
- void 0,
104
- oldElement.props
105
- );
106
- }
107
- function isValidElement(object) {
108
- return (
109
- "object" === typeof object &&
110
- null !== object &&
111
- object.$$typeof === REACT_ELEMENT_TYPE
112
- );
113
- }
114
- function escape(key) {
115
- var escaperLookup = { "=": "=0", ":": "=2" };
116
- return (
117
- "$" +
118
- key.replace(/[=:]/g, function (match) {
119
- return escaperLookup[match];
120
- })
121
- );
122
- }
123
- var userProvidedKeyEscapeRegex = /\/+/g;
124
- function getElementKey(element, index) {
125
- return "object" === typeof element && null !== element && null != element.key
126
- ? escape("" + element.key)
127
- : index.toString(36);
120
+ var ReactSharedInternals =
121
+ React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;
122
+ function getCrossOriginStringAs(as, input) {
123
+ if ("font" === as) return "";
124
+ if ("string" === typeof input)
125
+ return "use-credentials" === input ? input : "";
128
126
  }
129
- function noop$1() {}
130
- function resolveThenable(thenable) {
131
- switch (thenable.status) {
132
- case "fulfilled":
133
- return thenable.value;
134
- case "rejected":
135
- throw thenable.reason;
136
- default:
137
- switch (
138
- ("string" === typeof thenable.status
139
- ? thenable.then(noop$1, noop$1)
140
- : ((thenable.status = "pending"),
141
- thenable.then(
142
- function (fulfilledValue) {
143
- "pending" === thenable.status &&
144
- ((thenable.status = "fulfilled"),
145
- (thenable.value = fulfilledValue));
146
- },
147
- function (error) {
148
- "pending" === thenable.status &&
149
- ((thenable.status = "rejected"), (thenable.reason = error));
150
- }
151
- )),
152
- thenable.status)
153
- ) {
154
- case "fulfilled":
155
- return thenable.value;
156
- case "rejected":
157
- throw thenable.reason;
158
- }
159
- }
160
- throw thenable;
161
- }
162
- function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {
163
- var type = typeof children;
164
- if ("undefined" === type || "boolean" === type) children = null;
165
- var invokeCallback = !1;
166
- if (null === children) invokeCallback = !0;
167
- else
168
- switch (type) {
169
- case "bigint":
170
- case "string":
171
- case "number":
172
- invokeCallback = !0;
173
- break;
174
- case "object":
175
- switch (children.$$typeof) {
176
- case REACT_ELEMENT_TYPE:
177
- case REACT_PORTAL_TYPE:
178
- invokeCallback = !0;
179
- break;
180
- case REACT_LAZY_TYPE:
181
- return (
182
- (invokeCallback = children._init),
183
- mapIntoArray(
184
- invokeCallback(children._payload),
185
- array,
186
- escapedPrefix,
187
- nameSoFar,
188
- callback
189
- )
190
- );
191
- }
192
- }
193
- if (invokeCallback)
194
- return (
195
- (callback = callback(children)),
196
- (invokeCallback =
197
- "" === nameSoFar ? "." + getElementKey(children, 0) : nameSoFar),
198
- isArrayImpl(callback)
199
- ? ((escapedPrefix = ""),
200
- null != invokeCallback &&
201
- (escapedPrefix =
202
- invokeCallback.replace(userProvidedKeyEscapeRegex, "$&/") + "/"),
203
- mapIntoArray(callback, array, escapedPrefix, "", function (c) {
204
- return c;
205
- }))
206
- : null != callback &&
207
- (isValidElement(callback) &&
208
- (callback = cloneAndReplaceKey(
209
- callback,
210
- escapedPrefix +
211
- (null == callback.key ||
212
- (children && children.key === callback.key)
213
- ? ""
214
- : ("" + callback.key).replace(
215
- userProvidedKeyEscapeRegex,
216
- "$&/"
217
- ) + "/") +
218
- invokeCallback
219
- )),
220
- array.push(callback)),
221
- 1
222
- );
223
- invokeCallback = 0;
224
- var nextNamePrefix = "" === nameSoFar ? "." : nameSoFar + ":";
225
- if (isArrayImpl(children))
226
- for (var i = 0; i < children.length; i++)
227
- (nameSoFar = children[i]),
228
- (type = nextNamePrefix + getElementKey(nameSoFar, i)),
229
- (invokeCallback += mapIntoArray(
230
- nameSoFar,
231
- array,
232
- escapedPrefix,
233
- type,
234
- callback
235
- ));
236
- else if (((i = getIteratorFn(children)), "function" === typeof i))
237
- for (
238
- children = i.call(children), i = 0;
239
- !(nameSoFar = children.next()).done;
240
-
241
- )
242
- (nameSoFar = nameSoFar.value),
243
- (type = nextNamePrefix + getElementKey(nameSoFar, i++)),
244
- (invokeCallback += mapIntoArray(
245
- nameSoFar,
246
- array,
247
- escapedPrefix,
248
- type,
249
- callback
250
- ));
251
- else if ("object" === type) {
252
- if ("function" === typeof children.then)
253
- return mapIntoArray(
254
- resolveThenable(children),
255
- array,
256
- escapedPrefix,
257
- nameSoFar,
258
- callback
259
- );
260
- array = String(children);
261
- throw Error(
262
- "Objects are not valid as a React child (found: " +
263
- ("[object Object]" === array
264
- ? "object with keys {" + Object.keys(children).join(", ") + "}"
265
- : array) +
266
- "). If you meant to render a collection of children, use an array instead."
267
- );
268
- }
269
- return invokeCallback;
270
- }
271
- function mapChildren(children, func, context) {
272
- if (null == children) return children;
273
- var result = [],
274
- count = 0;
275
- mapIntoArray(children, result, "", "", function (child) {
276
- return func.call(context, child, count++);
277
- });
278
- return result;
279
- }
280
- function lazyInitializer(payload) {
281
- if (-1 === payload._status) {
282
- var ctor = payload._result;
283
- ctor = ctor();
284
- ctor.then(
285
- function (moduleObject) {
286
- if (0 === payload._status || -1 === payload._status)
287
- (payload._status = 1), (payload._result = moduleObject);
288
- },
289
- function (error) {
290
- if (0 === payload._status || -1 === payload._status)
291
- (payload._status = 2), (payload._result = error);
292
- }
293
- );
294
- -1 === payload._status && ((payload._status = 0), (payload._result = ctor));
295
- }
296
- if (1 === payload._status) return payload._result.default;
297
- throw payload._result;
298
- }
299
- var reportGlobalError =
300
- "function" === typeof reportError
301
- ? reportError
302
- : function (error) {
303
- if (
304
- "object" === typeof window &&
305
- "function" === typeof window.ErrorEvent
306
- ) {
307
- var event = new window.ErrorEvent("error", {
308
- bubbles: !0,
309
- cancelable: !0,
310
- message:
311
- "object" === typeof error &&
312
- null !== error &&
313
- "string" === typeof error.message
314
- ? String(error.message)
315
- : String(error),
316
- error: error
317
- });
318
- if (!window.dispatchEvent(event)) return;
319
- } else if (
320
- "object" === typeof process &&
321
- "function" === typeof process.emit
322
- ) {
323
- process.emit("uncaughtException", error);
324
- return;
325
- }
326
- console.error(error);
327
- };
328
- function noop() {}
329
- exports.Children = {
330
- map: mapChildren,
331
- forEach: function (children, forEachFunc, forEachContext) {
332
- mapChildren(
333
- children,
334
- function () {
335
- forEachFunc.apply(this, arguments);
336
- },
337
- forEachContext
338
- );
339
- },
340
- count: function (children) {
341
- var n = 0;
342
- mapChildren(children, function () {
343
- n++;
344
- });
345
- return n;
346
- },
347
- toArray: function (children) {
348
- return (
349
- mapChildren(children, function (child) {
350
- return child;
351
- }) || []
352
- );
353
- },
354
- only: function (children) {
355
- if (!isValidElement(children))
356
- throw Error(
357
- "React.Children.only expected to receive a single React element child."
358
- );
359
- return children;
127
+ exports.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =
128
+ Internals;
129
+ exports.createPortal = function (children, container) {
130
+ var key =
131
+ 2 < arguments.length && void 0 !== arguments[2] ? arguments[2] : null;
132
+ if (
133
+ !container ||
134
+ (1 !== container.nodeType &&
135
+ 9 !== container.nodeType &&
136
+ 11 !== container.nodeType)
137
+ )
138
+ throw Error(formatProdErrorMessage(299));
139
+ return createPortal$1(children, container, null, key);
140
+ };
141
+ exports.flushSync = function (fn) {
142
+ var previousTransition = ReactSharedInternals.T,
143
+ previousUpdatePriority = Internals.p;
144
+ try {
145
+ if (((ReactSharedInternals.T = null), (Internals.p = 2), fn)) return fn();
146
+ } finally {
147
+ (ReactSharedInternals.T = previousTransition),
148
+ (Internals.p = previousUpdatePriority),
149
+ Internals.d.f();
360
150
  }
361
151
  };
362
- exports.Component = Component;
363
- exports.Fragment = REACT_FRAGMENT_TYPE;
364
- exports.Profiler = REACT_PROFILER_TYPE;
365
- exports.PureComponent = PureComponent;
366
- exports.StrictMode = REACT_STRICT_MODE_TYPE;
367
- exports.Suspense = REACT_SUSPENSE_TYPE;
368
- exports.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =
369
- ReactSharedInternals;
370
- exports.__COMPILER_RUNTIME = {
371
- __proto__: null,
372
- c: function (size) {
373
- return ReactSharedInternals.H.useMemoCache(size);
374
- }
152
+ exports.preconnect = function (href, options) {
153
+ "string" === typeof href &&
154
+ (options
155
+ ? ((options = options.crossOrigin),
156
+ (options =
157
+ "string" === typeof options
158
+ ? "use-credentials" === options
159
+ ? options
160
+ : ""
161
+ : void 0))
162
+ : (options = null),
163
+ Internals.d.C(href, options));
375
164
  };
376
- exports.cache = function (fn) {
377
- return function () {
378
- return fn.apply(null, arguments);
379
- };
165
+ exports.prefetchDNS = function (href) {
166
+ "string" === typeof href && Internals.d.D(href);
380
167
  };
381
- exports.cloneElement = function (element, config, children) {
382
- if (null === element || void 0 === element)
383
- throw Error(
384
- "The argument must be a React element, but you passed " + element + "."
385
- );
386
- var props = assign({}, element.props),
387
- key = element.key,
388
- owner = void 0;
389
- if (null != config)
390
- for (propName in (void 0 !== config.ref && (owner = void 0),
391
- void 0 !== config.key && (key = "" + config.key),
392
- config))
393
- !hasOwnProperty.call(config, propName) ||
394
- "key" === propName ||
395
- "__self" === propName ||
396
- "__source" === propName ||
397
- ("ref" === propName && void 0 === config.ref) ||
398
- (props[propName] = config[propName]);
399
- var propName = arguments.length - 2;
400
- if (1 === propName) props.children = children;
401
- else if (1 < propName) {
402
- for (var childArray = Array(propName), i = 0; i < propName; i++)
403
- childArray[i] = arguments[i + 2];
404
- props.children = childArray;
405
- }
406
- return ReactElement(element.type, key, void 0, void 0, owner, props);
407
- };
408
- exports.createContext = function (defaultValue) {
409
- defaultValue = {
410
- $$typeof: REACT_CONTEXT_TYPE,
411
- _currentValue: defaultValue,
412
- _currentValue2: defaultValue,
413
- _threadCount: 0,
414
- Provider: null,
415
- Consumer: null
416
- };
417
- defaultValue.Provider = defaultValue;
418
- defaultValue.Consumer = {
419
- $$typeof: REACT_CONSUMER_TYPE,
420
- _context: defaultValue
421
- };
422
- return defaultValue;
423
- };
424
- exports.createElement = function (type, config, children) {
425
- var propName,
426
- props = {},
427
- key = null;
428
- if (null != config)
429
- for (propName in (void 0 !== config.key && (key = "" + config.key), config))
430
- hasOwnProperty.call(config, propName) &&
431
- "key" !== propName &&
432
- "__self" !== propName &&
433
- "__source" !== propName &&
434
- (props[propName] = config[propName]);
435
- var childrenLength = arguments.length - 2;
436
- if (1 === childrenLength) props.children = children;
437
- else if (1 < childrenLength) {
438
- for (var childArray = Array(childrenLength), i = 0; i < childrenLength; i++)
439
- childArray[i] = arguments[i + 2];
440
- props.children = childArray;
168
+ exports.preinit = function (href, options) {
169
+ if ("string" === typeof href && options && "string" === typeof options.as) {
170
+ var as = options.as,
171
+ crossOrigin = getCrossOriginStringAs(as, options.crossOrigin),
172
+ integrity =
173
+ "string" === typeof options.integrity ? options.integrity : void 0,
174
+ fetchPriority =
175
+ "string" === typeof options.fetchPriority
176
+ ? options.fetchPriority
177
+ : void 0;
178
+ "style" === as
179
+ ? Internals.d.S(
180
+ href,
181
+ "string" === typeof options.precedence ? options.precedence : void 0,
182
+ {
183
+ crossOrigin: crossOrigin,
184
+ integrity: integrity,
185
+ fetchPriority: fetchPriority
186
+ }
187
+ )
188
+ : "script" === as &&
189
+ Internals.d.X(href, {
190
+ crossOrigin: crossOrigin,
191
+ integrity: integrity,
192
+ fetchPriority: fetchPriority,
193
+ nonce: "string" === typeof options.nonce ? options.nonce : void 0
194
+ });
441
195
  }
442
- if (type && type.defaultProps)
443
- for (propName in ((childrenLength = type.defaultProps), childrenLength))
444
- void 0 === props[propName] &&
445
- (props[propName] = childrenLength[propName]);
446
- return ReactElement(type, key, void 0, void 0, null, props);
447
- };
448
- exports.createRef = function () {
449
- return { current: null };
450
- };
451
- exports.forwardRef = function (render) {
452
- return { $$typeof: REACT_FORWARD_REF_TYPE, render: render };
453
- };
454
- exports.isValidElement = isValidElement;
455
- exports.lazy = function (ctor) {
456
- return {
457
- $$typeof: REACT_LAZY_TYPE,
458
- _payload: { _status: -1, _result: ctor },
459
- _init: lazyInitializer
460
- };
461
196
  };
462
- exports.memo = function (type, compare) {
463
- return {
464
- $$typeof: REACT_MEMO_TYPE,
465
- type: type,
466
- compare: void 0 === compare ? null : compare
467
- };
197
+ exports.preinitModule = function (href, options) {
198
+ if ("string" === typeof href)
199
+ if ("object" === typeof options && null !== options) {
200
+ if (null == options.as || "script" === options.as) {
201
+ var crossOrigin = getCrossOriginStringAs(
202
+ options.as,
203
+ options.crossOrigin
204
+ );
205
+ Internals.d.M(href, {
206
+ crossOrigin: crossOrigin,
207
+ integrity:
208
+ "string" === typeof options.integrity ? options.integrity : void 0,
209
+ nonce: "string" === typeof options.nonce ? options.nonce : void 0
210
+ });
211
+ }
212
+ } else null == options && Internals.d.M(href);
468
213
  };
469
- exports.startTransition = function (scope) {
470
- var prevTransition = ReactSharedInternals.T,
471
- currentTransition = {};
472
- ReactSharedInternals.T = currentTransition;
473
- try {
474
- var returnValue = scope(),
475
- onStartTransitionFinish = ReactSharedInternals.S;
476
- null !== onStartTransitionFinish &&
477
- onStartTransitionFinish(currentTransition, returnValue);
478
- "object" === typeof returnValue &&
479
- null !== returnValue &&
480
- "function" === typeof returnValue.then &&
481
- returnValue.then(noop, reportGlobalError);
482
- } catch (error) {
483
- reportGlobalError(error);
484
- } finally {
485
- ReactSharedInternals.T = prevTransition;
214
+ exports.preload = function (href, options) {
215
+ if (
216
+ "string" === typeof href &&
217
+ "object" === typeof options &&
218
+ null !== options &&
219
+ "string" === typeof options.as
220
+ ) {
221
+ var as = options.as,
222
+ crossOrigin = getCrossOriginStringAs(as, options.crossOrigin);
223
+ Internals.d.L(href, as, {
224
+ crossOrigin: crossOrigin,
225
+ integrity:
226
+ "string" === typeof options.integrity ? options.integrity : void 0,
227
+ nonce: "string" === typeof options.nonce ? options.nonce : void 0,
228
+ type: "string" === typeof options.type ? options.type : void 0,
229
+ fetchPriority:
230
+ "string" === typeof options.fetchPriority
231
+ ? options.fetchPriority
232
+ : void 0,
233
+ referrerPolicy:
234
+ "string" === typeof options.referrerPolicy
235
+ ? options.referrerPolicy
236
+ : void 0,
237
+ imageSrcSet:
238
+ "string" === typeof options.imageSrcSet ? options.imageSrcSet : void 0,
239
+ imageSizes:
240
+ "string" === typeof options.imageSizes ? options.imageSizes : void 0,
241
+ media: "string" === typeof options.media ? options.media : void 0
242
+ });
486
243
  }
487
244
  };
488
- exports.unstable_useCacheRefresh = function () {
489
- return ReactSharedInternals.H.useCacheRefresh();
490
- };
491
- exports.use = function (usable) {
492
- return ReactSharedInternals.H.use(usable);
493
- };
494
- exports.useActionState = function (action, initialState, permalink) {
495
- return ReactSharedInternals.H.useActionState(action, initialState, permalink);
496
- };
497
- exports.useCallback = function (callback, deps) {
498
- return ReactSharedInternals.H.useCallback(callback, deps);
499
- };
500
- exports.useContext = function (Context) {
501
- return ReactSharedInternals.H.useContext(Context);
502
- };
503
- exports.useDebugValue = function () {};
504
- exports.useDeferredValue = function (value, initialValue) {
505
- return ReactSharedInternals.H.useDeferredValue(value, initialValue);
506
- };
507
- exports.useEffect = function (create, createDeps, update) {
508
- var dispatcher = ReactSharedInternals.H;
509
- if ("function" === typeof update)
510
- throw Error(
511
- "useEffect CRUD overload is not enabled in this build of React."
512
- );
513
- return dispatcher.useEffect(create, createDeps);
514
- };
515
- exports.useId = function () {
516
- return ReactSharedInternals.H.useId();
517
- };
518
- exports.useImperativeHandle = function (ref, create, deps) {
519
- return ReactSharedInternals.H.useImperativeHandle(ref, create, deps);
520
- };
521
- exports.useInsertionEffect = function (create, deps) {
522
- return ReactSharedInternals.H.useInsertionEffect(create, deps);
523
- };
524
- exports.useLayoutEffect = function (create, deps) {
525
- return ReactSharedInternals.H.useLayoutEffect(create, deps);
526
- };
527
- exports.useMemo = function (create, deps) {
528
- return ReactSharedInternals.H.useMemo(create, deps);
529
- };
530
- exports.useOptimistic = function (passthrough, reducer) {
531
- return ReactSharedInternals.H.useOptimistic(passthrough, reducer);
532
- };
533
- exports.useReducer = function (reducer, initialArg, init) {
534
- return ReactSharedInternals.H.useReducer(reducer, initialArg, init);
245
+ exports.preloadModule = function (href, options) {
246
+ if ("string" === typeof href)
247
+ if (options) {
248
+ var crossOrigin = getCrossOriginStringAs(options.as, options.crossOrigin);
249
+ Internals.d.m(href, {
250
+ as:
251
+ "string" === typeof options.as && "script" !== options.as
252
+ ? options.as
253
+ : void 0,
254
+ crossOrigin: crossOrigin,
255
+ integrity:
256
+ "string" === typeof options.integrity ? options.integrity : void 0
257
+ });
258
+ } else Internals.d.m(href);
535
259
  };
536
- exports.useRef = function (initialValue) {
537
- return ReactSharedInternals.H.useRef(initialValue);
260
+ exports.requestFormReset = function (form) {
261
+ Internals.d.r(form);
538
262
  };
539
- exports.useState = function (initialState) {
540
- return ReactSharedInternals.H.useState(initialState);
263
+ exports.unstable_batchedUpdates = function (fn, a) {
264
+ return fn(a);
541
265
  };
542
- exports.useSyncExternalStore = function (
543
- subscribe,
544
- getSnapshot,
545
- getServerSnapshot
546
- ) {
547
- return ReactSharedInternals.H.useSyncExternalStore(
548
- subscribe,
549
- getSnapshot,
550
- getServerSnapshot
551
- );
266
+ exports.useFormState = function (action, initialState, permalink) {
267
+ return ReactSharedInternals.H.useFormState(action, initialState, permalink);
552
268
  };
553
- exports.useTransition = function () {
554
- return ReactSharedInternals.H.useTransition();
269
+ exports.useFormStatus = function () {
270
+ return ReactSharedInternals.H.useHostTransitionStatus();
555
271
  };
556
272
  exports.version = "19.1.0";
557
273
 
558
274
 
559
275
  /***/ }),
560
276
 
561
- /***/ 225:
562
- /*!***************************************************************************!*\
563
- !*** ./node_modules/.pnpm/react@19.1.0/node_modules/react/jsx-runtime.js ***!
564
- \***************************************************************************/
565
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
566
-
567
-
568
-
569
- if (true) {
570
- module.exports = __webpack_require__(/*! ./cjs/react-jsx-runtime.production.js */ 417);
571
- } else {}
572
-
573
-
574
- /***/ }),
575
-
576
- /***/ 265:
277
+ /***/ 505:
577
278
  /*!************************************************************************************************!*\
578
279
  !*** ./node_modules/.pnpm/scheduler@0.26.0/node_modules/scheduler/cjs/scheduler.production.js ***!
579
280
  \************************************************************************************************/
@@ -923,48 +624,11 @@ exports.unstable_wrapCallback = function (callback) {
923
624
 
924
625
  /***/ }),
925
626
 
926
- /***/ 332:
927
- /*!******************************************************************************************!*\
928
- !*** ./node_modules/.pnpm/react-dom@19.1.0_react@19.1.0/node_modules/react-dom/index.js ***!
929
- \******************************************************************************************/
930
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
931
-
932
-
933
-
934
- function checkDCE() {
935
- /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */
936
- if (
937
- typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined' ||
938
- typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE !== 'function'
939
- ) {
940
- return;
941
- }
942
- if (false) {}
943
- try {
944
- // Verify that the code above has been dead code eliminated (DCE'd).
945
- __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(checkDCE);
946
- } catch (err) {
947
- // DevTools shouldn't crash React, no matter what.
948
- // We should still report in case we break this code.
949
- console.error(err);
950
- }
951
- }
952
-
953
- if (true) {
954
- // DCE check should happen before ReactDOM bundle executes so that
955
- // DevTools can report bad minification during injection.
956
- checkDCE();
957
- module.exports = __webpack_require__(/*! ./cjs/react-dom.production.js */ 746);
958
- } else {}
959
-
960
-
961
- /***/ }),
962
-
963
- /***/ 417:
964
- /*!************************************************************************************************!*\
965
- !*** ./node_modules/.pnpm/react@19.1.0/node_modules/react/cjs/react-jsx-runtime.production.js ***!
966
- \************************************************************************************************/
967
- /***/ ((__unused_webpack_module, exports) => {
627
+ /***/ 577:
628
+ /*!************************************************************************************************!*\
629
+ !*** ./node_modules/.pnpm/react@19.1.0/node_modules/react/cjs/react-jsx-runtime.production.js ***!
630
+ \************************************************************************************************/
631
+ /***/ ((__unused_webpack_module, exports) => {
968
632
 
969
633
  /**
970
634
  * @license React
@@ -1004,82 +668,15 @@ exports.jsxs = jsxProd;
1004
668
 
1005
669
  /***/ }),
1006
670
 
1007
- /***/ 570:
1008
- /*!*****************************************************************************!*\
1009
- !*** ./node_modules/.pnpm/scheduler@0.26.0/node_modules/scheduler/index.js ***!
1010
- \*****************************************************************************/
1011
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1012
-
1013
-
1014
-
1015
- if (true) {
1016
- module.exports = __webpack_require__(/*! ./cjs/scheduler.production.js */ 265);
1017
- } else {}
1018
-
1019
-
1020
- /***/ }),
1021
-
1022
- /***/ 653:
1023
- /*!*********************************************************************!*\
1024
- !*** ./node_modules/.pnpm/react@19.1.0/node_modules/react/index.js ***!
1025
- \*********************************************************************/
1026
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1027
-
1028
-
1029
-
1030
- if (true) {
1031
- module.exports = __webpack_require__(/*! ./cjs/react.production.js */ 218);
1032
- } else {}
1033
-
1034
-
1035
- /***/ }),
1036
-
1037
- /***/ 741:
1038
- /*!*******************************************************************************************!*\
1039
- !*** ./node_modules/.pnpm/react-dom@19.1.0_react@19.1.0/node_modules/react-dom/client.js ***!
1040
- \*******************************************************************************************/
1041
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1042
-
1043
-
1044
-
1045
- function checkDCE() {
1046
- /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */
1047
- if (
1048
- typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined' ||
1049
- typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE !== 'function'
1050
- ) {
1051
- return;
1052
- }
1053
- if (false) {}
1054
- try {
1055
- // Verify that the code above has been dead code eliminated (DCE'd).
1056
- __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(checkDCE);
1057
- } catch (err) {
1058
- // DevTools shouldn't crash React, no matter what.
1059
- // We should still report in case we break this code.
1060
- console.error(err);
1061
- }
1062
- }
1063
-
1064
- if (true) {
1065
- // DCE check should happen before ReactDOM bundle executes so that
1066
- // DevTools can report bad minification during injection.
1067
- checkDCE();
1068
- module.exports = __webpack_require__(/*! ./cjs/react-dom-client.production.js */ 938);
1069
- } else {}
1070
-
1071
-
1072
- /***/ }),
1073
-
1074
- /***/ 746:
1075
- /*!*************************************************************************************************************!*\
1076
- !*** ./node_modules/.pnpm/react-dom@19.1.0_react@19.1.0/node_modules/react-dom/cjs/react-dom.production.js ***!
1077
- \*************************************************************************************************************/
671
+ /***/ 722:
672
+ /*!********************************************************************************************************************!*\
673
+ !*** ./node_modules/.pnpm/react-dom@19.1.0_react@19.1.0/node_modules/react-dom/cjs/react-dom-client.production.js ***!
674
+ \********************************************************************************************************************/
1078
675
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1079
676
 
1080
677
  /**
1081
678
  * @license React
1082
- * react-dom.production.js
679
+ * react-dom-client.production.js
1083
680
  *
1084
681
  * Copyright (c) Meta Platforms, Inc. and affiliates.
1085
682
  *
@@ -1087,8 +684,13 @@ if (true) {
1087
684
  * LICENSE file in the root directory of this source tree.
1088
685
  */
1089
686
 
687
+ /*
688
+ Modernizr 3.0.0pre (Custom Build) | MIT
689
+ */
1090
690
 
1091
- var React = __webpack_require__(/*! react */ 653);
691
+ var Scheduler = __webpack_require__(/*! scheduler */ 834),
692
+ React = __webpack_require__(/*! react */ 213),
693
+ ReactDOM = __webpack_require__(/*! react-dom */ 956);
1092
694
  function formatProdErrorMessage(code) {
1093
695
  var url = "https://react.dev/errors/" + code;
1094
696
  if (1 < arguments.length) {
@@ -1104,271 +706,46 @@ function formatProdErrorMessage(code) {
1104
706
  " for the full message or use the non-minified dev environment for full errors and additional helpful warnings."
1105
707
  );
1106
708
  }
1107
- function noop() {}
1108
- var Internals = {
1109
- d: {
1110
- f: noop,
1111
- r: function () {
1112
- throw Error(formatProdErrorMessage(522));
1113
- },
1114
- D: noop,
1115
- C: noop,
1116
- L: noop,
1117
- m: noop,
1118
- X: noop,
1119
- S: noop,
1120
- M: noop
1121
- },
1122
- p: 0,
1123
- findDOMNode: null
1124
- },
1125
- REACT_PORTAL_TYPE = Symbol.for("react.portal");
1126
- function createPortal$1(children, containerInfo, implementation) {
1127
- var key =
1128
- 3 < arguments.length && void 0 !== arguments[3] ? arguments[3] : null;
1129
- return {
1130
- $$typeof: REACT_PORTAL_TYPE,
1131
- key: null == key ? null : "" + key,
1132
- children: children,
1133
- containerInfo: containerInfo,
1134
- implementation: implementation
1135
- };
709
+ function isValidContainer(node) {
710
+ return !(
711
+ !node ||
712
+ (1 !== node.nodeType && 9 !== node.nodeType && 11 !== node.nodeType)
713
+ );
1136
714
  }
1137
- var ReactSharedInternals =
1138
- React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;
1139
- function getCrossOriginStringAs(as, input) {
1140
- if ("font" === as) return "";
1141
- if ("string" === typeof input)
1142
- return "use-credentials" === input ? input : "";
715
+ function getNearestMountedFiber(fiber) {
716
+ var node = fiber,
717
+ nearestMounted = fiber;
718
+ if (fiber.alternate) for (; node.return; ) node = node.return;
719
+ else {
720
+ fiber = node;
721
+ do
722
+ (node = fiber),
723
+ 0 !== (node.flags & 4098) && (nearestMounted = node.return),
724
+ (fiber = node.return);
725
+ while (fiber);
726
+ }
727
+ return 3 === node.tag ? nearestMounted : null;
1143
728
  }
1144
- exports.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =
1145
- Internals;
1146
- exports.createPortal = function (children, container) {
1147
- var key =
1148
- 2 < arguments.length && void 0 !== arguments[2] ? arguments[2] : null;
1149
- if (
1150
- !container ||
1151
- (1 !== container.nodeType &&
1152
- 9 !== container.nodeType &&
1153
- 11 !== container.nodeType)
1154
- )
1155
- throw Error(formatProdErrorMessage(299));
1156
- return createPortal$1(children, container, null, key);
1157
- };
1158
- exports.flushSync = function (fn) {
1159
- var previousTransition = ReactSharedInternals.T,
1160
- previousUpdatePriority = Internals.p;
1161
- try {
1162
- if (((ReactSharedInternals.T = null), (Internals.p = 2), fn)) return fn();
1163
- } finally {
1164
- (ReactSharedInternals.T = previousTransition),
1165
- (Internals.p = previousUpdatePriority),
1166
- Internals.d.f();
729
+ function getSuspenseInstanceFromFiber(fiber) {
730
+ if (13 === fiber.tag) {
731
+ var suspenseState = fiber.memoizedState;
732
+ null === suspenseState &&
733
+ ((fiber = fiber.alternate),
734
+ null !== fiber && (suspenseState = fiber.memoizedState));
735
+ if (null !== suspenseState) return suspenseState.dehydrated;
1167
736
  }
1168
- };
1169
- exports.preconnect = function (href, options) {
1170
- "string" === typeof href &&
1171
- (options
1172
- ? ((options = options.crossOrigin),
1173
- (options =
1174
- "string" === typeof options
1175
- ? "use-credentials" === options
1176
- ? options
1177
- : ""
1178
- : void 0))
1179
- : (options = null),
1180
- Internals.d.C(href, options));
1181
- };
1182
- exports.prefetchDNS = function (href) {
1183
- "string" === typeof href && Internals.d.D(href);
1184
- };
1185
- exports.preinit = function (href, options) {
1186
- if ("string" === typeof href && options && "string" === typeof options.as) {
1187
- var as = options.as,
1188
- crossOrigin = getCrossOriginStringAs(as, options.crossOrigin),
1189
- integrity =
1190
- "string" === typeof options.integrity ? options.integrity : void 0,
1191
- fetchPriority =
1192
- "string" === typeof options.fetchPriority
1193
- ? options.fetchPriority
1194
- : void 0;
1195
- "style" === as
1196
- ? Internals.d.S(
1197
- href,
1198
- "string" === typeof options.precedence ? options.precedence : void 0,
1199
- {
1200
- crossOrigin: crossOrigin,
1201
- integrity: integrity,
1202
- fetchPriority: fetchPriority
1203
- }
1204
- )
1205
- : "script" === as &&
1206
- Internals.d.X(href, {
1207
- crossOrigin: crossOrigin,
1208
- integrity: integrity,
1209
- fetchPriority: fetchPriority,
1210
- nonce: "string" === typeof options.nonce ? options.nonce : void 0
1211
- });
1212
- }
1213
- };
1214
- exports.preinitModule = function (href, options) {
1215
- if ("string" === typeof href)
1216
- if ("object" === typeof options && null !== options) {
1217
- if (null == options.as || "script" === options.as) {
1218
- var crossOrigin = getCrossOriginStringAs(
1219
- options.as,
1220
- options.crossOrigin
1221
- );
1222
- Internals.d.M(href, {
1223
- crossOrigin: crossOrigin,
1224
- integrity:
1225
- "string" === typeof options.integrity ? options.integrity : void 0,
1226
- nonce: "string" === typeof options.nonce ? options.nonce : void 0
1227
- });
1228
- }
1229
- } else null == options && Internals.d.M(href);
1230
- };
1231
- exports.preload = function (href, options) {
1232
- if (
1233
- "string" === typeof href &&
1234
- "object" === typeof options &&
1235
- null !== options &&
1236
- "string" === typeof options.as
1237
- ) {
1238
- var as = options.as,
1239
- crossOrigin = getCrossOriginStringAs(as, options.crossOrigin);
1240
- Internals.d.L(href, as, {
1241
- crossOrigin: crossOrigin,
1242
- integrity:
1243
- "string" === typeof options.integrity ? options.integrity : void 0,
1244
- nonce: "string" === typeof options.nonce ? options.nonce : void 0,
1245
- type: "string" === typeof options.type ? options.type : void 0,
1246
- fetchPriority:
1247
- "string" === typeof options.fetchPriority
1248
- ? options.fetchPriority
1249
- : void 0,
1250
- referrerPolicy:
1251
- "string" === typeof options.referrerPolicy
1252
- ? options.referrerPolicy
1253
- : void 0,
1254
- imageSrcSet:
1255
- "string" === typeof options.imageSrcSet ? options.imageSrcSet : void 0,
1256
- imageSizes:
1257
- "string" === typeof options.imageSizes ? options.imageSizes : void 0,
1258
- media: "string" === typeof options.media ? options.media : void 0
1259
- });
1260
- }
1261
- };
1262
- exports.preloadModule = function (href, options) {
1263
- if ("string" === typeof href)
1264
- if (options) {
1265
- var crossOrigin = getCrossOriginStringAs(options.as, options.crossOrigin);
1266
- Internals.d.m(href, {
1267
- as:
1268
- "string" === typeof options.as && "script" !== options.as
1269
- ? options.as
1270
- : void 0,
1271
- crossOrigin: crossOrigin,
1272
- integrity:
1273
- "string" === typeof options.integrity ? options.integrity : void 0
1274
- });
1275
- } else Internals.d.m(href);
1276
- };
1277
- exports.requestFormReset = function (form) {
1278
- Internals.d.r(form);
1279
- };
1280
- exports.unstable_batchedUpdates = function (fn, a) {
1281
- return fn(a);
1282
- };
1283
- exports.useFormState = function (action, initialState, permalink) {
1284
- return ReactSharedInternals.H.useFormState(action, initialState, permalink);
1285
- };
1286
- exports.useFormStatus = function () {
1287
- return ReactSharedInternals.H.useHostTransitionStatus();
1288
- };
1289
- exports.version = "19.1.0";
1290
-
1291
-
1292
- /***/ }),
1293
-
1294
- /***/ 938:
1295
- /*!********************************************************************************************************************!*\
1296
- !*** ./node_modules/.pnpm/react-dom@19.1.0_react@19.1.0/node_modules/react-dom/cjs/react-dom-client.production.js ***!
1297
- \********************************************************************************************************************/
1298
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1299
-
1300
- /**
1301
- * @license React
1302
- * react-dom-client.production.js
1303
- *
1304
- * Copyright (c) Meta Platforms, Inc. and affiliates.
1305
- *
1306
- * This source code is licensed under the MIT license found in the
1307
- * LICENSE file in the root directory of this source tree.
1308
- */
1309
-
1310
- /*
1311
- Modernizr 3.0.0pre (Custom Build) | MIT
1312
- */
1313
-
1314
- var Scheduler = __webpack_require__(/*! scheduler */ 570),
1315
- React = __webpack_require__(/*! react */ 653),
1316
- ReactDOM = __webpack_require__(/*! react-dom */ 332);
1317
- function formatProdErrorMessage(code) {
1318
- var url = "https://react.dev/errors/" + code;
1319
- if (1 < arguments.length) {
1320
- url += "?args[]=" + encodeURIComponent(arguments[1]);
1321
- for (var i = 2; i < arguments.length; i++)
1322
- url += "&args[]=" + encodeURIComponent(arguments[i]);
1323
- }
1324
- return (
1325
- "Minified React error #" +
1326
- code +
1327
- "; visit " +
1328
- url +
1329
- " for the full message or use the non-minified dev environment for full errors and additional helpful warnings."
1330
- );
1331
- }
1332
- function isValidContainer(node) {
1333
- return !(
1334
- !node ||
1335
- (1 !== node.nodeType && 9 !== node.nodeType && 11 !== node.nodeType)
1336
- );
1337
- }
1338
- function getNearestMountedFiber(fiber) {
1339
- var node = fiber,
1340
- nearestMounted = fiber;
1341
- if (fiber.alternate) for (; node.return; ) node = node.return;
1342
- else {
1343
- fiber = node;
1344
- do
1345
- (node = fiber),
1346
- 0 !== (node.flags & 4098) && (nearestMounted = node.return),
1347
- (fiber = node.return);
1348
- while (fiber);
1349
- }
1350
- return 3 === node.tag ? nearestMounted : null;
1351
- }
1352
- function getSuspenseInstanceFromFiber(fiber) {
1353
- if (13 === fiber.tag) {
1354
- var suspenseState = fiber.memoizedState;
1355
- null === suspenseState &&
1356
- ((fiber = fiber.alternate),
1357
- null !== fiber && (suspenseState = fiber.memoizedState));
1358
- if (null !== suspenseState) return suspenseState.dehydrated;
1359
- }
1360
- return null;
1361
- }
1362
- function assertIsMounted(fiber) {
1363
- if (getNearestMountedFiber(fiber) !== fiber)
1364
- throw Error(formatProdErrorMessage(188));
1365
- }
1366
- function findCurrentFiberUsingSlowPath(fiber) {
1367
- var alternate = fiber.alternate;
1368
- if (!alternate) {
1369
- alternate = getNearestMountedFiber(fiber);
1370
- if (null === alternate) throw Error(formatProdErrorMessage(188));
1371
- return alternate !== fiber ? null : fiber;
737
+ return null;
738
+ }
739
+ function assertIsMounted(fiber) {
740
+ if (getNearestMountedFiber(fiber) !== fiber)
741
+ throw Error(formatProdErrorMessage(188));
742
+ }
743
+ function findCurrentFiberUsingSlowPath(fiber) {
744
+ var alternate = fiber.alternate;
745
+ if (!alternate) {
746
+ alternate = getNearestMountedFiber(fiber);
747
+ if (null === alternate) throw Error(formatProdErrorMessage(188));
748
+ return alternate !== fiber ? null : fiber;
1372
749
  }
1373
750
  for (var a = fiber, b = alternate; ; ) {
1374
751
  var parentA = a.return;
@@ -16192,506 +15569,1129 @@ function getEventPriority(domEventName) {
16192
15569
  return 32;
16193
15570
  }
16194
15571
  }
16195
- var hasScheduledReplayAttempt = !1,
16196
- queuedFocus = null,
16197
- queuedDrag = null,
16198
- queuedMouse = null,
16199
- queuedPointers = new Map(),
16200
- queuedPointerCaptures = new Map(),
16201
- queuedExplicitHydrationTargets = [],
16202
- discreteReplayableEvents =
16203
- "mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset".split(
16204
- " "
16205
- );
16206
- function clearIfContinuousEvent(domEventName, nativeEvent) {
16207
- switch (domEventName) {
16208
- case "focusin":
16209
- case "focusout":
16210
- queuedFocus = null;
16211
- break;
16212
- case "dragenter":
16213
- case "dragleave":
16214
- queuedDrag = null;
16215
- break;
16216
- case "mouseover":
16217
- case "mouseout":
16218
- queuedMouse = null;
16219
- break;
16220
- case "pointerover":
16221
- case "pointerout":
16222
- queuedPointers.delete(nativeEvent.pointerId);
16223
- break;
16224
- case "gotpointercapture":
16225
- case "lostpointercapture":
16226
- queuedPointerCaptures.delete(nativeEvent.pointerId);
16227
- }
15572
+ var hasScheduledReplayAttempt = !1,
15573
+ queuedFocus = null,
15574
+ queuedDrag = null,
15575
+ queuedMouse = null,
15576
+ queuedPointers = new Map(),
15577
+ queuedPointerCaptures = new Map(),
15578
+ queuedExplicitHydrationTargets = [],
15579
+ discreteReplayableEvents =
15580
+ "mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset".split(
15581
+ " "
15582
+ );
15583
+ function clearIfContinuousEvent(domEventName, nativeEvent) {
15584
+ switch (domEventName) {
15585
+ case "focusin":
15586
+ case "focusout":
15587
+ queuedFocus = null;
15588
+ break;
15589
+ case "dragenter":
15590
+ case "dragleave":
15591
+ queuedDrag = null;
15592
+ break;
15593
+ case "mouseover":
15594
+ case "mouseout":
15595
+ queuedMouse = null;
15596
+ break;
15597
+ case "pointerover":
15598
+ case "pointerout":
15599
+ queuedPointers.delete(nativeEvent.pointerId);
15600
+ break;
15601
+ case "gotpointercapture":
15602
+ case "lostpointercapture":
15603
+ queuedPointerCaptures.delete(nativeEvent.pointerId);
15604
+ }
15605
+ }
15606
+ function accumulateOrCreateContinuousQueuedReplayableEvent(
15607
+ existingQueuedEvent,
15608
+ blockedOn,
15609
+ domEventName,
15610
+ eventSystemFlags,
15611
+ targetContainer,
15612
+ nativeEvent
15613
+ ) {
15614
+ if (
15615
+ null === existingQueuedEvent ||
15616
+ existingQueuedEvent.nativeEvent !== nativeEvent
15617
+ )
15618
+ return (
15619
+ (existingQueuedEvent = {
15620
+ blockedOn: blockedOn,
15621
+ domEventName: domEventName,
15622
+ eventSystemFlags: eventSystemFlags,
15623
+ nativeEvent: nativeEvent,
15624
+ targetContainers: [targetContainer]
15625
+ }),
15626
+ null !== blockedOn &&
15627
+ ((blockedOn = getInstanceFromNode(blockedOn)),
15628
+ null !== blockedOn && attemptContinuousHydration(blockedOn)),
15629
+ existingQueuedEvent
15630
+ );
15631
+ existingQueuedEvent.eventSystemFlags |= eventSystemFlags;
15632
+ blockedOn = existingQueuedEvent.targetContainers;
15633
+ null !== targetContainer &&
15634
+ -1 === blockedOn.indexOf(targetContainer) &&
15635
+ blockedOn.push(targetContainer);
15636
+ return existingQueuedEvent;
15637
+ }
15638
+ function queueIfContinuousEvent(
15639
+ blockedOn,
15640
+ domEventName,
15641
+ eventSystemFlags,
15642
+ targetContainer,
15643
+ nativeEvent
15644
+ ) {
15645
+ switch (domEventName) {
15646
+ case "focusin":
15647
+ return (
15648
+ (queuedFocus = accumulateOrCreateContinuousQueuedReplayableEvent(
15649
+ queuedFocus,
15650
+ blockedOn,
15651
+ domEventName,
15652
+ eventSystemFlags,
15653
+ targetContainer,
15654
+ nativeEvent
15655
+ )),
15656
+ !0
15657
+ );
15658
+ case "dragenter":
15659
+ return (
15660
+ (queuedDrag = accumulateOrCreateContinuousQueuedReplayableEvent(
15661
+ queuedDrag,
15662
+ blockedOn,
15663
+ domEventName,
15664
+ eventSystemFlags,
15665
+ targetContainer,
15666
+ nativeEvent
15667
+ )),
15668
+ !0
15669
+ );
15670
+ case "mouseover":
15671
+ return (
15672
+ (queuedMouse = accumulateOrCreateContinuousQueuedReplayableEvent(
15673
+ queuedMouse,
15674
+ blockedOn,
15675
+ domEventName,
15676
+ eventSystemFlags,
15677
+ targetContainer,
15678
+ nativeEvent
15679
+ )),
15680
+ !0
15681
+ );
15682
+ case "pointerover":
15683
+ var pointerId = nativeEvent.pointerId;
15684
+ queuedPointers.set(
15685
+ pointerId,
15686
+ accumulateOrCreateContinuousQueuedReplayableEvent(
15687
+ queuedPointers.get(pointerId) || null,
15688
+ blockedOn,
15689
+ domEventName,
15690
+ eventSystemFlags,
15691
+ targetContainer,
15692
+ nativeEvent
15693
+ )
15694
+ );
15695
+ return !0;
15696
+ case "gotpointercapture":
15697
+ return (
15698
+ (pointerId = nativeEvent.pointerId),
15699
+ queuedPointerCaptures.set(
15700
+ pointerId,
15701
+ accumulateOrCreateContinuousQueuedReplayableEvent(
15702
+ queuedPointerCaptures.get(pointerId) || null,
15703
+ blockedOn,
15704
+ domEventName,
15705
+ eventSystemFlags,
15706
+ targetContainer,
15707
+ nativeEvent
15708
+ )
15709
+ ),
15710
+ !0
15711
+ );
15712
+ }
15713
+ return !1;
15714
+ }
15715
+ function attemptExplicitHydrationTarget(queuedTarget) {
15716
+ var targetInst = getClosestInstanceFromNode(queuedTarget.target);
15717
+ if (null !== targetInst) {
15718
+ var nearestMounted = getNearestMountedFiber(targetInst);
15719
+ if (null !== nearestMounted)
15720
+ if (((targetInst = nearestMounted.tag), 13 === targetInst)) {
15721
+ if (
15722
+ ((targetInst = getSuspenseInstanceFromFiber(nearestMounted)),
15723
+ null !== targetInst)
15724
+ ) {
15725
+ queuedTarget.blockedOn = targetInst;
15726
+ runWithPriority(queuedTarget.priority, function () {
15727
+ if (13 === nearestMounted.tag) {
15728
+ var lane = requestUpdateLane();
15729
+ lane = getBumpedLaneForHydrationByLane(lane);
15730
+ var root = enqueueConcurrentRenderForLane(nearestMounted, lane);
15731
+ null !== root &&
15732
+ scheduleUpdateOnFiber(root, nearestMounted, lane);
15733
+ markRetryLaneIfNotHydrated(nearestMounted, lane);
15734
+ }
15735
+ });
15736
+ return;
15737
+ }
15738
+ } else if (
15739
+ 3 === targetInst &&
15740
+ nearestMounted.stateNode.current.memoizedState.isDehydrated
15741
+ ) {
15742
+ queuedTarget.blockedOn =
15743
+ 3 === nearestMounted.tag
15744
+ ? nearestMounted.stateNode.containerInfo
15745
+ : null;
15746
+ return;
15747
+ }
15748
+ }
15749
+ queuedTarget.blockedOn = null;
15750
+ }
15751
+ function attemptReplayContinuousQueuedEvent(queuedEvent) {
15752
+ if (null !== queuedEvent.blockedOn) return !1;
15753
+ for (
15754
+ var targetContainers = queuedEvent.targetContainers;
15755
+ 0 < targetContainers.length;
15756
+
15757
+ ) {
15758
+ var nextBlockedOn = findInstanceBlockingEvent(queuedEvent.nativeEvent);
15759
+ if (null === nextBlockedOn) {
15760
+ nextBlockedOn = queuedEvent.nativeEvent;
15761
+ var nativeEventClone = new nextBlockedOn.constructor(
15762
+ nextBlockedOn.type,
15763
+ nextBlockedOn
15764
+ );
15765
+ currentReplayingEvent = nativeEventClone;
15766
+ nextBlockedOn.target.dispatchEvent(nativeEventClone);
15767
+ currentReplayingEvent = null;
15768
+ } else
15769
+ return (
15770
+ (targetContainers = getInstanceFromNode(nextBlockedOn)),
15771
+ null !== targetContainers &&
15772
+ attemptContinuousHydration(targetContainers),
15773
+ (queuedEvent.blockedOn = nextBlockedOn),
15774
+ !1
15775
+ );
15776
+ targetContainers.shift();
15777
+ }
15778
+ return !0;
15779
+ }
15780
+ function attemptReplayContinuousQueuedEventInMap(queuedEvent, key, map) {
15781
+ attemptReplayContinuousQueuedEvent(queuedEvent) && map.delete(key);
15782
+ }
15783
+ function replayUnblockedEvents() {
15784
+ hasScheduledReplayAttempt = !1;
15785
+ null !== queuedFocus &&
15786
+ attemptReplayContinuousQueuedEvent(queuedFocus) &&
15787
+ (queuedFocus = null);
15788
+ null !== queuedDrag &&
15789
+ attemptReplayContinuousQueuedEvent(queuedDrag) &&
15790
+ (queuedDrag = null);
15791
+ null !== queuedMouse &&
15792
+ attemptReplayContinuousQueuedEvent(queuedMouse) &&
15793
+ (queuedMouse = null);
15794
+ queuedPointers.forEach(attemptReplayContinuousQueuedEventInMap);
15795
+ queuedPointerCaptures.forEach(attemptReplayContinuousQueuedEventInMap);
15796
+ }
15797
+ function scheduleCallbackIfUnblocked(queuedEvent, unblocked) {
15798
+ queuedEvent.blockedOn === unblocked &&
15799
+ ((queuedEvent.blockedOn = null),
15800
+ hasScheduledReplayAttempt ||
15801
+ ((hasScheduledReplayAttempt = !0),
15802
+ Scheduler.unstable_scheduleCallback(
15803
+ Scheduler.unstable_NormalPriority,
15804
+ replayUnblockedEvents
15805
+ )));
15806
+ }
15807
+ var lastScheduledReplayQueue = null;
15808
+ function scheduleReplayQueueIfNeeded(formReplayingQueue) {
15809
+ lastScheduledReplayQueue !== formReplayingQueue &&
15810
+ ((lastScheduledReplayQueue = formReplayingQueue),
15811
+ Scheduler.unstable_scheduleCallback(
15812
+ Scheduler.unstable_NormalPriority,
15813
+ function () {
15814
+ lastScheduledReplayQueue === formReplayingQueue &&
15815
+ (lastScheduledReplayQueue = null);
15816
+ for (var i = 0; i < formReplayingQueue.length; i += 3) {
15817
+ var form = formReplayingQueue[i],
15818
+ submitterOrAction = formReplayingQueue[i + 1],
15819
+ formData = formReplayingQueue[i + 2];
15820
+ if ("function" !== typeof submitterOrAction)
15821
+ if (null === findInstanceBlockingTarget(submitterOrAction || form))
15822
+ continue;
15823
+ else break;
15824
+ var formInst = getInstanceFromNode(form);
15825
+ null !== formInst &&
15826
+ (formReplayingQueue.splice(i, 3),
15827
+ (i -= 3),
15828
+ startHostTransition(
15829
+ formInst,
15830
+ {
15831
+ pending: !0,
15832
+ data: formData,
15833
+ method: form.method,
15834
+ action: submitterOrAction
15835
+ },
15836
+ submitterOrAction,
15837
+ formData
15838
+ ));
15839
+ }
15840
+ }
15841
+ ));
15842
+ }
15843
+ function retryIfBlockedOn(unblocked) {
15844
+ function unblock(queuedEvent) {
15845
+ return scheduleCallbackIfUnblocked(queuedEvent, unblocked);
15846
+ }
15847
+ null !== queuedFocus && scheduleCallbackIfUnblocked(queuedFocus, unblocked);
15848
+ null !== queuedDrag && scheduleCallbackIfUnblocked(queuedDrag, unblocked);
15849
+ null !== queuedMouse && scheduleCallbackIfUnblocked(queuedMouse, unblocked);
15850
+ queuedPointers.forEach(unblock);
15851
+ queuedPointerCaptures.forEach(unblock);
15852
+ for (var i = 0; i < queuedExplicitHydrationTargets.length; i++) {
15853
+ var queuedTarget = queuedExplicitHydrationTargets[i];
15854
+ queuedTarget.blockedOn === unblocked && (queuedTarget.blockedOn = null);
15855
+ }
15856
+ for (
15857
+ ;
15858
+ 0 < queuedExplicitHydrationTargets.length &&
15859
+ ((i = queuedExplicitHydrationTargets[0]), null === i.blockedOn);
15860
+
15861
+ )
15862
+ attemptExplicitHydrationTarget(i),
15863
+ null === i.blockedOn && queuedExplicitHydrationTargets.shift();
15864
+ i = (unblocked.ownerDocument || unblocked).$$reactFormReplay;
15865
+ if (null != i)
15866
+ for (queuedTarget = 0; queuedTarget < i.length; queuedTarget += 3) {
15867
+ var form = i[queuedTarget],
15868
+ submitterOrAction = i[queuedTarget + 1],
15869
+ formProps = form[internalPropsKey] || null;
15870
+ if ("function" === typeof submitterOrAction)
15871
+ formProps || scheduleReplayQueueIfNeeded(i);
15872
+ else if (formProps) {
15873
+ var action = null;
15874
+ if (submitterOrAction && submitterOrAction.hasAttribute("formAction"))
15875
+ if (
15876
+ ((form = submitterOrAction),
15877
+ (formProps = submitterOrAction[internalPropsKey] || null))
15878
+ )
15879
+ action = formProps.formAction;
15880
+ else {
15881
+ if (null !== findInstanceBlockingTarget(form)) continue;
15882
+ }
15883
+ else action = formProps.action;
15884
+ "function" === typeof action
15885
+ ? (i[queuedTarget + 1] = action)
15886
+ : (i.splice(queuedTarget, 3), (queuedTarget -= 3));
15887
+ scheduleReplayQueueIfNeeded(i);
15888
+ }
15889
+ }
15890
+ }
15891
+ function ReactDOMRoot(internalRoot) {
15892
+ this._internalRoot = internalRoot;
15893
+ }
15894
+ ReactDOMHydrationRoot.prototype.render = ReactDOMRoot.prototype.render =
15895
+ function (children) {
15896
+ var root = this._internalRoot;
15897
+ if (null === root) throw Error(formatProdErrorMessage(409));
15898
+ var current = root.current,
15899
+ lane = requestUpdateLane();
15900
+ updateContainerImpl(current, lane, children, root, null, null);
15901
+ };
15902
+ ReactDOMHydrationRoot.prototype.unmount = ReactDOMRoot.prototype.unmount =
15903
+ function () {
15904
+ var root = this._internalRoot;
15905
+ if (null !== root) {
15906
+ this._internalRoot = null;
15907
+ var container = root.containerInfo;
15908
+ updateContainerImpl(root.current, 2, null, root, null, null);
15909
+ flushSyncWork$1();
15910
+ container[internalContainerInstanceKey] = null;
15911
+ }
15912
+ };
15913
+ function ReactDOMHydrationRoot(internalRoot) {
15914
+ this._internalRoot = internalRoot;
15915
+ }
15916
+ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
15917
+ if (target) {
15918
+ var updatePriority = resolveUpdatePriority();
15919
+ target = { blockedOn: null, target: target, priority: updatePriority };
15920
+ for (
15921
+ var i = 0;
15922
+ i < queuedExplicitHydrationTargets.length &&
15923
+ 0 !== updatePriority &&
15924
+ updatePriority < queuedExplicitHydrationTargets[i].priority;
15925
+ i++
15926
+ );
15927
+ queuedExplicitHydrationTargets.splice(i, 0, target);
15928
+ 0 === i && attemptExplicitHydrationTarget(target);
15929
+ }
15930
+ };
15931
+ var isomorphicReactPackageVersion$jscomp$inline_1785 = React.version;
15932
+ if (
15933
+ "19.1.0" !==
15934
+ isomorphicReactPackageVersion$jscomp$inline_1785
15935
+ )
15936
+ throw Error(
15937
+ formatProdErrorMessage(
15938
+ 527,
15939
+ isomorphicReactPackageVersion$jscomp$inline_1785,
15940
+ "19.1.0"
15941
+ )
15942
+ );
15943
+ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
15944
+ var fiber = componentOrElement._reactInternals;
15945
+ if (void 0 === fiber) {
15946
+ if ("function" === typeof componentOrElement.render)
15947
+ throw Error(formatProdErrorMessage(188));
15948
+ componentOrElement = Object.keys(componentOrElement).join(",");
15949
+ throw Error(formatProdErrorMessage(268, componentOrElement));
15950
+ }
15951
+ componentOrElement = findCurrentFiberUsingSlowPath(fiber);
15952
+ componentOrElement =
15953
+ null !== componentOrElement
15954
+ ? findCurrentHostFiberImpl(componentOrElement)
15955
+ : null;
15956
+ componentOrElement =
15957
+ null === componentOrElement ? null : componentOrElement.stateNode;
15958
+ return componentOrElement;
15959
+ };
15960
+ var internals$jscomp$inline_2256 = {
15961
+ bundleType: 0,
15962
+ version: "19.1.0",
15963
+ rendererPackageName: "react-dom",
15964
+ currentDispatcherRef: ReactSharedInternals,
15965
+ reconcilerVersion: "19.1.0"
15966
+ };
15967
+ if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
15968
+ var hook$jscomp$inline_2257 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
15969
+ if (
15970
+ !hook$jscomp$inline_2257.isDisabled &&
15971
+ hook$jscomp$inline_2257.supportsFiber
15972
+ )
15973
+ try {
15974
+ (rendererID = hook$jscomp$inline_2257.inject(
15975
+ internals$jscomp$inline_2256
15976
+ )),
15977
+ (injectedHook = hook$jscomp$inline_2257);
15978
+ } catch (err) {}
15979
+ }
15980
+ exports.createRoot = function (container, options) {
15981
+ if (!isValidContainer(container)) throw Error(formatProdErrorMessage(299));
15982
+ var isStrictMode = !1,
15983
+ identifierPrefix = "",
15984
+ onUncaughtError = defaultOnUncaughtError,
15985
+ onCaughtError = defaultOnCaughtError,
15986
+ onRecoverableError = defaultOnRecoverableError,
15987
+ transitionCallbacks = null;
15988
+ null !== options &&
15989
+ void 0 !== options &&
15990
+ (!0 === options.unstable_strictMode && (isStrictMode = !0),
15991
+ void 0 !== options.identifierPrefix &&
15992
+ (identifierPrefix = options.identifierPrefix),
15993
+ void 0 !== options.onUncaughtError &&
15994
+ (onUncaughtError = options.onUncaughtError),
15995
+ void 0 !== options.onCaughtError && (onCaughtError = options.onCaughtError),
15996
+ void 0 !== options.onRecoverableError &&
15997
+ (onRecoverableError = options.onRecoverableError),
15998
+ void 0 !== options.unstable_transitionCallbacks &&
15999
+ (transitionCallbacks = options.unstable_transitionCallbacks));
16000
+ options = createFiberRoot(
16001
+ container,
16002
+ 1,
16003
+ !1,
16004
+ null,
16005
+ null,
16006
+ isStrictMode,
16007
+ identifierPrefix,
16008
+ onUncaughtError,
16009
+ onCaughtError,
16010
+ onRecoverableError,
16011
+ transitionCallbacks,
16012
+ null
16013
+ );
16014
+ container[internalContainerInstanceKey] = options.current;
16015
+ listenToAllSupportedEvents(container);
16016
+ return new ReactDOMRoot(options);
16017
+ };
16018
+ exports.hydrateRoot = function (container, initialChildren, options) {
16019
+ if (!isValidContainer(container)) throw Error(formatProdErrorMessage(299));
16020
+ var isStrictMode = !1,
16021
+ identifierPrefix = "",
16022
+ onUncaughtError = defaultOnUncaughtError,
16023
+ onCaughtError = defaultOnCaughtError,
16024
+ onRecoverableError = defaultOnRecoverableError,
16025
+ transitionCallbacks = null,
16026
+ formState = null;
16027
+ null !== options &&
16028
+ void 0 !== options &&
16029
+ (!0 === options.unstable_strictMode && (isStrictMode = !0),
16030
+ void 0 !== options.identifierPrefix &&
16031
+ (identifierPrefix = options.identifierPrefix),
16032
+ void 0 !== options.onUncaughtError &&
16033
+ (onUncaughtError = options.onUncaughtError),
16034
+ void 0 !== options.onCaughtError && (onCaughtError = options.onCaughtError),
16035
+ void 0 !== options.onRecoverableError &&
16036
+ (onRecoverableError = options.onRecoverableError),
16037
+ void 0 !== options.unstable_transitionCallbacks &&
16038
+ (transitionCallbacks = options.unstable_transitionCallbacks),
16039
+ void 0 !== options.formState && (formState = options.formState));
16040
+ initialChildren = createFiberRoot(
16041
+ container,
16042
+ 1,
16043
+ !0,
16044
+ initialChildren,
16045
+ null != options ? options : null,
16046
+ isStrictMode,
16047
+ identifierPrefix,
16048
+ onUncaughtError,
16049
+ onCaughtError,
16050
+ onRecoverableError,
16051
+ transitionCallbacks,
16052
+ formState
16053
+ );
16054
+ initialChildren.context = getContextForSubtree(null);
16055
+ options = initialChildren.current;
16056
+ isStrictMode = requestUpdateLane();
16057
+ isStrictMode = getBumpedLaneForHydrationByLane(isStrictMode);
16058
+ identifierPrefix = createUpdate(isStrictMode);
16059
+ identifierPrefix.callback = null;
16060
+ enqueueUpdate(options, identifierPrefix, isStrictMode);
16061
+ options = isStrictMode;
16062
+ initialChildren.current.lanes = options;
16063
+ markRootUpdated$1(initialChildren, options);
16064
+ ensureRootIsScheduled(initialChildren);
16065
+ container[internalContainerInstanceKey] = initialChildren.current;
16066
+ listenToAllSupportedEvents(container);
16067
+ return new ReactDOMHydrationRoot(initialChildren);
16068
+ };
16069
+ exports.version = "19.1.0";
16070
+
16071
+
16072
+ /***/ }),
16073
+
16074
+ /***/ 826:
16075
+ /*!************************************************************************************!*\
16076
+ !*** ./node_modules/.pnpm/react@19.1.0/node_modules/react/cjs/react.production.js ***!
16077
+ \************************************************************************************/
16078
+ /***/ ((__unused_webpack_module, exports) => {
16079
+
16080
+ /**
16081
+ * @license React
16082
+ * react.production.js
16083
+ *
16084
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
16085
+ *
16086
+ * This source code is licensed under the MIT license found in the
16087
+ * LICENSE file in the root directory of this source tree.
16088
+ */
16089
+
16090
+
16091
+ var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
16092
+ REACT_PORTAL_TYPE = Symbol.for("react.portal"),
16093
+ REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
16094
+ REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
16095
+ REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
16096
+ REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
16097
+ REACT_CONTEXT_TYPE = Symbol.for("react.context"),
16098
+ REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
16099
+ REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"),
16100
+ REACT_MEMO_TYPE = Symbol.for("react.memo"),
16101
+ REACT_LAZY_TYPE = Symbol.for("react.lazy"),
16102
+ MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
16103
+ function getIteratorFn(maybeIterable) {
16104
+ if (null === maybeIterable || "object" !== typeof maybeIterable) return null;
16105
+ maybeIterable =
16106
+ (MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL]) ||
16107
+ maybeIterable["@@iterator"];
16108
+ return "function" === typeof maybeIterable ? maybeIterable : null;
16109
+ }
16110
+ var ReactNoopUpdateQueue = {
16111
+ isMounted: function () {
16112
+ return !1;
16113
+ },
16114
+ enqueueForceUpdate: function () {},
16115
+ enqueueReplaceState: function () {},
16116
+ enqueueSetState: function () {}
16117
+ },
16118
+ assign = Object.assign,
16119
+ emptyObject = {};
16120
+ function Component(props, context, updater) {
16121
+ this.props = props;
16122
+ this.context = context;
16123
+ this.refs = emptyObject;
16124
+ this.updater = updater || ReactNoopUpdateQueue;
16228
16125
  }
16229
- function accumulateOrCreateContinuousQueuedReplayableEvent(
16230
- existingQueuedEvent,
16231
- blockedOn,
16232
- domEventName,
16233
- eventSystemFlags,
16234
- targetContainer,
16235
- nativeEvent
16236
- ) {
16126
+ Component.prototype.isReactComponent = {};
16127
+ Component.prototype.setState = function (partialState, callback) {
16237
16128
  if (
16238
- null === existingQueuedEvent ||
16239
- existingQueuedEvent.nativeEvent !== nativeEvent
16129
+ "object" !== typeof partialState &&
16130
+ "function" !== typeof partialState &&
16131
+ null != partialState
16240
16132
  )
16241
- return (
16242
- (existingQueuedEvent = {
16243
- blockedOn: blockedOn,
16244
- domEventName: domEventName,
16245
- eventSystemFlags: eventSystemFlags,
16246
- nativeEvent: nativeEvent,
16247
- targetContainers: [targetContainer]
16248
- }),
16249
- null !== blockedOn &&
16250
- ((blockedOn = getInstanceFromNode(blockedOn)),
16251
- null !== blockedOn && attemptContinuousHydration(blockedOn)),
16252
- existingQueuedEvent
16133
+ throw Error(
16134
+ "takes an object of state variables to update or a function which returns an object of state variables."
16253
16135
  );
16254
- existingQueuedEvent.eventSystemFlags |= eventSystemFlags;
16255
- blockedOn = existingQueuedEvent.targetContainers;
16256
- null !== targetContainer &&
16257
- -1 === blockedOn.indexOf(targetContainer) &&
16258
- blockedOn.push(targetContainer);
16259
- return existingQueuedEvent;
16136
+ this.updater.enqueueSetState(this, partialState, callback, "setState");
16137
+ };
16138
+ Component.prototype.forceUpdate = function (callback) {
16139
+ this.updater.enqueueForceUpdate(this, callback, "forceUpdate");
16140
+ };
16141
+ function ComponentDummy() {}
16142
+ ComponentDummy.prototype = Component.prototype;
16143
+ function PureComponent(props, context, updater) {
16144
+ this.props = props;
16145
+ this.context = context;
16146
+ this.refs = emptyObject;
16147
+ this.updater = updater || ReactNoopUpdateQueue;
16260
16148
  }
16261
- function queueIfContinuousEvent(
16262
- blockedOn,
16263
- domEventName,
16264
- eventSystemFlags,
16265
- targetContainer,
16266
- nativeEvent
16267
- ) {
16268
- switch (domEventName) {
16269
- case "focusin":
16270
- return (
16271
- (queuedFocus = accumulateOrCreateContinuousQueuedReplayableEvent(
16272
- queuedFocus,
16273
- blockedOn,
16274
- domEventName,
16275
- eventSystemFlags,
16276
- targetContainer,
16277
- nativeEvent
16278
- )),
16279
- !0
16280
- );
16281
- case "dragenter":
16282
- return (
16283
- (queuedDrag = accumulateOrCreateContinuousQueuedReplayableEvent(
16284
- queuedDrag,
16285
- blockedOn,
16286
- domEventName,
16287
- eventSystemFlags,
16288
- targetContainer,
16289
- nativeEvent
16290
- )),
16291
- !0
16292
- );
16293
- case "mouseover":
16294
- return (
16295
- (queuedMouse = accumulateOrCreateContinuousQueuedReplayableEvent(
16296
- queuedMouse,
16297
- blockedOn,
16298
- domEventName,
16299
- eventSystemFlags,
16300
- targetContainer,
16301
- nativeEvent
16302
- )),
16303
- !0
16304
- );
16305
- case "pointerover":
16306
- var pointerId = nativeEvent.pointerId;
16307
- queuedPointers.set(
16308
- pointerId,
16309
- accumulateOrCreateContinuousQueuedReplayableEvent(
16310
- queuedPointers.get(pointerId) || null,
16311
- blockedOn,
16312
- domEventName,
16313
- eventSystemFlags,
16314
- targetContainer,
16315
- nativeEvent
16316
- )
16317
- );
16318
- return !0;
16319
- case "gotpointercapture":
16320
- return (
16321
- (pointerId = nativeEvent.pointerId),
16322
- queuedPointerCaptures.set(
16323
- pointerId,
16324
- accumulateOrCreateContinuousQueuedReplayableEvent(
16325
- queuedPointerCaptures.get(pointerId) || null,
16326
- blockedOn,
16327
- domEventName,
16328
- eventSystemFlags,
16329
- targetContainer,
16330
- nativeEvent
16331
- )
16332
- ),
16333
- !0
16334
- );
16335
- }
16336
- return !1;
16149
+ var pureComponentPrototype = (PureComponent.prototype = new ComponentDummy());
16150
+ pureComponentPrototype.constructor = PureComponent;
16151
+ assign(pureComponentPrototype, Component.prototype);
16152
+ pureComponentPrototype.isPureReactComponent = !0;
16153
+ var isArrayImpl = Array.isArray,
16154
+ ReactSharedInternals = { H: null, A: null, T: null, S: null, V: null },
16155
+ hasOwnProperty = Object.prototype.hasOwnProperty;
16156
+ function ReactElement(type, key, self, source, owner, props) {
16157
+ self = props.ref;
16158
+ return {
16159
+ $$typeof: REACT_ELEMENT_TYPE,
16160
+ type: type,
16161
+ key: key,
16162
+ ref: void 0 !== self ? self : null,
16163
+ props: props
16164
+ };
16337
16165
  }
16338
- function attemptExplicitHydrationTarget(queuedTarget) {
16339
- var targetInst = getClosestInstanceFromNode(queuedTarget.target);
16340
- if (null !== targetInst) {
16341
- var nearestMounted = getNearestMountedFiber(targetInst);
16342
- if (null !== nearestMounted)
16343
- if (((targetInst = nearestMounted.tag), 13 === targetInst)) {
16344
- if (
16345
- ((targetInst = getSuspenseInstanceFromFiber(nearestMounted)),
16346
- null !== targetInst)
16347
- ) {
16348
- queuedTarget.blockedOn = targetInst;
16349
- runWithPriority(queuedTarget.priority, function () {
16350
- if (13 === nearestMounted.tag) {
16351
- var lane = requestUpdateLane();
16352
- lane = getBumpedLaneForHydrationByLane(lane);
16353
- var root = enqueueConcurrentRenderForLane(nearestMounted, lane);
16354
- null !== root &&
16355
- scheduleUpdateOnFiber(root, nearestMounted, lane);
16356
- markRetryLaneIfNotHydrated(nearestMounted, lane);
16357
- }
16358
- });
16359
- return;
16360
- }
16361
- } else if (
16362
- 3 === targetInst &&
16363
- nearestMounted.stateNode.current.memoizedState.isDehydrated
16166
+ function cloneAndReplaceKey(oldElement, newKey) {
16167
+ return ReactElement(
16168
+ oldElement.type,
16169
+ newKey,
16170
+ void 0,
16171
+ void 0,
16172
+ void 0,
16173
+ oldElement.props
16174
+ );
16175
+ }
16176
+ function isValidElement(object) {
16177
+ return (
16178
+ "object" === typeof object &&
16179
+ null !== object &&
16180
+ object.$$typeof === REACT_ELEMENT_TYPE
16181
+ );
16182
+ }
16183
+ function escape(key) {
16184
+ var escaperLookup = { "=": "=0", ":": "=2" };
16185
+ return (
16186
+ "$" +
16187
+ key.replace(/[=:]/g, function (match) {
16188
+ return escaperLookup[match];
16189
+ })
16190
+ );
16191
+ }
16192
+ var userProvidedKeyEscapeRegex = /\/+/g;
16193
+ function getElementKey(element, index) {
16194
+ return "object" === typeof element && null !== element && null != element.key
16195
+ ? escape("" + element.key)
16196
+ : index.toString(36);
16197
+ }
16198
+ function noop$1() {}
16199
+ function resolveThenable(thenable) {
16200
+ switch (thenable.status) {
16201
+ case "fulfilled":
16202
+ return thenable.value;
16203
+ case "rejected":
16204
+ throw thenable.reason;
16205
+ default:
16206
+ switch (
16207
+ ("string" === typeof thenable.status
16208
+ ? thenable.then(noop$1, noop$1)
16209
+ : ((thenable.status = "pending"),
16210
+ thenable.then(
16211
+ function (fulfilledValue) {
16212
+ "pending" === thenable.status &&
16213
+ ((thenable.status = "fulfilled"),
16214
+ (thenable.value = fulfilledValue));
16215
+ },
16216
+ function (error) {
16217
+ "pending" === thenable.status &&
16218
+ ((thenable.status = "rejected"), (thenable.reason = error));
16219
+ }
16220
+ )),
16221
+ thenable.status)
16364
16222
  ) {
16365
- queuedTarget.blockedOn =
16366
- 3 === nearestMounted.tag
16367
- ? nearestMounted.stateNode.containerInfo
16368
- : null;
16369
- return;
16223
+ case "fulfilled":
16224
+ return thenable.value;
16225
+ case "rejected":
16226
+ throw thenable.reason;
16370
16227
  }
16371
16228
  }
16372
- queuedTarget.blockedOn = null;
16229
+ throw thenable;
16373
16230
  }
16374
- function attemptReplayContinuousQueuedEvent(queuedEvent) {
16375
- if (null !== queuedEvent.blockedOn) return !1;
16376
- for (
16377
- var targetContainers = queuedEvent.targetContainers;
16378
- 0 < targetContainers.length;
16231
+ function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {
16232
+ var type = typeof children;
16233
+ if ("undefined" === type || "boolean" === type) children = null;
16234
+ var invokeCallback = !1;
16235
+ if (null === children) invokeCallback = !0;
16236
+ else
16237
+ switch (type) {
16238
+ case "bigint":
16239
+ case "string":
16240
+ case "number":
16241
+ invokeCallback = !0;
16242
+ break;
16243
+ case "object":
16244
+ switch (children.$$typeof) {
16245
+ case REACT_ELEMENT_TYPE:
16246
+ case REACT_PORTAL_TYPE:
16247
+ invokeCallback = !0;
16248
+ break;
16249
+ case REACT_LAZY_TYPE:
16250
+ return (
16251
+ (invokeCallback = children._init),
16252
+ mapIntoArray(
16253
+ invokeCallback(children._payload),
16254
+ array,
16255
+ escapedPrefix,
16256
+ nameSoFar,
16257
+ callback
16258
+ )
16259
+ );
16260
+ }
16261
+ }
16262
+ if (invokeCallback)
16263
+ return (
16264
+ (callback = callback(children)),
16265
+ (invokeCallback =
16266
+ "" === nameSoFar ? "." + getElementKey(children, 0) : nameSoFar),
16267
+ isArrayImpl(callback)
16268
+ ? ((escapedPrefix = ""),
16269
+ null != invokeCallback &&
16270
+ (escapedPrefix =
16271
+ invokeCallback.replace(userProvidedKeyEscapeRegex, "$&/") + "/"),
16272
+ mapIntoArray(callback, array, escapedPrefix, "", function (c) {
16273
+ return c;
16274
+ }))
16275
+ : null != callback &&
16276
+ (isValidElement(callback) &&
16277
+ (callback = cloneAndReplaceKey(
16278
+ callback,
16279
+ escapedPrefix +
16280
+ (null == callback.key ||
16281
+ (children && children.key === callback.key)
16282
+ ? ""
16283
+ : ("" + callback.key).replace(
16284
+ userProvidedKeyEscapeRegex,
16285
+ "$&/"
16286
+ ) + "/") +
16287
+ invokeCallback
16288
+ )),
16289
+ array.push(callback)),
16290
+ 1
16291
+ );
16292
+ invokeCallback = 0;
16293
+ var nextNamePrefix = "" === nameSoFar ? "." : nameSoFar + ":";
16294
+ if (isArrayImpl(children))
16295
+ for (var i = 0; i < children.length; i++)
16296
+ (nameSoFar = children[i]),
16297
+ (type = nextNamePrefix + getElementKey(nameSoFar, i)),
16298
+ (invokeCallback += mapIntoArray(
16299
+ nameSoFar,
16300
+ array,
16301
+ escapedPrefix,
16302
+ type,
16303
+ callback
16304
+ ));
16305
+ else if (((i = getIteratorFn(children)), "function" === typeof i))
16306
+ for (
16307
+ children = i.call(children), i = 0;
16308
+ !(nameSoFar = children.next()).done;
16379
16309
 
16380
- ) {
16381
- var nextBlockedOn = findInstanceBlockingEvent(queuedEvent.nativeEvent);
16382
- if (null === nextBlockedOn) {
16383
- nextBlockedOn = queuedEvent.nativeEvent;
16384
- var nativeEventClone = new nextBlockedOn.constructor(
16385
- nextBlockedOn.type,
16386
- nextBlockedOn
16387
- );
16388
- currentReplayingEvent = nativeEventClone;
16389
- nextBlockedOn.target.dispatchEvent(nativeEventClone);
16390
- currentReplayingEvent = null;
16391
- } else
16392
- return (
16393
- (targetContainers = getInstanceFromNode(nextBlockedOn)),
16394
- null !== targetContainers &&
16395
- attemptContinuousHydration(targetContainers),
16396
- (queuedEvent.blockedOn = nextBlockedOn),
16397
- !1
16310
+ )
16311
+ (nameSoFar = nameSoFar.value),
16312
+ (type = nextNamePrefix + getElementKey(nameSoFar, i++)),
16313
+ (invokeCallback += mapIntoArray(
16314
+ nameSoFar,
16315
+ array,
16316
+ escapedPrefix,
16317
+ type,
16318
+ callback
16319
+ ));
16320
+ else if ("object" === type) {
16321
+ if ("function" === typeof children.then)
16322
+ return mapIntoArray(
16323
+ resolveThenable(children),
16324
+ array,
16325
+ escapedPrefix,
16326
+ nameSoFar,
16327
+ callback
16398
16328
  );
16399
- targetContainers.shift();
16329
+ array = String(children);
16330
+ throw Error(
16331
+ "Objects are not valid as a React child (found: " +
16332
+ ("[object Object]" === array
16333
+ ? "object with keys {" + Object.keys(children).join(", ") + "}"
16334
+ : array) +
16335
+ "). If you meant to render a collection of children, use an array instead."
16336
+ );
16400
16337
  }
16401
- return !0;
16402
- }
16403
- function attemptReplayContinuousQueuedEventInMap(queuedEvent, key, map) {
16404
- attemptReplayContinuousQueuedEvent(queuedEvent) && map.delete(key);
16338
+ return invokeCallback;
16405
16339
  }
16406
- function replayUnblockedEvents() {
16407
- hasScheduledReplayAttempt = !1;
16408
- null !== queuedFocus &&
16409
- attemptReplayContinuousQueuedEvent(queuedFocus) &&
16410
- (queuedFocus = null);
16411
- null !== queuedDrag &&
16412
- attemptReplayContinuousQueuedEvent(queuedDrag) &&
16413
- (queuedDrag = null);
16414
- null !== queuedMouse &&
16415
- attemptReplayContinuousQueuedEvent(queuedMouse) &&
16416
- (queuedMouse = null);
16417
- queuedPointers.forEach(attemptReplayContinuousQueuedEventInMap);
16418
- queuedPointerCaptures.forEach(attemptReplayContinuousQueuedEventInMap);
16340
+ function mapChildren(children, func, context) {
16341
+ if (null == children) return children;
16342
+ var result = [],
16343
+ count = 0;
16344
+ mapIntoArray(children, result, "", "", function (child) {
16345
+ return func.call(context, child, count++);
16346
+ });
16347
+ return result;
16419
16348
  }
16420
- function scheduleCallbackIfUnblocked(queuedEvent, unblocked) {
16421
- queuedEvent.blockedOn === unblocked &&
16422
- ((queuedEvent.blockedOn = null),
16423
- hasScheduledReplayAttempt ||
16424
- ((hasScheduledReplayAttempt = !0),
16425
- Scheduler.unstable_scheduleCallback(
16426
- Scheduler.unstable_NormalPriority,
16427
- replayUnblockedEvents
16428
- )));
16349
+ function lazyInitializer(payload) {
16350
+ if (-1 === payload._status) {
16351
+ var ctor = payload._result;
16352
+ ctor = ctor();
16353
+ ctor.then(
16354
+ function (moduleObject) {
16355
+ if (0 === payload._status || -1 === payload._status)
16356
+ (payload._status = 1), (payload._result = moduleObject);
16357
+ },
16358
+ function (error) {
16359
+ if (0 === payload._status || -1 === payload._status)
16360
+ (payload._status = 2), (payload._result = error);
16361
+ }
16362
+ );
16363
+ -1 === payload._status && ((payload._status = 0), (payload._result = ctor));
16364
+ }
16365
+ if (1 === payload._status) return payload._result.default;
16366
+ throw payload._result;
16429
16367
  }
16430
- var lastScheduledReplayQueue = null;
16431
- function scheduleReplayQueueIfNeeded(formReplayingQueue) {
16432
- lastScheduledReplayQueue !== formReplayingQueue &&
16433
- ((lastScheduledReplayQueue = formReplayingQueue),
16434
- Scheduler.unstable_scheduleCallback(
16435
- Scheduler.unstable_NormalPriority,
16436
- function () {
16437
- lastScheduledReplayQueue === formReplayingQueue &&
16438
- (lastScheduledReplayQueue = null);
16439
- for (var i = 0; i < formReplayingQueue.length; i += 3) {
16440
- var form = formReplayingQueue[i],
16441
- submitterOrAction = formReplayingQueue[i + 1],
16442
- formData = formReplayingQueue[i + 2];
16443
- if ("function" !== typeof submitterOrAction)
16444
- if (null === findInstanceBlockingTarget(submitterOrAction || form))
16445
- continue;
16446
- else break;
16447
- var formInst = getInstanceFromNode(form);
16448
- null !== formInst &&
16449
- (formReplayingQueue.splice(i, 3),
16450
- (i -= 3),
16451
- startHostTransition(
16452
- formInst,
16453
- {
16454
- pending: !0,
16455
- data: formData,
16456
- method: form.method,
16457
- action: submitterOrAction
16458
- },
16459
- submitterOrAction,
16460
- formData
16461
- ));
16368
+ var reportGlobalError =
16369
+ "function" === typeof reportError
16370
+ ? reportError
16371
+ : function (error) {
16372
+ if (
16373
+ "object" === typeof window &&
16374
+ "function" === typeof window.ErrorEvent
16375
+ ) {
16376
+ var event = new window.ErrorEvent("error", {
16377
+ bubbles: !0,
16378
+ cancelable: !0,
16379
+ message:
16380
+ "object" === typeof error &&
16381
+ null !== error &&
16382
+ "string" === typeof error.message
16383
+ ? String(error.message)
16384
+ : String(error),
16385
+ error: error
16386
+ });
16387
+ if (!window.dispatchEvent(event)) return;
16388
+ } else if (
16389
+ "object" === typeof process &&
16390
+ "function" === typeof process.emit
16391
+ ) {
16392
+ process.emit("uncaughtException", error);
16393
+ return;
16462
16394
  }
16463
- }
16464
- ));
16465
- }
16466
- function retryIfBlockedOn(unblocked) {
16467
- function unblock(queuedEvent) {
16468
- return scheduleCallbackIfUnblocked(queuedEvent, unblocked);
16395
+ console.error(error);
16396
+ };
16397
+ function noop() {}
16398
+ exports.Children = {
16399
+ map: mapChildren,
16400
+ forEach: function (children, forEachFunc, forEachContext) {
16401
+ mapChildren(
16402
+ children,
16403
+ function () {
16404
+ forEachFunc.apply(this, arguments);
16405
+ },
16406
+ forEachContext
16407
+ );
16408
+ },
16409
+ count: function (children) {
16410
+ var n = 0;
16411
+ mapChildren(children, function () {
16412
+ n++;
16413
+ });
16414
+ return n;
16415
+ },
16416
+ toArray: function (children) {
16417
+ return (
16418
+ mapChildren(children, function (child) {
16419
+ return child;
16420
+ }) || []
16421
+ );
16422
+ },
16423
+ only: function (children) {
16424
+ if (!isValidElement(children))
16425
+ throw Error(
16426
+ "React.Children.only expected to receive a single React element child."
16427
+ );
16428
+ return children;
16469
16429
  }
16470
- null !== queuedFocus && scheduleCallbackIfUnblocked(queuedFocus, unblocked);
16471
- null !== queuedDrag && scheduleCallbackIfUnblocked(queuedDrag, unblocked);
16472
- null !== queuedMouse && scheduleCallbackIfUnblocked(queuedMouse, unblocked);
16473
- queuedPointers.forEach(unblock);
16474
- queuedPointerCaptures.forEach(unblock);
16475
- for (var i = 0; i < queuedExplicitHydrationTargets.length; i++) {
16476
- var queuedTarget = queuedExplicitHydrationTargets[i];
16477
- queuedTarget.blockedOn === unblocked && (queuedTarget.blockedOn = null);
16430
+ };
16431
+ exports.Component = Component;
16432
+ exports.Fragment = REACT_FRAGMENT_TYPE;
16433
+ exports.Profiler = REACT_PROFILER_TYPE;
16434
+ exports.PureComponent = PureComponent;
16435
+ exports.StrictMode = REACT_STRICT_MODE_TYPE;
16436
+ exports.Suspense = REACT_SUSPENSE_TYPE;
16437
+ exports.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =
16438
+ ReactSharedInternals;
16439
+ exports.__COMPILER_RUNTIME = {
16440
+ __proto__: null,
16441
+ c: function (size) {
16442
+ return ReactSharedInternals.H.useMemoCache(size);
16478
16443
  }
16479
- for (
16480
- ;
16481
- 0 < queuedExplicitHydrationTargets.length &&
16482
- ((i = queuedExplicitHydrationTargets[0]), null === i.blockedOn);
16483
-
16484
- )
16485
- attemptExplicitHydrationTarget(i),
16486
- null === i.blockedOn && queuedExplicitHydrationTargets.shift();
16487
- i = (unblocked.ownerDocument || unblocked).$$reactFormReplay;
16488
- if (null != i)
16489
- for (queuedTarget = 0; queuedTarget < i.length; queuedTarget += 3) {
16490
- var form = i[queuedTarget],
16491
- submitterOrAction = i[queuedTarget + 1],
16492
- formProps = form[internalPropsKey] || null;
16493
- if ("function" === typeof submitterOrAction)
16494
- formProps || scheduleReplayQueueIfNeeded(i);
16495
- else if (formProps) {
16496
- var action = null;
16497
- if (submitterOrAction && submitterOrAction.hasAttribute("formAction"))
16498
- if (
16499
- ((form = submitterOrAction),
16500
- (formProps = submitterOrAction[internalPropsKey] || null))
16501
- )
16502
- action = formProps.formAction;
16503
- else {
16504
- if (null !== findInstanceBlockingTarget(form)) continue;
16505
- }
16506
- else action = formProps.action;
16507
- "function" === typeof action
16508
- ? (i[queuedTarget + 1] = action)
16509
- : (i.splice(queuedTarget, 3), (queuedTarget -= 3));
16510
- scheduleReplayQueueIfNeeded(i);
16511
- }
16512
- }
16513
- }
16514
- function ReactDOMRoot(internalRoot) {
16515
- this._internalRoot = internalRoot;
16516
- }
16517
- ReactDOMHydrationRoot.prototype.render = ReactDOMRoot.prototype.render =
16518
- function (children) {
16519
- var root = this._internalRoot;
16520
- if (null === root) throw Error(formatProdErrorMessage(409));
16521
- var current = root.current,
16522
- lane = requestUpdateLane();
16523
- updateContainerImpl(current, lane, children, root, null, null);
16444
+ };
16445
+ exports.cache = function (fn) {
16446
+ return function () {
16447
+ return fn.apply(null, arguments);
16524
16448
  };
16525
- ReactDOMHydrationRoot.prototype.unmount = ReactDOMRoot.prototype.unmount =
16526
- function () {
16527
- var root = this._internalRoot;
16528
- if (null !== root) {
16529
- this._internalRoot = null;
16530
- var container = root.containerInfo;
16531
- updateContainerImpl(root.current, 2, null, root, null, null);
16532
- flushSyncWork$1();
16533
- container[internalContainerInstanceKey] = null;
16534
- }
16449
+ };
16450
+ exports.cloneElement = function (element, config, children) {
16451
+ if (null === element || void 0 === element)
16452
+ throw Error(
16453
+ "The argument must be a React element, but you passed " + element + "."
16454
+ );
16455
+ var props = assign({}, element.props),
16456
+ key = element.key,
16457
+ owner = void 0;
16458
+ if (null != config)
16459
+ for (propName in (void 0 !== config.ref && (owner = void 0),
16460
+ void 0 !== config.key && (key = "" + config.key),
16461
+ config))
16462
+ !hasOwnProperty.call(config, propName) ||
16463
+ "key" === propName ||
16464
+ "__self" === propName ||
16465
+ "__source" === propName ||
16466
+ ("ref" === propName && void 0 === config.ref) ||
16467
+ (props[propName] = config[propName]);
16468
+ var propName = arguments.length - 2;
16469
+ if (1 === propName) props.children = children;
16470
+ else if (1 < propName) {
16471
+ for (var childArray = Array(propName), i = 0; i < propName; i++)
16472
+ childArray[i] = arguments[i + 2];
16473
+ props.children = childArray;
16474
+ }
16475
+ return ReactElement(element.type, key, void 0, void 0, owner, props);
16476
+ };
16477
+ exports.createContext = function (defaultValue) {
16478
+ defaultValue = {
16479
+ $$typeof: REACT_CONTEXT_TYPE,
16480
+ _currentValue: defaultValue,
16481
+ _currentValue2: defaultValue,
16482
+ _threadCount: 0,
16483
+ Provider: null,
16484
+ Consumer: null
16535
16485
  };
16536
- function ReactDOMHydrationRoot(internalRoot) {
16537
- this._internalRoot = internalRoot;
16538
- }
16539
- ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
16540
- if (target) {
16541
- var updatePriority = resolveUpdatePriority();
16542
- target = { blockedOn: null, target: target, priority: updatePriority };
16543
- for (
16544
- var i = 0;
16545
- i < queuedExplicitHydrationTargets.length &&
16546
- 0 !== updatePriority &&
16547
- updatePriority < queuedExplicitHydrationTargets[i].priority;
16548
- i++
16486
+ defaultValue.Provider = defaultValue;
16487
+ defaultValue.Consumer = {
16488
+ $$typeof: REACT_CONSUMER_TYPE,
16489
+ _context: defaultValue
16490
+ };
16491
+ return defaultValue;
16492
+ };
16493
+ exports.createElement = function (type, config, children) {
16494
+ var propName,
16495
+ props = {},
16496
+ key = null;
16497
+ if (null != config)
16498
+ for (propName in (void 0 !== config.key && (key = "" + config.key), config))
16499
+ hasOwnProperty.call(config, propName) &&
16500
+ "key" !== propName &&
16501
+ "__self" !== propName &&
16502
+ "__source" !== propName &&
16503
+ (props[propName] = config[propName]);
16504
+ var childrenLength = arguments.length - 2;
16505
+ if (1 === childrenLength) props.children = children;
16506
+ else if (1 < childrenLength) {
16507
+ for (var childArray = Array(childrenLength), i = 0; i < childrenLength; i++)
16508
+ childArray[i] = arguments[i + 2];
16509
+ props.children = childArray;
16510
+ }
16511
+ if (type && type.defaultProps)
16512
+ for (propName in ((childrenLength = type.defaultProps), childrenLength))
16513
+ void 0 === props[propName] &&
16514
+ (props[propName] = childrenLength[propName]);
16515
+ return ReactElement(type, key, void 0, void 0, null, props);
16516
+ };
16517
+ exports.createRef = function () {
16518
+ return { current: null };
16519
+ };
16520
+ exports.forwardRef = function (render) {
16521
+ return { $$typeof: REACT_FORWARD_REF_TYPE, render: render };
16522
+ };
16523
+ exports.isValidElement = isValidElement;
16524
+ exports.lazy = function (ctor) {
16525
+ return {
16526
+ $$typeof: REACT_LAZY_TYPE,
16527
+ _payload: { _status: -1, _result: ctor },
16528
+ _init: lazyInitializer
16529
+ };
16530
+ };
16531
+ exports.memo = function (type, compare) {
16532
+ return {
16533
+ $$typeof: REACT_MEMO_TYPE,
16534
+ type: type,
16535
+ compare: void 0 === compare ? null : compare
16536
+ };
16537
+ };
16538
+ exports.startTransition = function (scope) {
16539
+ var prevTransition = ReactSharedInternals.T,
16540
+ currentTransition = {};
16541
+ ReactSharedInternals.T = currentTransition;
16542
+ try {
16543
+ var returnValue = scope(),
16544
+ onStartTransitionFinish = ReactSharedInternals.S;
16545
+ null !== onStartTransitionFinish &&
16546
+ onStartTransitionFinish(currentTransition, returnValue);
16547
+ "object" === typeof returnValue &&
16548
+ null !== returnValue &&
16549
+ "function" === typeof returnValue.then &&
16550
+ returnValue.then(noop, reportGlobalError);
16551
+ } catch (error) {
16552
+ reportGlobalError(error);
16553
+ } finally {
16554
+ ReactSharedInternals.T = prevTransition;
16555
+ }
16556
+ };
16557
+ exports.unstable_useCacheRefresh = function () {
16558
+ return ReactSharedInternals.H.useCacheRefresh();
16559
+ };
16560
+ exports.use = function (usable) {
16561
+ return ReactSharedInternals.H.use(usable);
16562
+ };
16563
+ exports.useActionState = function (action, initialState, permalink) {
16564
+ return ReactSharedInternals.H.useActionState(action, initialState, permalink);
16565
+ };
16566
+ exports.useCallback = function (callback, deps) {
16567
+ return ReactSharedInternals.H.useCallback(callback, deps);
16568
+ };
16569
+ exports.useContext = function (Context) {
16570
+ return ReactSharedInternals.H.useContext(Context);
16571
+ };
16572
+ exports.useDebugValue = function () {};
16573
+ exports.useDeferredValue = function (value, initialValue) {
16574
+ return ReactSharedInternals.H.useDeferredValue(value, initialValue);
16575
+ };
16576
+ exports.useEffect = function (create, createDeps, update) {
16577
+ var dispatcher = ReactSharedInternals.H;
16578
+ if ("function" === typeof update)
16579
+ throw Error(
16580
+ "useEffect CRUD overload is not enabled in this build of React."
16549
16581
  );
16550
- queuedExplicitHydrationTargets.splice(i, 0, target);
16551
- 0 === i && attemptExplicitHydrationTarget(target);
16552
- }
16582
+ return dispatcher.useEffect(create, createDeps);
16553
16583
  };
16554
- var isomorphicReactPackageVersion$jscomp$inline_1785 = React.version;
16555
- if (
16556
- "19.1.0" !==
16557
- isomorphicReactPackageVersion$jscomp$inline_1785
16558
- )
16559
- throw Error(
16560
- formatProdErrorMessage(
16561
- 527,
16562
- isomorphicReactPackageVersion$jscomp$inline_1785,
16563
- "19.1.0"
16564
- )
16565
- );
16566
- ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
16567
- var fiber = componentOrElement._reactInternals;
16568
- if (void 0 === fiber) {
16569
- if ("function" === typeof componentOrElement.render)
16570
- throw Error(formatProdErrorMessage(188));
16571
- componentOrElement = Object.keys(componentOrElement).join(",");
16572
- throw Error(formatProdErrorMessage(268, componentOrElement));
16573
- }
16574
- componentOrElement = findCurrentFiberUsingSlowPath(fiber);
16575
- componentOrElement =
16576
- null !== componentOrElement
16577
- ? findCurrentHostFiberImpl(componentOrElement)
16578
- : null;
16579
- componentOrElement =
16580
- null === componentOrElement ? null : componentOrElement.stateNode;
16581
- return componentOrElement;
16584
+ exports.useId = function () {
16585
+ return ReactSharedInternals.H.useId();
16582
16586
  };
16583
- var internals$jscomp$inline_2256 = {
16584
- bundleType: 0,
16585
- version: "19.1.0",
16586
- rendererPackageName: "react-dom",
16587
- currentDispatcherRef: ReactSharedInternals,
16588
- reconcilerVersion: "19.1.0"
16587
+ exports.useImperativeHandle = function (ref, create, deps) {
16588
+ return ReactSharedInternals.H.useImperativeHandle(ref, create, deps);
16589
16589
  };
16590
- if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
16591
- var hook$jscomp$inline_2257 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
16592
- if (
16593
- !hook$jscomp$inline_2257.isDisabled &&
16594
- hook$jscomp$inline_2257.supportsFiber
16595
- )
16596
- try {
16597
- (rendererID = hook$jscomp$inline_2257.inject(
16598
- internals$jscomp$inline_2256
16599
- )),
16600
- (injectedHook = hook$jscomp$inline_2257);
16601
- } catch (err) {}
16602
- }
16603
- exports.createRoot = function (container, options) {
16604
- if (!isValidContainer(container)) throw Error(formatProdErrorMessage(299));
16605
- var isStrictMode = !1,
16606
- identifierPrefix = "",
16607
- onUncaughtError = defaultOnUncaughtError,
16608
- onCaughtError = defaultOnCaughtError,
16609
- onRecoverableError = defaultOnRecoverableError,
16610
- transitionCallbacks = null;
16611
- null !== options &&
16612
- void 0 !== options &&
16613
- (!0 === options.unstable_strictMode && (isStrictMode = !0),
16614
- void 0 !== options.identifierPrefix &&
16615
- (identifierPrefix = options.identifierPrefix),
16616
- void 0 !== options.onUncaughtError &&
16617
- (onUncaughtError = options.onUncaughtError),
16618
- void 0 !== options.onCaughtError && (onCaughtError = options.onCaughtError),
16619
- void 0 !== options.onRecoverableError &&
16620
- (onRecoverableError = options.onRecoverableError),
16621
- void 0 !== options.unstable_transitionCallbacks &&
16622
- (transitionCallbacks = options.unstable_transitionCallbacks));
16623
- options = createFiberRoot(
16624
- container,
16625
- 1,
16626
- !1,
16627
- null,
16628
- null,
16629
- isStrictMode,
16630
- identifierPrefix,
16631
- onUncaughtError,
16632
- onCaughtError,
16633
- onRecoverableError,
16634
- transitionCallbacks,
16635
- null
16636
- );
16637
- container[internalContainerInstanceKey] = options.current;
16638
- listenToAllSupportedEvents(container);
16639
- return new ReactDOMRoot(options);
16590
+ exports.useInsertionEffect = function (create, deps) {
16591
+ return ReactSharedInternals.H.useInsertionEffect(create, deps);
16640
16592
  };
16641
- exports.hydrateRoot = function (container, initialChildren, options) {
16642
- if (!isValidContainer(container)) throw Error(formatProdErrorMessage(299));
16643
- var isStrictMode = !1,
16644
- identifierPrefix = "",
16645
- onUncaughtError = defaultOnUncaughtError,
16646
- onCaughtError = defaultOnCaughtError,
16647
- onRecoverableError = defaultOnRecoverableError,
16648
- transitionCallbacks = null,
16649
- formState = null;
16650
- null !== options &&
16651
- void 0 !== options &&
16652
- (!0 === options.unstable_strictMode && (isStrictMode = !0),
16653
- void 0 !== options.identifierPrefix &&
16654
- (identifierPrefix = options.identifierPrefix),
16655
- void 0 !== options.onUncaughtError &&
16656
- (onUncaughtError = options.onUncaughtError),
16657
- void 0 !== options.onCaughtError && (onCaughtError = options.onCaughtError),
16658
- void 0 !== options.onRecoverableError &&
16659
- (onRecoverableError = options.onRecoverableError),
16660
- void 0 !== options.unstable_transitionCallbacks &&
16661
- (transitionCallbacks = options.unstable_transitionCallbacks),
16662
- void 0 !== options.formState && (formState = options.formState));
16663
- initialChildren = createFiberRoot(
16664
- container,
16665
- 1,
16666
- !0,
16667
- initialChildren,
16668
- null != options ? options : null,
16669
- isStrictMode,
16670
- identifierPrefix,
16671
- onUncaughtError,
16672
- onCaughtError,
16673
- onRecoverableError,
16674
- transitionCallbacks,
16675
- formState
16593
+ exports.useLayoutEffect = function (create, deps) {
16594
+ return ReactSharedInternals.H.useLayoutEffect(create, deps);
16595
+ };
16596
+ exports.useMemo = function (create, deps) {
16597
+ return ReactSharedInternals.H.useMemo(create, deps);
16598
+ };
16599
+ exports.useOptimistic = function (passthrough, reducer) {
16600
+ return ReactSharedInternals.H.useOptimistic(passthrough, reducer);
16601
+ };
16602
+ exports.useReducer = function (reducer, initialArg, init) {
16603
+ return ReactSharedInternals.H.useReducer(reducer, initialArg, init);
16604
+ };
16605
+ exports.useRef = function (initialValue) {
16606
+ return ReactSharedInternals.H.useRef(initialValue);
16607
+ };
16608
+ exports.useState = function (initialState) {
16609
+ return ReactSharedInternals.H.useState(initialState);
16610
+ };
16611
+ exports.useSyncExternalStore = function (
16612
+ subscribe,
16613
+ getSnapshot,
16614
+ getServerSnapshot
16615
+ ) {
16616
+ return ReactSharedInternals.H.useSyncExternalStore(
16617
+ subscribe,
16618
+ getSnapshot,
16619
+ getServerSnapshot
16676
16620
  );
16677
- initialChildren.context = getContextForSubtree(null);
16678
- options = initialChildren.current;
16679
- isStrictMode = requestUpdateLane();
16680
- isStrictMode = getBumpedLaneForHydrationByLane(isStrictMode);
16681
- identifierPrefix = createUpdate(isStrictMode);
16682
- identifierPrefix.callback = null;
16683
- enqueueUpdate(options, identifierPrefix, isStrictMode);
16684
- options = isStrictMode;
16685
- initialChildren.current.lanes = options;
16686
- markRootUpdated$1(initialChildren, options);
16687
- ensureRootIsScheduled(initialChildren);
16688
- container[internalContainerInstanceKey] = initialChildren.current;
16689
- listenToAllSupportedEvents(container);
16690
- return new ReactDOMHydrationRoot(initialChildren);
16621
+ };
16622
+ exports.useTransition = function () {
16623
+ return ReactSharedInternals.H.useTransition();
16691
16624
  };
16692
16625
  exports.version = "19.1.0";
16693
16626
 
16694
16627
 
16628
+ /***/ }),
16629
+
16630
+ /***/ 834:
16631
+ /*!*****************************************************************************!*\
16632
+ !*** ./node_modules/.pnpm/scheduler@0.26.0/node_modules/scheduler/index.js ***!
16633
+ \*****************************************************************************/
16634
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
16635
+
16636
+
16637
+
16638
+ if (true) {
16639
+ module.exports = __webpack_require__(/*! ./cjs/scheduler.production.js */ 505);
16640
+ } else {}
16641
+
16642
+
16643
+ /***/ }),
16644
+
16645
+ /***/ 913:
16646
+ /*!***************************************************************************!*\
16647
+ !*** ./node_modules/.pnpm/react@19.1.0/node_modules/react/jsx-runtime.js ***!
16648
+ \***************************************************************************/
16649
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
16650
+
16651
+
16652
+
16653
+ if (true) {
16654
+ module.exports = __webpack_require__(/*! ./cjs/react-jsx-runtime.production.js */ 577);
16655
+ } else {}
16656
+
16657
+
16658
+ /***/ }),
16659
+
16660
+ /***/ 956:
16661
+ /*!******************************************************************************************!*\
16662
+ !*** ./node_modules/.pnpm/react-dom@19.1.0_react@19.1.0/node_modules/react-dom/index.js ***!
16663
+ \******************************************************************************************/
16664
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
16665
+
16666
+
16667
+
16668
+ function checkDCE() {
16669
+ /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */
16670
+ if (
16671
+ typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined' ||
16672
+ typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE !== 'function'
16673
+ ) {
16674
+ return;
16675
+ }
16676
+ if (false) {}
16677
+ try {
16678
+ // Verify that the code above has been dead code eliminated (DCE'd).
16679
+ __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(checkDCE);
16680
+ } catch (err) {
16681
+ // DevTools shouldn't crash React, no matter what.
16682
+ // We should still report in case we break this code.
16683
+ console.error(err);
16684
+ }
16685
+ }
16686
+
16687
+ if (true) {
16688
+ // DCE check should happen before ReactDOM bundle executes so that
16689
+ // DevTools can report bad minification during injection.
16690
+ checkDCE();
16691
+ module.exports = __webpack_require__(/*! ./cjs/react-dom.production.js */ 458);
16692
+ } else {}
16693
+
16694
+
16695
16695
  /***/ })
16696
16696
 
16697
16697
  /******/ });
@@ -16794,10 +16794,10 @@ __webpack_require__.r(__webpack_exports__);
16794
16794
  /* harmony export */ ReactDOMClient: () => (/* reexport fake namespace object from non-harmony */ react_dom_client__WEBPACK_IMPORTED_MODULE_3___namespace_cache || (react_dom_client__WEBPACK_IMPORTED_MODULE_3___namespace_cache = __webpack_require__.t(react_dom_client__WEBPACK_IMPORTED_MODULE_3__, 2))),
16795
16795
  /* harmony export */ ReactJSX: () => (/* reexport fake namespace object from non-harmony */ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1___namespace_cache || (react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1___namespace_cache = __webpack_require__.t(react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__, 2)))
16796
16796
  /* harmony export */ });
16797
- /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ 653);
16798
- /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react/jsx-runtime */ 225);
16799
- /* harmony import */ var react_dom__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! react-dom */ 332);
16800
- /* harmony import */ var react_dom_client__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! react-dom/client */ 741);
16797
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ 213);
16798
+ /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react/jsx-runtime */ 913);
16799
+ /* harmony import */ var react_dom__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! react-dom */ 956);
16800
+ /* harmony import */ var react_dom_client__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! react-dom/client */ 373);
16801
16801
 
16802
16802
 
16803
16803