xshell 1.2.14 → 1.2.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,15 +2,15 @@
2
2
  /******/ "use strict";
3
3
  /******/ var __webpack_modules__ = ({
4
4
 
5
- /***/ 802:
6
- /*!********************************************************************************************************************!*\
7
- !*** ./node_modules/.pnpm/react-dom@19.0.0_react@19.0.0/node_modules/react-dom/cjs/react-dom-client.production.js ***!
8
- \********************************************************************************************************************/
9
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
5
+ /***/ 1:
6
+ /*!************************************************************************************!*\
7
+ !*** ./node_modules/.pnpm/react@19.0.0/node_modules/react/cjs/react.production.js ***!
8
+ \************************************************************************************/
9
+ /***/ ((__unused_webpack_module, exports) => {
10
10
 
11
11
  /**
12
12
  * @license React
13
- * react-dom-client.production.js
13
+ * react.production.js
14
14
  *
15
15
  * Copyright (c) Meta Platforms, Inc. and affiliates.
16
16
  *
@@ -18,54 +18,18 @@
18
18
  * LICENSE file in the root directory of this source tree.
19
19
  */
20
20
 
21
- /*
22
- Modernizr 3.0.0pre (Custom Build) | MIT
23
- */
24
21
 
25
- var Scheduler = __webpack_require__(/*! scheduler */ 735),
26
- React = __webpack_require__(/*! react */ 558),
27
- ReactDOM = __webpack_require__(/*! react-dom */ 868);
28
- function formatProdErrorMessage(code) {
29
- var url = "https://react.dev/errors/" + code;
30
- if (1 < arguments.length) {
31
- url += "?args[]=" + encodeURIComponent(arguments[1]);
32
- for (var i = 2; i < arguments.length; i++)
33
- url += "&args[]=" + encodeURIComponent(arguments[i]);
34
- }
35
- return (
36
- "Minified React error #" +
37
- code +
38
- "; visit " +
39
- url +
40
- " for the full message or use the non-minified dev environment for full errors and additional helpful warnings."
41
- );
42
- }
43
- function isValidContainer(node) {
44
- return !(
45
- !node ||
46
- (1 !== node.nodeType && 9 !== node.nodeType && 11 !== node.nodeType)
47
- );
48
- }
49
- var REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
50
- REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
22
+ var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
51
23
  REACT_PORTAL_TYPE = Symbol.for("react.portal"),
52
24
  REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
53
25
  REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
54
26
  REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
55
- REACT_PROVIDER_TYPE = Symbol.for("react.provider"),
56
27
  REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
57
28
  REACT_CONTEXT_TYPE = Symbol.for("react.context"),
58
29
  REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
59
30
  REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"),
60
- REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"),
61
31
  REACT_MEMO_TYPE = Symbol.for("react.memo"),
62
- REACT_LAZY_TYPE = Symbol.for("react.lazy");
63
- Symbol.for("react.scope");
64
- Symbol.for("react.debug_trace_mode");
65
- var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
66
- Symbol.for("react.legacy_hidden");
67
- Symbol.for("react.tracing_marker");
68
- var REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel"),
32
+ REACT_LAZY_TYPE = Symbol.for("react.lazy"),
69
33
  MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
70
34
  function getIteratorFn(maybeIterable) {
71
35
  if (null === maybeIterable || "object" !== typeof maybeIterable) return null;
@@ -74,345 +38,944 @@ function getIteratorFn(maybeIterable) {
74
38
  maybeIterable["@@iterator"];
75
39
  return "function" === typeof maybeIterable ? maybeIterable : null;
76
40
  }
77
- var REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference");
78
- function getComponentNameFromType(type) {
79
- if (null == type) return null;
80
- if ("function" === typeof type)
81
- return type.$$typeof === REACT_CLIENT_REFERENCE
82
- ? null
83
- : type.displayName || type.name || null;
84
- if ("string" === typeof type) return type;
85
- switch (type) {
86
- case REACT_FRAGMENT_TYPE:
87
- return "Fragment";
88
- case REACT_PORTAL_TYPE:
89
- return "Portal";
90
- case REACT_PROFILER_TYPE:
91
- return "Profiler";
92
- case REACT_STRICT_MODE_TYPE:
93
- return "StrictMode";
94
- case REACT_SUSPENSE_TYPE:
95
- return "Suspense";
96
- case REACT_SUSPENSE_LIST_TYPE:
97
- return "SuspenseList";
98
- }
99
- if ("object" === typeof type)
100
- switch (type.$$typeof) {
101
- case REACT_CONTEXT_TYPE:
102
- return (type.displayName || "Context") + ".Provider";
103
- case REACT_CONSUMER_TYPE:
104
- return (type._context.displayName || "Context") + ".Consumer";
105
- case REACT_FORWARD_REF_TYPE:
106
- var innerType = type.render;
107
- type = type.displayName;
108
- type ||
109
- ((type = innerType.displayName || innerType.name || ""),
110
- (type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef"));
111
- return type;
112
- case REACT_MEMO_TYPE:
113
- return (
114
- (innerType = type.displayName || null),
115
- null !== innerType
116
- ? innerType
117
- : getComponentNameFromType(type.type) || "Memo"
118
- );
119
- case REACT_LAZY_TYPE:
120
- innerType = type._payload;
121
- type = type._init;
122
- try {
123
- return getComponentNameFromType(type(innerType));
124
- } catch (x) {}
125
- }
126
- return null;
127
- }
128
- var ReactSharedInternals =
129
- React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
41
+ var ReactNoopUpdateQueue = {
42
+ isMounted: function () {
43
+ return !1;
44
+ },
45
+ enqueueForceUpdate: function () {},
46
+ enqueueReplaceState: function () {},
47
+ enqueueSetState: function () {}
48
+ },
130
49
  assign = Object.assign,
131
- prefix,
132
- suffix;
133
- function describeBuiltInComponentFrame(name) {
134
- if (void 0 === prefix)
135
- try {
136
- throw Error();
137
- } catch (x) {
138
- var match = x.stack.trim().match(/\n( *(at )?)/);
139
- prefix = (match && match[1]) || "";
140
- suffix =
141
- -1 < x.stack.indexOf("\n at")
142
- ? " (<anonymous>)"
143
- : -1 < x.stack.indexOf("@")
144
- ? "@unknown:0:0"
145
- : "";
146
- }
147
- return "\n" + prefix + name + suffix;
50
+ emptyObject = {};
51
+ function Component(props, context, updater) {
52
+ this.props = props;
53
+ this.context = context;
54
+ this.refs = emptyObject;
55
+ this.updater = updater || ReactNoopUpdateQueue;
148
56
  }
149
- var reentry = !1;
150
- function describeNativeComponentFrame(fn, construct) {
151
- if (!fn || reentry) return "";
152
- reentry = !0;
153
- var previousPrepareStackTrace = Error.prepareStackTrace;
154
- Error.prepareStackTrace = void 0;
155
- try {
156
- var RunInRootFrame = {
157
- DetermineComponentFrameRoot: function () {
158
- try {
159
- if (construct) {
160
- var Fake = function () {
161
- throw Error();
162
- };
163
- Object.defineProperty(Fake.prototype, "props", {
164
- set: function () {
165
- throw Error();
166
- }
167
- });
168
- if ("object" === typeof Reflect && Reflect.construct) {
169
- try {
170
- Reflect.construct(Fake, []);
171
- } catch (x) {
172
- var control = x;
173
- }
174
- Reflect.construct(fn, [], Fake);
175
- } else {
176
- try {
177
- Fake.call();
178
- } catch (x$0) {
179
- control = x$0;
180
- }
181
- fn.call(Fake.prototype);
182
- }
183
- } else {
184
- try {
185
- throw Error();
186
- } catch (x$1) {
187
- control = x$1;
188
- }
189
- (Fake = fn()) &&
190
- "function" === typeof Fake.catch &&
191
- Fake.catch(function () {});
192
- }
193
- } catch (sample) {
194
- if (sample && control && "string" === typeof sample.stack)
195
- return [sample.stack, control.stack];
196
- }
197
- return [null, null];
198
- }
199
- };
200
- RunInRootFrame.DetermineComponentFrameRoot.displayName =
201
- "DetermineComponentFrameRoot";
202
- var namePropDescriptor = Object.getOwnPropertyDescriptor(
203
- RunInRootFrame.DetermineComponentFrameRoot,
204
- "name"
57
+ Component.prototype.isReactComponent = {};
58
+ Component.prototype.setState = function (partialState, callback) {
59
+ if (
60
+ "object" !== typeof partialState &&
61
+ "function" !== typeof partialState &&
62
+ null != partialState
63
+ )
64
+ throw Error(
65
+ "takes an object of state variables to update or a function which returns an object of state variables."
205
66
  );
206
- namePropDescriptor &&
207
- namePropDescriptor.configurable &&
208
- Object.defineProperty(
209
- RunInRootFrame.DetermineComponentFrameRoot,
210
- "name",
211
- { value: "DetermineComponentFrameRoot" }
212
- );
213
- var _RunInRootFrame$Deter = RunInRootFrame.DetermineComponentFrameRoot(),
214
- sampleStack = _RunInRootFrame$Deter[0],
215
- controlStack = _RunInRootFrame$Deter[1];
216
- if (sampleStack && controlStack) {
217
- var sampleLines = sampleStack.split("\n"),
218
- controlLines = controlStack.split("\n");
219
- for (
220
- namePropDescriptor = RunInRootFrame = 0;
221
- RunInRootFrame < sampleLines.length &&
222
- !sampleLines[RunInRootFrame].includes("DetermineComponentFrameRoot");
223
-
224
- )
225
- RunInRootFrame++;
226
- for (
227
- ;
228
- namePropDescriptor < controlLines.length &&
229
- !controlLines[namePropDescriptor].includes(
230
- "DetermineComponentFrameRoot"
231
- );
232
-
233
- )
234
- namePropDescriptor++;
235
- if (
236
- RunInRootFrame === sampleLines.length ||
237
- namePropDescriptor === controlLines.length
238
- )
239
- for (
240
- RunInRootFrame = sampleLines.length - 1,
241
- namePropDescriptor = controlLines.length - 1;
242
- 1 <= RunInRootFrame &&
243
- 0 <= namePropDescriptor &&
244
- sampleLines[RunInRootFrame] !== controlLines[namePropDescriptor];
245
-
246
- )
247
- namePropDescriptor--;
248
- for (
249
- ;
250
- 1 <= RunInRootFrame && 0 <= namePropDescriptor;
251
- RunInRootFrame--, namePropDescriptor--
252
- )
253
- if (sampleLines[RunInRootFrame] !== controlLines[namePropDescriptor]) {
254
- if (1 !== RunInRootFrame || 1 !== namePropDescriptor) {
255
- do
256
- if (
257
- (RunInRootFrame--,
258
- namePropDescriptor--,
259
- 0 > namePropDescriptor ||
260
- sampleLines[RunInRootFrame] !==
261
- controlLines[namePropDescriptor])
262
- ) {
263
- var frame =
264
- "\n" +
265
- sampleLines[RunInRootFrame].replace(" at new ", " at ");
266
- fn.displayName &&
267
- frame.includes("<anonymous>") &&
268
- (frame = frame.replace("<anonymous>", fn.displayName));
269
- return frame;
270
- }
271
- while (1 <= RunInRootFrame && 0 <= namePropDescriptor);
272
- }
273
- break;
274
- }
275
- }
276
- } finally {
277
- (reentry = !1), (Error.prepareStackTrace = previousPrepareStackTrace);
278
- }
279
- return (previousPrepareStackTrace = fn ? fn.displayName || fn.name : "")
280
- ? describeBuiltInComponentFrame(previousPrepareStackTrace)
281
- : "";
67
+ this.updater.enqueueSetState(this, partialState, callback, "setState");
68
+ };
69
+ Component.prototype.forceUpdate = function (callback) {
70
+ this.updater.enqueueForceUpdate(this, callback, "forceUpdate");
71
+ };
72
+ function ComponentDummy() {}
73
+ ComponentDummy.prototype = Component.prototype;
74
+ function PureComponent(props, context, updater) {
75
+ this.props = props;
76
+ this.context = context;
77
+ this.refs = emptyObject;
78
+ this.updater = updater || ReactNoopUpdateQueue;
282
79
  }
283
- function describeFiber(fiber) {
284
- switch (fiber.tag) {
285
- case 26:
286
- case 27:
287
- case 5:
288
- return describeBuiltInComponentFrame(fiber.type);
289
- case 16:
290
- return describeBuiltInComponentFrame("Lazy");
291
- case 13:
292
- return describeBuiltInComponentFrame("Suspense");
293
- case 19:
294
- return describeBuiltInComponentFrame("SuspenseList");
295
- case 0:
296
- case 15:
297
- return (fiber = describeNativeComponentFrame(fiber.type, !1)), fiber;
298
- case 11:
299
- return (
300
- (fiber = describeNativeComponentFrame(fiber.type.render, !1)), fiber
301
- );
302
- case 1:
303
- return (fiber = describeNativeComponentFrame(fiber.type, !0)), fiber;
304
- default:
305
- return "";
306
- }
80
+ var pureComponentPrototype = (PureComponent.prototype = new ComponentDummy());
81
+ pureComponentPrototype.constructor = PureComponent;
82
+ assign(pureComponentPrototype, Component.prototype);
83
+ pureComponentPrototype.isPureReactComponent = !0;
84
+ var isArrayImpl = Array.isArray,
85
+ ReactSharedInternals = { H: null, A: null, T: null, S: null },
86
+ hasOwnProperty = Object.prototype.hasOwnProperty;
87
+ function ReactElement(type, key, self, source, owner, props) {
88
+ self = props.ref;
89
+ return {
90
+ $$typeof: REACT_ELEMENT_TYPE,
91
+ type: type,
92
+ key: key,
93
+ ref: void 0 !== self ? self : null,
94
+ props: props
95
+ };
307
96
  }
308
- function getStackByFiberInDevAndProd(workInProgress) {
309
- try {
310
- var info = "";
311
- do
312
- (info += describeFiber(workInProgress)),
313
- (workInProgress = workInProgress.return);
314
- while (workInProgress);
315
- return info;
316
- } catch (x) {
317
- return "\nError generating stack: " + x.message + "\n" + x.stack;
318
- }
97
+ function cloneAndReplaceKey(oldElement, newKey) {
98
+ return ReactElement(
99
+ oldElement.type,
100
+ newKey,
101
+ void 0,
102
+ void 0,
103
+ void 0,
104
+ oldElement.props
105
+ );
319
106
  }
320
- function getNearestMountedFiber(fiber) {
321
- var node = fiber,
322
- nearestMounted = fiber;
323
- if (fiber.alternate) for (; node.return; ) node = node.return;
324
- else {
325
- fiber = node;
326
- do
327
- (node = fiber),
328
- 0 !== (node.flags & 4098) && (nearestMounted = node.return),
329
- (fiber = node.return);
330
- while (fiber);
331
- }
332
- return 3 === node.tag ? nearestMounted : null;
107
+ function isValidElement(object) {
108
+ return (
109
+ "object" === typeof object &&
110
+ null !== object &&
111
+ object.$$typeof === REACT_ELEMENT_TYPE
112
+ );
333
113
  }
334
- function getSuspenseInstanceFromFiber(fiber) {
335
- if (13 === fiber.tag) {
336
- var suspenseState = fiber.memoizedState;
337
- null === suspenseState &&
338
- ((fiber = fiber.alternate),
339
- null !== fiber && (suspenseState = fiber.memoizedState));
340
- if (null !== suspenseState) return suspenseState.dehydrated;
341
- }
342
- return null;
114
+ function escape(key) {
115
+ var escaperLookup = { "=": "=0", ":": "=2" };
116
+ return (
117
+ "$" +
118
+ key.replace(/[=:]/g, function (match) {
119
+ return escaperLookup[match];
120
+ })
121
+ );
343
122
  }
344
- function assertIsMounted(fiber) {
345
- if (getNearestMountedFiber(fiber) !== fiber)
346
- throw Error(formatProdErrorMessage(188));
123
+ var userProvidedKeyEscapeRegex = /\/+/g;
124
+ function getElementKey(element, index) {
125
+ return "object" === typeof element && null !== element && null != element.key
126
+ ? escape("" + element.key)
127
+ : index.toString(36);
347
128
  }
348
- function findCurrentFiberUsingSlowPath(fiber) {
349
- var alternate = fiber.alternate;
350
- if (!alternate) {
351
- alternate = getNearestMountedFiber(fiber);
352
- if (null === alternate) throw Error(formatProdErrorMessage(188));
353
- return alternate !== fiber ? null : fiber;
354
- }
355
- for (var a = fiber, b = alternate; ; ) {
356
- var parentA = a.return;
357
- if (null === parentA) break;
358
- var parentB = parentA.alternate;
359
- if (null === parentB) {
360
- b = parentA.return;
361
- if (null !== b) {
362
- a = b;
363
- continue;
364
- }
365
- break;
366
- }
367
- if (parentA.child === parentB.child) {
368
- for (parentB = parentA.child; parentB; ) {
369
- if (parentB === a) return assertIsMounted(parentA), fiber;
370
- if (parentB === b) return assertIsMounted(parentA), alternate;
371
- parentB = parentB.sibling;
372
- }
373
- throw Error(formatProdErrorMessage(188));
374
- }
375
- if (a.return !== b.return) (a = parentA), (b = parentB);
376
- else {
377
- for (var didFindChild = !1, child$2 = parentA.child; child$2; ) {
378
- if (child$2 === a) {
379
- didFindChild = !0;
380
- a = parentA;
381
- b = parentB;
382
- break;
383
- }
384
- if (child$2 === b) {
385
- didFindChild = !0;
386
- b = parentA;
387
- a = parentB;
388
- break;
389
- }
390
- child$2 = child$2.sibling;
129
+ function noop$1() {}
130
+ function resolveThenable(thenable) {
131
+ switch (thenable.status) {
132
+ case "fulfilled":
133
+ return thenable.value;
134
+ case "rejected":
135
+ throw thenable.reason;
136
+ default:
137
+ switch (
138
+ ("string" === typeof thenable.status
139
+ ? thenable.then(noop$1, noop$1)
140
+ : ((thenable.status = "pending"),
141
+ thenable.then(
142
+ function (fulfilledValue) {
143
+ "pending" === thenable.status &&
144
+ ((thenable.status = "fulfilled"),
145
+ (thenable.value = fulfilledValue));
146
+ },
147
+ function (error) {
148
+ "pending" === thenable.status &&
149
+ ((thenable.status = "rejected"), (thenable.reason = error));
150
+ }
151
+ )),
152
+ thenable.status)
153
+ ) {
154
+ case "fulfilled":
155
+ return thenable.value;
156
+ case "rejected":
157
+ throw thenable.reason;
391
158
  }
392
- if (!didFindChild) {
393
- for (child$2 = parentB.child; child$2; ) {
394
- if (child$2 === a) {
395
- didFindChild = !0;
396
- a = parentB;
397
- b = parentA;
398
- break;
399
- }
400
- if (child$2 === b) {
401
- didFindChild = !0;
402
- b = parentB;
403
- a = parentA;
159
+ }
160
+ throw thenable;
161
+ }
162
+ function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {
163
+ var type = typeof children;
164
+ if ("undefined" === type || "boolean" === type) children = null;
165
+ var invokeCallback = !1;
166
+ if (null === children) invokeCallback = !0;
167
+ else
168
+ switch (type) {
169
+ case "bigint":
170
+ case "string":
171
+ case "number":
172
+ invokeCallback = !0;
173
+ break;
174
+ case "object":
175
+ switch (children.$$typeof) {
176
+ case REACT_ELEMENT_TYPE:
177
+ case REACT_PORTAL_TYPE:
178
+ invokeCallback = !0;
404
179
  break;
405
- }
406
- child$2 = child$2.sibling;
180
+ case REACT_LAZY_TYPE:
181
+ return (
182
+ (invokeCallback = children._init),
183
+ mapIntoArray(
184
+ invokeCallback(children._payload),
185
+ array,
186
+ escapedPrefix,
187
+ nameSoFar,
188
+ callback
189
+ )
190
+ );
407
191
  }
408
- if (!didFindChild) throw Error(formatProdErrorMessage(189));
409
- }
410
192
  }
411
- if (a.alternate !== b) throw Error(formatProdErrorMessage(190));
412
- }
413
- if (3 !== a.tag) throw Error(formatProdErrorMessage(188));
414
- return a.stateNode.current === a ? fiber : alternate;
415
- }
193
+ if (invokeCallback)
194
+ return (
195
+ (callback = callback(children)),
196
+ (invokeCallback =
197
+ "" === nameSoFar ? "." + getElementKey(children, 0) : nameSoFar),
198
+ isArrayImpl(callback)
199
+ ? ((escapedPrefix = ""),
200
+ null != invokeCallback &&
201
+ (escapedPrefix =
202
+ invokeCallback.replace(userProvidedKeyEscapeRegex, "$&/") + "/"),
203
+ mapIntoArray(callback, array, escapedPrefix, "", function (c) {
204
+ return c;
205
+ }))
206
+ : null != callback &&
207
+ (isValidElement(callback) &&
208
+ (callback = cloneAndReplaceKey(
209
+ callback,
210
+ escapedPrefix +
211
+ (null == callback.key ||
212
+ (children && children.key === callback.key)
213
+ ? ""
214
+ : ("" + callback.key).replace(
215
+ userProvidedKeyEscapeRegex,
216
+ "$&/"
217
+ ) + "/") +
218
+ invokeCallback
219
+ )),
220
+ array.push(callback)),
221
+ 1
222
+ );
223
+ invokeCallback = 0;
224
+ var nextNamePrefix = "" === nameSoFar ? "." : nameSoFar + ":";
225
+ if (isArrayImpl(children))
226
+ for (var i = 0; i < children.length; i++)
227
+ (nameSoFar = children[i]),
228
+ (type = nextNamePrefix + getElementKey(nameSoFar, i)),
229
+ (invokeCallback += mapIntoArray(
230
+ nameSoFar,
231
+ array,
232
+ escapedPrefix,
233
+ type,
234
+ callback
235
+ ));
236
+ else if (((i = getIteratorFn(children)), "function" === typeof i))
237
+ for (
238
+ children = i.call(children), i = 0;
239
+ !(nameSoFar = children.next()).done;
240
+
241
+ )
242
+ (nameSoFar = nameSoFar.value),
243
+ (type = nextNamePrefix + getElementKey(nameSoFar, i++)),
244
+ (invokeCallback += mapIntoArray(
245
+ nameSoFar,
246
+ array,
247
+ escapedPrefix,
248
+ type,
249
+ callback
250
+ ));
251
+ else if ("object" === type) {
252
+ if ("function" === typeof children.then)
253
+ return mapIntoArray(
254
+ resolveThenable(children),
255
+ array,
256
+ escapedPrefix,
257
+ nameSoFar,
258
+ callback
259
+ );
260
+ array = String(children);
261
+ throw Error(
262
+ "Objects are not valid as a React child (found: " +
263
+ ("[object Object]" === array
264
+ ? "object with keys {" + Object.keys(children).join(", ") + "}"
265
+ : array) +
266
+ "). If you meant to render a collection of children, use an array instead."
267
+ );
268
+ }
269
+ return invokeCallback;
270
+ }
271
+ function mapChildren(children, func, context) {
272
+ if (null == children) return children;
273
+ var result = [],
274
+ count = 0;
275
+ mapIntoArray(children, result, "", "", function (child) {
276
+ return func.call(context, child, count++);
277
+ });
278
+ return result;
279
+ }
280
+ function lazyInitializer(payload) {
281
+ if (-1 === payload._status) {
282
+ var ctor = payload._result;
283
+ ctor = ctor();
284
+ ctor.then(
285
+ function (moduleObject) {
286
+ if (0 === payload._status || -1 === payload._status)
287
+ (payload._status = 1), (payload._result = moduleObject);
288
+ },
289
+ function (error) {
290
+ if (0 === payload._status || -1 === payload._status)
291
+ (payload._status = 2), (payload._result = error);
292
+ }
293
+ );
294
+ -1 === payload._status && ((payload._status = 0), (payload._result = ctor));
295
+ }
296
+ if (1 === payload._status) return payload._result.default;
297
+ throw payload._result;
298
+ }
299
+ var reportGlobalError =
300
+ "function" === typeof reportError
301
+ ? reportError
302
+ : function (error) {
303
+ if (
304
+ "object" === typeof window &&
305
+ "function" === typeof window.ErrorEvent
306
+ ) {
307
+ var event = new window.ErrorEvent("error", {
308
+ bubbles: !0,
309
+ cancelable: !0,
310
+ message:
311
+ "object" === typeof error &&
312
+ null !== error &&
313
+ "string" === typeof error.message
314
+ ? String(error.message)
315
+ : String(error),
316
+ error: error
317
+ });
318
+ if (!window.dispatchEvent(event)) return;
319
+ } else if (
320
+ "object" === typeof process &&
321
+ "function" === typeof process.emit
322
+ ) {
323
+ process.emit("uncaughtException", error);
324
+ return;
325
+ }
326
+ console.error(error);
327
+ };
328
+ function noop() {}
329
+ exports.Children = {
330
+ map: mapChildren,
331
+ forEach: function (children, forEachFunc, forEachContext) {
332
+ mapChildren(
333
+ children,
334
+ function () {
335
+ forEachFunc.apply(this, arguments);
336
+ },
337
+ forEachContext
338
+ );
339
+ },
340
+ count: function (children) {
341
+ var n = 0;
342
+ mapChildren(children, function () {
343
+ n++;
344
+ });
345
+ return n;
346
+ },
347
+ toArray: function (children) {
348
+ return (
349
+ mapChildren(children, function (child) {
350
+ return child;
351
+ }) || []
352
+ );
353
+ },
354
+ only: function (children) {
355
+ if (!isValidElement(children))
356
+ throw Error(
357
+ "React.Children.only expected to receive a single React element child."
358
+ );
359
+ return children;
360
+ }
361
+ };
362
+ exports.Component = Component;
363
+ exports.Fragment = REACT_FRAGMENT_TYPE;
364
+ exports.Profiler = REACT_PROFILER_TYPE;
365
+ exports.PureComponent = PureComponent;
366
+ exports.StrictMode = REACT_STRICT_MODE_TYPE;
367
+ exports.Suspense = REACT_SUSPENSE_TYPE;
368
+ exports.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =
369
+ ReactSharedInternals;
370
+ exports.act = function () {
371
+ throw Error("act(...) is not supported in production builds of React.");
372
+ };
373
+ exports.cache = function (fn) {
374
+ return function () {
375
+ return fn.apply(null, arguments);
376
+ };
377
+ };
378
+ exports.cloneElement = function (element, config, children) {
379
+ if (null === element || void 0 === element)
380
+ throw Error(
381
+ "The argument must be a React element, but you passed " + element + "."
382
+ );
383
+ var props = assign({}, element.props),
384
+ key = element.key,
385
+ owner = void 0;
386
+ if (null != config)
387
+ for (propName in (void 0 !== config.ref && (owner = void 0),
388
+ void 0 !== config.key && (key = "" + config.key),
389
+ config))
390
+ !hasOwnProperty.call(config, propName) ||
391
+ "key" === propName ||
392
+ "__self" === propName ||
393
+ "__source" === propName ||
394
+ ("ref" === propName && void 0 === config.ref) ||
395
+ (props[propName] = config[propName]);
396
+ var propName = arguments.length - 2;
397
+ if (1 === propName) props.children = children;
398
+ else if (1 < propName) {
399
+ for (var childArray = Array(propName), i = 0; i < propName; i++)
400
+ childArray[i] = arguments[i + 2];
401
+ props.children = childArray;
402
+ }
403
+ return ReactElement(element.type, key, void 0, void 0, owner, props);
404
+ };
405
+ exports.createContext = function (defaultValue) {
406
+ defaultValue = {
407
+ $$typeof: REACT_CONTEXT_TYPE,
408
+ _currentValue: defaultValue,
409
+ _currentValue2: defaultValue,
410
+ _threadCount: 0,
411
+ Provider: null,
412
+ Consumer: null
413
+ };
414
+ defaultValue.Provider = defaultValue;
415
+ defaultValue.Consumer = {
416
+ $$typeof: REACT_CONSUMER_TYPE,
417
+ _context: defaultValue
418
+ };
419
+ return defaultValue;
420
+ };
421
+ exports.createElement = function (type, config, children) {
422
+ var propName,
423
+ props = {},
424
+ key = null;
425
+ if (null != config)
426
+ for (propName in (void 0 !== config.key && (key = "" + config.key), config))
427
+ hasOwnProperty.call(config, propName) &&
428
+ "key" !== propName &&
429
+ "__self" !== propName &&
430
+ "__source" !== propName &&
431
+ (props[propName] = config[propName]);
432
+ var childrenLength = arguments.length - 2;
433
+ if (1 === childrenLength) props.children = children;
434
+ else if (1 < childrenLength) {
435
+ for (var childArray = Array(childrenLength), i = 0; i < childrenLength; i++)
436
+ childArray[i] = arguments[i + 2];
437
+ props.children = childArray;
438
+ }
439
+ if (type && type.defaultProps)
440
+ for (propName in ((childrenLength = type.defaultProps), childrenLength))
441
+ void 0 === props[propName] &&
442
+ (props[propName] = childrenLength[propName]);
443
+ return ReactElement(type, key, void 0, void 0, null, props);
444
+ };
445
+ exports.createRef = function () {
446
+ return { current: null };
447
+ };
448
+ exports.forwardRef = function (render) {
449
+ return { $$typeof: REACT_FORWARD_REF_TYPE, render: render };
450
+ };
451
+ exports.isValidElement = isValidElement;
452
+ exports.lazy = function (ctor) {
453
+ return {
454
+ $$typeof: REACT_LAZY_TYPE,
455
+ _payload: { _status: -1, _result: ctor },
456
+ _init: lazyInitializer
457
+ };
458
+ };
459
+ exports.memo = function (type, compare) {
460
+ return {
461
+ $$typeof: REACT_MEMO_TYPE,
462
+ type: type,
463
+ compare: void 0 === compare ? null : compare
464
+ };
465
+ };
466
+ exports.startTransition = function (scope) {
467
+ var prevTransition = ReactSharedInternals.T,
468
+ currentTransition = {};
469
+ ReactSharedInternals.T = currentTransition;
470
+ try {
471
+ var returnValue = scope(),
472
+ onStartTransitionFinish = ReactSharedInternals.S;
473
+ null !== onStartTransitionFinish &&
474
+ onStartTransitionFinish(currentTransition, returnValue);
475
+ "object" === typeof returnValue &&
476
+ null !== returnValue &&
477
+ "function" === typeof returnValue.then &&
478
+ returnValue.then(noop, reportGlobalError);
479
+ } catch (error) {
480
+ reportGlobalError(error);
481
+ } finally {
482
+ ReactSharedInternals.T = prevTransition;
483
+ }
484
+ };
485
+ exports.unstable_useCacheRefresh = function () {
486
+ return ReactSharedInternals.H.useCacheRefresh();
487
+ };
488
+ exports.use = function (usable) {
489
+ return ReactSharedInternals.H.use(usable);
490
+ };
491
+ exports.useActionState = function (action, initialState, permalink) {
492
+ return ReactSharedInternals.H.useActionState(action, initialState, permalink);
493
+ };
494
+ exports.useCallback = function (callback, deps) {
495
+ return ReactSharedInternals.H.useCallback(callback, deps);
496
+ };
497
+ exports.useContext = function (Context) {
498
+ return ReactSharedInternals.H.useContext(Context);
499
+ };
500
+ exports.useDebugValue = function () {};
501
+ exports.useDeferredValue = function (value, initialValue) {
502
+ return ReactSharedInternals.H.useDeferredValue(value, initialValue);
503
+ };
504
+ exports.useEffect = function (create, deps) {
505
+ return ReactSharedInternals.H.useEffect(create, deps);
506
+ };
507
+ exports.useId = function () {
508
+ return ReactSharedInternals.H.useId();
509
+ };
510
+ exports.useImperativeHandle = function (ref, create, deps) {
511
+ return ReactSharedInternals.H.useImperativeHandle(ref, create, deps);
512
+ };
513
+ exports.useInsertionEffect = function (create, deps) {
514
+ return ReactSharedInternals.H.useInsertionEffect(create, deps);
515
+ };
516
+ exports.useLayoutEffect = function (create, deps) {
517
+ return ReactSharedInternals.H.useLayoutEffect(create, deps);
518
+ };
519
+ exports.useMemo = function (create, deps) {
520
+ return ReactSharedInternals.H.useMemo(create, deps);
521
+ };
522
+ exports.useOptimistic = function (passthrough, reducer) {
523
+ return ReactSharedInternals.H.useOptimistic(passthrough, reducer);
524
+ };
525
+ exports.useReducer = function (reducer, initialArg, init) {
526
+ return ReactSharedInternals.H.useReducer(reducer, initialArg, init);
527
+ };
528
+ exports.useRef = function (initialValue) {
529
+ return ReactSharedInternals.H.useRef(initialValue);
530
+ };
531
+ exports.useState = function (initialState) {
532
+ return ReactSharedInternals.H.useState(initialState);
533
+ };
534
+ exports.useSyncExternalStore = function (
535
+ subscribe,
536
+ getSnapshot,
537
+ getServerSnapshot
538
+ ) {
539
+ return ReactSharedInternals.H.useSyncExternalStore(
540
+ subscribe,
541
+ getSnapshot,
542
+ getServerSnapshot
543
+ );
544
+ };
545
+ exports.useTransition = function () {
546
+ return ReactSharedInternals.H.useTransition();
547
+ };
548
+ exports.version = "19.0.0";
549
+
550
+
551
+ /***/ }),
552
+
553
+ /***/ 149:
554
+ /*!*****************************************************************************!*\
555
+ !*** ./node_modules/.pnpm/scheduler@0.25.0/node_modules/scheduler/index.js ***!
556
+ \*****************************************************************************/
557
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
558
+
559
+
560
+
561
+ if (true) {
562
+ module.exports = __webpack_require__(/*! ./cjs/scheduler.production.js */ 280);
563
+ } else {}
564
+
565
+
566
+ /***/ }),
567
+
568
+ /***/ 260:
569
+ /*!********************************************************************************************************************!*\
570
+ !*** ./node_modules/.pnpm/react-dom@19.0.0_react@19.0.0/node_modules/react-dom/cjs/react-dom-client.production.js ***!
571
+ \********************************************************************************************************************/
572
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
573
+
574
+ /**
575
+ * @license React
576
+ * react-dom-client.production.js
577
+ *
578
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
579
+ *
580
+ * This source code is licensed under the MIT license found in the
581
+ * LICENSE file in the root directory of this source tree.
582
+ */
583
+
584
+ /*
585
+ Modernizr 3.0.0pre (Custom Build) | MIT
586
+ */
587
+
588
+ var Scheduler = __webpack_require__(/*! scheduler */ 149),
589
+ React = __webpack_require__(/*! react */ 816),
590
+ ReactDOM = __webpack_require__(/*! react-dom */ 766);
591
+ function formatProdErrorMessage(code) {
592
+ var url = "https://react.dev/errors/" + code;
593
+ if (1 < arguments.length) {
594
+ url += "?args[]=" + encodeURIComponent(arguments[1]);
595
+ for (var i = 2; i < arguments.length; i++)
596
+ url += "&args[]=" + encodeURIComponent(arguments[i]);
597
+ }
598
+ return (
599
+ "Minified React error #" +
600
+ code +
601
+ "; visit " +
602
+ url +
603
+ " for the full message or use the non-minified dev environment for full errors and additional helpful warnings."
604
+ );
605
+ }
606
+ function isValidContainer(node) {
607
+ return !(
608
+ !node ||
609
+ (1 !== node.nodeType && 9 !== node.nodeType && 11 !== node.nodeType)
610
+ );
611
+ }
612
+ var REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
613
+ REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
614
+ REACT_PORTAL_TYPE = Symbol.for("react.portal"),
615
+ REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
616
+ REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
617
+ REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
618
+ REACT_PROVIDER_TYPE = Symbol.for("react.provider"),
619
+ REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
620
+ REACT_CONTEXT_TYPE = Symbol.for("react.context"),
621
+ REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
622
+ REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"),
623
+ REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"),
624
+ REACT_MEMO_TYPE = Symbol.for("react.memo"),
625
+ REACT_LAZY_TYPE = Symbol.for("react.lazy");
626
+ Symbol.for("react.scope");
627
+ Symbol.for("react.debug_trace_mode");
628
+ var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
629
+ Symbol.for("react.legacy_hidden");
630
+ Symbol.for("react.tracing_marker");
631
+ var REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel"),
632
+ MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
633
+ function getIteratorFn(maybeIterable) {
634
+ if (null === maybeIterable || "object" !== typeof maybeIterable) return null;
635
+ maybeIterable =
636
+ (MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL]) ||
637
+ maybeIterable["@@iterator"];
638
+ return "function" === typeof maybeIterable ? maybeIterable : null;
639
+ }
640
+ var REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference");
641
+ function getComponentNameFromType(type) {
642
+ if (null == type) return null;
643
+ if ("function" === typeof type)
644
+ return type.$$typeof === REACT_CLIENT_REFERENCE
645
+ ? null
646
+ : type.displayName || type.name || null;
647
+ if ("string" === typeof type) return type;
648
+ switch (type) {
649
+ case REACT_FRAGMENT_TYPE:
650
+ return "Fragment";
651
+ case REACT_PORTAL_TYPE:
652
+ return "Portal";
653
+ case REACT_PROFILER_TYPE:
654
+ return "Profiler";
655
+ case REACT_STRICT_MODE_TYPE:
656
+ return "StrictMode";
657
+ case REACT_SUSPENSE_TYPE:
658
+ return "Suspense";
659
+ case REACT_SUSPENSE_LIST_TYPE:
660
+ return "SuspenseList";
661
+ }
662
+ if ("object" === typeof type)
663
+ switch (type.$$typeof) {
664
+ case REACT_CONTEXT_TYPE:
665
+ return (type.displayName || "Context") + ".Provider";
666
+ case REACT_CONSUMER_TYPE:
667
+ return (type._context.displayName || "Context") + ".Consumer";
668
+ case REACT_FORWARD_REF_TYPE:
669
+ var innerType = type.render;
670
+ type = type.displayName;
671
+ type ||
672
+ ((type = innerType.displayName || innerType.name || ""),
673
+ (type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef"));
674
+ return type;
675
+ case REACT_MEMO_TYPE:
676
+ return (
677
+ (innerType = type.displayName || null),
678
+ null !== innerType
679
+ ? innerType
680
+ : getComponentNameFromType(type.type) || "Memo"
681
+ );
682
+ case REACT_LAZY_TYPE:
683
+ innerType = type._payload;
684
+ type = type._init;
685
+ try {
686
+ return getComponentNameFromType(type(innerType));
687
+ } catch (x) {}
688
+ }
689
+ return null;
690
+ }
691
+ var ReactSharedInternals =
692
+ React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
693
+ assign = Object.assign,
694
+ prefix,
695
+ suffix;
696
+ function describeBuiltInComponentFrame(name) {
697
+ if (void 0 === prefix)
698
+ try {
699
+ throw Error();
700
+ } catch (x) {
701
+ var match = x.stack.trim().match(/\n( *(at )?)/);
702
+ prefix = (match && match[1]) || "";
703
+ suffix =
704
+ -1 < x.stack.indexOf("\n at")
705
+ ? " (<anonymous>)"
706
+ : -1 < x.stack.indexOf("@")
707
+ ? "@unknown:0:0"
708
+ : "";
709
+ }
710
+ return "\n" + prefix + name + suffix;
711
+ }
712
+ var reentry = !1;
713
+ function describeNativeComponentFrame(fn, construct) {
714
+ if (!fn || reentry) return "";
715
+ reentry = !0;
716
+ var previousPrepareStackTrace = Error.prepareStackTrace;
717
+ Error.prepareStackTrace = void 0;
718
+ try {
719
+ var RunInRootFrame = {
720
+ DetermineComponentFrameRoot: function () {
721
+ try {
722
+ if (construct) {
723
+ var Fake = function () {
724
+ throw Error();
725
+ };
726
+ Object.defineProperty(Fake.prototype, "props", {
727
+ set: function () {
728
+ throw Error();
729
+ }
730
+ });
731
+ if ("object" === typeof Reflect && Reflect.construct) {
732
+ try {
733
+ Reflect.construct(Fake, []);
734
+ } catch (x) {
735
+ var control = x;
736
+ }
737
+ Reflect.construct(fn, [], Fake);
738
+ } else {
739
+ try {
740
+ Fake.call();
741
+ } catch (x$0) {
742
+ control = x$0;
743
+ }
744
+ fn.call(Fake.prototype);
745
+ }
746
+ } else {
747
+ try {
748
+ throw Error();
749
+ } catch (x$1) {
750
+ control = x$1;
751
+ }
752
+ (Fake = fn()) &&
753
+ "function" === typeof Fake.catch &&
754
+ Fake.catch(function () {});
755
+ }
756
+ } catch (sample) {
757
+ if (sample && control && "string" === typeof sample.stack)
758
+ return [sample.stack, control.stack];
759
+ }
760
+ return [null, null];
761
+ }
762
+ };
763
+ RunInRootFrame.DetermineComponentFrameRoot.displayName =
764
+ "DetermineComponentFrameRoot";
765
+ var namePropDescriptor = Object.getOwnPropertyDescriptor(
766
+ RunInRootFrame.DetermineComponentFrameRoot,
767
+ "name"
768
+ );
769
+ namePropDescriptor &&
770
+ namePropDescriptor.configurable &&
771
+ Object.defineProperty(
772
+ RunInRootFrame.DetermineComponentFrameRoot,
773
+ "name",
774
+ { value: "DetermineComponentFrameRoot" }
775
+ );
776
+ var _RunInRootFrame$Deter = RunInRootFrame.DetermineComponentFrameRoot(),
777
+ sampleStack = _RunInRootFrame$Deter[0],
778
+ controlStack = _RunInRootFrame$Deter[1];
779
+ if (sampleStack && controlStack) {
780
+ var sampleLines = sampleStack.split("\n"),
781
+ controlLines = controlStack.split("\n");
782
+ for (
783
+ namePropDescriptor = RunInRootFrame = 0;
784
+ RunInRootFrame < sampleLines.length &&
785
+ !sampleLines[RunInRootFrame].includes("DetermineComponentFrameRoot");
786
+
787
+ )
788
+ RunInRootFrame++;
789
+ for (
790
+ ;
791
+ namePropDescriptor < controlLines.length &&
792
+ !controlLines[namePropDescriptor].includes(
793
+ "DetermineComponentFrameRoot"
794
+ );
795
+
796
+ )
797
+ namePropDescriptor++;
798
+ if (
799
+ RunInRootFrame === sampleLines.length ||
800
+ namePropDescriptor === controlLines.length
801
+ )
802
+ for (
803
+ RunInRootFrame = sampleLines.length - 1,
804
+ namePropDescriptor = controlLines.length - 1;
805
+ 1 <= RunInRootFrame &&
806
+ 0 <= namePropDescriptor &&
807
+ sampleLines[RunInRootFrame] !== controlLines[namePropDescriptor];
808
+
809
+ )
810
+ namePropDescriptor--;
811
+ for (
812
+ ;
813
+ 1 <= RunInRootFrame && 0 <= namePropDescriptor;
814
+ RunInRootFrame--, namePropDescriptor--
815
+ )
816
+ if (sampleLines[RunInRootFrame] !== controlLines[namePropDescriptor]) {
817
+ if (1 !== RunInRootFrame || 1 !== namePropDescriptor) {
818
+ do
819
+ if (
820
+ (RunInRootFrame--,
821
+ namePropDescriptor--,
822
+ 0 > namePropDescriptor ||
823
+ sampleLines[RunInRootFrame] !==
824
+ controlLines[namePropDescriptor])
825
+ ) {
826
+ var frame =
827
+ "\n" +
828
+ sampleLines[RunInRootFrame].replace(" at new ", " at ");
829
+ fn.displayName &&
830
+ frame.includes("<anonymous>") &&
831
+ (frame = frame.replace("<anonymous>", fn.displayName));
832
+ return frame;
833
+ }
834
+ while (1 <= RunInRootFrame && 0 <= namePropDescriptor);
835
+ }
836
+ break;
837
+ }
838
+ }
839
+ } finally {
840
+ (reentry = !1), (Error.prepareStackTrace = previousPrepareStackTrace);
841
+ }
842
+ return (previousPrepareStackTrace = fn ? fn.displayName || fn.name : "")
843
+ ? describeBuiltInComponentFrame(previousPrepareStackTrace)
844
+ : "";
845
+ }
846
+ function describeFiber(fiber) {
847
+ switch (fiber.tag) {
848
+ case 26:
849
+ case 27:
850
+ case 5:
851
+ return describeBuiltInComponentFrame(fiber.type);
852
+ case 16:
853
+ return describeBuiltInComponentFrame("Lazy");
854
+ case 13:
855
+ return describeBuiltInComponentFrame("Suspense");
856
+ case 19:
857
+ return describeBuiltInComponentFrame("SuspenseList");
858
+ case 0:
859
+ case 15:
860
+ return (fiber = describeNativeComponentFrame(fiber.type, !1)), fiber;
861
+ case 11:
862
+ return (
863
+ (fiber = describeNativeComponentFrame(fiber.type.render, !1)), fiber
864
+ );
865
+ case 1:
866
+ return (fiber = describeNativeComponentFrame(fiber.type, !0)), fiber;
867
+ default:
868
+ return "";
869
+ }
870
+ }
871
+ function getStackByFiberInDevAndProd(workInProgress) {
872
+ try {
873
+ var info = "";
874
+ do
875
+ (info += describeFiber(workInProgress)),
876
+ (workInProgress = workInProgress.return);
877
+ while (workInProgress);
878
+ return info;
879
+ } catch (x) {
880
+ return "\nError generating stack: " + x.message + "\n" + x.stack;
881
+ }
882
+ }
883
+ function getNearestMountedFiber(fiber) {
884
+ var node = fiber,
885
+ nearestMounted = fiber;
886
+ if (fiber.alternate) for (; node.return; ) node = node.return;
887
+ else {
888
+ fiber = node;
889
+ do
890
+ (node = fiber),
891
+ 0 !== (node.flags & 4098) && (nearestMounted = node.return),
892
+ (fiber = node.return);
893
+ while (fiber);
894
+ }
895
+ return 3 === node.tag ? nearestMounted : null;
896
+ }
897
+ function getSuspenseInstanceFromFiber(fiber) {
898
+ if (13 === fiber.tag) {
899
+ var suspenseState = fiber.memoizedState;
900
+ null === suspenseState &&
901
+ ((fiber = fiber.alternate),
902
+ null !== fiber && (suspenseState = fiber.memoizedState));
903
+ if (null !== suspenseState) return suspenseState.dehydrated;
904
+ }
905
+ return null;
906
+ }
907
+ function assertIsMounted(fiber) {
908
+ if (getNearestMountedFiber(fiber) !== fiber)
909
+ throw Error(formatProdErrorMessage(188));
910
+ }
911
+ function findCurrentFiberUsingSlowPath(fiber) {
912
+ var alternate = fiber.alternate;
913
+ if (!alternate) {
914
+ alternate = getNearestMountedFiber(fiber);
915
+ if (null === alternate) throw Error(formatProdErrorMessage(188));
916
+ return alternate !== fiber ? null : fiber;
917
+ }
918
+ for (var a = fiber, b = alternate; ; ) {
919
+ var parentA = a.return;
920
+ if (null === parentA) break;
921
+ var parentB = parentA.alternate;
922
+ if (null === parentB) {
923
+ b = parentA.return;
924
+ if (null !== b) {
925
+ a = b;
926
+ continue;
927
+ }
928
+ break;
929
+ }
930
+ if (parentA.child === parentB.child) {
931
+ for (parentB = parentA.child; parentB; ) {
932
+ if (parentB === a) return assertIsMounted(parentA), fiber;
933
+ if (parentB === b) return assertIsMounted(parentA), alternate;
934
+ parentB = parentB.sibling;
935
+ }
936
+ throw Error(formatProdErrorMessage(188));
937
+ }
938
+ if (a.return !== b.return) (a = parentA), (b = parentB);
939
+ else {
940
+ for (var didFindChild = !1, child$2 = parentA.child; child$2; ) {
941
+ if (child$2 === a) {
942
+ didFindChild = !0;
943
+ a = parentA;
944
+ b = parentB;
945
+ break;
946
+ }
947
+ if (child$2 === b) {
948
+ didFindChild = !0;
949
+ b = parentA;
950
+ a = parentB;
951
+ break;
952
+ }
953
+ child$2 = child$2.sibling;
954
+ }
955
+ if (!didFindChild) {
956
+ for (child$2 = parentB.child; child$2; ) {
957
+ if (child$2 === a) {
958
+ didFindChild = !0;
959
+ a = parentB;
960
+ b = parentA;
961
+ break;
962
+ }
963
+ if (child$2 === b) {
964
+ didFindChild = !0;
965
+ b = parentB;
966
+ a = parentA;
967
+ break;
968
+ }
969
+ child$2 = child$2.sibling;
970
+ }
971
+ if (!didFindChild) throw Error(formatProdErrorMessage(189));
972
+ }
973
+ }
974
+ if (a.alternate !== b) throw Error(formatProdErrorMessage(190));
975
+ }
976
+ if (3 !== a.tag) throw Error(formatProdErrorMessage(188));
977
+ return a.stateNode.current === a ? fiber : alternate;
978
+ }
416
979
  function findCurrentHostFiberImpl(node) {
417
980
  var tag = node.tag;
418
981
  if (5 === tag || 26 === tag || 27 === tag || 6 === tag) return node;
@@ -15163,257 +15726,37 @@ exports.hydrateRoot = function (container, initialChildren, options) {
15163
15726
  void 0 !== options.formState && (formState = options.formState));
15164
15727
  initialChildren = createFiberRoot(
15165
15728
  container,
15166
- 1,
15167
- !0,
15168
- initialChildren,
15169
- null != options ? options : null,
15170
- isStrictMode,
15171
- identifierPrefix,
15172
- onUncaughtError,
15173
- onCaughtError,
15174
- onRecoverableError,
15175
- transitionCallbacks,
15176
- formState
15177
- );
15178
- initialChildren.context = getContextForSubtree(null);
15179
- options = initialChildren.current;
15180
- isStrictMode = requestUpdateLane();
15181
- identifierPrefix = createUpdate(isStrictMode);
15182
- identifierPrefix.callback = null;
15183
- enqueueUpdate(options, identifierPrefix, isStrictMode);
15184
- initialChildren.current.lanes = isStrictMode;
15185
- markRootUpdated$1(initialChildren, isStrictMode);
15186
- ensureRootIsScheduled(initialChildren);
15187
- container[internalContainerInstanceKey] = initialChildren.current;
15188
- listenToAllSupportedEvents(container);
15189
- return new ReactDOMHydrationRoot(initialChildren);
15190
- };
15191
- exports.version = "19.0.0";
15192
-
15193
-
15194
- /***/ }),
15195
-
15196
- /***/ 530:
15197
- /*!*************************************************************************************************************!*\
15198
- !*** ./node_modules/.pnpm/react-dom@19.0.0_react@19.0.0/node_modules/react-dom/cjs/react-dom.production.js ***!
15199
- \*************************************************************************************************************/
15200
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
15201
-
15202
- /**
15203
- * @license React
15204
- * react-dom.production.js
15205
- *
15206
- * Copyright (c) Meta Platforms, Inc. and affiliates.
15207
- *
15208
- * This source code is licensed under the MIT license found in the
15209
- * LICENSE file in the root directory of this source tree.
15210
- */
15211
-
15212
-
15213
- var React = __webpack_require__(/*! react */ 558);
15214
- function formatProdErrorMessage(code) {
15215
- var url = "https://react.dev/errors/" + code;
15216
- if (1 < arguments.length) {
15217
- url += "?args[]=" + encodeURIComponent(arguments[1]);
15218
- for (var i = 2; i < arguments.length; i++)
15219
- url += "&args[]=" + encodeURIComponent(arguments[i]);
15220
- }
15221
- return (
15222
- "Minified React error #" +
15223
- code +
15224
- "; visit " +
15225
- url +
15226
- " for the full message or use the non-minified dev environment for full errors and additional helpful warnings."
15227
- );
15228
- }
15229
- function noop() {}
15230
- var Internals = {
15231
- d: {
15232
- f: noop,
15233
- r: function () {
15234
- throw Error(formatProdErrorMessage(522));
15235
- },
15236
- D: noop,
15237
- C: noop,
15238
- L: noop,
15239
- m: noop,
15240
- X: noop,
15241
- S: noop,
15242
- M: noop
15243
- },
15244
- p: 0,
15245
- findDOMNode: null
15246
- },
15247
- REACT_PORTAL_TYPE = Symbol.for("react.portal");
15248
- function createPortal$1(children, containerInfo, implementation) {
15249
- var key =
15250
- 3 < arguments.length && void 0 !== arguments[3] ? arguments[3] : null;
15251
- return {
15252
- $$typeof: REACT_PORTAL_TYPE,
15253
- key: null == key ? null : "" + key,
15254
- children: children,
15255
- containerInfo: containerInfo,
15256
- implementation: implementation
15257
- };
15258
- }
15259
- var ReactSharedInternals =
15260
- React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;
15261
- function getCrossOriginStringAs(as, input) {
15262
- if ("font" === as) return "";
15263
- if ("string" === typeof input)
15264
- return "use-credentials" === input ? input : "";
15265
- }
15266
- exports.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =
15267
- Internals;
15268
- exports.createPortal = function (children, container) {
15269
- var key =
15270
- 2 < arguments.length && void 0 !== arguments[2] ? arguments[2] : null;
15271
- if (
15272
- !container ||
15273
- (1 !== container.nodeType &&
15274
- 9 !== container.nodeType &&
15275
- 11 !== container.nodeType)
15276
- )
15277
- throw Error(formatProdErrorMessage(299));
15278
- return createPortal$1(children, container, null, key);
15279
- };
15280
- exports.flushSync = function (fn) {
15281
- var previousTransition = ReactSharedInternals.T,
15282
- previousUpdatePriority = Internals.p;
15283
- try {
15284
- if (((ReactSharedInternals.T = null), (Internals.p = 2), fn)) return fn();
15285
- } finally {
15286
- (ReactSharedInternals.T = previousTransition),
15287
- (Internals.p = previousUpdatePriority),
15288
- Internals.d.f();
15289
- }
15290
- };
15291
- exports.preconnect = function (href, options) {
15292
- "string" === typeof href &&
15293
- (options
15294
- ? ((options = options.crossOrigin),
15295
- (options =
15296
- "string" === typeof options
15297
- ? "use-credentials" === options
15298
- ? options
15299
- : ""
15300
- : void 0))
15301
- : (options = null),
15302
- Internals.d.C(href, options));
15303
- };
15304
- exports.prefetchDNS = function (href) {
15305
- "string" === typeof href && Internals.d.D(href);
15306
- };
15307
- exports.preinit = function (href, options) {
15308
- if ("string" === typeof href && options && "string" === typeof options.as) {
15309
- var as = options.as,
15310
- crossOrigin = getCrossOriginStringAs(as, options.crossOrigin),
15311
- integrity =
15312
- "string" === typeof options.integrity ? options.integrity : void 0,
15313
- fetchPriority =
15314
- "string" === typeof options.fetchPriority
15315
- ? options.fetchPriority
15316
- : void 0;
15317
- "style" === as
15318
- ? Internals.d.S(
15319
- href,
15320
- "string" === typeof options.precedence ? options.precedence : void 0,
15321
- {
15322
- crossOrigin: crossOrigin,
15323
- integrity: integrity,
15324
- fetchPriority: fetchPriority
15325
- }
15326
- )
15327
- : "script" === as &&
15328
- Internals.d.X(href, {
15329
- crossOrigin: crossOrigin,
15330
- integrity: integrity,
15331
- fetchPriority: fetchPriority,
15332
- nonce: "string" === typeof options.nonce ? options.nonce : void 0
15333
- });
15334
- }
15335
- };
15336
- exports.preinitModule = function (href, options) {
15337
- if ("string" === typeof href)
15338
- if ("object" === typeof options && null !== options) {
15339
- if (null == options.as || "script" === options.as) {
15340
- var crossOrigin = getCrossOriginStringAs(
15341
- options.as,
15342
- options.crossOrigin
15343
- );
15344
- Internals.d.M(href, {
15345
- crossOrigin: crossOrigin,
15346
- integrity:
15347
- "string" === typeof options.integrity ? options.integrity : void 0,
15348
- nonce: "string" === typeof options.nonce ? options.nonce : void 0
15349
- });
15350
- }
15351
- } else null == options && Internals.d.M(href);
15352
- };
15353
- exports.preload = function (href, options) {
15354
- if (
15355
- "string" === typeof href &&
15356
- "object" === typeof options &&
15357
- null !== options &&
15358
- "string" === typeof options.as
15359
- ) {
15360
- var as = options.as,
15361
- crossOrigin = getCrossOriginStringAs(as, options.crossOrigin);
15362
- Internals.d.L(href, as, {
15363
- crossOrigin: crossOrigin,
15364
- integrity:
15365
- "string" === typeof options.integrity ? options.integrity : void 0,
15366
- nonce: "string" === typeof options.nonce ? options.nonce : void 0,
15367
- type: "string" === typeof options.type ? options.type : void 0,
15368
- fetchPriority:
15369
- "string" === typeof options.fetchPriority
15370
- ? options.fetchPriority
15371
- : void 0,
15372
- referrerPolicy:
15373
- "string" === typeof options.referrerPolicy
15374
- ? options.referrerPolicy
15375
- : void 0,
15376
- imageSrcSet:
15377
- "string" === typeof options.imageSrcSet ? options.imageSrcSet : void 0,
15378
- imageSizes:
15379
- "string" === typeof options.imageSizes ? options.imageSizes : void 0,
15380
- media: "string" === typeof options.media ? options.media : void 0
15381
- });
15382
- }
15383
- };
15384
- exports.preloadModule = function (href, options) {
15385
- if ("string" === typeof href)
15386
- if (options) {
15387
- var crossOrigin = getCrossOriginStringAs(options.as, options.crossOrigin);
15388
- Internals.d.m(href, {
15389
- as:
15390
- "string" === typeof options.as && "script" !== options.as
15391
- ? options.as
15392
- : void 0,
15393
- crossOrigin: crossOrigin,
15394
- integrity:
15395
- "string" === typeof options.integrity ? options.integrity : void 0
15396
- });
15397
- } else Internals.d.m(href);
15398
- };
15399
- exports.requestFormReset = function (form) {
15400
- Internals.d.r(form);
15401
- };
15402
- exports.unstable_batchedUpdates = function (fn, a) {
15403
- return fn(a);
15404
- };
15405
- exports.useFormState = function (action, initialState, permalink) {
15406
- return ReactSharedInternals.H.useFormState(action, initialState, permalink);
15407
- };
15408
- exports.useFormStatus = function () {
15409
- return ReactSharedInternals.H.useHostTransitionStatus();
15729
+ 1,
15730
+ !0,
15731
+ initialChildren,
15732
+ null != options ? options : null,
15733
+ isStrictMode,
15734
+ identifierPrefix,
15735
+ onUncaughtError,
15736
+ onCaughtError,
15737
+ onRecoverableError,
15738
+ transitionCallbacks,
15739
+ formState
15740
+ );
15741
+ initialChildren.context = getContextForSubtree(null);
15742
+ options = initialChildren.current;
15743
+ isStrictMode = requestUpdateLane();
15744
+ identifierPrefix = createUpdate(isStrictMode);
15745
+ identifierPrefix.callback = null;
15746
+ enqueueUpdate(options, identifierPrefix, isStrictMode);
15747
+ initialChildren.current.lanes = isStrictMode;
15748
+ markRootUpdated$1(initialChildren, isStrictMode);
15749
+ ensureRootIsScheduled(initialChildren);
15750
+ container[internalContainerInstanceKey] = initialChildren.current;
15751
+ listenToAllSupportedEvents(container);
15752
+ return new ReactDOMHydrationRoot(initialChildren);
15410
15753
  };
15411
15754
  exports.version = "19.0.0";
15412
15755
 
15413
15756
 
15414
15757
  /***/ }),
15415
15758
 
15416
- /***/ 573:
15759
+ /***/ 279:
15417
15760
  /*!*******************************************************************************************!*\
15418
15761
  !*** ./node_modules/.pnpm/react-dom@19.0.0_react@19.0.0/node_modules/react-dom/client.js ***!
15419
15762
  \*******************************************************************************************/
@@ -15444,102 +15787,21 @@ if (true) {
15444
15787
  // DCE check should happen before ReactDOM bundle executes so that
15445
15788
  // DevTools can report bad minification during injection.
15446
15789
  checkDCE();
15447
- module.exports = __webpack_require__(/*! ./cjs/react-dom-client.production.js */ 802);
15448
- } else {}
15449
-
15450
-
15451
- /***/ }),
15452
-
15453
- /***/ 868:
15454
- /*!******************************************************************************************!*\
15455
- !*** ./node_modules/.pnpm/react-dom@19.0.0_react@19.0.0/node_modules/react-dom/index.js ***!
15456
- \******************************************************************************************/
15457
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
15458
-
15459
-
15460
-
15461
- function checkDCE() {
15462
- /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */
15463
- if (
15464
- typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined' ||
15465
- typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE !== 'function'
15466
- ) {
15467
- return;
15468
- }
15469
- if (false) {}
15470
- try {
15471
- // Verify that the code above has been dead code eliminated (DCE'd).
15472
- __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(checkDCE);
15473
- } catch (err) {
15474
- // DevTools shouldn't crash React, no matter what.
15475
- // We should still report in case we break this code.
15476
- console.error(err);
15477
- }
15478
- }
15479
-
15480
- if (true) {
15481
- // DCE check should happen before ReactDOM bundle executes so that
15482
- // DevTools can report bad minification during injection.
15483
- checkDCE();
15484
- module.exports = __webpack_require__(/*! ./cjs/react-dom.production.js */ 530);
15790
+ module.exports = __webpack_require__(/*! ./cjs/react-dom-client.production.js */ 260);
15485
15791
  } else {}
15486
15792
 
15487
15793
 
15488
15794
  /***/ }),
15489
15795
 
15490
- /***/ 580:
15796
+ /***/ 280:
15491
15797
  /*!************************************************************************************************!*\
15492
- !*** ./node_modules/.pnpm/react@19.0.0/node_modules/react/cjs/react-jsx-runtime.production.js ***!
15798
+ !*** ./node_modules/.pnpm/scheduler@0.25.0/node_modules/scheduler/cjs/scheduler.production.js ***!
15493
15799
  \************************************************************************************************/
15494
15800
  /***/ ((__unused_webpack_module, exports) => {
15495
15801
 
15496
15802
  /**
15497
15803
  * @license React
15498
- * react-jsx-runtime.production.js
15499
- *
15500
- * Copyright (c) Meta Platforms, Inc. and affiliates.
15501
- *
15502
- * This source code is licensed under the MIT license found in the
15503
- * LICENSE file in the root directory of this source tree.
15504
- */
15505
-
15506
-
15507
- var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
15508
- REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
15509
- function jsxProd(type, config, maybeKey) {
15510
- var key = null;
15511
- void 0 !== maybeKey && (key = "" + maybeKey);
15512
- void 0 !== config.key && (key = "" + config.key);
15513
- if ("key" in config) {
15514
- maybeKey = {};
15515
- for (var propName in config)
15516
- "key" !== propName && (maybeKey[propName] = config[propName]);
15517
- } else maybeKey = config;
15518
- config = maybeKey.ref;
15519
- return {
15520
- $$typeof: REACT_ELEMENT_TYPE,
15521
- type: type,
15522
- key: key,
15523
- ref: void 0 !== config ? config : null,
15524
- props: maybeKey
15525
- };
15526
- }
15527
- exports.Fragment = REACT_FRAGMENT_TYPE;
15528
- exports.jsx = jsxProd;
15529
- exports.jsxs = jsxProd;
15530
-
15531
-
15532
- /***/ }),
15533
-
15534
- /***/ 207:
15535
- /*!************************************************************************************!*\
15536
- !*** ./node_modules/.pnpm/react@19.0.0/node_modules/react/cjs/react.production.js ***!
15537
- \************************************************************************************/
15538
- /***/ ((__unused_webpack_module, exports) => {
15539
-
15540
- /**
15541
- * @license React
15542
- * react.production.js
15804
+ * scheduler.production.js
15543
15805
  *
15544
15806
  * Copyright (c) Meta Platforms, Inc. and affiliates.
15545
15807
  *
@@ -15548,553 +15810,341 @@ exports.jsxs = jsxProd;
15548
15810
  */
15549
15811
 
15550
15812
 
15551
- var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
15552
- REACT_PORTAL_TYPE = Symbol.for("react.portal"),
15553
- REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
15554
- REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
15555
- REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
15556
- REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
15557
- REACT_CONTEXT_TYPE = Symbol.for("react.context"),
15558
- REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
15559
- REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"),
15560
- REACT_MEMO_TYPE = Symbol.for("react.memo"),
15561
- REACT_LAZY_TYPE = Symbol.for("react.lazy"),
15562
- MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
15563
- function getIteratorFn(maybeIterable) {
15564
- if (null === maybeIterable || "object" !== typeof maybeIterable) return null;
15565
- maybeIterable =
15566
- (MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL]) ||
15567
- maybeIterable["@@iterator"];
15568
- return "function" === typeof maybeIterable ? maybeIterable : null;
15569
- }
15570
- var ReactNoopUpdateQueue = {
15571
- isMounted: function () {
15572
- return !1;
15573
- },
15574
- enqueueForceUpdate: function () {},
15575
- enqueueReplaceState: function () {},
15576
- enqueueSetState: function () {}
15577
- },
15578
- assign = Object.assign,
15579
- emptyObject = {};
15580
- function Component(props, context, updater) {
15581
- this.props = props;
15582
- this.context = context;
15583
- this.refs = emptyObject;
15584
- this.updater = updater || ReactNoopUpdateQueue;
15585
- }
15586
- Component.prototype.isReactComponent = {};
15587
- Component.prototype.setState = function (partialState, callback) {
15588
- if (
15589
- "object" !== typeof partialState &&
15590
- "function" !== typeof partialState &&
15591
- null != partialState
15592
- )
15593
- throw Error(
15594
- "takes an object of state variables to update or a function which returns an object of state variables."
15595
- );
15596
- this.updater.enqueueSetState(this, partialState, callback, "setState");
15597
- };
15598
- Component.prototype.forceUpdate = function (callback) {
15599
- this.updater.enqueueForceUpdate(this, callback, "forceUpdate");
15600
- };
15601
- function ComponentDummy() {}
15602
- ComponentDummy.prototype = Component.prototype;
15603
- function PureComponent(props, context, updater) {
15604
- this.props = props;
15605
- this.context = context;
15606
- this.refs = emptyObject;
15607
- this.updater = updater || ReactNoopUpdateQueue;
15608
- }
15609
- var pureComponentPrototype = (PureComponent.prototype = new ComponentDummy());
15610
- pureComponentPrototype.constructor = PureComponent;
15611
- assign(pureComponentPrototype, Component.prototype);
15612
- pureComponentPrototype.isPureReactComponent = !0;
15613
- var isArrayImpl = Array.isArray,
15614
- ReactSharedInternals = { H: null, A: null, T: null, S: null },
15615
- hasOwnProperty = Object.prototype.hasOwnProperty;
15616
- function ReactElement(type, key, self, source, owner, props) {
15617
- self = props.ref;
15618
- return {
15619
- $$typeof: REACT_ELEMENT_TYPE,
15620
- type: type,
15621
- key: key,
15622
- ref: void 0 !== self ? self : null,
15623
- props: props
15624
- };
15813
+ function push(heap, node) {
15814
+ var index = heap.length;
15815
+ heap.push(node);
15816
+ a: for (; 0 < index; ) {
15817
+ var parentIndex = (index - 1) >>> 1,
15818
+ parent = heap[parentIndex];
15819
+ if (0 < compare(parent, node))
15820
+ (heap[parentIndex] = node), (heap[index] = parent), (index = parentIndex);
15821
+ else break a;
15822
+ }
15625
15823
  }
15626
- function cloneAndReplaceKey(oldElement, newKey) {
15627
- return ReactElement(
15628
- oldElement.type,
15629
- newKey,
15630
- void 0,
15631
- void 0,
15632
- void 0,
15633
- oldElement.props
15634
- );
15824
+ function peek(heap) {
15825
+ return 0 === heap.length ? null : heap[0];
15635
15826
  }
15636
- function isValidElement(object) {
15637
- return (
15638
- "object" === typeof object &&
15639
- null !== object &&
15640
- object.$$typeof === REACT_ELEMENT_TYPE
15641
- );
15827
+ function pop(heap) {
15828
+ if (0 === heap.length) return null;
15829
+ var first = heap[0],
15830
+ last = heap.pop();
15831
+ if (last !== first) {
15832
+ heap[0] = last;
15833
+ a: for (
15834
+ var index = 0, length = heap.length, halfLength = length >>> 1;
15835
+ index < halfLength;
15836
+
15837
+ ) {
15838
+ var leftIndex = 2 * (index + 1) - 1,
15839
+ left = heap[leftIndex],
15840
+ rightIndex = leftIndex + 1,
15841
+ right = heap[rightIndex];
15842
+ if (0 > compare(left, last))
15843
+ rightIndex < length && 0 > compare(right, left)
15844
+ ? ((heap[index] = right),
15845
+ (heap[rightIndex] = last),
15846
+ (index = rightIndex))
15847
+ : ((heap[index] = left),
15848
+ (heap[leftIndex] = last),
15849
+ (index = leftIndex));
15850
+ else if (rightIndex < length && 0 > compare(right, last))
15851
+ (heap[index] = right), (heap[rightIndex] = last), (index = rightIndex);
15852
+ else break a;
15853
+ }
15854
+ }
15855
+ return first;
15642
15856
  }
15643
- function escape(key) {
15644
- var escaperLookup = { "=": "=0", ":": "=2" };
15645
- return (
15646
- "$" +
15647
- key.replace(/[=:]/g, function (match) {
15648
- return escaperLookup[match];
15649
- })
15650
- );
15857
+ function compare(a, b) {
15858
+ var diff = a.sortIndex - b.sortIndex;
15859
+ return 0 !== diff ? diff : a.id - b.id;
15651
15860
  }
15652
- var userProvidedKeyEscapeRegex = /\/+/g;
15653
- function getElementKey(element, index) {
15654
- return "object" === typeof element && null !== element && null != element.key
15655
- ? escape("" + element.key)
15656
- : index.toString(36);
15861
+ exports.unstable_now = void 0;
15862
+ if ("object" === typeof performance && "function" === typeof performance.now) {
15863
+ var localPerformance = performance;
15864
+ exports.unstable_now = function () {
15865
+ return localPerformance.now();
15866
+ };
15867
+ } else {
15868
+ var localDate = Date,
15869
+ initialTime = localDate.now();
15870
+ exports.unstable_now = function () {
15871
+ return localDate.now() - initialTime;
15872
+ };
15657
15873
  }
15658
- function noop$1() {}
15659
- function resolveThenable(thenable) {
15660
- switch (thenable.status) {
15661
- case "fulfilled":
15662
- return thenable.value;
15663
- case "rejected":
15664
- throw thenable.reason;
15665
- default:
15666
- switch (
15667
- ("string" === typeof thenable.status
15668
- ? thenable.then(noop$1, noop$1)
15669
- : ((thenable.status = "pending"),
15670
- thenable.then(
15671
- function (fulfilledValue) {
15672
- "pending" === thenable.status &&
15673
- ((thenable.status = "fulfilled"),
15674
- (thenable.value = fulfilledValue));
15675
- },
15676
- function (error) {
15677
- "pending" === thenable.status &&
15678
- ((thenable.status = "rejected"), (thenable.reason = error));
15679
- }
15680
- )),
15681
- thenable.status)
15682
- ) {
15683
- case "fulfilled":
15684
- return thenable.value;
15685
- case "rejected":
15686
- throw thenable.reason;
15687
- }
15874
+ var taskQueue = [],
15875
+ timerQueue = [],
15876
+ taskIdCounter = 1,
15877
+ currentTask = null,
15878
+ currentPriorityLevel = 3,
15879
+ isPerformingWork = !1,
15880
+ isHostCallbackScheduled = !1,
15881
+ isHostTimeoutScheduled = !1,
15882
+ localSetTimeout = "function" === typeof setTimeout ? setTimeout : null,
15883
+ localClearTimeout = "function" === typeof clearTimeout ? clearTimeout : null,
15884
+ localSetImmediate = "undefined" !== typeof setImmediate ? setImmediate : null;
15885
+ function advanceTimers(currentTime) {
15886
+ for (var timer = peek(timerQueue); null !== timer; ) {
15887
+ if (null === timer.callback) pop(timerQueue);
15888
+ else if (timer.startTime <= currentTime)
15889
+ pop(timerQueue),
15890
+ (timer.sortIndex = timer.expirationTime),
15891
+ push(taskQueue, timer);
15892
+ else break;
15893
+ timer = peek(timerQueue);
15688
15894
  }
15689
- throw thenable;
15690
15895
  }
15691
- function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {
15692
- var type = typeof children;
15693
- if ("undefined" === type || "boolean" === type) children = null;
15694
- var invokeCallback = !1;
15695
- if (null === children) invokeCallback = !0;
15696
- else
15697
- switch (type) {
15698
- case "bigint":
15699
- case "string":
15700
- case "number":
15701
- invokeCallback = !0;
15702
- break;
15703
- case "object":
15704
- switch (children.$$typeof) {
15705
- case REACT_ELEMENT_TYPE:
15706
- case REACT_PORTAL_TYPE:
15707
- invokeCallback = !0;
15708
- break;
15709
- case REACT_LAZY_TYPE:
15710
- return (
15711
- (invokeCallback = children._init),
15712
- mapIntoArray(
15713
- invokeCallback(children._payload),
15714
- array,
15715
- escapedPrefix,
15716
- nameSoFar,
15717
- callback
15718
- )
15719
- );
15720
- }
15896
+ function handleTimeout(currentTime) {
15897
+ isHostTimeoutScheduled = !1;
15898
+ advanceTimers(currentTime);
15899
+ if (!isHostCallbackScheduled)
15900
+ if (null !== peek(taskQueue))
15901
+ (isHostCallbackScheduled = !0), requestHostCallback();
15902
+ else {
15903
+ var firstTimer = peek(timerQueue);
15904
+ null !== firstTimer &&
15905
+ requestHostTimeout(handleTimeout, firstTimer.startTime - currentTime);
15721
15906
  }
15722
- if (invokeCallback)
15723
- return (
15724
- (callback = callback(children)),
15725
- (invokeCallback =
15726
- "" === nameSoFar ? "." + getElementKey(children, 0) : nameSoFar),
15727
- isArrayImpl(callback)
15728
- ? ((escapedPrefix = ""),
15729
- null != invokeCallback &&
15730
- (escapedPrefix =
15731
- invokeCallback.replace(userProvidedKeyEscapeRegex, "$&/") + "/"),
15732
- mapIntoArray(callback, array, escapedPrefix, "", function (c) {
15733
- return c;
15734
- }))
15735
- : null != callback &&
15736
- (isValidElement(callback) &&
15737
- (callback = cloneAndReplaceKey(
15738
- callback,
15739
- escapedPrefix +
15740
- (null == callback.key ||
15741
- (children && children.key === callback.key)
15742
- ? ""
15743
- : ("" + callback.key).replace(
15744
- userProvidedKeyEscapeRegex,
15745
- "$&/"
15746
- ) + "/") +
15747
- invokeCallback
15748
- )),
15749
- array.push(callback)),
15750
- 1
15751
- );
15752
- invokeCallback = 0;
15753
- var nextNamePrefix = "" === nameSoFar ? "." : nameSoFar + ":";
15754
- if (isArrayImpl(children))
15755
- for (var i = 0; i < children.length; i++)
15756
- (nameSoFar = children[i]),
15757
- (type = nextNamePrefix + getElementKey(nameSoFar, i)),
15758
- (invokeCallback += mapIntoArray(
15759
- nameSoFar,
15760
- array,
15761
- escapedPrefix,
15762
- type,
15763
- callback
15764
- ));
15765
- else if (((i = getIteratorFn(children)), "function" === typeof i))
15766
- for (
15767
- children = i.call(children), i = 0;
15768
- !(nameSoFar = children.next()).done;
15769
-
15770
- )
15771
- (nameSoFar = nameSoFar.value),
15772
- (type = nextNamePrefix + getElementKey(nameSoFar, i++)),
15773
- (invokeCallback += mapIntoArray(
15774
- nameSoFar,
15775
- array,
15776
- escapedPrefix,
15777
- type,
15778
- callback
15779
- ));
15780
- else if ("object" === type) {
15781
- if ("function" === typeof children.then)
15782
- return mapIntoArray(
15783
- resolveThenable(children),
15784
- array,
15785
- escapedPrefix,
15786
- nameSoFar,
15787
- callback
15788
- );
15789
- array = String(children);
15790
- throw Error(
15791
- "Objects are not valid as a React child (found: " +
15792
- ("[object Object]" === array
15793
- ? "object with keys {" + Object.keys(children).join(", ") + "}"
15794
- : array) +
15795
- "). If you meant to render a collection of children, use an array instead."
15796
- );
15797
- }
15798
- return invokeCallback;
15799
15907
  }
15800
- function mapChildren(children, func, context) {
15801
- if (null == children) return children;
15802
- var result = [],
15803
- count = 0;
15804
- mapIntoArray(children, result, "", "", function (child) {
15805
- return func.call(context, child, count++);
15806
- });
15807
- return result;
15908
+ var isMessageLoopRunning = !1,
15909
+ taskTimeoutID = -1,
15910
+ frameInterval = 5,
15911
+ startTime = -1;
15912
+ function shouldYieldToHost() {
15913
+ return exports.unstable_now() - startTime < frameInterval ? !1 : !0;
15808
15914
  }
15809
- function lazyInitializer(payload) {
15810
- if (-1 === payload._status) {
15811
- var ctor = payload._result;
15812
- ctor = ctor();
15813
- ctor.then(
15814
- function (moduleObject) {
15815
- if (0 === payload._status || -1 === payload._status)
15816
- (payload._status = 1), (payload._result = moduleObject);
15817
- },
15818
- function (error) {
15819
- if (0 === payload._status || -1 === payload._status)
15820
- (payload._status = 2), (payload._result = error);
15915
+ function performWorkUntilDeadline() {
15916
+ if (isMessageLoopRunning) {
15917
+ var currentTime = exports.unstable_now();
15918
+ startTime = currentTime;
15919
+ var hasMoreWork = !0;
15920
+ try {
15921
+ a: {
15922
+ isHostCallbackScheduled = !1;
15923
+ isHostTimeoutScheduled &&
15924
+ ((isHostTimeoutScheduled = !1),
15925
+ localClearTimeout(taskTimeoutID),
15926
+ (taskTimeoutID = -1));
15927
+ isPerformingWork = !0;
15928
+ var previousPriorityLevel = currentPriorityLevel;
15929
+ try {
15930
+ b: {
15931
+ advanceTimers(currentTime);
15932
+ for (
15933
+ currentTask = peek(taskQueue);
15934
+ null !== currentTask &&
15935
+ !(
15936
+ currentTask.expirationTime > currentTime && shouldYieldToHost()
15937
+ );
15938
+
15939
+ ) {
15940
+ var callback = currentTask.callback;
15941
+ if ("function" === typeof callback) {
15942
+ currentTask.callback = null;
15943
+ currentPriorityLevel = currentTask.priorityLevel;
15944
+ var continuationCallback = callback(
15945
+ currentTask.expirationTime <= currentTime
15946
+ );
15947
+ currentTime = exports.unstable_now();
15948
+ if ("function" === typeof continuationCallback) {
15949
+ currentTask.callback = continuationCallback;
15950
+ advanceTimers(currentTime);
15951
+ hasMoreWork = !0;
15952
+ break b;
15953
+ }
15954
+ currentTask === peek(taskQueue) && pop(taskQueue);
15955
+ advanceTimers(currentTime);
15956
+ } else pop(taskQueue);
15957
+ currentTask = peek(taskQueue);
15958
+ }
15959
+ if (null !== currentTask) hasMoreWork = !0;
15960
+ else {
15961
+ var firstTimer = peek(timerQueue);
15962
+ null !== firstTimer &&
15963
+ requestHostTimeout(
15964
+ handleTimeout,
15965
+ firstTimer.startTime - currentTime
15966
+ );
15967
+ hasMoreWork = !1;
15968
+ }
15969
+ }
15970
+ break a;
15971
+ } finally {
15972
+ (currentTask = null),
15973
+ (currentPriorityLevel = previousPriorityLevel),
15974
+ (isPerformingWork = !1);
15975
+ }
15976
+ hasMoreWork = void 0;
15821
15977
  }
15822
- );
15823
- -1 === payload._status && ((payload._status = 0), (payload._result = ctor));
15978
+ } finally {
15979
+ hasMoreWork
15980
+ ? schedulePerformWorkUntilDeadline()
15981
+ : (isMessageLoopRunning = !1);
15982
+ }
15824
15983
  }
15825
- if (1 === payload._status) return payload._result.default;
15826
- throw payload._result;
15827
15984
  }
15828
- var reportGlobalError =
15829
- "function" === typeof reportError
15830
- ? reportError
15831
- : function (error) {
15832
- if (
15833
- "object" === typeof window &&
15834
- "function" === typeof window.ErrorEvent
15835
- ) {
15836
- var event = new window.ErrorEvent("error", {
15837
- bubbles: !0,
15838
- cancelable: !0,
15839
- message:
15840
- "object" === typeof error &&
15841
- null !== error &&
15842
- "string" === typeof error.message
15843
- ? String(error.message)
15844
- : String(error),
15845
- error: error
15846
- });
15847
- if (!window.dispatchEvent(event)) return;
15848
- } else if (
15849
- "object" === typeof process &&
15850
- "function" === typeof process.emit
15851
- ) {
15852
- process.emit("uncaughtException", error);
15853
- return;
15854
- }
15855
- console.error(error);
15856
- };
15857
- function noop() {}
15858
- exports.Children = {
15859
- map: mapChildren,
15860
- forEach: function (children, forEachFunc, forEachContext) {
15861
- mapChildren(
15862
- children,
15863
- function () {
15864
- forEachFunc.apply(this, arguments);
15865
- },
15866
- forEachContext
15867
- );
15868
- },
15869
- count: function (children) {
15870
- var n = 0;
15871
- mapChildren(children, function () {
15872
- n++;
15873
- });
15874
- return n;
15875
- },
15876
- toArray: function (children) {
15877
- return (
15878
- mapChildren(children, function (child) {
15879
- return child;
15880
- }) || []
15881
- );
15882
- },
15883
- only: function (children) {
15884
- if (!isValidElement(children))
15885
- throw Error(
15886
- "React.Children.only expected to receive a single React element child."
15887
- );
15888
- return children;
15889
- }
15890
- };
15891
- exports.Component = Component;
15892
- exports.Fragment = REACT_FRAGMENT_TYPE;
15893
- exports.Profiler = REACT_PROFILER_TYPE;
15894
- exports.PureComponent = PureComponent;
15895
- exports.StrictMode = REACT_STRICT_MODE_TYPE;
15896
- exports.Suspense = REACT_SUSPENSE_TYPE;
15897
- exports.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =
15898
- ReactSharedInternals;
15899
- exports.act = function () {
15900
- throw Error("act(...) is not supported in production builds of React.");
15901
- };
15902
- exports.cache = function (fn) {
15903
- return function () {
15904
- return fn.apply(null, arguments);
15905
- };
15906
- };
15907
- exports.cloneElement = function (element, config, children) {
15908
- if (null === element || void 0 === element)
15909
- throw Error(
15910
- "The argument must be a React element, but you passed " + element + "."
15911
- );
15912
- var props = assign({}, element.props),
15913
- key = element.key,
15914
- owner = void 0;
15915
- if (null != config)
15916
- for (propName in (void 0 !== config.ref && (owner = void 0),
15917
- void 0 !== config.key && (key = "" + config.key),
15918
- config))
15919
- !hasOwnProperty.call(config, propName) ||
15920
- "key" === propName ||
15921
- "__self" === propName ||
15922
- "__source" === propName ||
15923
- ("ref" === propName && void 0 === config.ref) ||
15924
- (props[propName] = config[propName]);
15925
- var propName = arguments.length - 2;
15926
- if (1 === propName) props.children = children;
15927
- else if (1 < propName) {
15928
- for (var childArray = Array(propName), i = 0; i < propName; i++)
15929
- childArray[i] = arguments[i + 2];
15930
- props.children = childArray;
15931
- }
15932
- return ReactElement(element.type, key, void 0, void 0, owner, props);
15933
- };
15934
- exports.createContext = function (defaultValue) {
15935
- defaultValue = {
15936
- $$typeof: REACT_CONTEXT_TYPE,
15937
- _currentValue: defaultValue,
15938
- _currentValue2: defaultValue,
15939
- _threadCount: 0,
15940
- Provider: null,
15941
- Consumer: null
15942
- };
15943
- defaultValue.Provider = defaultValue;
15944
- defaultValue.Consumer = {
15945
- $$typeof: REACT_CONSUMER_TYPE,
15946
- _context: defaultValue
15985
+ var schedulePerformWorkUntilDeadline;
15986
+ if ("function" === typeof localSetImmediate)
15987
+ schedulePerformWorkUntilDeadline = function () {
15988
+ localSetImmediate(performWorkUntilDeadline);
15947
15989
  };
15948
- return defaultValue;
15949
- };
15950
- exports.createElement = function (type, config, children) {
15951
- var propName,
15952
- props = {},
15953
- key = null;
15954
- if (null != config)
15955
- for (propName in (void 0 !== config.key && (key = "" + config.key), config))
15956
- hasOwnProperty.call(config, propName) &&
15957
- "key" !== propName &&
15958
- "__self" !== propName &&
15959
- "__source" !== propName &&
15960
- (props[propName] = config[propName]);
15961
- var childrenLength = arguments.length - 2;
15962
- if (1 === childrenLength) props.children = children;
15963
- else if (1 < childrenLength) {
15964
- for (var childArray = Array(childrenLength), i = 0; i < childrenLength; i++)
15965
- childArray[i] = arguments[i + 2];
15966
- props.children = childArray;
15967
- }
15968
- if (type && type.defaultProps)
15969
- for (propName in ((childrenLength = type.defaultProps), childrenLength))
15970
- void 0 === props[propName] &&
15971
- (props[propName] = childrenLength[propName]);
15972
- return ReactElement(type, key, void 0, void 0, null, props);
15973
- };
15974
- exports.createRef = function () {
15975
- return { current: null };
15976
- };
15977
- exports.forwardRef = function (render) {
15978
- return { $$typeof: REACT_FORWARD_REF_TYPE, render: render };
15979
- };
15980
- exports.isValidElement = isValidElement;
15981
- exports.lazy = function (ctor) {
15982
- return {
15983
- $$typeof: REACT_LAZY_TYPE,
15984
- _payload: { _status: -1, _result: ctor },
15985
- _init: lazyInitializer
15990
+ else if ("undefined" !== typeof MessageChannel) {
15991
+ var channel = new MessageChannel(),
15992
+ port = channel.port2;
15993
+ channel.port1.onmessage = performWorkUntilDeadline;
15994
+ schedulePerformWorkUntilDeadline = function () {
15995
+ port.postMessage(null);
15986
15996
  };
15987
- };
15988
- exports.memo = function (type, compare) {
15989
- return {
15990
- $$typeof: REACT_MEMO_TYPE,
15991
- type: type,
15992
- compare: void 0 === compare ? null : compare
15997
+ } else
15998
+ schedulePerformWorkUntilDeadline = function () {
15999
+ localSetTimeout(performWorkUntilDeadline, 0);
15993
16000
  };
16001
+ function requestHostCallback() {
16002
+ isMessageLoopRunning ||
16003
+ ((isMessageLoopRunning = !0), schedulePerformWorkUntilDeadline());
16004
+ }
16005
+ function requestHostTimeout(callback, ms) {
16006
+ taskTimeoutID = localSetTimeout(function () {
16007
+ callback(exports.unstable_now());
16008
+ }, ms);
16009
+ }
16010
+ exports.unstable_IdlePriority = 5;
16011
+ exports.unstable_ImmediatePriority = 1;
16012
+ exports.unstable_LowPriority = 4;
16013
+ exports.unstable_NormalPriority = 3;
16014
+ exports.unstable_Profiling = null;
16015
+ exports.unstable_UserBlockingPriority = 2;
16016
+ exports.unstable_cancelCallback = function (task) {
16017
+ task.callback = null;
15994
16018
  };
15995
- exports.startTransition = function (scope) {
15996
- var prevTransition = ReactSharedInternals.T,
15997
- currentTransition = {};
15998
- ReactSharedInternals.T = currentTransition;
15999
- try {
16000
- var returnValue = scope(),
16001
- onStartTransitionFinish = ReactSharedInternals.S;
16002
- null !== onStartTransitionFinish &&
16003
- onStartTransitionFinish(currentTransition, returnValue);
16004
- "object" === typeof returnValue &&
16005
- null !== returnValue &&
16006
- "function" === typeof returnValue.then &&
16007
- returnValue.then(noop, reportGlobalError);
16008
- } catch (error) {
16009
- reportGlobalError(error);
16010
- } finally {
16011
- ReactSharedInternals.T = prevTransition;
16012
- }
16013
- };
16014
- exports.unstable_useCacheRefresh = function () {
16015
- return ReactSharedInternals.H.useCacheRefresh();
16016
- };
16017
- exports.use = function (usable) {
16018
- return ReactSharedInternals.H.use(usable);
16019
- };
16020
- exports.useActionState = function (action, initialState, permalink) {
16021
- return ReactSharedInternals.H.useActionState(action, initialState, permalink);
16022
- };
16023
- exports.useCallback = function (callback, deps) {
16024
- return ReactSharedInternals.H.useCallback(callback, deps);
16025
- };
16026
- exports.useContext = function (Context) {
16027
- return ReactSharedInternals.H.useContext(Context);
16028
- };
16029
- exports.useDebugValue = function () {};
16030
- exports.useDeferredValue = function (value, initialValue) {
16031
- return ReactSharedInternals.H.useDeferredValue(value, initialValue);
16032
- };
16033
- exports.useEffect = function (create, deps) {
16034
- return ReactSharedInternals.H.useEffect(create, deps);
16035
- };
16036
- exports.useId = function () {
16037
- return ReactSharedInternals.H.useId();
16038
- };
16039
- exports.useImperativeHandle = function (ref, create, deps) {
16040
- return ReactSharedInternals.H.useImperativeHandle(ref, create, deps);
16041
- };
16042
- exports.useInsertionEffect = function (create, deps) {
16043
- return ReactSharedInternals.H.useInsertionEffect(create, deps);
16044
- };
16045
- exports.useLayoutEffect = function (create, deps) {
16046
- return ReactSharedInternals.H.useLayoutEffect(create, deps);
16019
+ exports.unstable_continueExecution = function () {
16020
+ isHostCallbackScheduled ||
16021
+ isPerformingWork ||
16022
+ ((isHostCallbackScheduled = !0), requestHostCallback());
16047
16023
  };
16048
- exports.useMemo = function (create, deps) {
16049
- return ReactSharedInternals.H.useMemo(create, deps);
16024
+ exports.unstable_forceFrameRate = function (fps) {
16025
+ 0 > fps || 125 < fps
16026
+ ? console.error(
16027
+ "forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"
16028
+ )
16029
+ : (frameInterval = 0 < fps ? Math.floor(1e3 / fps) : 5);
16050
16030
  };
16051
- exports.useOptimistic = function (passthrough, reducer) {
16052
- return ReactSharedInternals.H.useOptimistic(passthrough, reducer);
16031
+ exports.unstable_getCurrentPriorityLevel = function () {
16032
+ return currentPriorityLevel;
16053
16033
  };
16054
- exports.useReducer = function (reducer, initialArg, init) {
16055
- return ReactSharedInternals.H.useReducer(reducer, initialArg, init);
16034
+ exports.unstable_getFirstCallbackNode = function () {
16035
+ return peek(taskQueue);
16056
16036
  };
16057
- exports.useRef = function (initialValue) {
16058
- return ReactSharedInternals.H.useRef(initialValue);
16037
+ exports.unstable_next = function (eventHandler) {
16038
+ switch (currentPriorityLevel) {
16039
+ case 1:
16040
+ case 2:
16041
+ case 3:
16042
+ var priorityLevel = 3;
16043
+ break;
16044
+ default:
16045
+ priorityLevel = currentPriorityLevel;
16046
+ }
16047
+ var previousPriorityLevel = currentPriorityLevel;
16048
+ currentPriorityLevel = priorityLevel;
16049
+ try {
16050
+ return eventHandler();
16051
+ } finally {
16052
+ currentPriorityLevel = previousPriorityLevel;
16053
+ }
16059
16054
  };
16060
- exports.useState = function (initialState) {
16061
- return ReactSharedInternals.H.useState(initialState);
16055
+ exports.unstable_pauseExecution = function () {};
16056
+ exports.unstable_requestPaint = function () {};
16057
+ exports.unstable_runWithPriority = function (priorityLevel, eventHandler) {
16058
+ switch (priorityLevel) {
16059
+ case 1:
16060
+ case 2:
16061
+ case 3:
16062
+ case 4:
16063
+ case 5:
16064
+ break;
16065
+ default:
16066
+ priorityLevel = 3;
16067
+ }
16068
+ var previousPriorityLevel = currentPriorityLevel;
16069
+ currentPriorityLevel = priorityLevel;
16070
+ try {
16071
+ return eventHandler();
16072
+ } finally {
16073
+ currentPriorityLevel = previousPriorityLevel;
16074
+ }
16062
16075
  };
16063
- exports.useSyncExternalStore = function (
16064
- subscribe,
16065
- getSnapshot,
16066
- getServerSnapshot
16076
+ exports.unstable_scheduleCallback = function (
16077
+ priorityLevel,
16078
+ callback,
16079
+ options
16067
16080
  ) {
16068
- return ReactSharedInternals.H.useSyncExternalStore(
16069
- subscribe,
16070
- getSnapshot,
16071
- getServerSnapshot
16072
- );
16081
+ var currentTime = exports.unstable_now();
16082
+ "object" === typeof options && null !== options
16083
+ ? ((options = options.delay),
16084
+ (options =
16085
+ "number" === typeof options && 0 < options
16086
+ ? currentTime + options
16087
+ : currentTime))
16088
+ : (options = currentTime);
16089
+ switch (priorityLevel) {
16090
+ case 1:
16091
+ var timeout = -1;
16092
+ break;
16093
+ case 2:
16094
+ timeout = 250;
16095
+ break;
16096
+ case 5:
16097
+ timeout = 1073741823;
16098
+ break;
16099
+ case 4:
16100
+ timeout = 1e4;
16101
+ break;
16102
+ default:
16103
+ timeout = 5e3;
16104
+ }
16105
+ timeout = options + timeout;
16106
+ priorityLevel = {
16107
+ id: taskIdCounter++,
16108
+ callback: callback,
16109
+ priorityLevel: priorityLevel,
16110
+ startTime: options,
16111
+ expirationTime: timeout,
16112
+ sortIndex: -1
16113
+ };
16114
+ options > currentTime
16115
+ ? ((priorityLevel.sortIndex = options),
16116
+ push(timerQueue, priorityLevel),
16117
+ null === peek(taskQueue) &&
16118
+ priorityLevel === peek(timerQueue) &&
16119
+ (isHostTimeoutScheduled
16120
+ ? (localClearTimeout(taskTimeoutID), (taskTimeoutID = -1))
16121
+ : (isHostTimeoutScheduled = !0),
16122
+ requestHostTimeout(handleTimeout, options - currentTime)))
16123
+ : ((priorityLevel.sortIndex = timeout),
16124
+ push(taskQueue, priorityLevel),
16125
+ isHostCallbackScheduled ||
16126
+ isPerformingWork ||
16127
+ ((isHostCallbackScheduled = !0), requestHostCallback()));
16128
+ return priorityLevel;
16073
16129
  };
16074
- exports.useTransition = function () {
16075
- return ReactSharedInternals.H.useTransition();
16130
+ exports.unstable_shouldYield = shouldYieldToHost;
16131
+ exports.unstable_wrapCallback = function (callback) {
16132
+ var parentPriorityLevel = currentPriorityLevel;
16133
+ return function () {
16134
+ var previousPriorityLevel = currentPriorityLevel;
16135
+ currentPriorityLevel = parentPriorityLevel;
16136
+ try {
16137
+ return callback.apply(this, arguments);
16138
+ } finally {
16139
+ currentPriorityLevel = previousPriorityLevel;
16140
+ }
16141
+ };
16076
16142
  };
16077
- exports.version = "19.0.0";
16078
-
16079
-
16080
- /***/ }),
16081
-
16082
- /***/ 558:
16083
- /*!*********************************************************************!*\
16084
- !*** ./node_modules/.pnpm/react@19.0.0/node_modules/react/index.js ***!
16085
- \*********************************************************************/
16086
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
16087
-
16088
-
16089
-
16090
- if (true) {
16091
- module.exports = __webpack_require__(/*! ./cjs/react.production.js */ 207);
16092
- } else {}
16093
16143
 
16094
16144
 
16095
16145
  /***/ }),
16096
16146
 
16097
- /***/ 990:
16147
+ /***/ 460:
16098
16148
  /*!***************************************************************************!*\
16099
16149
  !*** ./node_modules/.pnpm/react@19.0.0/node_modules/react/jsx-runtime.js ***!
16100
16150
  \***************************************************************************/
@@ -16103,376 +16153,326 @@ if (true) {
16103
16153
 
16104
16154
 
16105
16155
  if (true) {
16106
- module.exports = __webpack_require__(/*! ./cjs/react-jsx-runtime.production.js */ 580);
16156
+ module.exports = __webpack_require__(/*! ./cjs/react-jsx-runtime.production.js */ 966);
16107
16157
  } else {}
16108
16158
 
16109
16159
 
16110
16160
  /***/ }),
16111
16161
 
16112
- /***/ 750:
16113
- /*!************************************************************************************************!*\
16114
- !*** ./node_modules/.pnpm/scheduler@0.25.0/node_modules/scheduler/cjs/scheduler.production.js ***!
16115
- \************************************************************************************************/
16116
- /***/ ((__unused_webpack_module, exports) => {
16117
-
16118
- /**
16119
- * @license React
16120
- * scheduler.production.js
16121
- *
16122
- * Copyright (c) Meta Platforms, Inc. and affiliates.
16123
- *
16124
- * This source code is licensed under the MIT license found in the
16125
- * LICENSE file in the root directory of this source tree.
16126
- */
16127
-
16128
-
16129
- function push(heap, node) {
16130
- var index = heap.length;
16131
- heap.push(node);
16132
- a: for (; 0 < index; ) {
16133
- var parentIndex = (index - 1) >>> 1,
16134
- parent = heap[parentIndex];
16135
- if (0 < compare(parent, node))
16136
- (heap[parentIndex] = node), (heap[index] = parent), (index = parentIndex);
16137
- else break a;
16138
- }
16139
- }
16140
- function peek(heap) {
16141
- return 0 === heap.length ? null : heap[0];
16142
- }
16143
- function pop(heap) {
16144
- if (0 === heap.length) return null;
16145
- var first = heap[0],
16146
- last = heap.pop();
16147
- if (last !== first) {
16148
- heap[0] = last;
16149
- a: for (
16150
- var index = 0, length = heap.length, halfLength = length >>> 1;
16151
- index < halfLength;
16152
-
16153
- ) {
16154
- var leftIndex = 2 * (index + 1) - 1,
16155
- left = heap[leftIndex],
16156
- rightIndex = leftIndex + 1,
16157
- right = heap[rightIndex];
16158
- if (0 > compare(left, last))
16159
- rightIndex < length && 0 > compare(right, left)
16160
- ? ((heap[index] = right),
16161
- (heap[rightIndex] = last),
16162
- (index = rightIndex))
16163
- : ((heap[index] = left),
16164
- (heap[leftIndex] = last),
16165
- (index = leftIndex));
16166
- else if (rightIndex < length && 0 > compare(right, last))
16167
- (heap[index] = right), (heap[rightIndex] = last), (index = rightIndex);
16168
- else break a;
16169
- }
16170
- }
16171
- return first;
16172
- }
16173
- function compare(a, b) {
16174
- var diff = a.sortIndex - b.sortIndex;
16175
- return 0 !== diff ? diff : a.id - b.id;
16176
- }
16177
- exports.unstable_now = void 0;
16178
- if ("object" === typeof performance && "function" === typeof performance.now) {
16179
- var localPerformance = performance;
16180
- exports.unstable_now = function () {
16181
- return localPerformance.now();
16182
- };
16183
- } else {
16184
- var localDate = Date,
16185
- initialTime = localDate.now();
16186
- exports.unstable_now = function () {
16187
- return localDate.now() - initialTime;
16188
- };
16189
- }
16190
- var taskQueue = [],
16191
- timerQueue = [],
16192
- taskIdCounter = 1,
16193
- currentTask = null,
16194
- currentPriorityLevel = 3,
16195
- isPerformingWork = !1,
16196
- isHostCallbackScheduled = !1,
16197
- isHostTimeoutScheduled = !1,
16198
- localSetTimeout = "function" === typeof setTimeout ? setTimeout : null,
16199
- localClearTimeout = "function" === typeof clearTimeout ? clearTimeout : null,
16200
- localSetImmediate = "undefined" !== typeof setImmediate ? setImmediate : null;
16201
- function advanceTimers(currentTime) {
16202
- for (var timer = peek(timerQueue); null !== timer; ) {
16203
- if (null === timer.callback) pop(timerQueue);
16204
- else if (timer.startTime <= currentTime)
16205
- pop(timerQueue),
16206
- (timer.sortIndex = timer.expirationTime),
16207
- push(taskQueue, timer);
16208
- else break;
16209
- timer = peek(timerQueue);
16162
+ /***/ 736:
16163
+ /*!*************************************************************************************************************!*\
16164
+ !*** ./node_modules/.pnpm/react-dom@19.0.0_react@19.0.0/node_modules/react-dom/cjs/react-dom.production.js ***!
16165
+ \*************************************************************************************************************/
16166
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
16167
+
16168
+ /**
16169
+ * @license React
16170
+ * react-dom.production.js
16171
+ *
16172
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
16173
+ *
16174
+ * This source code is licensed under the MIT license found in the
16175
+ * LICENSE file in the root directory of this source tree.
16176
+ */
16177
+
16178
+
16179
+ var React = __webpack_require__(/*! react */ 816);
16180
+ function formatProdErrorMessage(code) {
16181
+ var url = "https://react.dev/errors/" + code;
16182
+ if (1 < arguments.length) {
16183
+ url += "?args[]=" + encodeURIComponent(arguments[1]);
16184
+ for (var i = 2; i < arguments.length; i++)
16185
+ url += "&args[]=" + encodeURIComponent(arguments[i]);
16210
16186
  }
16187
+ return (
16188
+ "Minified React error #" +
16189
+ code +
16190
+ "; visit " +
16191
+ url +
16192
+ " for the full message or use the non-minified dev environment for full errors and additional helpful warnings."
16193
+ );
16211
16194
  }
16212
- function handleTimeout(currentTime) {
16213
- isHostTimeoutScheduled = !1;
16214
- advanceTimers(currentTime);
16215
- if (!isHostCallbackScheduled)
16216
- if (null !== peek(taskQueue))
16217
- (isHostCallbackScheduled = !0), requestHostCallback();
16218
- else {
16219
- var firstTimer = peek(timerQueue);
16220
- null !== firstTimer &&
16221
- requestHostTimeout(handleTimeout, firstTimer.startTime - currentTime);
16222
- }
16195
+ function noop() {}
16196
+ var Internals = {
16197
+ d: {
16198
+ f: noop,
16199
+ r: function () {
16200
+ throw Error(formatProdErrorMessage(522));
16201
+ },
16202
+ D: noop,
16203
+ C: noop,
16204
+ L: noop,
16205
+ m: noop,
16206
+ X: noop,
16207
+ S: noop,
16208
+ M: noop
16209
+ },
16210
+ p: 0,
16211
+ findDOMNode: null
16212
+ },
16213
+ REACT_PORTAL_TYPE = Symbol.for("react.portal");
16214
+ function createPortal$1(children, containerInfo, implementation) {
16215
+ var key =
16216
+ 3 < arguments.length && void 0 !== arguments[3] ? arguments[3] : null;
16217
+ return {
16218
+ $$typeof: REACT_PORTAL_TYPE,
16219
+ key: null == key ? null : "" + key,
16220
+ children: children,
16221
+ containerInfo: containerInfo,
16222
+ implementation: implementation
16223
+ };
16223
16224
  }
16224
- var isMessageLoopRunning = !1,
16225
- taskTimeoutID = -1,
16226
- frameInterval = 5,
16227
- startTime = -1;
16228
- function shouldYieldToHost() {
16229
- return exports.unstable_now() - startTime < frameInterval ? !1 : !0;
16225
+ var ReactSharedInternals =
16226
+ React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;
16227
+ function getCrossOriginStringAs(as, input) {
16228
+ if ("font" === as) return "";
16229
+ if ("string" === typeof input)
16230
+ return "use-credentials" === input ? input : "";
16230
16231
  }
16231
- function performWorkUntilDeadline() {
16232
- if (isMessageLoopRunning) {
16233
- var currentTime = exports.unstable_now();
16234
- startTime = currentTime;
16235
- var hasMoreWork = !0;
16236
- try {
16237
- a: {
16238
- isHostCallbackScheduled = !1;
16239
- isHostTimeoutScheduled &&
16240
- ((isHostTimeoutScheduled = !1),
16241
- localClearTimeout(taskTimeoutID),
16242
- (taskTimeoutID = -1));
16243
- isPerformingWork = !0;
16244
- var previousPriorityLevel = currentPriorityLevel;
16245
- try {
16246
- b: {
16247
- advanceTimers(currentTime);
16248
- for (
16249
- currentTask = peek(taskQueue);
16250
- null !== currentTask &&
16251
- !(
16252
- currentTask.expirationTime > currentTime && shouldYieldToHost()
16253
- );
16254
-
16255
- ) {
16256
- var callback = currentTask.callback;
16257
- if ("function" === typeof callback) {
16258
- currentTask.callback = null;
16259
- currentPriorityLevel = currentTask.priorityLevel;
16260
- var continuationCallback = callback(
16261
- currentTask.expirationTime <= currentTime
16262
- );
16263
- currentTime = exports.unstable_now();
16264
- if ("function" === typeof continuationCallback) {
16265
- currentTask.callback = continuationCallback;
16266
- advanceTimers(currentTime);
16267
- hasMoreWork = !0;
16268
- break b;
16269
- }
16270
- currentTask === peek(taskQueue) && pop(taskQueue);
16271
- advanceTimers(currentTime);
16272
- } else pop(taskQueue);
16273
- currentTask = peek(taskQueue);
16274
- }
16275
- if (null !== currentTask) hasMoreWork = !0;
16276
- else {
16277
- var firstTimer = peek(timerQueue);
16278
- null !== firstTimer &&
16279
- requestHostTimeout(
16280
- handleTimeout,
16281
- firstTimer.startTime - currentTime
16282
- );
16283
- hasMoreWork = !1;
16284
- }
16232
+ exports.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =
16233
+ Internals;
16234
+ exports.createPortal = function (children, container) {
16235
+ var key =
16236
+ 2 < arguments.length && void 0 !== arguments[2] ? arguments[2] : null;
16237
+ if (
16238
+ !container ||
16239
+ (1 !== container.nodeType &&
16240
+ 9 !== container.nodeType &&
16241
+ 11 !== container.nodeType)
16242
+ )
16243
+ throw Error(formatProdErrorMessage(299));
16244
+ return createPortal$1(children, container, null, key);
16245
+ };
16246
+ exports.flushSync = function (fn) {
16247
+ var previousTransition = ReactSharedInternals.T,
16248
+ previousUpdatePriority = Internals.p;
16249
+ try {
16250
+ if (((ReactSharedInternals.T = null), (Internals.p = 2), fn)) return fn();
16251
+ } finally {
16252
+ (ReactSharedInternals.T = previousTransition),
16253
+ (Internals.p = previousUpdatePriority),
16254
+ Internals.d.f();
16255
+ }
16256
+ };
16257
+ exports.preconnect = function (href, options) {
16258
+ "string" === typeof href &&
16259
+ (options
16260
+ ? ((options = options.crossOrigin),
16261
+ (options =
16262
+ "string" === typeof options
16263
+ ? "use-credentials" === options
16264
+ ? options
16265
+ : ""
16266
+ : void 0))
16267
+ : (options = null),
16268
+ Internals.d.C(href, options));
16269
+ };
16270
+ exports.prefetchDNS = function (href) {
16271
+ "string" === typeof href && Internals.d.D(href);
16272
+ };
16273
+ exports.preinit = function (href, options) {
16274
+ if ("string" === typeof href && options && "string" === typeof options.as) {
16275
+ var as = options.as,
16276
+ crossOrigin = getCrossOriginStringAs(as, options.crossOrigin),
16277
+ integrity =
16278
+ "string" === typeof options.integrity ? options.integrity : void 0,
16279
+ fetchPriority =
16280
+ "string" === typeof options.fetchPriority
16281
+ ? options.fetchPriority
16282
+ : void 0;
16283
+ "style" === as
16284
+ ? Internals.d.S(
16285
+ href,
16286
+ "string" === typeof options.precedence ? options.precedence : void 0,
16287
+ {
16288
+ crossOrigin: crossOrigin,
16289
+ integrity: integrity,
16290
+ fetchPriority: fetchPriority
16285
16291
  }
16286
- break a;
16287
- } finally {
16288
- (currentTask = null),
16289
- (currentPriorityLevel = previousPriorityLevel),
16290
- (isPerformingWork = !1);
16291
- }
16292
- hasMoreWork = void 0;
16292
+ )
16293
+ : "script" === as &&
16294
+ Internals.d.X(href, {
16295
+ crossOrigin: crossOrigin,
16296
+ integrity: integrity,
16297
+ fetchPriority: fetchPriority,
16298
+ nonce: "string" === typeof options.nonce ? options.nonce : void 0
16299
+ });
16300
+ }
16301
+ };
16302
+ exports.preinitModule = function (href, options) {
16303
+ if ("string" === typeof href)
16304
+ if ("object" === typeof options && null !== options) {
16305
+ if (null == options.as || "script" === options.as) {
16306
+ var crossOrigin = getCrossOriginStringAs(
16307
+ options.as,
16308
+ options.crossOrigin
16309
+ );
16310
+ Internals.d.M(href, {
16311
+ crossOrigin: crossOrigin,
16312
+ integrity:
16313
+ "string" === typeof options.integrity ? options.integrity : void 0,
16314
+ nonce: "string" === typeof options.nonce ? options.nonce : void 0
16315
+ });
16293
16316
  }
16294
- } finally {
16295
- hasMoreWork
16296
- ? schedulePerformWorkUntilDeadline()
16297
- : (isMessageLoopRunning = !1);
16298
- }
16317
+ } else null == options && Internals.d.M(href);
16318
+ };
16319
+ exports.preload = function (href, options) {
16320
+ if (
16321
+ "string" === typeof href &&
16322
+ "object" === typeof options &&
16323
+ null !== options &&
16324
+ "string" === typeof options.as
16325
+ ) {
16326
+ var as = options.as,
16327
+ crossOrigin = getCrossOriginStringAs(as, options.crossOrigin);
16328
+ Internals.d.L(href, as, {
16329
+ crossOrigin: crossOrigin,
16330
+ integrity:
16331
+ "string" === typeof options.integrity ? options.integrity : void 0,
16332
+ nonce: "string" === typeof options.nonce ? options.nonce : void 0,
16333
+ type: "string" === typeof options.type ? options.type : void 0,
16334
+ fetchPriority:
16335
+ "string" === typeof options.fetchPriority
16336
+ ? options.fetchPriority
16337
+ : void 0,
16338
+ referrerPolicy:
16339
+ "string" === typeof options.referrerPolicy
16340
+ ? options.referrerPolicy
16341
+ : void 0,
16342
+ imageSrcSet:
16343
+ "string" === typeof options.imageSrcSet ? options.imageSrcSet : void 0,
16344
+ imageSizes:
16345
+ "string" === typeof options.imageSizes ? options.imageSizes : void 0,
16346
+ media: "string" === typeof options.media ? options.media : void 0
16347
+ });
16299
16348
  }
16300
- }
16301
- var schedulePerformWorkUntilDeadline;
16302
- if ("function" === typeof localSetImmediate)
16303
- schedulePerformWorkUntilDeadline = function () {
16304
- localSetImmediate(performWorkUntilDeadline);
16305
- };
16306
- else if ("undefined" !== typeof MessageChannel) {
16307
- var channel = new MessageChannel(),
16308
- port = channel.port2;
16309
- channel.port1.onmessage = performWorkUntilDeadline;
16310
- schedulePerformWorkUntilDeadline = function () {
16311
- port.postMessage(null);
16312
- };
16313
- } else
16314
- schedulePerformWorkUntilDeadline = function () {
16315
- localSetTimeout(performWorkUntilDeadline, 0);
16316
- };
16317
- function requestHostCallback() {
16318
- isMessageLoopRunning ||
16319
- ((isMessageLoopRunning = !0), schedulePerformWorkUntilDeadline());
16320
- }
16321
- function requestHostTimeout(callback, ms) {
16322
- taskTimeoutID = localSetTimeout(function () {
16323
- callback(exports.unstable_now());
16324
- }, ms);
16325
- }
16326
- exports.unstable_IdlePriority = 5;
16327
- exports.unstable_ImmediatePriority = 1;
16328
- exports.unstable_LowPriority = 4;
16329
- exports.unstable_NormalPriority = 3;
16330
- exports.unstable_Profiling = null;
16331
- exports.unstable_UserBlockingPriority = 2;
16332
- exports.unstable_cancelCallback = function (task) {
16333
- task.callback = null;
16334
16349
  };
16335
- exports.unstable_continueExecution = function () {
16336
- isHostCallbackScheduled ||
16337
- isPerformingWork ||
16338
- ((isHostCallbackScheduled = !0), requestHostCallback());
16350
+ exports.preloadModule = function (href, options) {
16351
+ if ("string" === typeof href)
16352
+ if (options) {
16353
+ var crossOrigin = getCrossOriginStringAs(options.as, options.crossOrigin);
16354
+ Internals.d.m(href, {
16355
+ as:
16356
+ "string" === typeof options.as && "script" !== options.as
16357
+ ? options.as
16358
+ : void 0,
16359
+ crossOrigin: crossOrigin,
16360
+ integrity:
16361
+ "string" === typeof options.integrity ? options.integrity : void 0
16362
+ });
16363
+ } else Internals.d.m(href);
16339
16364
  };
16340
- exports.unstable_forceFrameRate = function (fps) {
16341
- 0 > fps || 125 < fps
16342
- ? console.error(
16343
- "forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"
16344
- )
16345
- : (frameInterval = 0 < fps ? Math.floor(1e3 / fps) : 5);
16365
+ exports.requestFormReset = function (form) {
16366
+ Internals.d.r(form);
16346
16367
  };
16347
- exports.unstable_getCurrentPriorityLevel = function () {
16348
- return currentPriorityLevel;
16368
+ exports.unstable_batchedUpdates = function (fn, a) {
16369
+ return fn(a);
16349
16370
  };
16350
- exports.unstable_getFirstCallbackNode = function () {
16351
- return peek(taskQueue);
16371
+ exports.useFormState = function (action, initialState, permalink) {
16372
+ return ReactSharedInternals.H.useFormState(action, initialState, permalink);
16352
16373
  };
16353
- exports.unstable_next = function (eventHandler) {
16354
- switch (currentPriorityLevel) {
16355
- case 1:
16356
- case 2:
16357
- case 3:
16358
- var priorityLevel = 3;
16359
- break;
16360
- default:
16361
- priorityLevel = currentPriorityLevel;
16362
- }
16363
- var previousPriorityLevel = currentPriorityLevel;
16364
- currentPriorityLevel = priorityLevel;
16365
- try {
16366
- return eventHandler();
16367
- } finally {
16368
- currentPriorityLevel = previousPriorityLevel;
16369
- }
16374
+ exports.useFormStatus = function () {
16375
+ return ReactSharedInternals.H.useHostTransitionStatus();
16370
16376
  };
16371
- exports.unstable_pauseExecution = function () {};
16372
- exports.unstable_requestPaint = function () {};
16373
- exports.unstable_runWithPriority = function (priorityLevel, eventHandler) {
16374
- switch (priorityLevel) {
16375
- case 1:
16376
- case 2:
16377
- case 3:
16378
- case 4:
16379
- case 5:
16380
- break;
16381
- default:
16382
- priorityLevel = 3;
16377
+ exports.version = "19.0.0";
16378
+
16379
+
16380
+ /***/ }),
16381
+
16382
+ /***/ 766:
16383
+ /*!******************************************************************************************!*\
16384
+ !*** ./node_modules/.pnpm/react-dom@19.0.0_react@19.0.0/node_modules/react-dom/index.js ***!
16385
+ \******************************************************************************************/
16386
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
16387
+
16388
+
16389
+
16390
+ function checkDCE() {
16391
+ /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */
16392
+ if (
16393
+ typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined' ||
16394
+ typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE !== 'function'
16395
+ ) {
16396
+ return;
16383
16397
  }
16384
- var previousPriorityLevel = currentPriorityLevel;
16385
- currentPriorityLevel = priorityLevel;
16398
+ if (false) {}
16386
16399
  try {
16387
- return eventHandler();
16388
- } finally {
16389
- currentPriorityLevel = previousPriorityLevel;
16390
- }
16391
- };
16392
- exports.unstable_scheduleCallback = function (
16393
- priorityLevel,
16394
- callback,
16395
- options
16396
- ) {
16397
- var currentTime = exports.unstable_now();
16398
- "object" === typeof options && null !== options
16399
- ? ((options = options.delay),
16400
- (options =
16401
- "number" === typeof options && 0 < options
16402
- ? currentTime + options
16403
- : currentTime))
16404
- : (options = currentTime);
16405
- switch (priorityLevel) {
16406
- case 1:
16407
- var timeout = -1;
16408
- break;
16409
- case 2:
16410
- timeout = 250;
16411
- break;
16412
- case 5:
16413
- timeout = 1073741823;
16414
- break;
16415
- case 4:
16416
- timeout = 1e4;
16417
- break;
16418
- default:
16419
- timeout = 5e3;
16400
+ // Verify that the code above has been dead code eliminated (DCE'd).
16401
+ __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(checkDCE);
16402
+ } catch (err) {
16403
+ // DevTools shouldn't crash React, no matter what.
16404
+ // We should still report in case we break this code.
16405
+ console.error(err);
16420
16406
  }
16421
- timeout = options + timeout;
16422
- priorityLevel = {
16423
- id: taskIdCounter++,
16424
- callback: callback,
16425
- priorityLevel: priorityLevel,
16426
- startTime: options,
16427
- expirationTime: timeout,
16428
- sortIndex: -1
16429
- };
16430
- options > currentTime
16431
- ? ((priorityLevel.sortIndex = options),
16432
- push(timerQueue, priorityLevel),
16433
- null === peek(taskQueue) &&
16434
- priorityLevel === peek(timerQueue) &&
16435
- (isHostTimeoutScheduled
16436
- ? (localClearTimeout(taskTimeoutID), (taskTimeoutID = -1))
16437
- : (isHostTimeoutScheduled = !0),
16438
- requestHostTimeout(handleTimeout, options - currentTime)))
16439
- : ((priorityLevel.sortIndex = timeout),
16440
- push(taskQueue, priorityLevel),
16441
- isHostCallbackScheduled ||
16442
- isPerformingWork ||
16443
- ((isHostCallbackScheduled = !0), requestHostCallback()));
16444
- return priorityLevel;
16445
- };
16446
- exports.unstable_shouldYield = shouldYieldToHost;
16447
- exports.unstable_wrapCallback = function (callback) {
16448
- var parentPriorityLevel = currentPriorityLevel;
16449
- return function () {
16450
- var previousPriorityLevel = currentPriorityLevel;
16451
- currentPriorityLevel = parentPriorityLevel;
16452
- try {
16453
- return callback.apply(this, arguments);
16454
- } finally {
16455
- currentPriorityLevel = previousPriorityLevel;
16456
- }
16457
- };
16458
- };
16407
+ }
16408
+
16409
+ if (true) {
16410
+ // DCE check should happen before ReactDOM bundle executes so that
16411
+ // DevTools can report bad minification during injection.
16412
+ checkDCE();
16413
+ module.exports = __webpack_require__(/*! ./cjs/react-dom.production.js */ 736);
16414
+ } else {}
16459
16415
 
16460
16416
 
16461
16417
  /***/ }),
16462
16418
 
16463
- /***/ 735:
16464
- /*!*****************************************************************************!*\
16465
- !*** ./node_modules/.pnpm/scheduler@0.25.0/node_modules/scheduler/index.js ***!
16466
- \*****************************************************************************/
16419
+ /***/ 816:
16420
+ /*!*********************************************************************!*\
16421
+ !*** ./node_modules/.pnpm/react@19.0.0/node_modules/react/index.js ***!
16422
+ \*********************************************************************/
16467
16423
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
16468
16424
 
16469
16425
 
16470
16426
 
16471
16427
  if (true) {
16472
- module.exports = __webpack_require__(/*! ./cjs/scheduler.production.js */ 750);
16428
+ module.exports = __webpack_require__(/*! ./cjs/react.production.js */ 1);
16473
16429
  } else {}
16474
16430
 
16475
16431
 
16432
+ /***/ }),
16433
+
16434
+ /***/ 966:
16435
+ /*!************************************************************************************************!*\
16436
+ !*** ./node_modules/.pnpm/react@19.0.0/node_modules/react/cjs/react-jsx-runtime.production.js ***!
16437
+ \************************************************************************************************/
16438
+ /***/ ((__unused_webpack_module, exports) => {
16439
+
16440
+ /**
16441
+ * @license React
16442
+ * react-jsx-runtime.production.js
16443
+ *
16444
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
16445
+ *
16446
+ * This source code is licensed under the MIT license found in the
16447
+ * LICENSE file in the root directory of this source tree.
16448
+ */
16449
+
16450
+
16451
+ var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
16452
+ REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
16453
+ function jsxProd(type, config, maybeKey) {
16454
+ var key = null;
16455
+ void 0 !== maybeKey && (key = "" + maybeKey);
16456
+ void 0 !== config.key && (key = "" + config.key);
16457
+ if ("key" in config) {
16458
+ maybeKey = {};
16459
+ for (var propName in config)
16460
+ "key" !== propName && (maybeKey[propName] = config[propName]);
16461
+ } else maybeKey = config;
16462
+ config = maybeKey.ref;
16463
+ return {
16464
+ $$typeof: REACT_ELEMENT_TYPE,
16465
+ type: type,
16466
+ key: key,
16467
+ ref: void 0 !== config ? config : null,
16468
+ props: maybeKey
16469
+ };
16470
+ }
16471
+ exports.Fragment = REACT_FRAGMENT_TYPE;
16472
+ exports.jsx = jsxProd;
16473
+ exports.jsxs = jsxProd;
16474
+
16475
+
16476
16476
  /***/ })
16477
16477
 
16478
16478
  /******/ });
@@ -16575,10 +16575,10 @@ __webpack_require__.r(__webpack_exports__);
16575
16575
  /* 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))),
16576
16576
  /* 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)))
16577
16577
  /* harmony export */ });
16578
- /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ 558);
16579
- /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react/jsx-runtime */ 990);
16580
- /* harmony import */ var react_dom__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! react-dom */ 868);
16581
- /* harmony import */ var react_dom_client__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! react-dom/client */ 573);
16578
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ 816);
16579
+ /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react/jsx-runtime */ 460);
16580
+ /* harmony import */ var react_dom__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! react-dom */ 766);
16581
+ /* harmony import */ var react_dom_client__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! react-dom/client */ 279);
16582
16582
 
16583
16583
 
16584
16584