xshell 1.2.65 → 1.2.66

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,31 +2,15 @@
2
2
  /******/ "use strict";
3
3
  /******/ var __webpack_modules__ = ({
4
4
 
5
- /***/ 64:
6
- /*!*****************************************************************************!*\
7
- !*** ./node_modules/.pnpm/scheduler@0.26.0/node_modules/scheduler/index.js ***!
8
- \*****************************************************************************/
9
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
10
-
11
-
12
-
13
- if (true) {
14
- module.exports = __webpack_require__(/*! ./cjs/scheduler.production.js */ 723);
15
- } else // removed by dead control flow
16
- {}
17
-
18
-
19
- /***/ }),
20
-
21
- /***/ 216:
22
- /*!************************************************************************************!*\
23
- !*** ./node_modules/.pnpm/react@19.1.0/node_modules/react/cjs/react.production.js ***!
24
- \************************************************************************************/
25
- /***/ ((__unused_webpack_module, exports) => {
5
+ /***/ 19:
6
+ /*!*************************************************************************************************************!*\
7
+ !*** ./node_modules/.pnpm/react-dom@19.1.1_react@19.1.1/node_modules/react-dom/cjs/react-dom.production.js ***!
8
+ \*************************************************************************************************************/
9
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
26
10
 
27
11
  /**
28
12
  * @license React
29
- * react.production.js
13
+ * react-dom.production.js
30
14
  *
31
15
  * Copyright (c) Meta Platforms, Inc. and affiliates.
32
16
  *
@@ -35,548 +19,267 @@ if (true) {
35
19
  */
36
20
 
37
21
 
38
- var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
39
- REACT_PORTAL_TYPE = Symbol.for("react.portal"),
40
- REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
41
- REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
42
- REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
43
- REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
44
- REACT_CONTEXT_TYPE = Symbol.for("react.context"),
45
- REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
46
- REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"),
47
- REACT_MEMO_TYPE = Symbol.for("react.memo"),
48
- REACT_LAZY_TYPE = Symbol.for("react.lazy"),
49
- MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
50
- function getIteratorFn(maybeIterable) {
51
- if (null === maybeIterable || "object" !== typeof maybeIterable) return null;
52
- maybeIterable =
53
- (MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL]) ||
54
- maybeIterable["@@iterator"];
55
- return "function" === typeof maybeIterable ? maybeIterable : null;
22
+ var React = __webpack_require__(/*! react */ 67);
23
+ function formatProdErrorMessage(code) {
24
+ var url = "https://react.dev/errors/" + code;
25
+ if (1 < arguments.length) {
26
+ url += "?args[]=" + encodeURIComponent(arguments[1]);
27
+ for (var i = 2; i < arguments.length; i++)
28
+ url += "&args[]=" + encodeURIComponent(arguments[i]);
29
+ }
30
+ return (
31
+ "Minified React error #" +
32
+ code +
33
+ "; visit " +
34
+ url +
35
+ " for the full message or use the non-minified dev environment for full errors and additional helpful warnings."
36
+ );
56
37
  }
57
- var ReactNoopUpdateQueue = {
58
- isMounted: function () {
59
- return !1;
38
+ function noop() {}
39
+ var Internals = {
40
+ d: {
41
+ f: noop,
42
+ r: function () {
43
+ throw Error(formatProdErrorMessage(522));
44
+ },
45
+ D: noop,
46
+ C: noop,
47
+ L: noop,
48
+ m: noop,
49
+ X: noop,
50
+ S: noop,
51
+ M: noop
60
52
  },
61
- enqueueForceUpdate: function () {},
62
- enqueueReplaceState: function () {},
63
- enqueueSetState: function () {}
53
+ p: 0,
54
+ findDOMNode: null
64
55
  },
65
- assign = Object.assign,
66
- emptyObject = {};
67
- function Component(props, context, updater) {
68
- this.props = props;
69
- this.context = context;
70
- this.refs = emptyObject;
71
- this.updater = updater || ReactNoopUpdateQueue;
72
- }
73
- Component.prototype.isReactComponent = {};
74
- Component.prototype.setState = function (partialState, callback) {
75
- if (
76
- "object" !== typeof partialState &&
77
- "function" !== typeof partialState &&
78
- null != partialState
79
- )
80
- throw Error(
81
- "takes an object of state variables to update or a function which returns an object of state variables."
82
- );
83
- this.updater.enqueueSetState(this, partialState, callback, "setState");
84
- };
85
- Component.prototype.forceUpdate = function (callback) {
86
- this.updater.enqueueForceUpdate(this, callback, "forceUpdate");
87
- };
88
- function ComponentDummy() {}
89
- ComponentDummy.prototype = Component.prototype;
90
- function PureComponent(props, context, updater) {
91
- this.props = props;
92
- this.context = context;
93
- this.refs = emptyObject;
94
- this.updater = updater || ReactNoopUpdateQueue;
95
- }
96
- var pureComponentPrototype = (PureComponent.prototype = new ComponentDummy());
97
- pureComponentPrototype.constructor = PureComponent;
98
- assign(pureComponentPrototype, Component.prototype);
99
- pureComponentPrototype.isPureReactComponent = !0;
100
- var isArrayImpl = Array.isArray,
101
- ReactSharedInternals = { H: null, A: null, T: null, S: null, V: null },
102
- hasOwnProperty = Object.prototype.hasOwnProperty;
103
- function ReactElement(type, key, self, source, owner, props) {
104
- self = props.ref;
56
+ REACT_PORTAL_TYPE = Symbol.for("react.portal");
57
+ function createPortal$1(children, containerInfo, implementation) {
58
+ var key =
59
+ 3 < arguments.length && void 0 !== arguments[3] ? arguments[3] : null;
105
60
  return {
106
- $$typeof: REACT_ELEMENT_TYPE,
107
- type: type,
108
- key: key,
109
- ref: void 0 !== self ? self : null,
110
- props: props
61
+ $$typeof: REACT_PORTAL_TYPE,
62
+ key: null == key ? null : "" + key,
63
+ children: children,
64
+ containerInfo: containerInfo,
65
+ implementation: implementation
111
66
  };
112
67
  }
113
- function cloneAndReplaceKey(oldElement, newKey) {
114
- return ReactElement(
115
- oldElement.type,
116
- newKey,
117
- void 0,
118
- void 0,
119
- void 0,
120
- oldElement.props
121
- );
122
- }
123
- function isValidElement(object) {
124
- return (
125
- "object" === typeof object &&
126
- null !== object &&
127
- object.$$typeof === REACT_ELEMENT_TYPE
128
- );
129
- }
130
- function escape(key) {
131
- var escaperLookup = { "=": "=0", ":": "=2" };
132
- return (
133
- "$" +
134
- key.replace(/[=:]/g, function (match) {
135
- return escaperLookup[match];
136
- })
137
- );
138
- }
139
- var userProvidedKeyEscapeRegex = /\/+/g;
140
- function getElementKey(element, index) {
141
- return "object" === typeof element && null !== element && null != element.key
142
- ? escape("" + element.key)
143
- : index.toString(36);
68
+ var ReactSharedInternals =
69
+ React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;
70
+ function getCrossOriginStringAs(as, input) {
71
+ if ("font" === as) return "";
72
+ if ("string" === typeof input)
73
+ return "use-credentials" === input ? input : "";
144
74
  }
145
- function noop$1() {}
146
- function resolveThenable(thenable) {
147
- switch (thenable.status) {
148
- case "fulfilled":
149
- return thenable.value;
150
- case "rejected":
151
- throw thenable.reason;
152
- default:
153
- switch (
154
- ("string" === typeof thenable.status
155
- ? thenable.then(noop$1, noop$1)
156
- : ((thenable.status = "pending"),
157
- thenable.then(
158
- function (fulfilledValue) {
159
- "pending" === thenable.status &&
160
- ((thenable.status = "fulfilled"),
161
- (thenable.value = fulfilledValue));
162
- },
163
- function (error) {
164
- "pending" === thenable.status &&
165
- ((thenable.status = "rejected"), (thenable.reason = error));
166
- }
167
- )),
168
- thenable.status)
169
- ) {
170
- case "fulfilled":
171
- return thenable.value;
172
- case "rejected":
173
- throw thenable.reason;
174
- }
175
- }
176
- throw thenable;
177
- }
178
- function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {
179
- var type = typeof children;
180
- if ("undefined" === type || "boolean" === type) children = null;
181
- var invokeCallback = !1;
182
- if (null === children) invokeCallback = !0;
183
- else
184
- switch (type) {
185
- case "bigint":
186
- case "string":
187
- case "number":
188
- invokeCallback = !0;
189
- break;
190
- case "object":
191
- switch (children.$$typeof) {
192
- case REACT_ELEMENT_TYPE:
193
- case REACT_PORTAL_TYPE:
194
- invokeCallback = !0;
195
- break;
196
- case REACT_LAZY_TYPE:
197
- return (
198
- (invokeCallback = children._init),
199
- mapIntoArray(
200
- invokeCallback(children._payload),
201
- array,
202
- escapedPrefix,
203
- nameSoFar,
204
- callback
205
- )
206
- );
207
- }
208
- }
209
- if (invokeCallback)
210
- return (
211
- (callback = callback(children)),
212
- (invokeCallback =
213
- "" === nameSoFar ? "." + getElementKey(children, 0) : nameSoFar),
214
- isArrayImpl(callback)
215
- ? ((escapedPrefix = ""),
216
- null != invokeCallback &&
217
- (escapedPrefix =
218
- invokeCallback.replace(userProvidedKeyEscapeRegex, "$&/") + "/"),
219
- mapIntoArray(callback, array, escapedPrefix, "", function (c) {
220
- return c;
221
- }))
222
- : null != callback &&
223
- (isValidElement(callback) &&
224
- (callback = cloneAndReplaceKey(
225
- callback,
226
- escapedPrefix +
227
- (null == callback.key ||
228
- (children && children.key === callback.key)
229
- ? ""
230
- : ("" + callback.key).replace(
231
- userProvidedKeyEscapeRegex,
232
- "$&/"
233
- ) + "/") +
234
- invokeCallback
235
- )),
236
- array.push(callback)),
237
- 1
238
- );
239
- invokeCallback = 0;
240
- var nextNamePrefix = "" === nameSoFar ? "." : nameSoFar + ":";
241
- if (isArrayImpl(children))
242
- for (var i = 0; i < children.length; i++)
243
- (nameSoFar = children[i]),
244
- (type = nextNamePrefix + getElementKey(nameSoFar, i)),
245
- (invokeCallback += mapIntoArray(
246
- nameSoFar,
247
- array,
248
- escapedPrefix,
249
- type,
250
- callback
251
- ));
252
- else if (((i = getIteratorFn(children)), "function" === typeof i))
253
- for (
254
- children = i.call(children), i = 0;
255
- !(nameSoFar = children.next()).done;
256
-
257
- )
258
- (nameSoFar = nameSoFar.value),
259
- (type = nextNamePrefix + getElementKey(nameSoFar, i++)),
260
- (invokeCallback += mapIntoArray(
261
- nameSoFar,
262
- array,
263
- escapedPrefix,
264
- type,
265
- callback
266
- ));
267
- else if ("object" === type) {
268
- if ("function" === typeof children.then)
269
- return mapIntoArray(
270
- resolveThenable(children),
271
- array,
272
- escapedPrefix,
273
- nameSoFar,
274
- callback
275
- );
276
- array = String(children);
277
- throw Error(
278
- "Objects are not valid as a React child (found: " +
279
- ("[object Object]" === array
280
- ? "object with keys {" + Object.keys(children).join(", ") + "}"
281
- : array) +
282
- "). If you meant to render a collection of children, use an array instead."
283
- );
284
- }
285
- return invokeCallback;
286
- }
287
- function mapChildren(children, func, context) {
288
- if (null == children) return children;
289
- var result = [],
290
- count = 0;
291
- mapIntoArray(children, result, "", "", function (child) {
292
- return func.call(context, child, count++);
293
- });
294
- return result;
295
- }
296
- function lazyInitializer(payload) {
297
- if (-1 === payload._status) {
298
- var ctor = payload._result;
299
- ctor = ctor();
300
- ctor.then(
301
- function (moduleObject) {
302
- if (0 === payload._status || -1 === payload._status)
303
- (payload._status = 1), (payload._result = moduleObject);
304
- },
305
- function (error) {
306
- if (0 === payload._status || -1 === payload._status)
307
- (payload._status = 2), (payload._result = error);
308
- }
309
- );
310
- -1 === payload._status && ((payload._status = 0), (payload._result = ctor));
311
- }
312
- if (1 === payload._status) return payload._result.default;
313
- throw payload._result;
314
- }
315
- var reportGlobalError =
316
- "function" === typeof reportError
317
- ? reportError
318
- : function (error) {
319
- if (
320
- "object" === typeof window &&
321
- "function" === typeof window.ErrorEvent
322
- ) {
323
- var event = new window.ErrorEvent("error", {
324
- bubbles: !0,
325
- cancelable: !0,
326
- message:
327
- "object" === typeof error &&
328
- null !== error &&
329
- "string" === typeof error.message
330
- ? String(error.message)
331
- : String(error),
332
- error: error
333
- });
334
- if (!window.dispatchEvent(event)) return;
335
- } else if (
336
- "object" === typeof process &&
337
- "function" === typeof process.emit
338
- ) {
339
- process.emit("uncaughtException", error);
340
- return;
341
- }
342
- console.error(error);
343
- };
344
- function noop() {}
345
- exports.Children = {
346
- map: mapChildren,
347
- forEach: function (children, forEachFunc, forEachContext) {
348
- mapChildren(
349
- children,
350
- function () {
351
- forEachFunc.apply(this, arguments);
352
- },
353
- forEachContext
354
- );
355
- },
356
- count: function (children) {
357
- var n = 0;
358
- mapChildren(children, function () {
359
- n++;
360
- });
361
- return n;
362
- },
363
- toArray: function (children) {
364
- return (
365
- mapChildren(children, function (child) {
366
- return child;
367
- }) || []
368
- );
369
- },
370
- only: function (children) {
371
- if (!isValidElement(children))
372
- throw Error(
373
- "React.Children.only expected to receive a single React element child."
374
- );
375
- return children;
75
+ exports.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =
76
+ Internals;
77
+ exports.createPortal = function (children, container) {
78
+ var key =
79
+ 2 < arguments.length && void 0 !== arguments[2] ? arguments[2] : null;
80
+ if (
81
+ !container ||
82
+ (1 !== container.nodeType &&
83
+ 9 !== container.nodeType &&
84
+ 11 !== container.nodeType)
85
+ )
86
+ throw Error(formatProdErrorMessage(299));
87
+ return createPortal$1(children, container, null, key);
88
+ };
89
+ exports.flushSync = function (fn) {
90
+ var previousTransition = ReactSharedInternals.T,
91
+ previousUpdatePriority = Internals.p;
92
+ try {
93
+ if (((ReactSharedInternals.T = null), (Internals.p = 2), fn)) return fn();
94
+ } finally {
95
+ (ReactSharedInternals.T = previousTransition),
96
+ (Internals.p = previousUpdatePriority),
97
+ Internals.d.f();
376
98
  }
377
99
  };
378
- exports.Component = Component;
379
- exports.Fragment = REACT_FRAGMENT_TYPE;
380
- exports.Profiler = REACT_PROFILER_TYPE;
381
- exports.PureComponent = PureComponent;
382
- exports.StrictMode = REACT_STRICT_MODE_TYPE;
383
- exports.Suspense = REACT_SUSPENSE_TYPE;
384
- exports.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =
385
- ReactSharedInternals;
386
- exports.__COMPILER_RUNTIME = {
387
- __proto__: null,
388
- c: function (size) {
389
- return ReactSharedInternals.H.useMemoCache(size);
390
- }
100
+ exports.preconnect = function (href, options) {
101
+ "string" === typeof href &&
102
+ (options
103
+ ? ((options = options.crossOrigin),
104
+ (options =
105
+ "string" === typeof options
106
+ ? "use-credentials" === options
107
+ ? options
108
+ : ""
109
+ : void 0))
110
+ : (options = null),
111
+ Internals.d.C(href, options));
391
112
  };
392
- exports.cache = function (fn) {
393
- return function () {
394
- return fn.apply(null, arguments);
395
- };
113
+ exports.prefetchDNS = function (href) {
114
+ "string" === typeof href && Internals.d.D(href);
396
115
  };
397
- exports.cloneElement = function (element, config, children) {
398
- if (null === element || void 0 === element)
399
- throw Error(
400
- "The argument must be a React element, but you passed " + element + "."
401
- );
402
- var props = assign({}, element.props),
403
- key = element.key,
404
- owner = void 0;
405
- if (null != config)
406
- for (propName in (void 0 !== config.ref && (owner = void 0),
407
- void 0 !== config.key && (key = "" + config.key),
408
- config))
409
- !hasOwnProperty.call(config, propName) ||
410
- "key" === propName ||
411
- "__self" === propName ||
412
- "__source" === propName ||
413
- ("ref" === propName && void 0 === config.ref) ||
414
- (props[propName] = config[propName]);
415
- var propName = arguments.length - 2;
416
- if (1 === propName) props.children = children;
417
- else if (1 < propName) {
418
- for (var childArray = Array(propName), i = 0; i < propName; i++)
419
- childArray[i] = arguments[i + 2];
420
- props.children = childArray;
116
+ exports.preinit = function (href, options) {
117
+ if ("string" === typeof href && options && "string" === typeof options.as) {
118
+ var as = options.as,
119
+ crossOrigin = getCrossOriginStringAs(as, options.crossOrigin),
120
+ integrity =
121
+ "string" === typeof options.integrity ? options.integrity : void 0,
122
+ fetchPriority =
123
+ "string" === typeof options.fetchPriority
124
+ ? options.fetchPriority
125
+ : void 0;
126
+ "style" === as
127
+ ? Internals.d.S(
128
+ href,
129
+ "string" === typeof options.precedence ? options.precedence : void 0,
130
+ {
131
+ crossOrigin: crossOrigin,
132
+ integrity: integrity,
133
+ fetchPriority: fetchPriority
134
+ }
135
+ )
136
+ : "script" === as &&
137
+ Internals.d.X(href, {
138
+ crossOrigin: crossOrigin,
139
+ integrity: integrity,
140
+ fetchPriority: fetchPriority,
141
+ nonce: "string" === typeof options.nonce ? options.nonce : void 0
142
+ });
421
143
  }
422
- return ReactElement(element.type, key, void 0, void 0, owner, props);
423
144
  };
424
- exports.createContext = function (defaultValue) {
425
- defaultValue = {
426
- $$typeof: REACT_CONTEXT_TYPE,
427
- _currentValue: defaultValue,
428
- _currentValue2: defaultValue,
429
- _threadCount: 0,
430
- Provider: null,
431
- Consumer: null
432
- };
433
- defaultValue.Provider = defaultValue;
434
- defaultValue.Consumer = {
435
- $$typeof: REACT_CONSUMER_TYPE,
436
- _context: defaultValue
437
- };
438
- return defaultValue;
145
+ exports.preinitModule = function (href, options) {
146
+ if ("string" === typeof href)
147
+ if ("object" === typeof options && null !== options) {
148
+ if (null == options.as || "script" === options.as) {
149
+ var crossOrigin = getCrossOriginStringAs(
150
+ options.as,
151
+ options.crossOrigin
152
+ );
153
+ Internals.d.M(href, {
154
+ crossOrigin: crossOrigin,
155
+ integrity:
156
+ "string" === typeof options.integrity ? options.integrity : void 0,
157
+ nonce: "string" === typeof options.nonce ? options.nonce : void 0
158
+ });
159
+ }
160
+ } else null == options && Internals.d.M(href);
439
161
  };
440
- exports.createElement = function (type, config, children) {
441
- var propName,
442
- props = {},
443
- key = null;
444
- if (null != config)
445
- for (propName in (void 0 !== config.key && (key = "" + config.key), config))
446
- hasOwnProperty.call(config, propName) &&
447
- "key" !== propName &&
448
- "__self" !== propName &&
449
- "__source" !== propName &&
450
- (props[propName] = config[propName]);
451
- var childrenLength = arguments.length - 2;
452
- if (1 === childrenLength) props.children = children;
453
- else if (1 < childrenLength) {
454
- for (var childArray = Array(childrenLength), i = 0; i < childrenLength; i++)
455
- childArray[i] = arguments[i + 2];
456
- props.children = childArray;
162
+ exports.preload = function (href, options) {
163
+ if (
164
+ "string" === typeof href &&
165
+ "object" === typeof options &&
166
+ null !== options &&
167
+ "string" === typeof options.as
168
+ ) {
169
+ var as = options.as,
170
+ crossOrigin = getCrossOriginStringAs(as, options.crossOrigin);
171
+ Internals.d.L(href, as, {
172
+ crossOrigin: crossOrigin,
173
+ integrity:
174
+ "string" === typeof options.integrity ? options.integrity : void 0,
175
+ nonce: "string" === typeof options.nonce ? options.nonce : void 0,
176
+ type: "string" === typeof options.type ? options.type : void 0,
177
+ fetchPriority:
178
+ "string" === typeof options.fetchPriority
179
+ ? options.fetchPriority
180
+ : void 0,
181
+ referrerPolicy:
182
+ "string" === typeof options.referrerPolicy
183
+ ? options.referrerPolicy
184
+ : void 0,
185
+ imageSrcSet:
186
+ "string" === typeof options.imageSrcSet ? options.imageSrcSet : void 0,
187
+ imageSizes:
188
+ "string" === typeof options.imageSizes ? options.imageSizes : void 0,
189
+ media: "string" === typeof options.media ? options.media : void 0
190
+ });
457
191
  }
458
- if (type && type.defaultProps)
459
- for (propName in ((childrenLength = type.defaultProps), childrenLength))
460
- void 0 === props[propName] &&
461
- (props[propName] = childrenLength[propName]);
462
- return ReactElement(type, key, void 0, void 0, null, props);
463
192
  };
464
- exports.createRef = function () {
465
- return { current: null };
193
+ exports.preloadModule = function (href, options) {
194
+ if ("string" === typeof href)
195
+ if (options) {
196
+ var crossOrigin = getCrossOriginStringAs(options.as, options.crossOrigin);
197
+ Internals.d.m(href, {
198
+ as:
199
+ "string" === typeof options.as && "script" !== options.as
200
+ ? options.as
201
+ : void 0,
202
+ crossOrigin: crossOrigin,
203
+ integrity:
204
+ "string" === typeof options.integrity ? options.integrity : void 0
205
+ });
206
+ } else Internals.d.m(href);
466
207
  };
467
- exports.forwardRef = function (render) {
468
- return { $$typeof: REACT_FORWARD_REF_TYPE, render: render };
208
+ exports.requestFormReset = function (form) {
209
+ Internals.d.r(form);
469
210
  };
470
- exports.isValidElement = isValidElement;
471
- exports.lazy = function (ctor) {
472
- return {
473
- $$typeof: REACT_LAZY_TYPE,
474
- _payload: { _status: -1, _result: ctor },
475
- _init: lazyInitializer
476
- };
211
+ exports.unstable_batchedUpdates = function (fn, a) {
212
+ return fn(a);
477
213
  };
478
- exports.memo = function (type, compare) {
479
- return {
480
- $$typeof: REACT_MEMO_TYPE,
481
- type: type,
482
- compare: void 0 === compare ? null : compare
483
- };
214
+ exports.useFormState = function (action, initialState, permalink) {
215
+ return ReactSharedInternals.H.useFormState(action, initialState, permalink);
484
216
  };
485
- exports.startTransition = function (scope) {
486
- var prevTransition = ReactSharedInternals.T,
487
- currentTransition = {};
488
- ReactSharedInternals.T = currentTransition;
217
+ exports.useFormStatus = function () {
218
+ return ReactSharedInternals.H.useHostTransitionStatus();
219
+ };
220
+ exports.version = "19.1.1";
221
+
222
+
223
+ /***/ }),
224
+
225
+ /***/ 67:
226
+ /*!*********************************************************************!*\
227
+ !*** ./node_modules/.pnpm/react@19.1.1/node_modules/react/index.js ***!
228
+ \*********************************************************************/
229
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
230
+
231
+
232
+
233
+ if (true) {
234
+ module.exports = __webpack_require__(/*! ./cjs/react.production.js */ 648);
235
+ } else // removed by dead control flow
236
+ {}
237
+
238
+
239
+ /***/ }),
240
+
241
+ /***/ 140:
242
+ /*!*******************************************************************************************!*\
243
+ !*** ./node_modules/.pnpm/react-dom@19.1.1_react@19.1.1/node_modules/react-dom/client.js ***!
244
+ \*******************************************************************************************/
245
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
246
+
247
+
248
+
249
+ function checkDCE() {
250
+ /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */
251
+ if (
252
+ typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined' ||
253
+ typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE !== 'function'
254
+ ) {
255
+ return;
256
+ }
257
+ if (false) // removed by dead control flow
258
+ {}
489
259
  try {
490
- var returnValue = scope(),
491
- onStartTransitionFinish = ReactSharedInternals.S;
492
- null !== onStartTransitionFinish &&
493
- onStartTransitionFinish(currentTransition, returnValue);
494
- "object" === typeof returnValue &&
495
- null !== returnValue &&
496
- "function" === typeof returnValue.then &&
497
- returnValue.then(noop, reportGlobalError);
498
- } catch (error) {
499
- reportGlobalError(error);
500
- } finally {
501
- ReactSharedInternals.T = prevTransition;
260
+ // Verify that the code above has been dead code eliminated (DCE'd).
261
+ __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(checkDCE);
262
+ } catch (err) {
263
+ // DevTools shouldn't crash React, no matter what.
264
+ // We should still report in case we break this code.
265
+ console.error(err);
502
266
  }
503
- };
504
- exports.unstable_useCacheRefresh = function () {
505
- return ReactSharedInternals.H.useCacheRefresh();
506
- };
507
- exports.use = function (usable) {
508
- return ReactSharedInternals.H.use(usable);
509
- };
510
- exports.useActionState = function (action, initialState, permalink) {
511
- return ReactSharedInternals.H.useActionState(action, initialState, permalink);
512
- };
513
- exports.useCallback = function (callback, deps) {
514
- return ReactSharedInternals.H.useCallback(callback, deps);
515
- };
516
- exports.useContext = function (Context) {
517
- return ReactSharedInternals.H.useContext(Context);
518
- };
519
- exports.useDebugValue = function () {};
520
- exports.useDeferredValue = function (value, initialValue) {
521
- return ReactSharedInternals.H.useDeferredValue(value, initialValue);
522
- };
523
- exports.useEffect = function (create, createDeps, update) {
524
- var dispatcher = ReactSharedInternals.H;
525
- if ("function" === typeof update)
526
- throw Error(
527
- "useEffect CRUD overload is not enabled in this build of React."
528
- );
529
- return dispatcher.useEffect(create, createDeps);
530
- };
531
- exports.useId = function () {
532
- return ReactSharedInternals.H.useId();
533
- };
534
- exports.useImperativeHandle = function (ref, create, deps) {
535
- return ReactSharedInternals.H.useImperativeHandle(ref, create, deps);
536
- };
537
- exports.useInsertionEffect = function (create, deps) {
538
- return ReactSharedInternals.H.useInsertionEffect(create, deps);
539
- };
540
- exports.useLayoutEffect = function (create, deps) {
541
- return ReactSharedInternals.H.useLayoutEffect(create, deps);
542
- };
543
- exports.useMemo = function (create, deps) {
544
- return ReactSharedInternals.H.useMemo(create, deps);
545
- };
546
- exports.useOptimistic = function (passthrough, reducer) {
547
- return ReactSharedInternals.H.useOptimistic(passthrough, reducer);
548
- };
549
- exports.useReducer = function (reducer, initialArg, init) {
550
- return ReactSharedInternals.H.useReducer(reducer, initialArg, init);
551
- };
552
- exports.useRef = function (initialValue) {
553
- return ReactSharedInternals.H.useRef(initialValue);
554
- };
555
- exports.useState = function (initialState) {
556
- return ReactSharedInternals.H.useState(initialState);
557
- };
558
- exports.useSyncExternalStore = function (
559
- subscribe,
560
- getSnapshot,
561
- getServerSnapshot
562
- ) {
563
- return ReactSharedInternals.H.useSyncExternalStore(
564
- subscribe,
565
- getSnapshot,
566
- getServerSnapshot
567
- );
568
- };
569
- exports.useTransition = function () {
570
- return ReactSharedInternals.H.useTransition();
571
- };
572
- exports.version = "19.1.0";
267
+ }
268
+
269
+ if (true) {
270
+ // DCE check should happen before ReactDOM bundle executes so that
271
+ // DevTools can report bad minification during injection.
272
+ checkDCE();
273
+ module.exports = __webpack_require__(/*! ./cjs/react-dom-client.production.js */ 321);
274
+ } else // removed by dead control flow
275
+ {}
573
276
 
574
277
 
575
278
  /***/ }),
576
279
 
577
- /***/ 306:
280
+ /***/ 219:
578
281
  /*!******************************************************************************************!*\
579
- !*** ./node_modules/.pnpm/react-dom@19.1.0_react@19.1.0/node_modules/react-dom/index.js ***!
282
+ !*** ./node_modules/.pnpm/react-dom@19.1.1_react@19.1.1/node_modules/react-dom/index.js ***!
580
283
  \******************************************************************************************/
581
284
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
582
285
 
@@ -606,60 +309,32 @@ if (true) {
606
309
  // DCE check should happen before ReactDOM bundle executes so that
607
310
  // DevTools can report bad minification during injection.
608
311
  checkDCE();
609
- module.exports = __webpack_require__(/*! ./cjs/react-dom.production.js */ 964);
312
+ module.exports = __webpack_require__(/*! ./cjs/react-dom.production.js */ 19);
610
313
  } else // removed by dead control flow
611
314
  {}
612
315
 
613
316
 
614
317
  /***/ }),
615
318
 
616
- /***/ 487:
617
- /*!************************************************************************************************!*\
618
- !*** ./node_modules/.pnpm/react@19.1.0/node_modules/react/cjs/react-jsx-runtime.production.js ***!
619
- \************************************************************************************************/
620
- /***/ ((__unused_webpack_module, exports) => {
319
+ /***/ 291:
320
+ /*!***************************************************************************!*\
321
+ !*** ./node_modules/.pnpm/react@19.1.1/node_modules/react/jsx-runtime.js ***!
322
+ \***************************************************************************/
323
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
621
324
 
622
- /**
623
- * @license React
624
- * react-jsx-runtime.production.js
625
- *
626
- * Copyright (c) Meta Platforms, Inc. and affiliates.
627
- *
628
- * This source code is licensed under the MIT license found in the
629
- * LICENSE file in the root directory of this source tree.
630
- */
631
325
 
632
326
 
633
- var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
634
- REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
635
- function jsxProd(type, config, maybeKey) {
636
- var key = null;
637
- void 0 !== maybeKey && (key = "" + maybeKey);
638
- void 0 !== config.key && (key = "" + config.key);
639
- if ("key" in config) {
640
- maybeKey = {};
641
- for (var propName in config)
642
- "key" !== propName && (maybeKey[propName] = config[propName]);
643
- } else maybeKey = config;
644
- config = maybeKey.ref;
645
- return {
646
- $$typeof: REACT_ELEMENT_TYPE,
647
- type: type,
648
- key: key,
649
- ref: void 0 !== config ? config : null,
650
- props: maybeKey
651
- };
652
- }
653
- exports.Fragment = REACT_FRAGMENT_TYPE;
654
- exports.jsx = jsxProd;
655
- exports.jsxs = jsxProd;
327
+ if (true) {
328
+ module.exports = __webpack_require__(/*! ./cjs/react-jsx-runtime.production.js */ 759);
329
+ } else // removed by dead control flow
330
+ {}
656
331
 
657
332
 
658
333
  /***/ }),
659
334
 
660
- /***/ 520:
335
+ /***/ 321:
661
336
  /*!********************************************************************************************************************!*\
662
- !*** ./node_modules/.pnpm/react-dom@19.1.0_react@19.1.0/node_modules/react-dom/cjs/react-dom-client.production.js ***!
337
+ !*** ./node_modules/.pnpm/react-dom@19.1.1_react@19.1.1/node_modules/react-dom/cjs/react-dom-client.production.js ***!
663
338
  \********************************************************************************************************************/
664
339
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
665
340
 
@@ -677,9 +352,9 @@ exports.jsxs = jsxProd;
677
352
  Modernizr 3.0.0pre (Custom Build) | MIT
678
353
  */
679
354
 
680
- var Scheduler = __webpack_require__(/*! scheduler */ 64),
681
- React = __webpack_require__(/*! react */ 563),
682
- ReactDOM = __webpack_require__(/*! react-dom */ 306);
355
+ var Scheduler = __webpack_require__(/*! scheduler */ 949),
356
+ React = __webpack_require__(/*! react */ 67),
357
+ ReactDOM = __webpack_require__(/*! react-dom */ 219);
683
358
  function formatProdErrorMessage(code) {
684
359
  var url = "https://react.dev/errors/" + code;
685
360
  if (1 < arguments.length) {
@@ -15558,525 +15233,1065 @@ function getEventPriority(domEventName) {
15558
15233
  return 32;
15559
15234
  }
15560
15235
  }
15561
- var hasScheduledReplayAttempt = !1,
15562
- queuedFocus = null,
15563
- queuedDrag = null,
15564
- queuedMouse = null,
15565
- queuedPointers = new Map(),
15566
- queuedPointerCaptures = new Map(),
15567
- queuedExplicitHydrationTargets = [],
15568
- discreteReplayableEvents =
15569
- "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(
15570
- " "
15571
- );
15572
- function clearIfContinuousEvent(domEventName, nativeEvent) {
15573
- switch (domEventName) {
15574
- case "focusin":
15575
- case "focusout":
15576
- queuedFocus = null;
15577
- break;
15578
- case "dragenter":
15579
- case "dragleave":
15580
- queuedDrag = null;
15581
- break;
15582
- case "mouseover":
15583
- case "mouseout":
15584
- queuedMouse = null;
15585
- break;
15586
- case "pointerover":
15587
- case "pointerout":
15588
- queuedPointers.delete(nativeEvent.pointerId);
15589
- break;
15590
- case "gotpointercapture":
15591
- case "lostpointercapture":
15592
- queuedPointerCaptures.delete(nativeEvent.pointerId);
15593
- }
15236
+ var hasScheduledReplayAttempt = !1,
15237
+ queuedFocus = null,
15238
+ queuedDrag = null,
15239
+ queuedMouse = null,
15240
+ queuedPointers = new Map(),
15241
+ queuedPointerCaptures = new Map(),
15242
+ queuedExplicitHydrationTargets = [],
15243
+ discreteReplayableEvents =
15244
+ "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(
15245
+ " "
15246
+ );
15247
+ function clearIfContinuousEvent(domEventName, nativeEvent) {
15248
+ switch (domEventName) {
15249
+ case "focusin":
15250
+ case "focusout":
15251
+ queuedFocus = null;
15252
+ break;
15253
+ case "dragenter":
15254
+ case "dragleave":
15255
+ queuedDrag = null;
15256
+ break;
15257
+ case "mouseover":
15258
+ case "mouseout":
15259
+ queuedMouse = null;
15260
+ break;
15261
+ case "pointerover":
15262
+ case "pointerout":
15263
+ queuedPointers.delete(nativeEvent.pointerId);
15264
+ break;
15265
+ case "gotpointercapture":
15266
+ case "lostpointercapture":
15267
+ queuedPointerCaptures.delete(nativeEvent.pointerId);
15268
+ }
15269
+ }
15270
+ function accumulateOrCreateContinuousQueuedReplayableEvent(
15271
+ existingQueuedEvent,
15272
+ blockedOn,
15273
+ domEventName,
15274
+ eventSystemFlags,
15275
+ targetContainer,
15276
+ nativeEvent
15277
+ ) {
15278
+ if (
15279
+ null === existingQueuedEvent ||
15280
+ existingQueuedEvent.nativeEvent !== nativeEvent
15281
+ )
15282
+ return (
15283
+ (existingQueuedEvent = {
15284
+ blockedOn: blockedOn,
15285
+ domEventName: domEventName,
15286
+ eventSystemFlags: eventSystemFlags,
15287
+ nativeEvent: nativeEvent,
15288
+ targetContainers: [targetContainer]
15289
+ }),
15290
+ null !== blockedOn &&
15291
+ ((blockedOn = getInstanceFromNode(blockedOn)),
15292
+ null !== blockedOn && attemptContinuousHydration(blockedOn)),
15293
+ existingQueuedEvent
15294
+ );
15295
+ existingQueuedEvent.eventSystemFlags |= eventSystemFlags;
15296
+ blockedOn = existingQueuedEvent.targetContainers;
15297
+ null !== targetContainer &&
15298
+ -1 === blockedOn.indexOf(targetContainer) &&
15299
+ blockedOn.push(targetContainer);
15300
+ return existingQueuedEvent;
15301
+ }
15302
+ function queueIfContinuousEvent(
15303
+ blockedOn,
15304
+ domEventName,
15305
+ eventSystemFlags,
15306
+ targetContainer,
15307
+ nativeEvent
15308
+ ) {
15309
+ switch (domEventName) {
15310
+ case "focusin":
15311
+ return (
15312
+ (queuedFocus = accumulateOrCreateContinuousQueuedReplayableEvent(
15313
+ queuedFocus,
15314
+ blockedOn,
15315
+ domEventName,
15316
+ eventSystemFlags,
15317
+ targetContainer,
15318
+ nativeEvent
15319
+ )),
15320
+ !0
15321
+ );
15322
+ case "dragenter":
15323
+ return (
15324
+ (queuedDrag = accumulateOrCreateContinuousQueuedReplayableEvent(
15325
+ queuedDrag,
15326
+ blockedOn,
15327
+ domEventName,
15328
+ eventSystemFlags,
15329
+ targetContainer,
15330
+ nativeEvent
15331
+ )),
15332
+ !0
15333
+ );
15334
+ case "mouseover":
15335
+ return (
15336
+ (queuedMouse = accumulateOrCreateContinuousQueuedReplayableEvent(
15337
+ queuedMouse,
15338
+ blockedOn,
15339
+ domEventName,
15340
+ eventSystemFlags,
15341
+ targetContainer,
15342
+ nativeEvent
15343
+ )),
15344
+ !0
15345
+ );
15346
+ case "pointerover":
15347
+ var pointerId = nativeEvent.pointerId;
15348
+ queuedPointers.set(
15349
+ pointerId,
15350
+ accumulateOrCreateContinuousQueuedReplayableEvent(
15351
+ queuedPointers.get(pointerId) || null,
15352
+ blockedOn,
15353
+ domEventName,
15354
+ eventSystemFlags,
15355
+ targetContainer,
15356
+ nativeEvent
15357
+ )
15358
+ );
15359
+ return !0;
15360
+ case "gotpointercapture":
15361
+ return (
15362
+ (pointerId = nativeEvent.pointerId),
15363
+ queuedPointerCaptures.set(
15364
+ pointerId,
15365
+ accumulateOrCreateContinuousQueuedReplayableEvent(
15366
+ queuedPointerCaptures.get(pointerId) || null,
15367
+ blockedOn,
15368
+ domEventName,
15369
+ eventSystemFlags,
15370
+ targetContainer,
15371
+ nativeEvent
15372
+ )
15373
+ ),
15374
+ !0
15375
+ );
15376
+ }
15377
+ return !1;
15378
+ }
15379
+ function attemptExplicitHydrationTarget(queuedTarget) {
15380
+ var targetInst = getClosestInstanceFromNode(queuedTarget.target);
15381
+ if (null !== targetInst) {
15382
+ var nearestMounted = getNearestMountedFiber(targetInst);
15383
+ if (null !== nearestMounted)
15384
+ if (((targetInst = nearestMounted.tag), 13 === targetInst)) {
15385
+ if (
15386
+ ((targetInst = getSuspenseInstanceFromFiber(nearestMounted)),
15387
+ null !== targetInst)
15388
+ ) {
15389
+ queuedTarget.blockedOn = targetInst;
15390
+ runWithPriority(queuedTarget.priority, function () {
15391
+ if (13 === nearestMounted.tag) {
15392
+ var lane = requestUpdateLane();
15393
+ lane = getBumpedLaneForHydrationByLane(lane);
15394
+ var root = enqueueConcurrentRenderForLane(nearestMounted, lane);
15395
+ null !== root &&
15396
+ scheduleUpdateOnFiber(root, nearestMounted, lane);
15397
+ markRetryLaneIfNotHydrated(nearestMounted, lane);
15398
+ }
15399
+ });
15400
+ return;
15401
+ }
15402
+ } else if (
15403
+ 3 === targetInst &&
15404
+ nearestMounted.stateNode.current.memoizedState.isDehydrated
15405
+ ) {
15406
+ queuedTarget.blockedOn =
15407
+ 3 === nearestMounted.tag
15408
+ ? nearestMounted.stateNode.containerInfo
15409
+ : null;
15410
+ return;
15411
+ }
15412
+ }
15413
+ queuedTarget.blockedOn = null;
15414
+ }
15415
+ function attemptReplayContinuousQueuedEvent(queuedEvent) {
15416
+ if (null !== queuedEvent.blockedOn) return !1;
15417
+ for (
15418
+ var targetContainers = queuedEvent.targetContainers;
15419
+ 0 < targetContainers.length;
15420
+
15421
+ ) {
15422
+ var nextBlockedOn = findInstanceBlockingEvent(queuedEvent.nativeEvent);
15423
+ if (null === nextBlockedOn) {
15424
+ nextBlockedOn = queuedEvent.nativeEvent;
15425
+ var nativeEventClone = new nextBlockedOn.constructor(
15426
+ nextBlockedOn.type,
15427
+ nextBlockedOn
15428
+ );
15429
+ currentReplayingEvent = nativeEventClone;
15430
+ nextBlockedOn.target.dispatchEvent(nativeEventClone);
15431
+ currentReplayingEvent = null;
15432
+ } else
15433
+ return (
15434
+ (targetContainers = getInstanceFromNode(nextBlockedOn)),
15435
+ null !== targetContainers &&
15436
+ attemptContinuousHydration(targetContainers),
15437
+ (queuedEvent.blockedOn = nextBlockedOn),
15438
+ !1
15439
+ );
15440
+ targetContainers.shift();
15441
+ }
15442
+ return !0;
15443
+ }
15444
+ function attemptReplayContinuousQueuedEventInMap(queuedEvent, key, map) {
15445
+ attemptReplayContinuousQueuedEvent(queuedEvent) && map.delete(key);
15446
+ }
15447
+ function replayUnblockedEvents() {
15448
+ hasScheduledReplayAttempt = !1;
15449
+ null !== queuedFocus &&
15450
+ attemptReplayContinuousQueuedEvent(queuedFocus) &&
15451
+ (queuedFocus = null);
15452
+ null !== queuedDrag &&
15453
+ attemptReplayContinuousQueuedEvent(queuedDrag) &&
15454
+ (queuedDrag = null);
15455
+ null !== queuedMouse &&
15456
+ attemptReplayContinuousQueuedEvent(queuedMouse) &&
15457
+ (queuedMouse = null);
15458
+ queuedPointers.forEach(attemptReplayContinuousQueuedEventInMap);
15459
+ queuedPointerCaptures.forEach(attemptReplayContinuousQueuedEventInMap);
15460
+ }
15461
+ function scheduleCallbackIfUnblocked(queuedEvent, unblocked) {
15462
+ queuedEvent.blockedOn === unblocked &&
15463
+ ((queuedEvent.blockedOn = null),
15464
+ hasScheduledReplayAttempt ||
15465
+ ((hasScheduledReplayAttempt = !0),
15466
+ Scheduler.unstable_scheduleCallback(
15467
+ Scheduler.unstable_NormalPriority,
15468
+ replayUnblockedEvents
15469
+ )));
15470
+ }
15471
+ var lastScheduledReplayQueue = null;
15472
+ function scheduleReplayQueueIfNeeded(formReplayingQueue) {
15473
+ lastScheduledReplayQueue !== formReplayingQueue &&
15474
+ ((lastScheduledReplayQueue = formReplayingQueue),
15475
+ Scheduler.unstable_scheduleCallback(
15476
+ Scheduler.unstable_NormalPriority,
15477
+ function () {
15478
+ lastScheduledReplayQueue === formReplayingQueue &&
15479
+ (lastScheduledReplayQueue = null);
15480
+ for (var i = 0; i < formReplayingQueue.length; i += 3) {
15481
+ var form = formReplayingQueue[i],
15482
+ submitterOrAction = formReplayingQueue[i + 1],
15483
+ formData = formReplayingQueue[i + 2];
15484
+ if ("function" !== typeof submitterOrAction)
15485
+ if (null === findInstanceBlockingTarget(submitterOrAction || form))
15486
+ continue;
15487
+ else break;
15488
+ var formInst = getInstanceFromNode(form);
15489
+ null !== formInst &&
15490
+ (formReplayingQueue.splice(i, 3),
15491
+ (i -= 3),
15492
+ startHostTransition(
15493
+ formInst,
15494
+ {
15495
+ pending: !0,
15496
+ data: formData,
15497
+ method: form.method,
15498
+ action: submitterOrAction
15499
+ },
15500
+ submitterOrAction,
15501
+ formData
15502
+ ));
15503
+ }
15504
+ }
15505
+ ));
15506
+ }
15507
+ function retryIfBlockedOn(unblocked) {
15508
+ function unblock(queuedEvent) {
15509
+ return scheduleCallbackIfUnblocked(queuedEvent, unblocked);
15510
+ }
15511
+ null !== queuedFocus && scheduleCallbackIfUnblocked(queuedFocus, unblocked);
15512
+ null !== queuedDrag && scheduleCallbackIfUnblocked(queuedDrag, unblocked);
15513
+ null !== queuedMouse && scheduleCallbackIfUnblocked(queuedMouse, unblocked);
15514
+ queuedPointers.forEach(unblock);
15515
+ queuedPointerCaptures.forEach(unblock);
15516
+ for (var i = 0; i < queuedExplicitHydrationTargets.length; i++) {
15517
+ var queuedTarget = queuedExplicitHydrationTargets[i];
15518
+ queuedTarget.blockedOn === unblocked && (queuedTarget.blockedOn = null);
15519
+ }
15520
+ for (
15521
+ ;
15522
+ 0 < queuedExplicitHydrationTargets.length &&
15523
+ ((i = queuedExplicitHydrationTargets[0]), null === i.blockedOn);
15524
+
15525
+ )
15526
+ attemptExplicitHydrationTarget(i),
15527
+ null === i.blockedOn && queuedExplicitHydrationTargets.shift();
15528
+ i = (unblocked.ownerDocument || unblocked).$$reactFormReplay;
15529
+ if (null != i)
15530
+ for (queuedTarget = 0; queuedTarget < i.length; queuedTarget += 3) {
15531
+ var form = i[queuedTarget],
15532
+ submitterOrAction = i[queuedTarget + 1],
15533
+ formProps = form[internalPropsKey] || null;
15534
+ if ("function" === typeof submitterOrAction)
15535
+ formProps || scheduleReplayQueueIfNeeded(i);
15536
+ else if (formProps) {
15537
+ var action = null;
15538
+ if (submitterOrAction && submitterOrAction.hasAttribute("formAction"))
15539
+ if (
15540
+ ((form = submitterOrAction),
15541
+ (formProps = submitterOrAction[internalPropsKey] || null))
15542
+ )
15543
+ action = formProps.formAction;
15544
+ else {
15545
+ if (null !== findInstanceBlockingTarget(form)) continue;
15546
+ }
15547
+ else action = formProps.action;
15548
+ "function" === typeof action
15549
+ ? (i[queuedTarget + 1] = action)
15550
+ : (i.splice(queuedTarget, 3), (queuedTarget -= 3));
15551
+ scheduleReplayQueueIfNeeded(i);
15552
+ }
15553
+ }
15554
+ }
15555
+ function ReactDOMRoot(internalRoot) {
15556
+ this._internalRoot = internalRoot;
15557
+ }
15558
+ ReactDOMHydrationRoot.prototype.render = ReactDOMRoot.prototype.render =
15559
+ function (children) {
15560
+ var root = this._internalRoot;
15561
+ if (null === root) throw Error(formatProdErrorMessage(409));
15562
+ var current = root.current,
15563
+ lane = requestUpdateLane();
15564
+ updateContainerImpl(current, lane, children, root, null, null);
15565
+ };
15566
+ ReactDOMHydrationRoot.prototype.unmount = ReactDOMRoot.prototype.unmount =
15567
+ function () {
15568
+ var root = this._internalRoot;
15569
+ if (null !== root) {
15570
+ this._internalRoot = null;
15571
+ var container = root.containerInfo;
15572
+ updateContainerImpl(root.current, 2, null, root, null, null);
15573
+ flushSyncWork$1();
15574
+ container[internalContainerInstanceKey] = null;
15575
+ }
15576
+ };
15577
+ function ReactDOMHydrationRoot(internalRoot) {
15578
+ this._internalRoot = internalRoot;
15579
+ }
15580
+ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
15581
+ if (target) {
15582
+ var updatePriority = resolveUpdatePriority();
15583
+ target = { blockedOn: null, target: target, priority: updatePriority };
15584
+ for (
15585
+ var i = 0;
15586
+ i < queuedExplicitHydrationTargets.length &&
15587
+ 0 !== updatePriority &&
15588
+ updatePriority < queuedExplicitHydrationTargets[i].priority;
15589
+ i++
15590
+ );
15591
+ queuedExplicitHydrationTargets.splice(i, 0, target);
15592
+ 0 === i && attemptExplicitHydrationTarget(target);
15593
+ }
15594
+ };
15595
+ var isomorphicReactPackageVersion$jscomp$inline_1785 = React.version;
15596
+ if (
15597
+ "19.1.1" !==
15598
+ isomorphicReactPackageVersion$jscomp$inline_1785
15599
+ )
15600
+ throw Error(
15601
+ formatProdErrorMessage(
15602
+ 527,
15603
+ isomorphicReactPackageVersion$jscomp$inline_1785,
15604
+ "19.1.1"
15605
+ )
15606
+ );
15607
+ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
15608
+ var fiber = componentOrElement._reactInternals;
15609
+ if (void 0 === fiber) {
15610
+ if ("function" === typeof componentOrElement.render)
15611
+ throw Error(formatProdErrorMessage(188));
15612
+ componentOrElement = Object.keys(componentOrElement).join(",");
15613
+ throw Error(formatProdErrorMessage(268, componentOrElement));
15614
+ }
15615
+ componentOrElement = findCurrentFiberUsingSlowPath(fiber);
15616
+ componentOrElement =
15617
+ null !== componentOrElement
15618
+ ? findCurrentHostFiberImpl(componentOrElement)
15619
+ : null;
15620
+ componentOrElement =
15621
+ null === componentOrElement ? null : componentOrElement.stateNode;
15622
+ return componentOrElement;
15623
+ };
15624
+ var internals$jscomp$inline_2256 = {
15625
+ bundleType: 0,
15626
+ version: "19.1.1",
15627
+ rendererPackageName: "react-dom",
15628
+ currentDispatcherRef: ReactSharedInternals,
15629
+ reconcilerVersion: "19.1.1"
15630
+ };
15631
+ if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
15632
+ var hook$jscomp$inline_2257 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
15633
+ if (
15634
+ !hook$jscomp$inline_2257.isDisabled &&
15635
+ hook$jscomp$inline_2257.supportsFiber
15636
+ )
15637
+ try {
15638
+ (rendererID = hook$jscomp$inline_2257.inject(
15639
+ internals$jscomp$inline_2256
15640
+ )),
15641
+ (injectedHook = hook$jscomp$inline_2257);
15642
+ } catch (err) {}
15643
+ }
15644
+ exports.createRoot = function (container, options) {
15645
+ if (!isValidContainer(container)) throw Error(formatProdErrorMessage(299));
15646
+ var isStrictMode = !1,
15647
+ identifierPrefix = "",
15648
+ onUncaughtError = defaultOnUncaughtError,
15649
+ onCaughtError = defaultOnCaughtError,
15650
+ onRecoverableError = defaultOnRecoverableError,
15651
+ transitionCallbacks = null;
15652
+ null !== options &&
15653
+ void 0 !== options &&
15654
+ (!0 === options.unstable_strictMode && (isStrictMode = !0),
15655
+ void 0 !== options.identifierPrefix &&
15656
+ (identifierPrefix = options.identifierPrefix),
15657
+ void 0 !== options.onUncaughtError &&
15658
+ (onUncaughtError = options.onUncaughtError),
15659
+ void 0 !== options.onCaughtError && (onCaughtError = options.onCaughtError),
15660
+ void 0 !== options.onRecoverableError &&
15661
+ (onRecoverableError = options.onRecoverableError),
15662
+ void 0 !== options.unstable_transitionCallbacks &&
15663
+ (transitionCallbacks = options.unstable_transitionCallbacks));
15664
+ options = createFiberRoot(
15665
+ container,
15666
+ 1,
15667
+ !1,
15668
+ null,
15669
+ null,
15670
+ isStrictMode,
15671
+ identifierPrefix,
15672
+ onUncaughtError,
15673
+ onCaughtError,
15674
+ onRecoverableError,
15675
+ transitionCallbacks,
15676
+ null
15677
+ );
15678
+ container[internalContainerInstanceKey] = options.current;
15679
+ listenToAllSupportedEvents(container);
15680
+ return new ReactDOMRoot(options);
15681
+ };
15682
+ exports.hydrateRoot = function (container, initialChildren, options) {
15683
+ if (!isValidContainer(container)) throw Error(formatProdErrorMessage(299));
15684
+ var isStrictMode = !1,
15685
+ identifierPrefix = "",
15686
+ onUncaughtError = defaultOnUncaughtError,
15687
+ onCaughtError = defaultOnCaughtError,
15688
+ onRecoverableError = defaultOnRecoverableError,
15689
+ transitionCallbacks = null,
15690
+ formState = null;
15691
+ null !== options &&
15692
+ void 0 !== options &&
15693
+ (!0 === options.unstable_strictMode && (isStrictMode = !0),
15694
+ void 0 !== options.identifierPrefix &&
15695
+ (identifierPrefix = options.identifierPrefix),
15696
+ void 0 !== options.onUncaughtError &&
15697
+ (onUncaughtError = options.onUncaughtError),
15698
+ void 0 !== options.onCaughtError && (onCaughtError = options.onCaughtError),
15699
+ void 0 !== options.onRecoverableError &&
15700
+ (onRecoverableError = options.onRecoverableError),
15701
+ void 0 !== options.unstable_transitionCallbacks &&
15702
+ (transitionCallbacks = options.unstable_transitionCallbacks),
15703
+ void 0 !== options.formState && (formState = options.formState));
15704
+ initialChildren = createFiberRoot(
15705
+ container,
15706
+ 1,
15707
+ !0,
15708
+ initialChildren,
15709
+ null != options ? options : null,
15710
+ isStrictMode,
15711
+ identifierPrefix,
15712
+ onUncaughtError,
15713
+ onCaughtError,
15714
+ onRecoverableError,
15715
+ transitionCallbacks,
15716
+ formState
15717
+ );
15718
+ initialChildren.context = getContextForSubtree(null);
15719
+ options = initialChildren.current;
15720
+ isStrictMode = requestUpdateLane();
15721
+ isStrictMode = getBumpedLaneForHydrationByLane(isStrictMode);
15722
+ identifierPrefix = createUpdate(isStrictMode);
15723
+ identifierPrefix.callback = null;
15724
+ enqueueUpdate(options, identifierPrefix, isStrictMode);
15725
+ options = isStrictMode;
15726
+ initialChildren.current.lanes = options;
15727
+ markRootUpdated$1(initialChildren, options);
15728
+ ensureRootIsScheduled(initialChildren);
15729
+ container[internalContainerInstanceKey] = initialChildren.current;
15730
+ listenToAllSupportedEvents(container);
15731
+ return new ReactDOMHydrationRoot(initialChildren);
15732
+ };
15733
+ exports.version = "19.1.1";
15734
+
15735
+
15736
+ /***/ }),
15737
+
15738
+ /***/ 648:
15739
+ /*!************************************************************************************!*\
15740
+ !*** ./node_modules/.pnpm/react@19.1.1/node_modules/react/cjs/react.production.js ***!
15741
+ \************************************************************************************/
15742
+ /***/ ((__unused_webpack_module, exports) => {
15743
+
15744
+ /**
15745
+ * @license React
15746
+ * react.production.js
15747
+ *
15748
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
15749
+ *
15750
+ * This source code is licensed under the MIT license found in the
15751
+ * LICENSE file in the root directory of this source tree.
15752
+ */
15753
+
15754
+
15755
+ var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
15756
+ REACT_PORTAL_TYPE = Symbol.for("react.portal"),
15757
+ REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
15758
+ REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
15759
+ REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
15760
+ REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
15761
+ REACT_CONTEXT_TYPE = Symbol.for("react.context"),
15762
+ REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
15763
+ REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"),
15764
+ REACT_MEMO_TYPE = Symbol.for("react.memo"),
15765
+ REACT_LAZY_TYPE = Symbol.for("react.lazy"),
15766
+ MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
15767
+ function getIteratorFn(maybeIterable) {
15768
+ if (null === maybeIterable || "object" !== typeof maybeIterable) return null;
15769
+ maybeIterable =
15770
+ (MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL]) ||
15771
+ maybeIterable["@@iterator"];
15772
+ return "function" === typeof maybeIterable ? maybeIterable : null;
15773
+ }
15774
+ var ReactNoopUpdateQueue = {
15775
+ isMounted: function () {
15776
+ return !1;
15777
+ },
15778
+ enqueueForceUpdate: function () {},
15779
+ enqueueReplaceState: function () {},
15780
+ enqueueSetState: function () {}
15781
+ },
15782
+ assign = Object.assign,
15783
+ emptyObject = {};
15784
+ function Component(props, context, updater) {
15785
+ this.props = props;
15786
+ this.context = context;
15787
+ this.refs = emptyObject;
15788
+ this.updater = updater || ReactNoopUpdateQueue;
15594
15789
  }
15595
- function accumulateOrCreateContinuousQueuedReplayableEvent(
15596
- existingQueuedEvent,
15597
- blockedOn,
15598
- domEventName,
15599
- eventSystemFlags,
15600
- targetContainer,
15601
- nativeEvent
15602
- ) {
15790
+ Component.prototype.isReactComponent = {};
15791
+ Component.prototype.setState = function (partialState, callback) {
15603
15792
  if (
15604
- null === existingQueuedEvent ||
15605
- existingQueuedEvent.nativeEvent !== nativeEvent
15793
+ "object" !== typeof partialState &&
15794
+ "function" !== typeof partialState &&
15795
+ null != partialState
15606
15796
  )
15607
- return (
15608
- (existingQueuedEvent = {
15609
- blockedOn: blockedOn,
15610
- domEventName: domEventName,
15611
- eventSystemFlags: eventSystemFlags,
15612
- nativeEvent: nativeEvent,
15613
- targetContainers: [targetContainer]
15614
- }),
15615
- null !== blockedOn &&
15616
- ((blockedOn = getInstanceFromNode(blockedOn)),
15617
- null !== blockedOn && attemptContinuousHydration(blockedOn)),
15618
- existingQueuedEvent
15797
+ throw Error(
15798
+ "takes an object of state variables to update or a function which returns an object of state variables."
15619
15799
  );
15620
- existingQueuedEvent.eventSystemFlags |= eventSystemFlags;
15621
- blockedOn = existingQueuedEvent.targetContainers;
15622
- null !== targetContainer &&
15623
- -1 === blockedOn.indexOf(targetContainer) &&
15624
- blockedOn.push(targetContainer);
15625
- return existingQueuedEvent;
15800
+ this.updater.enqueueSetState(this, partialState, callback, "setState");
15801
+ };
15802
+ Component.prototype.forceUpdate = function (callback) {
15803
+ this.updater.enqueueForceUpdate(this, callback, "forceUpdate");
15804
+ };
15805
+ function ComponentDummy() {}
15806
+ ComponentDummy.prototype = Component.prototype;
15807
+ function PureComponent(props, context, updater) {
15808
+ this.props = props;
15809
+ this.context = context;
15810
+ this.refs = emptyObject;
15811
+ this.updater = updater || ReactNoopUpdateQueue;
15626
15812
  }
15627
- function queueIfContinuousEvent(
15628
- blockedOn,
15629
- domEventName,
15630
- eventSystemFlags,
15631
- targetContainer,
15632
- nativeEvent
15633
- ) {
15634
- switch (domEventName) {
15635
- case "focusin":
15636
- return (
15637
- (queuedFocus = accumulateOrCreateContinuousQueuedReplayableEvent(
15638
- queuedFocus,
15639
- blockedOn,
15640
- domEventName,
15641
- eventSystemFlags,
15642
- targetContainer,
15643
- nativeEvent
15644
- )),
15645
- !0
15646
- );
15647
- case "dragenter":
15648
- return (
15649
- (queuedDrag = accumulateOrCreateContinuousQueuedReplayableEvent(
15650
- queuedDrag,
15651
- blockedOn,
15652
- domEventName,
15653
- eventSystemFlags,
15654
- targetContainer,
15655
- nativeEvent
15656
- )),
15657
- !0
15658
- );
15659
- case "mouseover":
15660
- return (
15661
- (queuedMouse = accumulateOrCreateContinuousQueuedReplayableEvent(
15662
- queuedMouse,
15663
- blockedOn,
15664
- domEventName,
15665
- eventSystemFlags,
15666
- targetContainer,
15667
- nativeEvent
15668
- )),
15669
- !0
15670
- );
15671
- case "pointerover":
15672
- var pointerId = nativeEvent.pointerId;
15673
- queuedPointers.set(
15674
- pointerId,
15675
- accumulateOrCreateContinuousQueuedReplayableEvent(
15676
- queuedPointers.get(pointerId) || null,
15677
- blockedOn,
15678
- domEventName,
15679
- eventSystemFlags,
15680
- targetContainer,
15681
- nativeEvent
15682
- )
15683
- );
15684
- return !0;
15685
- case "gotpointercapture":
15686
- return (
15687
- (pointerId = nativeEvent.pointerId),
15688
- queuedPointerCaptures.set(
15689
- pointerId,
15690
- accumulateOrCreateContinuousQueuedReplayableEvent(
15691
- queuedPointerCaptures.get(pointerId) || null,
15692
- blockedOn,
15693
- domEventName,
15694
- eventSystemFlags,
15695
- targetContainer,
15696
- nativeEvent
15697
- )
15698
- ),
15699
- !0
15700
- );
15701
- }
15702
- return !1;
15813
+ var pureComponentPrototype = (PureComponent.prototype = new ComponentDummy());
15814
+ pureComponentPrototype.constructor = PureComponent;
15815
+ assign(pureComponentPrototype, Component.prototype);
15816
+ pureComponentPrototype.isPureReactComponent = !0;
15817
+ var isArrayImpl = Array.isArray,
15818
+ ReactSharedInternals = { H: null, A: null, T: null, S: null, V: null },
15819
+ hasOwnProperty = Object.prototype.hasOwnProperty;
15820
+ function ReactElement(type, key, self, source, owner, props) {
15821
+ self = props.ref;
15822
+ return {
15823
+ $$typeof: REACT_ELEMENT_TYPE,
15824
+ type: type,
15825
+ key: key,
15826
+ ref: void 0 !== self ? self : null,
15827
+ props: props
15828
+ };
15829
+ }
15830
+ function cloneAndReplaceKey(oldElement, newKey) {
15831
+ return ReactElement(
15832
+ oldElement.type,
15833
+ newKey,
15834
+ void 0,
15835
+ void 0,
15836
+ void 0,
15837
+ oldElement.props
15838
+ );
15839
+ }
15840
+ function isValidElement(object) {
15841
+ return (
15842
+ "object" === typeof object &&
15843
+ null !== object &&
15844
+ object.$$typeof === REACT_ELEMENT_TYPE
15845
+ );
15846
+ }
15847
+ function escape(key) {
15848
+ var escaperLookup = { "=": "=0", ":": "=2" };
15849
+ return (
15850
+ "$" +
15851
+ key.replace(/[=:]/g, function (match) {
15852
+ return escaperLookup[match];
15853
+ })
15854
+ );
15855
+ }
15856
+ var userProvidedKeyEscapeRegex = /\/+/g;
15857
+ function getElementKey(element, index) {
15858
+ return "object" === typeof element && null !== element && null != element.key
15859
+ ? escape("" + element.key)
15860
+ : index.toString(36);
15703
15861
  }
15704
- function attemptExplicitHydrationTarget(queuedTarget) {
15705
- var targetInst = getClosestInstanceFromNode(queuedTarget.target);
15706
- if (null !== targetInst) {
15707
- var nearestMounted = getNearestMountedFiber(targetInst);
15708
- if (null !== nearestMounted)
15709
- if (((targetInst = nearestMounted.tag), 13 === targetInst)) {
15710
- if (
15711
- ((targetInst = getSuspenseInstanceFromFiber(nearestMounted)),
15712
- null !== targetInst)
15713
- ) {
15714
- queuedTarget.blockedOn = targetInst;
15715
- runWithPriority(queuedTarget.priority, function () {
15716
- if (13 === nearestMounted.tag) {
15717
- var lane = requestUpdateLane();
15718
- lane = getBumpedLaneForHydrationByLane(lane);
15719
- var root = enqueueConcurrentRenderForLane(nearestMounted, lane);
15720
- null !== root &&
15721
- scheduleUpdateOnFiber(root, nearestMounted, lane);
15722
- markRetryLaneIfNotHydrated(nearestMounted, lane);
15723
- }
15724
- });
15725
- return;
15726
- }
15727
- } else if (
15728
- 3 === targetInst &&
15729
- nearestMounted.stateNode.current.memoizedState.isDehydrated
15862
+ function noop$1() {}
15863
+ function resolveThenable(thenable) {
15864
+ switch (thenable.status) {
15865
+ case "fulfilled":
15866
+ return thenable.value;
15867
+ case "rejected":
15868
+ throw thenable.reason;
15869
+ default:
15870
+ switch (
15871
+ ("string" === typeof thenable.status
15872
+ ? thenable.then(noop$1, noop$1)
15873
+ : ((thenable.status = "pending"),
15874
+ thenable.then(
15875
+ function (fulfilledValue) {
15876
+ "pending" === thenable.status &&
15877
+ ((thenable.status = "fulfilled"),
15878
+ (thenable.value = fulfilledValue));
15879
+ },
15880
+ function (error) {
15881
+ "pending" === thenable.status &&
15882
+ ((thenable.status = "rejected"), (thenable.reason = error));
15883
+ }
15884
+ )),
15885
+ thenable.status)
15730
15886
  ) {
15731
- queuedTarget.blockedOn =
15732
- 3 === nearestMounted.tag
15733
- ? nearestMounted.stateNode.containerInfo
15734
- : null;
15735
- return;
15887
+ case "fulfilled":
15888
+ return thenable.value;
15889
+ case "rejected":
15890
+ throw thenable.reason;
15736
15891
  }
15737
15892
  }
15738
- queuedTarget.blockedOn = null;
15893
+ throw thenable;
15739
15894
  }
15740
- function attemptReplayContinuousQueuedEvent(queuedEvent) {
15741
- if (null !== queuedEvent.blockedOn) return !1;
15742
- for (
15743
- var targetContainers = queuedEvent.targetContainers;
15744
- 0 < targetContainers.length;
15895
+ function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {
15896
+ var type = typeof children;
15897
+ if ("undefined" === type || "boolean" === type) children = null;
15898
+ var invokeCallback = !1;
15899
+ if (null === children) invokeCallback = !0;
15900
+ else
15901
+ switch (type) {
15902
+ case "bigint":
15903
+ case "string":
15904
+ case "number":
15905
+ invokeCallback = !0;
15906
+ break;
15907
+ case "object":
15908
+ switch (children.$$typeof) {
15909
+ case REACT_ELEMENT_TYPE:
15910
+ case REACT_PORTAL_TYPE:
15911
+ invokeCallback = !0;
15912
+ break;
15913
+ case REACT_LAZY_TYPE:
15914
+ return (
15915
+ (invokeCallback = children._init),
15916
+ mapIntoArray(
15917
+ invokeCallback(children._payload),
15918
+ array,
15919
+ escapedPrefix,
15920
+ nameSoFar,
15921
+ callback
15922
+ )
15923
+ );
15924
+ }
15925
+ }
15926
+ if (invokeCallback)
15927
+ return (
15928
+ (callback = callback(children)),
15929
+ (invokeCallback =
15930
+ "" === nameSoFar ? "." + getElementKey(children, 0) : nameSoFar),
15931
+ isArrayImpl(callback)
15932
+ ? ((escapedPrefix = ""),
15933
+ null != invokeCallback &&
15934
+ (escapedPrefix =
15935
+ invokeCallback.replace(userProvidedKeyEscapeRegex, "$&/") + "/"),
15936
+ mapIntoArray(callback, array, escapedPrefix, "", function (c) {
15937
+ return c;
15938
+ }))
15939
+ : null != callback &&
15940
+ (isValidElement(callback) &&
15941
+ (callback = cloneAndReplaceKey(
15942
+ callback,
15943
+ escapedPrefix +
15944
+ (null == callback.key ||
15945
+ (children && children.key === callback.key)
15946
+ ? ""
15947
+ : ("" + callback.key).replace(
15948
+ userProvidedKeyEscapeRegex,
15949
+ "$&/"
15950
+ ) + "/") +
15951
+ invokeCallback
15952
+ )),
15953
+ array.push(callback)),
15954
+ 1
15955
+ );
15956
+ invokeCallback = 0;
15957
+ var nextNamePrefix = "" === nameSoFar ? "." : nameSoFar + ":";
15958
+ if (isArrayImpl(children))
15959
+ for (var i = 0; i < children.length; i++)
15960
+ (nameSoFar = children[i]),
15961
+ (type = nextNamePrefix + getElementKey(nameSoFar, i)),
15962
+ (invokeCallback += mapIntoArray(
15963
+ nameSoFar,
15964
+ array,
15965
+ escapedPrefix,
15966
+ type,
15967
+ callback
15968
+ ));
15969
+ else if (((i = getIteratorFn(children)), "function" === typeof i))
15970
+ for (
15971
+ children = i.call(children), i = 0;
15972
+ !(nameSoFar = children.next()).done;
15745
15973
 
15746
- ) {
15747
- var nextBlockedOn = findInstanceBlockingEvent(queuedEvent.nativeEvent);
15748
- if (null === nextBlockedOn) {
15749
- nextBlockedOn = queuedEvent.nativeEvent;
15750
- var nativeEventClone = new nextBlockedOn.constructor(
15751
- nextBlockedOn.type,
15752
- nextBlockedOn
15753
- );
15754
- currentReplayingEvent = nativeEventClone;
15755
- nextBlockedOn.target.dispatchEvent(nativeEventClone);
15756
- currentReplayingEvent = null;
15757
- } else
15758
- return (
15759
- (targetContainers = getInstanceFromNode(nextBlockedOn)),
15760
- null !== targetContainers &&
15761
- attemptContinuousHydration(targetContainers),
15762
- (queuedEvent.blockedOn = nextBlockedOn),
15763
- !1
15974
+ )
15975
+ (nameSoFar = nameSoFar.value),
15976
+ (type = nextNamePrefix + getElementKey(nameSoFar, i++)),
15977
+ (invokeCallback += mapIntoArray(
15978
+ nameSoFar,
15979
+ array,
15980
+ escapedPrefix,
15981
+ type,
15982
+ callback
15983
+ ));
15984
+ else if ("object" === type) {
15985
+ if ("function" === typeof children.then)
15986
+ return mapIntoArray(
15987
+ resolveThenable(children),
15988
+ array,
15989
+ escapedPrefix,
15990
+ nameSoFar,
15991
+ callback
15764
15992
  );
15765
- targetContainers.shift();
15993
+ array = String(children);
15994
+ throw Error(
15995
+ "Objects are not valid as a React child (found: " +
15996
+ ("[object Object]" === array
15997
+ ? "object with keys {" + Object.keys(children).join(", ") + "}"
15998
+ : array) +
15999
+ "). If you meant to render a collection of children, use an array instead."
16000
+ );
15766
16001
  }
15767
- return !0;
15768
- }
15769
- function attemptReplayContinuousQueuedEventInMap(queuedEvent, key, map) {
15770
- attemptReplayContinuousQueuedEvent(queuedEvent) && map.delete(key);
15771
- }
15772
- function replayUnblockedEvents() {
15773
- hasScheduledReplayAttempt = !1;
15774
- null !== queuedFocus &&
15775
- attemptReplayContinuousQueuedEvent(queuedFocus) &&
15776
- (queuedFocus = null);
15777
- null !== queuedDrag &&
15778
- attemptReplayContinuousQueuedEvent(queuedDrag) &&
15779
- (queuedDrag = null);
15780
- null !== queuedMouse &&
15781
- attemptReplayContinuousQueuedEvent(queuedMouse) &&
15782
- (queuedMouse = null);
15783
- queuedPointers.forEach(attemptReplayContinuousQueuedEventInMap);
15784
- queuedPointerCaptures.forEach(attemptReplayContinuousQueuedEventInMap);
15785
- }
15786
- function scheduleCallbackIfUnblocked(queuedEvent, unblocked) {
15787
- queuedEvent.blockedOn === unblocked &&
15788
- ((queuedEvent.blockedOn = null),
15789
- hasScheduledReplayAttempt ||
15790
- ((hasScheduledReplayAttempt = !0),
15791
- Scheduler.unstable_scheduleCallback(
15792
- Scheduler.unstable_NormalPriority,
15793
- replayUnblockedEvents
15794
- )));
16002
+ return invokeCallback;
15795
16003
  }
15796
- var lastScheduledReplayQueue = null;
15797
- function scheduleReplayQueueIfNeeded(formReplayingQueue) {
15798
- lastScheduledReplayQueue !== formReplayingQueue &&
15799
- ((lastScheduledReplayQueue = formReplayingQueue),
15800
- Scheduler.unstable_scheduleCallback(
15801
- Scheduler.unstable_NormalPriority,
15802
- function () {
15803
- lastScheduledReplayQueue === formReplayingQueue &&
15804
- (lastScheduledReplayQueue = null);
15805
- for (var i = 0; i < formReplayingQueue.length; i += 3) {
15806
- var form = formReplayingQueue[i],
15807
- submitterOrAction = formReplayingQueue[i + 1],
15808
- formData = formReplayingQueue[i + 2];
15809
- if ("function" !== typeof submitterOrAction)
15810
- if (null === findInstanceBlockingTarget(submitterOrAction || form))
15811
- continue;
15812
- else break;
15813
- var formInst = getInstanceFromNode(form);
15814
- null !== formInst &&
15815
- (formReplayingQueue.splice(i, 3),
15816
- (i -= 3),
15817
- startHostTransition(
15818
- formInst,
15819
- {
15820
- pending: !0,
15821
- data: formData,
15822
- method: form.method,
15823
- action: submitterOrAction
15824
- },
15825
- submitterOrAction,
15826
- formData
15827
- ));
15828
- }
16004
+ function mapChildren(children, func, context) {
16005
+ if (null == children) return children;
16006
+ var result = [],
16007
+ count = 0;
16008
+ mapIntoArray(children, result, "", "", function (child) {
16009
+ return func.call(context, child, count++);
16010
+ });
16011
+ return result;
16012
+ }
16013
+ function lazyInitializer(payload) {
16014
+ if (-1 === payload._status) {
16015
+ var ctor = payload._result;
16016
+ ctor = ctor();
16017
+ ctor.then(
16018
+ function (moduleObject) {
16019
+ if (0 === payload._status || -1 === payload._status)
16020
+ (payload._status = 1), (payload._result = moduleObject);
16021
+ },
16022
+ function (error) {
16023
+ if (0 === payload._status || -1 === payload._status)
16024
+ (payload._status = 2), (payload._result = error);
15829
16025
  }
15830
- ));
16026
+ );
16027
+ -1 === payload._status && ((payload._status = 0), (payload._result = ctor));
16028
+ }
16029
+ if (1 === payload._status) return payload._result.default;
16030
+ throw payload._result;
15831
16031
  }
15832
- function retryIfBlockedOn(unblocked) {
15833
- function unblock(queuedEvent) {
15834
- return scheduleCallbackIfUnblocked(queuedEvent, unblocked);
16032
+ var reportGlobalError =
16033
+ "function" === typeof reportError
16034
+ ? reportError
16035
+ : function (error) {
16036
+ if (
16037
+ "object" === typeof window &&
16038
+ "function" === typeof window.ErrorEvent
16039
+ ) {
16040
+ var event = new window.ErrorEvent("error", {
16041
+ bubbles: !0,
16042
+ cancelable: !0,
16043
+ message:
16044
+ "object" === typeof error &&
16045
+ null !== error &&
16046
+ "string" === typeof error.message
16047
+ ? String(error.message)
16048
+ : String(error),
16049
+ error: error
16050
+ });
16051
+ if (!window.dispatchEvent(event)) return;
16052
+ } else if (
16053
+ "object" === typeof process &&
16054
+ "function" === typeof process.emit
16055
+ ) {
16056
+ process.emit("uncaughtException", error);
16057
+ return;
16058
+ }
16059
+ console.error(error);
16060
+ };
16061
+ function noop() {}
16062
+ exports.Children = {
16063
+ map: mapChildren,
16064
+ forEach: function (children, forEachFunc, forEachContext) {
16065
+ mapChildren(
16066
+ children,
16067
+ function () {
16068
+ forEachFunc.apply(this, arguments);
16069
+ },
16070
+ forEachContext
16071
+ );
16072
+ },
16073
+ count: function (children) {
16074
+ var n = 0;
16075
+ mapChildren(children, function () {
16076
+ n++;
16077
+ });
16078
+ return n;
16079
+ },
16080
+ toArray: function (children) {
16081
+ return (
16082
+ mapChildren(children, function (child) {
16083
+ return child;
16084
+ }) || []
16085
+ );
16086
+ },
16087
+ only: function (children) {
16088
+ if (!isValidElement(children))
16089
+ throw Error(
16090
+ "React.Children.only expected to receive a single React element child."
16091
+ );
16092
+ return children;
15835
16093
  }
15836
- null !== queuedFocus && scheduleCallbackIfUnblocked(queuedFocus, unblocked);
15837
- null !== queuedDrag && scheduleCallbackIfUnblocked(queuedDrag, unblocked);
15838
- null !== queuedMouse && scheduleCallbackIfUnblocked(queuedMouse, unblocked);
15839
- queuedPointers.forEach(unblock);
15840
- queuedPointerCaptures.forEach(unblock);
15841
- for (var i = 0; i < queuedExplicitHydrationTargets.length; i++) {
15842
- var queuedTarget = queuedExplicitHydrationTargets[i];
15843
- queuedTarget.blockedOn === unblocked && (queuedTarget.blockedOn = null);
16094
+ };
16095
+ exports.Component = Component;
16096
+ exports.Fragment = REACT_FRAGMENT_TYPE;
16097
+ exports.Profiler = REACT_PROFILER_TYPE;
16098
+ exports.PureComponent = PureComponent;
16099
+ exports.StrictMode = REACT_STRICT_MODE_TYPE;
16100
+ exports.Suspense = REACT_SUSPENSE_TYPE;
16101
+ exports.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =
16102
+ ReactSharedInternals;
16103
+ exports.__COMPILER_RUNTIME = {
16104
+ __proto__: null,
16105
+ c: function (size) {
16106
+ return ReactSharedInternals.H.useMemoCache(size);
15844
16107
  }
15845
- for (
15846
- ;
15847
- 0 < queuedExplicitHydrationTargets.length &&
15848
- ((i = queuedExplicitHydrationTargets[0]), null === i.blockedOn);
15849
-
15850
- )
15851
- attemptExplicitHydrationTarget(i),
15852
- null === i.blockedOn && queuedExplicitHydrationTargets.shift();
15853
- i = (unblocked.ownerDocument || unblocked).$$reactFormReplay;
15854
- if (null != i)
15855
- for (queuedTarget = 0; queuedTarget < i.length; queuedTarget += 3) {
15856
- var form = i[queuedTarget],
15857
- submitterOrAction = i[queuedTarget + 1],
15858
- formProps = form[internalPropsKey] || null;
15859
- if ("function" === typeof submitterOrAction)
15860
- formProps || scheduleReplayQueueIfNeeded(i);
15861
- else if (formProps) {
15862
- var action = null;
15863
- if (submitterOrAction && submitterOrAction.hasAttribute("formAction"))
15864
- if (
15865
- ((form = submitterOrAction),
15866
- (formProps = submitterOrAction[internalPropsKey] || null))
15867
- )
15868
- action = formProps.formAction;
15869
- else {
15870
- if (null !== findInstanceBlockingTarget(form)) continue;
15871
- }
15872
- else action = formProps.action;
15873
- "function" === typeof action
15874
- ? (i[queuedTarget + 1] = action)
15875
- : (i.splice(queuedTarget, 3), (queuedTarget -= 3));
15876
- scheduleReplayQueueIfNeeded(i);
15877
- }
15878
- }
15879
- }
15880
- function ReactDOMRoot(internalRoot) {
15881
- this._internalRoot = internalRoot;
15882
- }
15883
- ReactDOMHydrationRoot.prototype.render = ReactDOMRoot.prototype.render =
15884
- function (children) {
15885
- var root = this._internalRoot;
15886
- if (null === root) throw Error(formatProdErrorMessage(409));
15887
- var current = root.current,
15888
- lane = requestUpdateLane();
15889
- updateContainerImpl(current, lane, children, root, null, null);
15890
- };
15891
- ReactDOMHydrationRoot.prototype.unmount = ReactDOMRoot.prototype.unmount =
15892
- function () {
15893
- var root = this._internalRoot;
15894
- if (null !== root) {
15895
- this._internalRoot = null;
15896
- var container = root.containerInfo;
15897
- updateContainerImpl(root.current, 2, null, root, null, null);
15898
- flushSyncWork$1();
15899
- container[internalContainerInstanceKey] = null;
15900
- }
16108
+ };
16109
+ exports.cache = function (fn) {
16110
+ return function () {
16111
+ return fn.apply(null, arguments);
15901
16112
  };
15902
- function ReactDOMHydrationRoot(internalRoot) {
15903
- this._internalRoot = internalRoot;
15904
- }
15905
- ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
15906
- if (target) {
15907
- var updatePriority = resolveUpdatePriority();
15908
- target = { blockedOn: null, target: target, priority: updatePriority };
15909
- for (
15910
- var i = 0;
15911
- i < queuedExplicitHydrationTargets.length &&
15912
- 0 !== updatePriority &&
15913
- updatePriority < queuedExplicitHydrationTargets[i].priority;
15914
- i++
16113
+ };
16114
+ exports.cloneElement = function (element, config, children) {
16115
+ if (null === element || void 0 === element)
16116
+ throw Error(
16117
+ "The argument must be a React element, but you passed " + element + "."
15915
16118
  );
15916
- queuedExplicitHydrationTargets.splice(i, 0, target);
15917
- 0 === i && attemptExplicitHydrationTarget(target);
16119
+ var props = assign({}, element.props),
16120
+ key = element.key,
16121
+ owner = void 0;
16122
+ if (null != config)
16123
+ for (propName in (void 0 !== config.ref && (owner = void 0),
16124
+ void 0 !== config.key && (key = "" + config.key),
16125
+ config))
16126
+ !hasOwnProperty.call(config, propName) ||
16127
+ "key" === propName ||
16128
+ "__self" === propName ||
16129
+ "__source" === propName ||
16130
+ ("ref" === propName && void 0 === config.ref) ||
16131
+ (props[propName] = config[propName]);
16132
+ var propName = arguments.length - 2;
16133
+ if (1 === propName) props.children = children;
16134
+ else if (1 < propName) {
16135
+ for (var childArray = Array(propName), i = 0; i < propName; i++)
16136
+ childArray[i] = arguments[i + 2];
16137
+ props.children = childArray;
16138
+ }
16139
+ return ReactElement(element.type, key, void 0, void 0, owner, props);
16140
+ };
16141
+ exports.createContext = function (defaultValue) {
16142
+ defaultValue = {
16143
+ $$typeof: REACT_CONTEXT_TYPE,
16144
+ _currentValue: defaultValue,
16145
+ _currentValue2: defaultValue,
16146
+ _threadCount: 0,
16147
+ Provider: null,
16148
+ Consumer: null
16149
+ };
16150
+ defaultValue.Provider = defaultValue;
16151
+ defaultValue.Consumer = {
16152
+ $$typeof: REACT_CONSUMER_TYPE,
16153
+ _context: defaultValue
16154
+ };
16155
+ return defaultValue;
16156
+ };
16157
+ exports.createElement = function (type, config, children) {
16158
+ var propName,
16159
+ props = {},
16160
+ key = null;
16161
+ if (null != config)
16162
+ for (propName in (void 0 !== config.key && (key = "" + config.key), config))
16163
+ hasOwnProperty.call(config, propName) &&
16164
+ "key" !== propName &&
16165
+ "__self" !== propName &&
16166
+ "__source" !== propName &&
16167
+ (props[propName] = config[propName]);
16168
+ var childrenLength = arguments.length - 2;
16169
+ if (1 === childrenLength) props.children = children;
16170
+ else if (1 < childrenLength) {
16171
+ for (var childArray = Array(childrenLength), i = 0; i < childrenLength; i++)
16172
+ childArray[i] = arguments[i + 2];
16173
+ props.children = childArray;
15918
16174
  }
16175
+ if (type && type.defaultProps)
16176
+ for (propName in ((childrenLength = type.defaultProps), childrenLength))
16177
+ void 0 === props[propName] &&
16178
+ (props[propName] = childrenLength[propName]);
16179
+ return ReactElement(type, key, void 0, void 0, null, props);
16180
+ };
16181
+ exports.createRef = function () {
16182
+ return { current: null };
16183
+ };
16184
+ exports.forwardRef = function (render) {
16185
+ return { $$typeof: REACT_FORWARD_REF_TYPE, render: render };
15919
16186
  };
15920
- var isomorphicReactPackageVersion$jscomp$inline_1785 = React.version;
15921
- if (
15922
- "19.1.0" !==
15923
- isomorphicReactPackageVersion$jscomp$inline_1785
15924
- )
15925
- throw Error(
15926
- formatProdErrorMessage(
15927
- 527,
15928
- isomorphicReactPackageVersion$jscomp$inline_1785,
15929
- "19.1.0"
15930
- )
15931
- );
15932
- ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
15933
- var fiber = componentOrElement._reactInternals;
15934
- if (void 0 === fiber) {
15935
- if ("function" === typeof componentOrElement.render)
15936
- throw Error(formatProdErrorMessage(188));
15937
- componentOrElement = Object.keys(componentOrElement).join(",");
15938
- throw Error(formatProdErrorMessage(268, componentOrElement));
16187
+ exports.isValidElement = isValidElement;
16188
+ exports.lazy = function (ctor) {
16189
+ return {
16190
+ $$typeof: REACT_LAZY_TYPE,
16191
+ _payload: { _status: -1, _result: ctor },
16192
+ _init: lazyInitializer
16193
+ };
16194
+ };
16195
+ exports.memo = function (type, compare) {
16196
+ return {
16197
+ $$typeof: REACT_MEMO_TYPE,
16198
+ type: type,
16199
+ compare: void 0 === compare ? null : compare
16200
+ };
16201
+ };
16202
+ exports.startTransition = function (scope) {
16203
+ var prevTransition = ReactSharedInternals.T,
16204
+ currentTransition = {};
16205
+ ReactSharedInternals.T = currentTransition;
16206
+ try {
16207
+ var returnValue = scope(),
16208
+ onStartTransitionFinish = ReactSharedInternals.S;
16209
+ null !== onStartTransitionFinish &&
16210
+ onStartTransitionFinish(currentTransition, returnValue);
16211
+ "object" === typeof returnValue &&
16212
+ null !== returnValue &&
16213
+ "function" === typeof returnValue.then &&
16214
+ returnValue.then(noop, reportGlobalError);
16215
+ } catch (error) {
16216
+ reportGlobalError(error);
16217
+ } finally {
16218
+ ReactSharedInternals.T = prevTransition;
15939
16219
  }
15940
- componentOrElement = findCurrentFiberUsingSlowPath(fiber);
15941
- componentOrElement =
15942
- null !== componentOrElement
15943
- ? findCurrentHostFiberImpl(componentOrElement)
15944
- : null;
15945
- componentOrElement =
15946
- null === componentOrElement ? null : componentOrElement.stateNode;
15947
- return componentOrElement;
15948
16220
  };
15949
- var internals$jscomp$inline_2256 = {
15950
- bundleType: 0,
15951
- version: "19.1.0",
15952
- rendererPackageName: "react-dom",
15953
- currentDispatcherRef: ReactSharedInternals,
15954
- reconcilerVersion: "19.1.0"
16221
+ exports.unstable_useCacheRefresh = function () {
16222
+ return ReactSharedInternals.H.useCacheRefresh();
15955
16223
  };
15956
- if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
15957
- var hook$jscomp$inline_2257 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
15958
- if (
15959
- !hook$jscomp$inline_2257.isDisabled &&
15960
- hook$jscomp$inline_2257.supportsFiber
15961
- )
15962
- try {
15963
- (rendererID = hook$jscomp$inline_2257.inject(
15964
- internals$jscomp$inline_2256
15965
- )),
15966
- (injectedHook = hook$jscomp$inline_2257);
15967
- } catch (err) {}
15968
- }
15969
- exports.createRoot = function (container, options) {
15970
- if (!isValidContainer(container)) throw Error(formatProdErrorMessage(299));
15971
- var isStrictMode = !1,
15972
- identifierPrefix = "",
15973
- onUncaughtError = defaultOnUncaughtError,
15974
- onCaughtError = defaultOnCaughtError,
15975
- onRecoverableError = defaultOnRecoverableError,
15976
- transitionCallbacks = null;
15977
- null !== options &&
15978
- void 0 !== options &&
15979
- (!0 === options.unstable_strictMode && (isStrictMode = !0),
15980
- void 0 !== options.identifierPrefix &&
15981
- (identifierPrefix = options.identifierPrefix),
15982
- void 0 !== options.onUncaughtError &&
15983
- (onUncaughtError = options.onUncaughtError),
15984
- void 0 !== options.onCaughtError && (onCaughtError = options.onCaughtError),
15985
- void 0 !== options.onRecoverableError &&
15986
- (onRecoverableError = options.onRecoverableError),
15987
- void 0 !== options.unstable_transitionCallbacks &&
15988
- (transitionCallbacks = options.unstable_transitionCallbacks));
15989
- options = createFiberRoot(
15990
- container,
15991
- 1,
15992
- !1,
15993
- null,
15994
- null,
15995
- isStrictMode,
15996
- identifierPrefix,
15997
- onUncaughtError,
15998
- onCaughtError,
15999
- onRecoverableError,
16000
- transitionCallbacks,
16001
- null
16002
- );
16003
- container[internalContainerInstanceKey] = options.current;
16004
- listenToAllSupportedEvents(container);
16005
- return new ReactDOMRoot(options);
16224
+ exports.use = function (usable) {
16225
+ return ReactSharedInternals.H.use(usable);
16006
16226
  };
16007
- exports.hydrateRoot = function (container, initialChildren, options) {
16008
- if (!isValidContainer(container)) throw Error(formatProdErrorMessage(299));
16009
- var isStrictMode = !1,
16010
- identifierPrefix = "",
16011
- onUncaughtError = defaultOnUncaughtError,
16012
- onCaughtError = defaultOnCaughtError,
16013
- onRecoverableError = defaultOnRecoverableError,
16014
- transitionCallbacks = null,
16015
- formState = null;
16016
- null !== options &&
16017
- void 0 !== options &&
16018
- (!0 === options.unstable_strictMode && (isStrictMode = !0),
16019
- void 0 !== options.identifierPrefix &&
16020
- (identifierPrefix = options.identifierPrefix),
16021
- void 0 !== options.onUncaughtError &&
16022
- (onUncaughtError = options.onUncaughtError),
16023
- void 0 !== options.onCaughtError && (onCaughtError = options.onCaughtError),
16024
- void 0 !== options.onRecoverableError &&
16025
- (onRecoverableError = options.onRecoverableError),
16026
- void 0 !== options.unstable_transitionCallbacks &&
16027
- (transitionCallbacks = options.unstable_transitionCallbacks),
16028
- void 0 !== options.formState && (formState = options.formState));
16029
- initialChildren = createFiberRoot(
16030
- container,
16031
- 1,
16032
- !0,
16033
- initialChildren,
16034
- null != options ? options : null,
16035
- isStrictMode,
16036
- identifierPrefix,
16037
- onUncaughtError,
16038
- onCaughtError,
16039
- onRecoverableError,
16040
- transitionCallbacks,
16041
- formState
16227
+ exports.useActionState = function (action, initialState, permalink) {
16228
+ return ReactSharedInternals.H.useActionState(action, initialState, permalink);
16229
+ };
16230
+ exports.useCallback = function (callback, deps) {
16231
+ return ReactSharedInternals.H.useCallback(callback, deps);
16232
+ };
16233
+ exports.useContext = function (Context) {
16234
+ return ReactSharedInternals.H.useContext(Context);
16235
+ };
16236
+ exports.useDebugValue = function () {};
16237
+ exports.useDeferredValue = function (value, initialValue) {
16238
+ return ReactSharedInternals.H.useDeferredValue(value, initialValue);
16239
+ };
16240
+ exports.useEffect = function (create, createDeps, update) {
16241
+ var dispatcher = ReactSharedInternals.H;
16242
+ if ("function" === typeof update)
16243
+ throw Error(
16244
+ "useEffect CRUD overload is not enabled in this build of React."
16245
+ );
16246
+ return dispatcher.useEffect(create, createDeps);
16247
+ };
16248
+ exports.useId = function () {
16249
+ return ReactSharedInternals.H.useId();
16250
+ };
16251
+ exports.useImperativeHandle = function (ref, create, deps) {
16252
+ return ReactSharedInternals.H.useImperativeHandle(ref, create, deps);
16253
+ };
16254
+ exports.useInsertionEffect = function (create, deps) {
16255
+ return ReactSharedInternals.H.useInsertionEffect(create, deps);
16256
+ };
16257
+ exports.useLayoutEffect = function (create, deps) {
16258
+ return ReactSharedInternals.H.useLayoutEffect(create, deps);
16259
+ };
16260
+ exports.useMemo = function (create, deps) {
16261
+ return ReactSharedInternals.H.useMemo(create, deps);
16262
+ };
16263
+ exports.useOptimistic = function (passthrough, reducer) {
16264
+ return ReactSharedInternals.H.useOptimistic(passthrough, reducer);
16265
+ };
16266
+ exports.useReducer = function (reducer, initialArg, init) {
16267
+ return ReactSharedInternals.H.useReducer(reducer, initialArg, init);
16268
+ };
16269
+ exports.useRef = function (initialValue) {
16270
+ return ReactSharedInternals.H.useRef(initialValue);
16271
+ };
16272
+ exports.useState = function (initialState) {
16273
+ return ReactSharedInternals.H.useState(initialState);
16274
+ };
16275
+ exports.useSyncExternalStore = function (
16276
+ subscribe,
16277
+ getSnapshot,
16278
+ getServerSnapshot
16279
+ ) {
16280
+ return ReactSharedInternals.H.useSyncExternalStore(
16281
+ subscribe,
16282
+ getSnapshot,
16283
+ getServerSnapshot
16042
16284
  );
16043
- initialChildren.context = getContextForSubtree(null);
16044
- options = initialChildren.current;
16045
- isStrictMode = requestUpdateLane();
16046
- isStrictMode = getBumpedLaneForHydrationByLane(isStrictMode);
16047
- identifierPrefix = createUpdate(isStrictMode);
16048
- identifierPrefix.callback = null;
16049
- enqueueUpdate(options, identifierPrefix, isStrictMode);
16050
- options = isStrictMode;
16051
- initialChildren.current.lanes = options;
16052
- markRootUpdated$1(initialChildren, options);
16053
- ensureRootIsScheduled(initialChildren);
16054
- container[internalContainerInstanceKey] = initialChildren.current;
16055
- listenToAllSupportedEvents(container);
16056
- return new ReactDOMHydrationRoot(initialChildren);
16057
16285
  };
16058
- exports.version = "19.1.0";
16059
-
16060
-
16061
- /***/ }),
16062
-
16063
- /***/ 563:
16064
- /*!*********************************************************************!*\
16065
- !*** ./node_modules/.pnpm/react@19.1.0/node_modules/react/index.js ***!
16066
- \*********************************************************************/
16067
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
16068
-
16069
-
16070
-
16071
- if (true) {
16072
- module.exports = __webpack_require__(/*! ./cjs/react.production.js */ 216);
16073
- } else // removed by dead control flow
16074
- {}
16286
+ exports.useTransition = function () {
16287
+ return ReactSharedInternals.H.useTransition();
16288
+ };
16289
+ exports.version = "19.1.1";
16075
16290
 
16076
16291
 
16077
16292
  /***/ }),
16078
16293
 
16079
- /***/ 723:
16294
+ /***/ 696:
16080
16295
  /*!************************************************************************************************!*\
16081
16296
  !*** ./node_modules/.pnpm/scheduler@0.26.0/node_modules/scheduler/cjs/scheduler.production.js ***!
16082
16297
  \************************************************************************************************/
@@ -16416,41 +16631,25 @@ exports.unstable_wrapCallback = function (callback) {
16416
16631
  var previousPriorityLevel = currentPriorityLevel;
16417
16632
  currentPriorityLevel = parentPriorityLevel;
16418
16633
  try {
16419
- return callback.apply(this, arguments);
16420
- } finally {
16421
- currentPriorityLevel = previousPriorityLevel;
16422
- }
16423
- };
16424
- };
16425
-
16426
-
16427
- /***/ }),
16428
-
16429
- /***/ 867:
16430
- /*!***************************************************************************!*\
16431
- !*** ./node_modules/.pnpm/react@19.1.0/node_modules/react/jsx-runtime.js ***!
16432
- \***************************************************************************/
16433
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
16434
-
16435
-
16436
-
16437
- if (true) {
16438
- module.exports = __webpack_require__(/*! ./cjs/react-jsx-runtime.production.js */ 487);
16439
- } else // removed by dead control flow
16440
- {}
16634
+ return callback.apply(this, arguments);
16635
+ } finally {
16636
+ currentPriorityLevel = previousPriorityLevel;
16637
+ }
16638
+ };
16639
+ };
16441
16640
 
16442
16641
 
16443
16642
  /***/ }),
16444
16643
 
16445
- /***/ 964:
16446
- /*!*************************************************************************************************************!*\
16447
- !*** ./node_modules/.pnpm/react-dom@19.1.0_react@19.1.0/node_modules/react-dom/cjs/react-dom.production.js ***!
16448
- \*************************************************************************************************************/
16449
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
16644
+ /***/ 759:
16645
+ /*!************************************************************************************************!*\
16646
+ !*** ./node_modules/.pnpm/react@19.1.1/node_modules/react/cjs/react-jsx-runtime.production.js ***!
16647
+ \************************************************************************************************/
16648
+ /***/ ((__unused_webpack_module, exports) => {
16450
16649
 
16451
16650
  /**
16452
16651
  * @license React
16453
- * react-dom.production.js
16652
+ * react-jsx-runtime.production.js
16454
16653
  *
16455
16654
  * Copyright (c) Meta Platforms, Inc. and affiliates.
16456
16655
  *
@@ -16459,242 +16658,43 @@ if (true) {
16459
16658
  */
16460
16659
 
16461
16660
 
16462
- var React = __webpack_require__(/*! react */ 563);
16463
- function formatProdErrorMessage(code) {
16464
- var url = "https://react.dev/errors/" + code;
16465
- if (1 < arguments.length) {
16466
- url += "?args[]=" + encodeURIComponent(arguments[1]);
16467
- for (var i = 2; i < arguments.length; i++)
16468
- url += "&args[]=" + encodeURIComponent(arguments[i]);
16469
- }
16470
- return (
16471
- "Minified React error #" +
16472
- code +
16473
- "; visit " +
16474
- url +
16475
- " for the full message or use the non-minified dev environment for full errors and additional helpful warnings."
16476
- );
16477
- }
16478
- function noop() {}
16479
- var Internals = {
16480
- d: {
16481
- f: noop,
16482
- r: function () {
16483
- throw Error(formatProdErrorMessage(522));
16484
- },
16485
- D: noop,
16486
- C: noop,
16487
- L: noop,
16488
- m: noop,
16489
- X: noop,
16490
- S: noop,
16491
- M: noop
16492
- },
16493
- p: 0,
16494
- findDOMNode: null
16495
- },
16496
- REACT_PORTAL_TYPE = Symbol.for("react.portal");
16497
- function createPortal$1(children, containerInfo, implementation) {
16498
- var key =
16499
- 3 < arguments.length && void 0 !== arguments[3] ? arguments[3] : null;
16661
+ var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
16662
+ REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
16663
+ function jsxProd(type, config, maybeKey) {
16664
+ var key = null;
16665
+ void 0 !== maybeKey && (key = "" + maybeKey);
16666
+ void 0 !== config.key && (key = "" + config.key);
16667
+ if ("key" in config) {
16668
+ maybeKey = {};
16669
+ for (var propName in config)
16670
+ "key" !== propName && (maybeKey[propName] = config[propName]);
16671
+ } else maybeKey = config;
16672
+ config = maybeKey.ref;
16500
16673
  return {
16501
- $$typeof: REACT_PORTAL_TYPE,
16502
- key: null == key ? null : "" + key,
16503
- children: children,
16504
- containerInfo: containerInfo,
16505
- implementation: implementation
16674
+ $$typeof: REACT_ELEMENT_TYPE,
16675
+ type: type,
16676
+ key: key,
16677
+ ref: void 0 !== config ? config : null,
16678
+ props: maybeKey
16506
16679
  };
16507
16680
  }
16508
- var ReactSharedInternals =
16509
- React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;
16510
- function getCrossOriginStringAs(as, input) {
16511
- if ("font" === as) return "";
16512
- if ("string" === typeof input)
16513
- return "use-credentials" === input ? input : "";
16514
- }
16515
- exports.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =
16516
- Internals;
16517
- exports.createPortal = function (children, container) {
16518
- var key =
16519
- 2 < arguments.length && void 0 !== arguments[2] ? arguments[2] : null;
16520
- if (
16521
- !container ||
16522
- (1 !== container.nodeType &&
16523
- 9 !== container.nodeType &&
16524
- 11 !== container.nodeType)
16525
- )
16526
- throw Error(formatProdErrorMessage(299));
16527
- return createPortal$1(children, container, null, key);
16528
- };
16529
- exports.flushSync = function (fn) {
16530
- var previousTransition = ReactSharedInternals.T,
16531
- previousUpdatePriority = Internals.p;
16532
- try {
16533
- if (((ReactSharedInternals.T = null), (Internals.p = 2), fn)) return fn();
16534
- } finally {
16535
- (ReactSharedInternals.T = previousTransition),
16536
- (Internals.p = previousUpdatePriority),
16537
- Internals.d.f();
16538
- }
16539
- };
16540
- exports.preconnect = function (href, options) {
16541
- "string" === typeof href &&
16542
- (options
16543
- ? ((options = options.crossOrigin),
16544
- (options =
16545
- "string" === typeof options
16546
- ? "use-credentials" === options
16547
- ? options
16548
- : ""
16549
- : void 0))
16550
- : (options = null),
16551
- Internals.d.C(href, options));
16552
- };
16553
- exports.prefetchDNS = function (href) {
16554
- "string" === typeof href && Internals.d.D(href);
16555
- };
16556
- exports.preinit = function (href, options) {
16557
- if ("string" === typeof href && options && "string" === typeof options.as) {
16558
- var as = options.as,
16559
- crossOrigin = getCrossOriginStringAs(as, options.crossOrigin),
16560
- integrity =
16561
- "string" === typeof options.integrity ? options.integrity : void 0,
16562
- fetchPriority =
16563
- "string" === typeof options.fetchPriority
16564
- ? options.fetchPriority
16565
- : void 0;
16566
- "style" === as
16567
- ? Internals.d.S(
16568
- href,
16569
- "string" === typeof options.precedence ? options.precedence : void 0,
16570
- {
16571
- crossOrigin: crossOrigin,
16572
- integrity: integrity,
16573
- fetchPriority: fetchPriority
16574
- }
16575
- )
16576
- : "script" === as &&
16577
- Internals.d.X(href, {
16578
- crossOrigin: crossOrigin,
16579
- integrity: integrity,
16580
- fetchPriority: fetchPriority,
16581
- nonce: "string" === typeof options.nonce ? options.nonce : void 0
16582
- });
16583
- }
16584
- };
16585
- exports.preinitModule = function (href, options) {
16586
- if ("string" === typeof href)
16587
- if ("object" === typeof options && null !== options) {
16588
- if (null == options.as || "script" === options.as) {
16589
- var crossOrigin = getCrossOriginStringAs(
16590
- options.as,
16591
- options.crossOrigin
16592
- );
16593
- Internals.d.M(href, {
16594
- crossOrigin: crossOrigin,
16595
- integrity:
16596
- "string" === typeof options.integrity ? options.integrity : void 0,
16597
- nonce: "string" === typeof options.nonce ? options.nonce : void 0
16598
- });
16599
- }
16600
- } else null == options && Internals.d.M(href);
16601
- };
16602
- exports.preload = function (href, options) {
16603
- if (
16604
- "string" === typeof href &&
16605
- "object" === typeof options &&
16606
- null !== options &&
16607
- "string" === typeof options.as
16608
- ) {
16609
- var as = options.as,
16610
- crossOrigin = getCrossOriginStringAs(as, options.crossOrigin);
16611
- Internals.d.L(href, as, {
16612
- crossOrigin: crossOrigin,
16613
- integrity:
16614
- "string" === typeof options.integrity ? options.integrity : void 0,
16615
- nonce: "string" === typeof options.nonce ? options.nonce : void 0,
16616
- type: "string" === typeof options.type ? options.type : void 0,
16617
- fetchPriority:
16618
- "string" === typeof options.fetchPriority
16619
- ? options.fetchPriority
16620
- : void 0,
16621
- referrerPolicy:
16622
- "string" === typeof options.referrerPolicy
16623
- ? options.referrerPolicy
16624
- : void 0,
16625
- imageSrcSet:
16626
- "string" === typeof options.imageSrcSet ? options.imageSrcSet : void 0,
16627
- imageSizes:
16628
- "string" === typeof options.imageSizes ? options.imageSizes : void 0,
16629
- media: "string" === typeof options.media ? options.media : void 0
16630
- });
16631
- }
16632
- };
16633
- exports.preloadModule = function (href, options) {
16634
- if ("string" === typeof href)
16635
- if (options) {
16636
- var crossOrigin = getCrossOriginStringAs(options.as, options.crossOrigin);
16637
- Internals.d.m(href, {
16638
- as:
16639
- "string" === typeof options.as && "script" !== options.as
16640
- ? options.as
16641
- : void 0,
16642
- crossOrigin: crossOrigin,
16643
- integrity:
16644
- "string" === typeof options.integrity ? options.integrity : void 0
16645
- });
16646
- } else Internals.d.m(href);
16647
- };
16648
- exports.requestFormReset = function (form) {
16649
- Internals.d.r(form);
16650
- };
16651
- exports.unstable_batchedUpdates = function (fn, a) {
16652
- return fn(a);
16653
- };
16654
- exports.useFormState = function (action, initialState, permalink) {
16655
- return ReactSharedInternals.H.useFormState(action, initialState, permalink);
16656
- };
16657
- exports.useFormStatus = function () {
16658
- return ReactSharedInternals.H.useHostTransitionStatus();
16659
- };
16660
- exports.version = "19.1.0";
16681
+ exports.Fragment = REACT_FRAGMENT_TYPE;
16682
+ exports.jsx = jsxProd;
16683
+ exports.jsxs = jsxProd;
16661
16684
 
16662
16685
 
16663
16686
  /***/ }),
16664
16687
 
16665
- /***/ 987:
16666
- /*!*******************************************************************************************!*\
16667
- !*** ./node_modules/.pnpm/react-dom@19.1.0_react@19.1.0/node_modules/react-dom/client.js ***!
16668
- \*******************************************************************************************/
16688
+ /***/ 949:
16689
+ /*!*****************************************************************************!*\
16690
+ !*** ./node_modules/.pnpm/scheduler@0.26.0/node_modules/scheduler/index.js ***!
16691
+ \*****************************************************************************/
16669
16692
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
16670
16693
 
16671
16694
 
16672
16695
 
16673
- function checkDCE() {
16674
- /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */
16675
- if (
16676
- typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined' ||
16677
- typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE !== 'function'
16678
- ) {
16679
- return;
16680
- }
16681
- if (false) // removed by dead control flow
16682
- {}
16683
- try {
16684
- // Verify that the code above has been dead code eliminated (DCE'd).
16685
- __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(checkDCE);
16686
- } catch (err) {
16687
- // DevTools shouldn't crash React, no matter what.
16688
- // We should still report in case we break this code.
16689
- console.error(err);
16690
- }
16691
- }
16692
-
16693
16696
  if (true) {
16694
- // DCE check should happen before ReactDOM bundle executes so that
16695
- // DevTools can report bad minification during injection.
16696
- checkDCE();
16697
- module.exports = __webpack_require__(/*! ./cjs/react-dom-client.production.js */ 520);
16697
+ module.exports = __webpack_require__(/*! ./cjs/scheduler.production.js */ 696);
16698
16698
  } else // removed by dead control flow
16699
16699
  {}
16700
16700
 
@@ -16801,10 +16801,10 @@ __webpack_require__.r(__webpack_exports__);
16801
16801
  /* 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))),
16802
16802
  /* 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)))
16803
16803
  /* harmony export */ });
16804
- /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ 563);
16805
- /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react/jsx-runtime */ 867);
16806
- /* harmony import */ var react_dom__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! react-dom */ 306);
16807
- /* harmony import */ var react_dom_client__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! react-dom/client */ 987);
16804
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ 67);
16805
+ /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react/jsx-runtime */ 291);
16806
+ /* harmony import */ var react_dom__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! react-dom */ 219);
16807
+ /* harmony import */ var react_dom_client__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! react-dom/client */ 140);
16808
16808
 
16809
16809
 
16810
16810