xshell 1.2.40 → 1.2.42

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,7 +2,7 @@
2
2
  /******/ "use strict";
3
3
  /******/ var __webpack_modules__ = ({
4
4
 
5
- /***/ 213:
5
+ /***/ 75:
6
6
  /*!*********************************************************************!*\
7
7
  !*** ./node_modules/.pnpm/react@19.1.0/node_modules/react/index.js ***!
8
8
  \*********************************************************************/
@@ -11,16 +11,16 @@
11
11
 
12
12
 
13
13
  if (true) {
14
- module.exports = __webpack_require__(/*! ./cjs/react.production.js */ 826);
14
+ module.exports = __webpack_require__(/*! ./cjs/react.production.js */ 992);
15
15
  } else {}
16
16
 
17
17
 
18
18
  /***/ }),
19
19
 
20
- /***/ 373:
21
- /*!*******************************************************************************************!*\
22
- !*** ./node_modules/.pnpm/react-dom@19.1.0_react@19.1.0/node_modules/react-dom/client.js ***!
23
- \*******************************************************************************************/
20
+ /***/ 186:
21
+ /*!******************************************************************************************!*\
22
+ !*** ./node_modules/.pnpm/react-dom@19.1.0_react@19.1.0/node_modules/react-dom/index.js ***!
23
+ \******************************************************************************************/
24
24
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
25
25
 
26
26
 
@@ -48,21 +48,21 @@ if (true) {
48
48
  // DCE check should happen before ReactDOM bundle executes so that
49
49
  // DevTools can report bad minification during injection.
50
50
  checkDCE();
51
- module.exports = __webpack_require__(/*! ./cjs/react-dom-client.production.js */ 722);
51
+ module.exports = __webpack_require__(/*! ./cjs/react-dom.production.js */ 692);
52
52
  } else {}
53
53
 
54
54
 
55
55
  /***/ }),
56
56
 
57
- /***/ 458:
58
- /*!*************************************************************************************************************!*\
59
- !*** ./node_modules/.pnpm/react-dom@19.1.0_react@19.1.0/node_modules/react-dom/cjs/react-dom.production.js ***!
60
- \*************************************************************************************************************/
57
+ /***/ 256:
58
+ /*!********************************************************************************************************************!*\
59
+ !*** ./node_modules/.pnpm/react-dom@19.1.0_react@19.1.0/node_modules/react-dom/cjs/react-dom-client.production.js ***!
60
+ \********************************************************************************************************************/
61
61
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
62
62
 
63
63
  /**
64
64
  * @license React
65
- * react-dom.production.js
65
+ * react-dom-client.production.js
66
66
  *
67
67
  * Copyright (c) Meta Platforms, Inc. and affiliates.
68
68
  *
@@ -70,8 +70,13 @@ if (true) {
70
70
  * LICENSE file in the root directory of this source tree.
71
71
  */
72
72
 
73
+ /*
74
+ Modernizr 3.0.0pre (Custom Build) | MIT
75
+ */
73
76
 
74
- var React = __webpack_require__(/*! react */ 213);
77
+ var Scheduler = __webpack_require__(/*! scheduler */ 816),
78
+ React = __webpack_require__(/*! react */ 75),
79
+ ReactDOM = __webpack_require__(/*! react-dom */ 186);
75
80
  function formatProdErrorMessage(code) {
76
81
  var url = "https://react.dev/errors/" + code;
77
82
  if (1 < arguments.length) {
@@ -87,1098 +92,479 @@ function formatProdErrorMessage(code) {
87
92
  " for the full message or use the non-minified dev environment for full errors and additional helpful warnings."
88
93
  );
89
94
  }
90
- function noop() {}
91
- var Internals = {
92
- d: {
93
- f: noop,
94
- r: function () {
95
- throw Error(formatProdErrorMessage(522));
96
- },
97
- D: noop,
98
- C: noop,
99
- L: noop,
100
- m: noop,
101
- X: noop,
102
- S: noop,
103
- M: noop
104
- },
105
- p: 0,
106
- findDOMNode: null
107
- },
108
- REACT_PORTAL_TYPE = Symbol.for("react.portal");
109
- function createPortal$1(children, containerInfo, implementation) {
110
- var key =
111
- 3 < arguments.length && void 0 !== arguments[3] ? arguments[3] : null;
112
- return {
113
- $$typeof: REACT_PORTAL_TYPE,
114
- key: null == key ? null : "" + key,
115
- children: children,
116
- containerInfo: containerInfo,
117
- implementation: implementation
118
- };
95
+ function isValidContainer(node) {
96
+ return !(
97
+ !node ||
98
+ (1 !== node.nodeType && 9 !== node.nodeType && 11 !== node.nodeType)
99
+ );
119
100
  }
120
- var ReactSharedInternals =
121
- React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;
122
- function getCrossOriginStringAs(as, input) {
123
- if ("font" === as) return "";
124
- if ("string" === typeof input)
125
- return "use-credentials" === input ? input : "";
101
+ function getNearestMountedFiber(fiber) {
102
+ var node = fiber,
103
+ nearestMounted = fiber;
104
+ if (fiber.alternate) for (; node.return; ) node = node.return;
105
+ else {
106
+ fiber = node;
107
+ do
108
+ (node = fiber),
109
+ 0 !== (node.flags & 4098) && (nearestMounted = node.return),
110
+ (fiber = node.return);
111
+ while (fiber);
112
+ }
113
+ return 3 === node.tag ? nearestMounted : null;
126
114
  }
127
- exports.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =
128
- Internals;
129
- exports.createPortal = function (children, container) {
130
- var key =
131
- 2 < arguments.length && void 0 !== arguments[2] ? arguments[2] : null;
132
- if (
133
- !container ||
134
- (1 !== container.nodeType &&
135
- 9 !== container.nodeType &&
136
- 11 !== container.nodeType)
137
- )
138
- throw Error(formatProdErrorMessage(299));
139
- return createPortal$1(children, container, null, key);
140
- };
141
- exports.flushSync = function (fn) {
142
- var previousTransition = ReactSharedInternals.T,
143
- previousUpdatePriority = Internals.p;
144
- try {
145
- if (((ReactSharedInternals.T = null), (Internals.p = 2), fn)) return fn();
146
- } finally {
147
- (ReactSharedInternals.T = previousTransition),
148
- (Internals.p = previousUpdatePriority),
149
- Internals.d.f();
115
+ function getSuspenseInstanceFromFiber(fiber) {
116
+ if (13 === fiber.tag) {
117
+ var suspenseState = fiber.memoizedState;
118
+ null === suspenseState &&
119
+ ((fiber = fiber.alternate),
120
+ null !== fiber && (suspenseState = fiber.memoizedState));
121
+ if (null !== suspenseState) return suspenseState.dehydrated;
150
122
  }
151
- };
152
- exports.preconnect = function (href, options) {
153
- "string" === typeof href &&
154
- (options
155
- ? ((options = options.crossOrigin),
156
- (options =
157
- "string" === typeof options
158
- ? "use-credentials" === options
159
- ? options
160
- : ""
161
- : void 0))
162
- : (options = null),
163
- Internals.d.C(href, options));
164
- };
165
- exports.prefetchDNS = function (href) {
166
- "string" === typeof href && Internals.d.D(href);
167
- };
168
- exports.preinit = function (href, options) {
169
- if ("string" === typeof href && options && "string" === typeof options.as) {
170
- var as = options.as,
171
- crossOrigin = getCrossOriginStringAs(as, options.crossOrigin),
172
- integrity =
173
- "string" === typeof options.integrity ? options.integrity : void 0,
174
- fetchPriority =
175
- "string" === typeof options.fetchPriority
176
- ? options.fetchPriority
177
- : void 0;
178
- "style" === as
179
- ? Internals.d.S(
180
- href,
181
- "string" === typeof options.precedence ? options.precedence : void 0,
182
- {
183
- crossOrigin: crossOrigin,
184
- integrity: integrity,
185
- fetchPriority: fetchPriority
186
- }
187
- )
188
- : "script" === as &&
189
- Internals.d.X(href, {
190
- crossOrigin: crossOrigin,
191
- integrity: integrity,
192
- fetchPriority: fetchPriority,
193
- nonce: "string" === typeof options.nonce ? options.nonce : void 0
194
- });
123
+ return null;
124
+ }
125
+ function assertIsMounted(fiber) {
126
+ if (getNearestMountedFiber(fiber) !== fiber)
127
+ throw Error(formatProdErrorMessage(188));
128
+ }
129
+ function findCurrentFiberUsingSlowPath(fiber) {
130
+ var alternate = fiber.alternate;
131
+ if (!alternate) {
132
+ alternate = getNearestMountedFiber(fiber);
133
+ if (null === alternate) throw Error(formatProdErrorMessage(188));
134
+ return alternate !== fiber ? null : fiber;
195
135
  }
196
- };
197
- exports.preinitModule = function (href, options) {
198
- if ("string" === typeof href)
199
- if ("object" === typeof options && null !== options) {
200
- if (null == options.as || "script" === options.as) {
201
- var crossOrigin = getCrossOriginStringAs(
202
- options.as,
203
- options.crossOrigin
204
- );
205
- Internals.d.M(href, {
206
- crossOrigin: crossOrigin,
207
- integrity:
208
- "string" === typeof options.integrity ? options.integrity : void 0,
209
- nonce: "string" === typeof options.nonce ? options.nonce : void 0
210
- });
136
+ for (var a = fiber, b = alternate; ; ) {
137
+ var parentA = a.return;
138
+ if (null === parentA) break;
139
+ var parentB = parentA.alternate;
140
+ if (null === parentB) {
141
+ b = parentA.return;
142
+ if (null !== b) {
143
+ a = b;
144
+ continue;
211
145
  }
212
- } else null == options && Internals.d.M(href);
213
- };
214
- exports.preload = function (href, options) {
215
- if (
216
- "string" === typeof href &&
217
- "object" === typeof options &&
218
- null !== options &&
219
- "string" === typeof options.as
220
- ) {
221
- var as = options.as,
222
- crossOrigin = getCrossOriginStringAs(as, options.crossOrigin);
223
- Internals.d.L(href, as, {
224
- crossOrigin: crossOrigin,
225
- integrity:
226
- "string" === typeof options.integrity ? options.integrity : void 0,
227
- nonce: "string" === typeof options.nonce ? options.nonce : void 0,
228
- type: "string" === typeof options.type ? options.type : void 0,
229
- fetchPriority:
230
- "string" === typeof options.fetchPriority
231
- ? options.fetchPriority
232
- : void 0,
233
- referrerPolicy:
234
- "string" === typeof options.referrerPolicy
235
- ? options.referrerPolicy
236
- : void 0,
237
- imageSrcSet:
238
- "string" === typeof options.imageSrcSet ? options.imageSrcSet : void 0,
239
- imageSizes:
240
- "string" === typeof options.imageSizes ? options.imageSizes : void 0,
241
- media: "string" === typeof options.media ? options.media : void 0
242
- });
243
- }
244
- };
245
- exports.preloadModule = function (href, options) {
246
- if ("string" === typeof href)
247
- if (options) {
248
- var crossOrigin = getCrossOriginStringAs(options.as, options.crossOrigin);
249
- Internals.d.m(href, {
250
- as:
251
- "string" === typeof options.as && "script" !== options.as
252
- ? options.as
253
- : void 0,
254
- crossOrigin: crossOrigin,
255
- integrity:
256
- "string" === typeof options.integrity ? options.integrity : void 0
257
- });
258
- } else Internals.d.m(href);
259
- };
260
- exports.requestFormReset = function (form) {
261
- Internals.d.r(form);
262
- };
263
- exports.unstable_batchedUpdates = function (fn, a) {
264
- return fn(a);
265
- };
266
- exports.useFormState = function (action, initialState, permalink) {
267
- return ReactSharedInternals.H.useFormState(action, initialState, permalink);
268
- };
269
- exports.useFormStatus = function () {
270
- return ReactSharedInternals.H.useHostTransitionStatus();
271
- };
272
- exports.version = "19.1.0";
273
-
274
-
275
- /***/ }),
276
-
277
- /***/ 505:
278
- /*!************************************************************************************************!*\
279
- !*** ./node_modules/.pnpm/scheduler@0.26.0/node_modules/scheduler/cjs/scheduler.production.js ***!
280
- \************************************************************************************************/
281
- /***/ ((__unused_webpack_module, exports) => {
282
-
283
- /**
284
- * @license React
285
- * scheduler.production.js
286
- *
287
- * Copyright (c) Meta Platforms, Inc. and affiliates.
288
- *
289
- * This source code is licensed under the MIT license found in the
290
- * LICENSE file in the root directory of this source tree.
291
- */
292
-
293
-
294
- function push(heap, node) {
295
- var index = heap.length;
296
- heap.push(node);
297
- a: for (; 0 < index; ) {
298
- var parentIndex = (index - 1) >>> 1,
299
- parent = heap[parentIndex];
300
- if (0 < compare(parent, node))
301
- (heap[parentIndex] = node), (heap[index] = parent), (index = parentIndex);
302
- else break a;
303
- }
304
- }
305
- function peek(heap) {
306
- return 0 === heap.length ? null : heap[0];
307
- }
308
- function pop(heap) {
309
- if (0 === heap.length) return null;
310
- var first = heap[0],
311
- last = heap.pop();
312
- if (last !== first) {
313
- heap[0] = last;
314
- a: for (
315
- var index = 0, length = heap.length, halfLength = length >>> 1;
316
- index < halfLength;
317
-
318
- ) {
319
- var leftIndex = 2 * (index + 1) - 1,
320
- left = heap[leftIndex],
321
- rightIndex = leftIndex + 1,
322
- right = heap[rightIndex];
323
- if (0 > compare(left, last))
324
- rightIndex < length && 0 > compare(right, left)
325
- ? ((heap[index] = right),
326
- (heap[rightIndex] = last),
327
- (index = rightIndex))
328
- : ((heap[index] = left),
329
- (heap[leftIndex] = last),
330
- (index = leftIndex));
331
- else if (rightIndex < length && 0 > compare(right, last))
332
- (heap[index] = right), (heap[rightIndex] = last), (index = rightIndex);
333
- else break a;
146
+ break;
334
147
  }
335
- }
336
- return first;
337
- }
338
- function compare(a, b) {
339
- var diff = a.sortIndex - b.sortIndex;
340
- return 0 !== diff ? diff : a.id - b.id;
341
- }
342
- exports.unstable_now = void 0;
343
- if ("object" === typeof performance && "function" === typeof performance.now) {
344
- var localPerformance = performance;
345
- exports.unstable_now = function () {
346
- return localPerformance.now();
347
- };
348
- } else {
349
- var localDate = Date,
350
- initialTime = localDate.now();
351
- exports.unstable_now = function () {
352
- return localDate.now() - initialTime;
353
- };
354
- }
355
- var taskQueue = [],
356
- timerQueue = [],
357
- taskIdCounter = 1,
358
- currentTask = null,
359
- currentPriorityLevel = 3,
360
- isPerformingWork = !1,
361
- isHostCallbackScheduled = !1,
362
- isHostTimeoutScheduled = !1,
363
- needsPaint = !1,
364
- localSetTimeout = "function" === typeof setTimeout ? setTimeout : null,
365
- localClearTimeout = "function" === typeof clearTimeout ? clearTimeout : null,
366
- localSetImmediate = "undefined" !== typeof setImmediate ? setImmediate : null;
367
- function advanceTimers(currentTime) {
368
- for (var timer = peek(timerQueue); null !== timer; ) {
369
- if (null === timer.callback) pop(timerQueue);
370
- else if (timer.startTime <= currentTime)
371
- pop(timerQueue),
372
- (timer.sortIndex = timer.expirationTime),
373
- push(taskQueue, timer);
374
- else break;
375
- timer = peek(timerQueue);
376
- }
377
- }
378
- function handleTimeout(currentTime) {
379
- isHostTimeoutScheduled = !1;
380
- advanceTimers(currentTime);
381
- if (!isHostCallbackScheduled)
382
- if (null !== peek(taskQueue))
383
- (isHostCallbackScheduled = !0),
384
- isMessageLoopRunning ||
385
- ((isMessageLoopRunning = !0), schedulePerformWorkUntilDeadline());
386
- else {
387
- var firstTimer = peek(timerQueue);
388
- null !== firstTimer &&
389
- requestHostTimeout(handleTimeout, firstTimer.startTime - currentTime);
148
+ if (parentA.child === parentB.child) {
149
+ for (parentB = parentA.child; parentB; ) {
150
+ if (parentB === a) return assertIsMounted(parentA), fiber;
151
+ if (parentB === b) return assertIsMounted(parentA), alternate;
152
+ parentB = parentB.sibling;
153
+ }
154
+ throw Error(formatProdErrorMessage(188));
390
155
  }
391
- }
392
- var isMessageLoopRunning = !1,
393
- taskTimeoutID = -1,
394
- frameInterval = 5,
395
- startTime = -1;
396
- function shouldYieldToHost() {
397
- return needsPaint
398
- ? !0
399
- : exports.unstable_now() - startTime < frameInterval
400
- ? !1
401
- : !0;
402
- }
403
- function performWorkUntilDeadline() {
404
- needsPaint = !1;
405
- if (isMessageLoopRunning) {
406
- var currentTime = exports.unstable_now();
407
- startTime = currentTime;
408
- var hasMoreWork = !0;
409
- try {
410
- a: {
411
- isHostCallbackScheduled = !1;
412
- isHostTimeoutScheduled &&
413
- ((isHostTimeoutScheduled = !1),
414
- localClearTimeout(taskTimeoutID),
415
- (taskTimeoutID = -1));
416
- isPerformingWork = !0;
417
- var previousPriorityLevel = currentPriorityLevel;
418
- try {
419
- b: {
420
- advanceTimers(currentTime);
421
- for (
422
- currentTask = peek(taskQueue);
423
- null !== currentTask &&
424
- !(
425
- currentTask.expirationTime > currentTime && shouldYieldToHost()
426
- );
427
-
428
- ) {
429
- var callback = currentTask.callback;
430
- if ("function" === typeof callback) {
431
- currentTask.callback = null;
432
- currentPriorityLevel = currentTask.priorityLevel;
433
- var continuationCallback = callback(
434
- currentTask.expirationTime <= currentTime
435
- );
436
- currentTime = exports.unstable_now();
437
- if ("function" === typeof continuationCallback) {
438
- currentTask.callback = continuationCallback;
439
- advanceTimers(currentTime);
440
- hasMoreWork = !0;
441
- break b;
442
- }
443
- currentTask === peek(taskQueue) && pop(taskQueue);
444
- advanceTimers(currentTime);
445
- } else pop(taskQueue);
446
- currentTask = peek(taskQueue);
447
- }
448
- if (null !== currentTask) hasMoreWork = !0;
449
- else {
450
- var firstTimer = peek(timerQueue);
451
- null !== firstTimer &&
452
- requestHostTimeout(
453
- handleTimeout,
454
- firstTimer.startTime - currentTime
455
- );
456
- hasMoreWork = !1;
457
- }
156
+ if (a.return !== b.return) (a = parentA), (b = parentB);
157
+ else {
158
+ for (var didFindChild = !1, child$0 = parentA.child; child$0; ) {
159
+ if (child$0 === a) {
160
+ didFindChild = !0;
161
+ a = parentA;
162
+ b = parentB;
163
+ break;
164
+ }
165
+ if (child$0 === b) {
166
+ didFindChild = !0;
167
+ b = parentA;
168
+ a = parentB;
169
+ break;
170
+ }
171
+ child$0 = child$0.sibling;
172
+ }
173
+ if (!didFindChild) {
174
+ for (child$0 = parentB.child; child$0; ) {
175
+ if (child$0 === a) {
176
+ didFindChild = !0;
177
+ a = parentB;
178
+ b = parentA;
179
+ break;
458
180
  }
459
- break a;
460
- } finally {
461
- (currentTask = null),
462
- (currentPriorityLevel = previousPriorityLevel),
463
- (isPerformingWork = !1);
181
+ if (child$0 === b) {
182
+ didFindChild = !0;
183
+ b = parentB;
184
+ a = parentA;
185
+ break;
186
+ }
187
+ child$0 = child$0.sibling;
464
188
  }
465
- hasMoreWork = void 0;
189
+ if (!didFindChild) throw Error(formatProdErrorMessage(189));
466
190
  }
467
- } finally {
468
- hasMoreWork
469
- ? schedulePerformWorkUntilDeadline()
470
- : (isMessageLoopRunning = !1);
471
191
  }
192
+ if (a.alternate !== b) throw Error(formatProdErrorMessage(190));
472
193
  }
194
+ if (3 !== a.tag) throw Error(formatProdErrorMessage(188));
195
+ return a.stateNode.current === a ? fiber : alternate;
473
196
  }
474
- var schedulePerformWorkUntilDeadline;
475
- if ("function" === typeof localSetImmediate)
476
- schedulePerformWorkUntilDeadline = function () {
477
- localSetImmediate(performWorkUntilDeadline);
478
- };
479
- else if ("undefined" !== typeof MessageChannel) {
480
- var channel = new MessageChannel(),
481
- port = channel.port2;
482
- channel.port1.onmessage = performWorkUntilDeadline;
483
- schedulePerformWorkUntilDeadline = function () {
484
- port.postMessage(null);
485
- };
486
- } else
487
- schedulePerformWorkUntilDeadline = function () {
488
- localSetTimeout(performWorkUntilDeadline, 0);
489
- };
490
- function requestHostTimeout(callback, ms) {
491
- taskTimeoutID = localSetTimeout(function () {
492
- callback(exports.unstable_now());
493
- }, ms);
197
+ function findCurrentHostFiberImpl(node) {
198
+ var tag = node.tag;
199
+ if (5 === tag || 26 === tag || 27 === tag || 6 === tag) return node;
200
+ for (node = node.child; null !== node; ) {
201
+ tag = findCurrentHostFiberImpl(node);
202
+ if (null !== tag) return tag;
203
+ node = node.sibling;
204
+ }
205
+ return null;
494
206
  }
495
- exports.unstable_IdlePriority = 5;
496
- exports.unstable_ImmediatePriority = 1;
497
- exports.unstable_LowPriority = 4;
498
- exports.unstable_NormalPriority = 3;
499
- exports.unstable_Profiling = null;
500
- exports.unstable_UserBlockingPriority = 2;
501
- exports.unstable_cancelCallback = function (task) {
502
- task.callback = null;
503
- };
504
- exports.unstable_forceFrameRate = function (fps) {
505
- 0 > fps || 125 < fps
506
- ? console.error(
507
- "forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"
508
- )
509
- : (frameInterval = 0 < fps ? Math.floor(1e3 / fps) : 5);
510
- };
511
- exports.unstable_getCurrentPriorityLevel = function () {
512
- return currentPriorityLevel;
513
- };
514
- exports.unstable_next = function (eventHandler) {
515
- switch (currentPriorityLevel) {
516
- case 1:
517
- case 2:
518
- case 3:
519
- var priorityLevel = 3;
207
+ var assign = Object.assign,
208
+ REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
209
+ REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
210
+ REACT_PORTAL_TYPE = Symbol.for("react.portal"),
211
+ REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
212
+ REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
213
+ REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
214
+ REACT_PROVIDER_TYPE = Symbol.for("react.provider"),
215
+ REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
216
+ REACT_CONTEXT_TYPE = Symbol.for("react.context"),
217
+ REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
218
+ REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"),
219
+ REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"),
220
+ REACT_MEMO_TYPE = Symbol.for("react.memo"),
221
+ REACT_LAZY_TYPE = Symbol.for("react.lazy");
222
+ Symbol.for("react.scope");
223
+ var REACT_ACTIVITY_TYPE = Symbol.for("react.activity");
224
+ Symbol.for("react.legacy_hidden");
225
+ Symbol.for("react.tracing_marker");
226
+ var REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel");
227
+ Symbol.for("react.view_transition");
228
+ var MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
229
+ function getIteratorFn(maybeIterable) {
230
+ if (null === maybeIterable || "object" !== typeof maybeIterable) return null;
231
+ maybeIterable =
232
+ (MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL]) ||
233
+ maybeIterable["@@iterator"];
234
+ return "function" === typeof maybeIterable ? maybeIterable : null;
235
+ }
236
+ var REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference");
237
+ function getComponentNameFromType(type) {
238
+ if (null == type) return null;
239
+ if ("function" === typeof type)
240
+ return type.$$typeof === REACT_CLIENT_REFERENCE
241
+ ? null
242
+ : type.displayName || type.name || null;
243
+ if ("string" === typeof type) return type;
244
+ switch (type) {
245
+ case REACT_FRAGMENT_TYPE:
246
+ return "Fragment";
247
+ case REACT_PROFILER_TYPE:
248
+ return "Profiler";
249
+ case REACT_STRICT_MODE_TYPE:
250
+ return "StrictMode";
251
+ case REACT_SUSPENSE_TYPE:
252
+ return "Suspense";
253
+ case REACT_SUSPENSE_LIST_TYPE:
254
+ return "SuspenseList";
255
+ case REACT_ACTIVITY_TYPE:
256
+ return "Activity";
257
+ }
258
+ if ("object" === typeof type)
259
+ switch (type.$$typeof) {
260
+ case REACT_PORTAL_TYPE:
261
+ return "Portal";
262
+ case REACT_CONTEXT_TYPE:
263
+ return (type.displayName || "Context") + ".Provider";
264
+ case REACT_CONSUMER_TYPE:
265
+ return (type._context.displayName || "Context") + ".Consumer";
266
+ case REACT_FORWARD_REF_TYPE:
267
+ var innerType = type.render;
268
+ type = type.displayName;
269
+ type ||
270
+ ((type = innerType.displayName || innerType.name || ""),
271
+ (type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef"));
272
+ return type;
273
+ case REACT_MEMO_TYPE:
274
+ return (
275
+ (innerType = type.displayName || null),
276
+ null !== innerType
277
+ ? innerType
278
+ : getComponentNameFromType(type.type) || "Memo"
279
+ );
280
+ case REACT_LAZY_TYPE:
281
+ innerType = type._payload;
282
+ type = type._init;
283
+ try {
284
+ return getComponentNameFromType(type(innerType));
285
+ } catch (x) {}
286
+ }
287
+ return null;
288
+ }
289
+ var isArrayImpl = Array.isArray,
290
+ ReactSharedInternals =
291
+ React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
292
+ ReactDOMSharedInternals =
293
+ ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
294
+ sharedNotPendingObject = {
295
+ pending: !1,
296
+ data: null,
297
+ method: null,
298
+ action: null
299
+ },
300
+ valueStack = [],
301
+ index = -1;
302
+ function createCursor(defaultValue) {
303
+ return { current: defaultValue };
304
+ }
305
+ function pop(cursor) {
306
+ 0 > index ||
307
+ ((cursor.current = valueStack[index]), (valueStack[index] = null), index--);
308
+ }
309
+ function push(cursor, value) {
310
+ index++;
311
+ valueStack[index] = cursor.current;
312
+ cursor.current = value;
313
+ }
314
+ var contextStackCursor = createCursor(null),
315
+ contextFiberStackCursor = createCursor(null),
316
+ rootInstanceStackCursor = createCursor(null),
317
+ hostTransitionProviderCursor = createCursor(null);
318
+ function pushHostContainer(fiber, nextRootInstance) {
319
+ push(rootInstanceStackCursor, nextRootInstance);
320
+ push(contextFiberStackCursor, fiber);
321
+ push(contextStackCursor, null);
322
+ switch (nextRootInstance.nodeType) {
323
+ case 9:
324
+ case 11:
325
+ fiber = (fiber = nextRootInstance.documentElement)
326
+ ? (fiber = fiber.namespaceURI)
327
+ ? getOwnHostContext(fiber)
328
+ : 0
329
+ : 0;
520
330
  break;
521
331
  default:
522
- priorityLevel = currentPriorityLevel;
523
- }
524
- var previousPriorityLevel = currentPriorityLevel;
525
- currentPriorityLevel = priorityLevel;
526
- try {
527
- return eventHandler();
528
- } finally {
529
- currentPriorityLevel = previousPriorityLevel;
332
+ if (
333
+ ((fiber = nextRootInstance.tagName),
334
+ (nextRootInstance = nextRootInstance.namespaceURI))
335
+ )
336
+ (nextRootInstance = getOwnHostContext(nextRootInstance)),
337
+ (fiber = getChildHostContextProd(nextRootInstance, fiber));
338
+ else
339
+ switch (fiber) {
340
+ case "svg":
341
+ fiber = 1;
342
+ break;
343
+ case "math":
344
+ fiber = 2;
345
+ break;
346
+ default:
347
+ fiber = 0;
348
+ }
530
349
  }
531
- };
532
- exports.unstable_requestPaint = function () {
533
- needsPaint = !0;
534
- };
535
- exports.unstable_runWithPriority = function (priorityLevel, eventHandler) {
536
- switch (priorityLevel) {
350
+ pop(contextStackCursor);
351
+ push(contextStackCursor, fiber);
352
+ }
353
+ function popHostContainer() {
354
+ pop(contextStackCursor);
355
+ pop(contextFiberStackCursor);
356
+ pop(rootInstanceStackCursor);
357
+ }
358
+ function pushHostContext(fiber) {
359
+ null !== fiber.memoizedState && push(hostTransitionProviderCursor, fiber);
360
+ var context = contextStackCursor.current;
361
+ var JSCompiler_inline_result = getChildHostContextProd(context, fiber.type);
362
+ context !== JSCompiler_inline_result &&
363
+ (push(contextFiberStackCursor, fiber),
364
+ push(contextStackCursor, JSCompiler_inline_result));
365
+ }
366
+ function popHostContext(fiber) {
367
+ contextFiberStackCursor.current === fiber &&
368
+ (pop(contextStackCursor), pop(contextFiberStackCursor));
369
+ hostTransitionProviderCursor.current === fiber &&
370
+ (pop(hostTransitionProviderCursor),
371
+ (HostTransitionContext._currentValue = sharedNotPendingObject));
372
+ }
373
+ var hasOwnProperty = Object.prototype.hasOwnProperty,
374
+ scheduleCallback$3 = Scheduler.unstable_scheduleCallback,
375
+ cancelCallback$1 = Scheduler.unstable_cancelCallback,
376
+ shouldYield = Scheduler.unstable_shouldYield,
377
+ requestPaint = Scheduler.unstable_requestPaint,
378
+ now = Scheduler.unstable_now,
379
+ getCurrentPriorityLevel = Scheduler.unstable_getCurrentPriorityLevel,
380
+ ImmediatePriority = Scheduler.unstable_ImmediatePriority,
381
+ UserBlockingPriority = Scheduler.unstable_UserBlockingPriority,
382
+ NormalPriority$1 = Scheduler.unstable_NormalPriority,
383
+ LowPriority = Scheduler.unstable_LowPriority,
384
+ IdlePriority = Scheduler.unstable_IdlePriority,
385
+ log$1 = Scheduler.log,
386
+ unstable_setDisableYieldValue = Scheduler.unstable_setDisableYieldValue,
387
+ rendererID = null,
388
+ injectedHook = null;
389
+ function setIsStrictModeForDevtools(newIsStrictMode) {
390
+ "function" === typeof log$1 && unstable_setDisableYieldValue(newIsStrictMode);
391
+ if (injectedHook && "function" === typeof injectedHook.setStrictMode)
392
+ try {
393
+ injectedHook.setStrictMode(rendererID, newIsStrictMode);
394
+ } catch (err) {}
395
+ }
396
+ var clz32 = Math.clz32 ? Math.clz32 : clz32Fallback,
397
+ log = Math.log,
398
+ LN2 = Math.LN2;
399
+ function clz32Fallback(x) {
400
+ x >>>= 0;
401
+ return 0 === x ? 32 : (31 - ((log(x) / LN2) | 0)) | 0;
402
+ }
403
+ var nextTransitionLane = 256,
404
+ nextRetryLane = 4194304;
405
+ function getHighestPriorityLanes(lanes) {
406
+ var pendingSyncLanes = lanes & 42;
407
+ if (0 !== pendingSyncLanes) return pendingSyncLanes;
408
+ switch (lanes & -lanes) {
537
409
  case 1:
410
+ return 1;
538
411
  case 2:
539
- case 3:
412
+ return 2;
540
413
  case 4:
541
- case 5:
542
- break;
543
- default:
544
- priorityLevel = 3;
545
- }
546
- var previousPriorityLevel = currentPriorityLevel;
547
- currentPriorityLevel = priorityLevel;
548
- try {
549
- return eventHandler();
550
- } finally {
551
- currentPriorityLevel = previousPriorityLevel;
552
- }
553
- };
554
- exports.unstable_scheduleCallback = function (
555
- priorityLevel,
556
- callback,
557
- options
558
- ) {
559
- var currentTime = exports.unstable_now();
560
- "object" === typeof options && null !== options
561
- ? ((options = options.delay),
562
- (options =
563
- "number" === typeof options && 0 < options
564
- ? currentTime + options
565
- : currentTime))
566
- : (options = currentTime);
567
- switch (priorityLevel) {
568
- case 1:
569
- var timeout = -1;
570
- break;
571
- case 2:
572
- timeout = 250;
573
- break;
574
- case 5:
575
- timeout = 1073741823;
576
- break;
577
- case 4:
578
- timeout = 1e4;
579
- break;
414
+ return 4;
415
+ case 8:
416
+ return 8;
417
+ case 16:
418
+ return 16;
419
+ case 32:
420
+ return 32;
421
+ case 64:
422
+ return 64;
423
+ case 128:
424
+ return 128;
425
+ case 256:
426
+ case 512:
427
+ case 1024:
428
+ case 2048:
429
+ case 4096:
430
+ case 8192:
431
+ case 16384:
432
+ case 32768:
433
+ case 65536:
434
+ case 131072:
435
+ case 262144:
436
+ case 524288:
437
+ case 1048576:
438
+ case 2097152:
439
+ return lanes & 4194048;
440
+ case 4194304:
441
+ case 8388608:
442
+ case 16777216:
443
+ case 33554432:
444
+ return lanes & 62914560;
445
+ case 67108864:
446
+ return 67108864;
447
+ case 134217728:
448
+ return 134217728;
449
+ case 268435456:
450
+ return 268435456;
451
+ case 536870912:
452
+ return 536870912;
453
+ case 1073741824:
454
+ return 0;
580
455
  default:
581
- timeout = 5e3;
456
+ return lanes;
582
457
  }
583
- timeout = options + timeout;
584
- priorityLevel = {
585
- id: taskIdCounter++,
586
- callback: callback,
587
- priorityLevel: priorityLevel,
588
- startTime: options,
589
- expirationTime: timeout,
590
- sortIndex: -1
591
- };
592
- options > currentTime
593
- ? ((priorityLevel.sortIndex = options),
594
- push(timerQueue, priorityLevel),
595
- null === peek(taskQueue) &&
596
- priorityLevel === peek(timerQueue) &&
597
- (isHostTimeoutScheduled
598
- ? (localClearTimeout(taskTimeoutID), (taskTimeoutID = -1))
599
- : (isHostTimeoutScheduled = !0),
600
- requestHostTimeout(handleTimeout, options - currentTime)))
601
- : ((priorityLevel.sortIndex = timeout),
602
- push(taskQueue, priorityLevel),
603
- isHostCallbackScheduled ||
604
- isPerformingWork ||
605
- ((isHostCallbackScheduled = !0),
606
- isMessageLoopRunning ||
607
- ((isMessageLoopRunning = !0), schedulePerformWorkUntilDeadline())));
608
- return priorityLevel;
609
- };
610
- exports.unstable_shouldYield = shouldYieldToHost;
611
- exports.unstable_wrapCallback = function (callback) {
612
- var parentPriorityLevel = currentPriorityLevel;
613
- return function () {
614
- var previousPriorityLevel = currentPriorityLevel;
615
- currentPriorityLevel = parentPriorityLevel;
616
- try {
617
- return callback.apply(this, arguments);
618
- } finally {
619
- currentPriorityLevel = previousPriorityLevel;
620
- }
621
- };
622
- };
623
-
624
-
625
- /***/ }),
626
-
627
- /***/ 577:
628
- /*!************************************************************************************************!*\
629
- !*** ./node_modules/.pnpm/react@19.1.0/node_modules/react/cjs/react-jsx-runtime.production.js ***!
630
- \************************************************************************************************/
631
- /***/ ((__unused_webpack_module, exports) => {
632
-
633
- /**
634
- * @license React
635
- * react-jsx-runtime.production.js
636
- *
637
- * Copyright (c) Meta Platforms, Inc. and affiliates.
638
- *
639
- * This source code is licensed under the MIT license found in the
640
- * LICENSE file in the root directory of this source tree.
641
- */
642
-
643
-
644
- var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
645
- REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
646
- function jsxProd(type, config, maybeKey) {
647
- var key = null;
648
- void 0 !== maybeKey && (key = "" + maybeKey);
649
- void 0 !== config.key && (key = "" + config.key);
650
- if ("key" in config) {
651
- maybeKey = {};
652
- for (var propName in config)
653
- "key" !== propName && (maybeKey[propName] = config[propName]);
654
- } else maybeKey = config;
655
- config = maybeKey.ref;
656
- return {
657
- $$typeof: REACT_ELEMENT_TYPE,
658
- type: type,
659
- key: key,
660
- ref: void 0 !== config ? config : null,
661
- props: maybeKey
662
- };
663
458
  }
664
- exports.Fragment = REACT_FRAGMENT_TYPE;
665
- exports.jsx = jsxProd;
666
- exports.jsxs = jsxProd;
667
-
668
-
669
- /***/ }),
670
-
671
- /***/ 722:
672
- /*!********************************************************************************************************************!*\
673
- !*** ./node_modules/.pnpm/react-dom@19.1.0_react@19.1.0/node_modules/react-dom/cjs/react-dom-client.production.js ***!
674
- \********************************************************************************************************************/
675
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
676
-
677
- /**
678
- * @license React
679
- * react-dom-client.production.js
680
- *
681
- * Copyright (c) Meta Platforms, Inc. and affiliates.
682
- *
683
- * This source code is licensed under the MIT license found in the
684
- * LICENSE file in the root directory of this source tree.
685
- */
686
-
687
- /*
688
- Modernizr 3.0.0pre (Custom Build) | MIT
689
- */
690
-
691
- var Scheduler = __webpack_require__(/*! scheduler */ 834),
692
- React = __webpack_require__(/*! react */ 213),
693
- ReactDOM = __webpack_require__(/*! react-dom */ 956);
694
- function formatProdErrorMessage(code) {
695
- var url = "https://react.dev/errors/" + code;
696
- if (1 < arguments.length) {
697
- url += "?args[]=" + encodeURIComponent(arguments[1]);
698
- for (var i = 2; i < arguments.length; i++)
699
- url += "&args[]=" + encodeURIComponent(arguments[i]);
700
- }
701
- return (
702
- "Minified React error #" +
703
- code +
704
- "; visit " +
705
- url +
706
- " for the full message or use the non-minified dev environment for full errors and additional helpful warnings."
707
- );
459
+ function getNextLanes(root, wipLanes, rootHasPendingCommit) {
460
+ var pendingLanes = root.pendingLanes;
461
+ if (0 === pendingLanes) return 0;
462
+ var nextLanes = 0,
463
+ suspendedLanes = root.suspendedLanes,
464
+ pingedLanes = root.pingedLanes;
465
+ root = root.warmLanes;
466
+ var nonIdlePendingLanes = pendingLanes & 134217727;
467
+ 0 !== nonIdlePendingLanes
468
+ ? ((pendingLanes = nonIdlePendingLanes & ~suspendedLanes),
469
+ 0 !== pendingLanes
470
+ ? (nextLanes = getHighestPriorityLanes(pendingLanes))
471
+ : ((pingedLanes &= nonIdlePendingLanes),
472
+ 0 !== pingedLanes
473
+ ? (nextLanes = getHighestPriorityLanes(pingedLanes))
474
+ : rootHasPendingCommit ||
475
+ ((rootHasPendingCommit = nonIdlePendingLanes & ~root),
476
+ 0 !== rootHasPendingCommit &&
477
+ (nextLanes = getHighestPriorityLanes(rootHasPendingCommit)))))
478
+ : ((nonIdlePendingLanes = pendingLanes & ~suspendedLanes),
479
+ 0 !== nonIdlePendingLanes
480
+ ? (nextLanes = getHighestPriorityLanes(nonIdlePendingLanes))
481
+ : 0 !== pingedLanes
482
+ ? (nextLanes = getHighestPriorityLanes(pingedLanes))
483
+ : rootHasPendingCommit ||
484
+ ((rootHasPendingCommit = pendingLanes & ~root),
485
+ 0 !== rootHasPendingCommit &&
486
+ (nextLanes = getHighestPriorityLanes(rootHasPendingCommit))));
487
+ return 0 === nextLanes
488
+ ? 0
489
+ : 0 !== wipLanes &&
490
+ wipLanes !== nextLanes &&
491
+ 0 === (wipLanes & suspendedLanes) &&
492
+ ((suspendedLanes = nextLanes & -nextLanes),
493
+ (rootHasPendingCommit = wipLanes & -wipLanes),
494
+ suspendedLanes >= rootHasPendingCommit ||
495
+ (32 === suspendedLanes && 0 !== (rootHasPendingCommit & 4194048)))
496
+ ? wipLanes
497
+ : nextLanes;
708
498
  }
709
- function isValidContainer(node) {
710
- return !(
711
- !node ||
712
- (1 !== node.nodeType && 9 !== node.nodeType && 11 !== node.nodeType)
499
+ function checkIfRootIsPrerendering(root, renderLanes) {
500
+ return (
501
+ 0 ===
502
+ (root.pendingLanes &
503
+ ~(root.suspendedLanes & ~root.pingedLanes) &
504
+ renderLanes)
713
505
  );
714
506
  }
715
- function getNearestMountedFiber(fiber) {
716
- var node = fiber,
717
- nearestMounted = fiber;
718
- if (fiber.alternate) for (; node.return; ) node = node.return;
719
- else {
720
- fiber = node;
721
- do
722
- (node = fiber),
723
- 0 !== (node.flags & 4098) && (nearestMounted = node.return),
724
- (fiber = node.return);
725
- while (fiber);
726
- }
727
- return 3 === node.tag ? nearestMounted : null;
728
- }
729
- function getSuspenseInstanceFromFiber(fiber) {
730
- if (13 === fiber.tag) {
731
- var suspenseState = fiber.memoizedState;
732
- null === suspenseState &&
733
- ((fiber = fiber.alternate),
734
- null !== fiber && (suspenseState = fiber.memoizedState));
735
- if (null !== suspenseState) return suspenseState.dehydrated;
736
- }
737
- return null;
738
- }
739
- function assertIsMounted(fiber) {
740
- if (getNearestMountedFiber(fiber) !== fiber)
741
- throw Error(formatProdErrorMessage(188));
742
- }
743
- function findCurrentFiberUsingSlowPath(fiber) {
744
- var alternate = fiber.alternate;
745
- if (!alternate) {
746
- alternate = getNearestMountedFiber(fiber);
747
- if (null === alternate) throw Error(formatProdErrorMessage(188));
748
- return alternate !== fiber ? null : fiber;
749
- }
750
- for (var a = fiber, b = alternate; ; ) {
751
- var parentA = a.return;
752
- if (null === parentA) break;
753
- var parentB = parentA.alternate;
754
- if (null === parentB) {
755
- b = parentA.return;
756
- if (null !== b) {
757
- a = b;
758
- continue;
759
- }
760
- break;
761
- }
762
- if (parentA.child === parentB.child) {
763
- for (parentB = parentA.child; parentB; ) {
764
- if (parentB === a) return assertIsMounted(parentA), fiber;
765
- if (parentB === b) return assertIsMounted(parentA), alternate;
766
- parentB = parentB.sibling;
767
- }
768
- throw Error(formatProdErrorMessage(188));
769
- }
770
- if (a.return !== b.return) (a = parentA), (b = parentB);
771
- else {
772
- for (var didFindChild = !1, child$0 = parentA.child; child$0; ) {
773
- if (child$0 === a) {
774
- didFindChild = !0;
775
- a = parentA;
776
- b = parentB;
777
- break;
778
- }
779
- if (child$0 === b) {
780
- didFindChild = !0;
781
- b = parentA;
782
- a = parentB;
783
- break;
784
- }
785
- child$0 = child$0.sibling;
786
- }
787
- if (!didFindChild) {
788
- for (child$0 = parentB.child; child$0; ) {
789
- if (child$0 === a) {
790
- didFindChild = !0;
791
- a = parentB;
792
- b = parentA;
793
- break;
794
- }
795
- if (child$0 === b) {
796
- didFindChild = !0;
797
- b = parentB;
798
- a = parentA;
799
- break;
800
- }
801
- child$0 = child$0.sibling;
802
- }
803
- if (!didFindChild) throw Error(formatProdErrorMessage(189));
804
- }
805
- }
806
- if (a.alternate !== b) throw Error(formatProdErrorMessage(190));
807
- }
808
- if (3 !== a.tag) throw Error(formatProdErrorMessage(188));
809
- return a.stateNode.current === a ? fiber : alternate;
810
- }
811
- function findCurrentHostFiberImpl(node) {
812
- var tag = node.tag;
813
- if (5 === tag || 26 === tag || 27 === tag || 6 === tag) return node;
814
- for (node = node.child; null !== node; ) {
815
- tag = findCurrentHostFiberImpl(node);
816
- if (null !== tag) return tag;
817
- node = node.sibling;
507
+ function computeExpirationTime(lane, currentTime) {
508
+ switch (lane) {
509
+ case 1:
510
+ case 2:
511
+ case 4:
512
+ case 8:
513
+ case 64:
514
+ return currentTime + 250;
515
+ case 16:
516
+ case 32:
517
+ case 128:
518
+ case 256:
519
+ case 512:
520
+ case 1024:
521
+ case 2048:
522
+ case 4096:
523
+ case 8192:
524
+ case 16384:
525
+ case 32768:
526
+ case 65536:
527
+ case 131072:
528
+ case 262144:
529
+ case 524288:
530
+ case 1048576:
531
+ case 2097152:
532
+ return currentTime + 5e3;
533
+ case 4194304:
534
+ case 8388608:
535
+ case 16777216:
536
+ case 33554432:
537
+ return -1;
538
+ case 67108864:
539
+ case 134217728:
540
+ case 268435456:
541
+ case 536870912:
542
+ case 1073741824:
543
+ return -1;
544
+ default:
545
+ return -1;
818
546
  }
819
- return null;
820
- }
821
- var assign = Object.assign,
822
- REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
823
- REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
824
- REACT_PORTAL_TYPE = Symbol.for("react.portal"),
825
- REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
826
- REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
827
- REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
828
- REACT_PROVIDER_TYPE = Symbol.for("react.provider"),
829
- REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
830
- REACT_CONTEXT_TYPE = Symbol.for("react.context"),
831
- REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
832
- REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"),
833
- REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"),
834
- REACT_MEMO_TYPE = Symbol.for("react.memo"),
835
- REACT_LAZY_TYPE = Symbol.for("react.lazy");
836
- Symbol.for("react.scope");
837
- var REACT_ACTIVITY_TYPE = Symbol.for("react.activity");
838
- Symbol.for("react.legacy_hidden");
839
- Symbol.for("react.tracing_marker");
840
- var REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel");
841
- Symbol.for("react.view_transition");
842
- var MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
843
- function getIteratorFn(maybeIterable) {
844
- if (null === maybeIterable || "object" !== typeof maybeIterable) return null;
845
- maybeIterable =
846
- (MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL]) ||
847
- maybeIterable["@@iterator"];
848
- return "function" === typeof maybeIterable ? maybeIterable : null;
849
547
  }
850
- var REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference");
851
- function getComponentNameFromType(type) {
852
- if (null == type) return null;
853
- if ("function" === typeof type)
854
- return type.$$typeof === REACT_CLIENT_REFERENCE
855
- ? null
856
- : type.displayName || type.name || null;
857
- if ("string" === typeof type) return type;
858
- switch (type) {
859
- case REACT_FRAGMENT_TYPE:
860
- return "Fragment";
861
- case REACT_PROFILER_TYPE:
862
- return "Profiler";
863
- case REACT_STRICT_MODE_TYPE:
864
- return "StrictMode";
865
- case REACT_SUSPENSE_TYPE:
866
- return "Suspense";
867
- case REACT_SUSPENSE_LIST_TYPE:
868
- return "SuspenseList";
869
- case REACT_ACTIVITY_TYPE:
870
- return "Activity";
871
- }
872
- if ("object" === typeof type)
873
- switch (type.$$typeof) {
874
- case REACT_PORTAL_TYPE:
875
- return "Portal";
876
- case REACT_CONTEXT_TYPE:
877
- return (type.displayName || "Context") + ".Provider";
878
- case REACT_CONSUMER_TYPE:
879
- return (type._context.displayName || "Context") + ".Consumer";
880
- case REACT_FORWARD_REF_TYPE:
881
- var innerType = type.render;
882
- type = type.displayName;
883
- type ||
884
- ((type = innerType.displayName || innerType.name || ""),
885
- (type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef"));
886
- return type;
887
- case REACT_MEMO_TYPE:
888
- return (
889
- (innerType = type.displayName || null),
890
- null !== innerType
891
- ? innerType
892
- : getComponentNameFromType(type.type) || "Memo"
893
- );
894
- case REACT_LAZY_TYPE:
895
- innerType = type._payload;
896
- type = type._init;
897
- try {
898
- return getComponentNameFromType(type(innerType));
899
- } catch (x) {}
900
- }
901
- return null;
548
+ function claimNextTransitionLane() {
549
+ var lane = nextTransitionLane;
550
+ nextTransitionLane <<= 1;
551
+ 0 === (nextTransitionLane & 4194048) && (nextTransitionLane = 256);
552
+ return lane;
902
553
  }
903
- var isArrayImpl = Array.isArray,
904
- ReactSharedInternals =
905
- React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
906
- ReactDOMSharedInternals =
907
- ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
908
- sharedNotPendingObject = {
909
- pending: !1,
910
- data: null,
911
- method: null,
912
- action: null
913
- },
914
- valueStack = [],
915
- index = -1;
916
- function createCursor(defaultValue) {
917
- return { current: defaultValue };
554
+ function claimNextRetryLane() {
555
+ var lane = nextRetryLane;
556
+ nextRetryLane <<= 1;
557
+ 0 === (nextRetryLane & 62914560) && (nextRetryLane = 4194304);
558
+ return lane;
918
559
  }
919
- function pop(cursor) {
920
- 0 > index ||
921
- ((cursor.current = valueStack[index]), (valueStack[index] = null), index--);
560
+ function createLaneMap(initial) {
561
+ for (var laneMap = [], i = 0; 31 > i; i++) laneMap.push(initial);
562
+ return laneMap;
922
563
  }
923
- function push(cursor, value) {
924
- index++;
925
- valueStack[index] = cursor.current;
926
- cursor.current = value;
927
- }
928
- var contextStackCursor = createCursor(null),
929
- contextFiberStackCursor = createCursor(null),
930
- rootInstanceStackCursor = createCursor(null),
931
- hostTransitionProviderCursor = createCursor(null);
932
- function pushHostContainer(fiber, nextRootInstance) {
933
- push(rootInstanceStackCursor, nextRootInstance);
934
- push(contextFiberStackCursor, fiber);
935
- push(contextStackCursor, null);
936
- switch (nextRootInstance.nodeType) {
937
- case 9:
938
- case 11:
939
- fiber = (fiber = nextRootInstance.documentElement)
940
- ? (fiber = fiber.namespaceURI)
941
- ? getOwnHostContext(fiber)
942
- : 0
943
- : 0;
944
- break;
945
- default:
946
- if (
947
- ((fiber = nextRootInstance.tagName),
948
- (nextRootInstance = nextRootInstance.namespaceURI))
949
- )
950
- (nextRootInstance = getOwnHostContext(nextRootInstance)),
951
- (fiber = getChildHostContextProd(nextRootInstance, fiber));
952
- else
953
- switch (fiber) {
954
- case "svg":
955
- fiber = 1;
956
- break;
957
- case "math":
958
- fiber = 2;
959
- break;
960
- default:
961
- fiber = 0;
962
- }
963
- }
964
- pop(contextStackCursor);
965
- push(contextStackCursor, fiber);
966
- }
967
- function popHostContainer() {
968
- pop(contextStackCursor);
969
- pop(contextFiberStackCursor);
970
- pop(rootInstanceStackCursor);
971
- }
972
- function pushHostContext(fiber) {
973
- null !== fiber.memoizedState && push(hostTransitionProviderCursor, fiber);
974
- var context = contextStackCursor.current;
975
- var JSCompiler_inline_result = getChildHostContextProd(context, fiber.type);
976
- context !== JSCompiler_inline_result &&
977
- (push(contextFiberStackCursor, fiber),
978
- push(contextStackCursor, JSCompiler_inline_result));
979
- }
980
- function popHostContext(fiber) {
981
- contextFiberStackCursor.current === fiber &&
982
- (pop(contextStackCursor), pop(contextFiberStackCursor));
983
- hostTransitionProviderCursor.current === fiber &&
984
- (pop(hostTransitionProviderCursor),
985
- (HostTransitionContext._currentValue = sharedNotPendingObject));
986
- }
987
- var hasOwnProperty = Object.prototype.hasOwnProperty,
988
- scheduleCallback$3 = Scheduler.unstable_scheduleCallback,
989
- cancelCallback$1 = Scheduler.unstable_cancelCallback,
990
- shouldYield = Scheduler.unstable_shouldYield,
991
- requestPaint = Scheduler.unstable_requestPaint,
992
- now = Scheduler.unstable_now,
993
- getCurrentPriorityLevel = Scheduler.unstable_getCurrentPriorityLevel,
994
- ImmediatePriority = Scheduler.unstable_ImmediatePriority,
995
- UserBlockingPriority = Scheduler.unstable_UserBlockingPriority,
996
- NormalPriority$1 = Scheduler.unstable_NormalPriority,
997
- LowPriority = Scheduler.unstable_LowPriority,
998
- IdlePriority = Scheduler.unstable_IdlePriority,
999
- log$1 = Scheduler.log,
1000
- unstable_setDisableYieldValue = Scheduler.unstable_setDisableYieldValue,
1001
- rendererID = null,
1002
- injectedHook = null;
1003
- function setIsStrictModeForDevtools(newIsStrictMode) {
1004
- "function" === typeof log$1 && unstable_setDisableYieldValue(newIsStrictMode);
1005
- if (injectedHook && "function" === typeof injectedHook.setStrictMode)
1006
- try {
1007
- injectedHook.setStrictMode(rendererID, newIsStrictMode);
1008
- } catch (err) {}
1009
- }
1010
- var clz32 = Math.clz32 ? Math.clz32 : clz32Fallback,
1011
- log = Math.log,
1012
- LN2 = Math.LN2;
1013
- function clz32Fallback(x) {
1014
- x >>>= 0;
1015
- return 0 === x ? 32 : (31 - ((log(x) / LN2) | 0)) | 0;
1016
- }
1017
- var nextTransitionLane = 256,
1018
- nextRetryLane = 4194304;
1019
- function getHighestPriorityLanes(lanes) {
1020
- var pendingSyncLanes = lanes & 42;
1021
- if (0 !== pendingSyncLanes) return pendingSyncLanes;
1022
- switch (lanes & -lanes) {
1023
- case 1:
1024
- return 1;
1025
- case 2:
1026
- return 2;
1027
- case 4:
1028
- return 4;
1029
- case 8:
1030
- return 8;
1031
- case 16:
1032
- return 16;
1033
- case 32:
1034
- return 32;
1035
- case 64:
1036
- return 64;
1037
- case 128:
1038
- return 128;
1039
- case 256:
1040
- case 512:
1041
- case 1024:
1042
- case 2048:
1043
- case 4096:
1044
- case 8192:
1045
- case 16384:
1046
- case 32768:
1047
- case 65536:
1048
- case 131072:
1049
- case 262144:
1050
- case 524288:
1051
- case 1048576:
1052
- case 2097152:
1053
- return lanes & 4194048;
1054
- case 4194304:
1055
- case 8388608:
1056
- case 16777216:
1057
- case 33554432:
1058
- return lanes & 62914560;
1059
- case 67108864:
1060
- return 67108864;
1061
- case 134217728:
1062
- return 134217728;
1063
- case 268435456:
1064
- return 268435456;
1065
- case 536870912:
1066
- return 536870912;
1067
- case 1073741824:
1068
- return 0;
1069
- default:
1070
- return lanes;
1071
- }
1072
- }
1073
- function getNextLanes(root, wipLanes, rootHasPendingCommit) {
1074
- var pendingLanes = root.pendingLanes;
1075
- if (0 === pendingLanes) return 0;
1076
- var nextLanes = 0,
1077
- suspendedLanes = root.suspendedLanes,
1078
- pingedLanes = root.pingedLanes;
1079
- root = root.warmLanes;
1080
- var nonIdlePendingLanes = pendingLanes & 134217727;
1081
- 0 !== nonIdlePendingLanes
1082
- ? ((pendingLanes = nonIdlePendingLanes & ~suspendedLanes),
1083
- 0 !== pendingLanes
1084
- ? (nextLanes = getHighestPriorityLanes(pendingLanes))
1085
- : ((pingedLanes &= nonIdlePendingLanes),
1086
- 0 !== pingedLanes
1087
- ? (nextLanes = getHighestPriorityLanes(pingedLanes))
1088
- : rootHasPendingCommit ||
1089
- ((rootHasPendingCommit = nonIdlePendingLanes & ~root),
1090
- 0 !== rootHasPendingCommit &&
1091
- (nextLanes = getHighestPriorityLanes(rootHasPendingCommit)))))
1092
- : ((nonIdlePendingLanes = pendingLanes & ~suspendedLanes),
1093
- 0 !== nonIdlePendingLanes
1094
- ? (nextLanes = getHighestPriorityLanes(nonIdlePendingLanes))
1095
- : 0 !== pingedLanes
1096
- ? (nextLanes = getHighestPriorityLanes(pingedLanes))
1097
- : rootHasPendingCommit ||
1098
- ((rootHasPendingCommit = pendingLanes & ~root),
1099
- 0 !== rootHasPendingCommit &&
1100
- (nextLanes = getHighestPriorityLanes(rootHasPendingCommit))));
1101
- return 0 === nextLanes
1102
- ? 0
1103
- : 0 !== wipLanes &&
1104
- wipLanes !== nextLanes &&
1105
- 0 === (wipLanes & suspendedLanes) &&
1106
- ((suspendedLanes = nextLanes & -nextLanes),
1107
- (rootHasPendingCommit = wipLanes & -wipLanes),
1108
- suspendedLanes >= rootHasPendingCommit ||
1109
- (32 === suspendedLanes && 0 !== (rootHasPendingCommit & 4194048)))
1110
- ? wipLanes
1111
- : nextLanes;
1112
- }
1113
- function checkIfRootIsPrerendering(root, renderLanes) {
1114
- return (
1115
- 0 ===
1116
- (root.pendingLanes &
1117
- ~(root.suspendedLanes & ~root.pingedLanes) &
1118
- renderLanes)
1119
- );
1120
- }
1121
- function computeExpirationTime(lane, currentTime) {
1122
- switch (lane) {
1123
- case 1:
1124
- case 2:
1125
- case 4:
1126
- case 8:
1127
- case 64:
1128
- return currentTime + 250;
1129
- case 16:
1130
- case 32:
1131
- case 128:
1132
- case 256:
1133
- case 512:
1134
- case 1024:
1135
- case 2048:
1136
- case 4096:
1137
- case 8192:
1138
- case 16384:
1139
- case 32768:
1140
- case 65536:
1141
- case 131072:
1142
- case 262144:
1143
- case 524288:
1144
- case 1048576:
1145
- case 2097152:
1146
- return currentTime + 5e3;
1147
- case 4194304:
1148
- case 8388608:
1149
- case 16777216:
1150
- case 33554432:
1151
- return -1;
1152
- case 67108864:
1153
- case 134217728:
1154
- case 268435456:
1155
- case 536870912:
1156
- case 1073741824:
1157
- return -1;
1158
- default:
1159
- return -1;
1160
- }
1161
- }
1162
- function claimNextTransitionLane() {
1163
- var lane = nextTransitionLane;
1164
- nextTransitionLane <<= 1;
1165
- 0 === (nextTransitionLane & 4194048) && (nextTransitionLane = 256);
1166
- return lane;
1167
- }
1168
- function claimNextRetryLane() {
1169
- var lane = nextRetryLane;
1170
- nextRetryLane <<= 1;
1171
- 0 === (nextRetryLane & 62914560) && (nextRetryLane = 4194304);
1172
- return lane;
1173
- }
1174
- function createLaneMap(initial) {
1175
- for (var laneMap = [], i = 0; 31 > i; i++) laneMap.push(initial);
1176
- return laneMap;
1177
- }
1178
- function markRootUpdated$1(root, updateLane) {
1179
- root.pendingLanes |= updateLane;
1180
- 268435456 !== updateLane &&
1181
- ((root.suspendedLanes = 0), (root.pingedLanes = 0), (root.warmLanes = 0));
564
+ function markRootUpdated$1(root, updateLane) {
565
+ root.pendingLanes |= updateLane;
566
+ 268435456 !== updateLane &&
567
+ ((root.suspendedLanes = 0), (root.pingedLanes = 0), (root.warmLanes = 0));
1182
568
  }
1183
569
  function markRootFinished(
1184
570
  root,
@@ -15712,366 +15098,1047 @@ function queueIfContinuousEvent(
15712
15098
  }
15713
15099
  return !1;
15714
15100
  }
15715
- function attemptExplicitHydrationTarget(queuedTarget) {
15716
- var targetInst = getClosestInstanceFromNode(queuedTarget.target);
15717
- if (null !== targetInst) {
15718
- var nearestMounted = getNearestMountedFiber(targetInst);
15719
- if (null !== nearestMounted)
15720
- if (((targetInst = nearestMounted.tag), 13 === targetInst)) {
15721
- if (
15722
- ((targetInst = getSuspenseInstanceFromFiber(nearestMounted)),
15723
- null !== targetInst)
15724
- ) {
15725
- queuedTarget.blockedOn = targetInst;
15726
- runWithPriority(queuedTarget.priority, function () {
15727
- if (13 === nearestMounted.tag) {
15728
- var lane = requestUpdateLane();
15729
- lane = getBumpedLaneForHydrationByLane(lane);
15730
- var root = enqueueConcurrentRenderForLane(nearestMounted, lane);
15731
- null !== root &&
15732
- scheduleUpdateOnFiber(root, nearestMounted, lane);
15733
- markRetryLaneIfNotHydrated(nearestMounted, lane);
15734
- }
15735
- });
15736
- return;
15737
- }
15738
- } else if (
15739
- 3 === targetInst &&
15740
- nearestMounted.stateNode.current.memoizedState.isDehydrated
15741
- ) {
15742
- queuedTarget.blockedOn =
15743
- 3 === nearestMounted.tag
15744
- ? nearestMounted.stateNode.containerInfo
15745
- : null;
15746
- return;
15747
- }
15101
+ function attemptExplicitHydrationTarget(queuedTarget) {
15102
+ var targetInst = getClosestInstanceFromNode(queuedTarget.target);
15103
+ if (null !== targetInst) {
15104
+ var nearestMounted = getNearestMountedFiber(targetInst);
15105
+ if (null !== nearestMounted)
15106
+ if (((targetInst = nearestMounted.tag), 13 === targetInst)) {
15107
+ if (
15108
+ ((targetInst = getSuspenseInstanceFromFiber(nearestMounted)),
15109
+ null !== targetInst)
15110
+ ) {
15111
+ queuedTarget.blockedOn = targetInst;
15112
+ runWithPriority(queuedTarget.priority, function () {
15113
+ if (13 === nearestMounted.tag) {
15114
+ var lane = requestUpdateLane();
15115
+ lane = getBumpedLaneForHydrationByLane(lane);
15116
+ var root = enqueueConcurrentRenderForLane(nearestMounted, lane);
15117
+ null !== root &&
15118
+ scheduleUpdateOnFiber(root, nearestMounted, lane);
15119
+ markRetryLaneIfNotHydrated(nearestMounted, lane);
15120
+ }
15121
+ });
15122
+ return;
15123
+ }
15124
+ } else if (
15125
+ 3 === targetInst &&
15126
+ nearestMounted.stateNode.current.memoizedState.isDehydrated
15127
+ ) {
15128
+ queuedTarget.blockedOn =
15129
+ 3 === nearestMounted.tag
15130
+ ? nearestMounted.stateNode.containerInfo
15131
+ : null;
15132
+ return;
15133
+ }
15134
+ }
15135
+ queuedTarget.blockedOn = null;
15136
+ }
15137
+ function attemptReplayContinuousQueuedEvent(queuedEvent) {
15138
+ if (null !== queuedEvent.blockedOn) return !1;
15139
+ for (
15140
+ var targetContainers = queuedEvent.targetContainers;
15141
+ 0 < targetContainers.length;
15142
+
15143
+ ) {
15144
+ var nextBlockedOn = findInstanceBlockingEvent(queuedEvent.nativeEvent);
15145
+ if (null === nextBlockedOn) {
15146
+ nextBlockedOn = queuedEvent.nativeEvent;
15147
+ var nativeEventClone = new nextBlockedOn.constructor(
15148
+ nextBlockedOn.type,
15149
+ nextBlockedOn
15150
+ );
15151
+ currentReplayingEvent = nativeEventClone;
15152
+ nextBlockedOn.target.dispatchEvent(nativeEventClone);
15153
+ currentReplayingEvent = null;
15154
+ } else
15155
+ return (
15156
+ (targetContainers = getInstanceFromNode(nextBlockedOn)),
15157
+ null !== targetContainers &&
15158
+ attemptContinuousHydration(targetContainers),
15159
+ (queuedEvent.blockedOn = nextBlockedOn),
15160
+ !1
15161
+ );
15162
+ targetContainers.shift();
15163
+ }
15164
+ return !0;
15165
+ }
15166
+ function attemptReplayContinuousQueuedEventInMap(queuedEvent, key, map) {
15167
+ attemptReplayContinuousQueuedEvent(queuedEvent) && map.delete(key);
15168
+ }
15169
+ function replayUnblockedEvents() {
15170
+ hasScheduledReplayAttempt = !1;
15171
+ null !== queuedFocus &&
15172
+ attemptReplayContinuousQueuedEvent(queuedFocus) &&
15173
+ (queuedFocus = null);
15174
+ null !== queuedDrag &&
15175
+ attemptReplayContinuousQueuedEvent(queuedDrag) &&
15176
+ (queuedDrag = null);
15177
+ null !== queuedMouse &&
15178
+ attemptReplayContinuousQueuedEvent(queuedMouse) &&
15179
+ (queuedMouse = null);
15180
+ queuedPointers.forEach(attemptReplayContinuousQueuedEventInMap);
15181
+ queuedPointerCaptures.forEach(attemptReplayContinuousQueuedEventInMap);
15182
+ }
15183
+ function scheduleCallbackIfUnblocked(queuedEvent, unblocked) {
15184
+ queuedEvent.blockedOn === unblocked &&
15185
+ ((queuedEvent.blockedOn = null),
15186
+ hasScheduledReplayAttempt ||
15187
+ ((hasScheduledReplayAttempt = !0),
15188
+ Scheduler.unstable_scheduleCallback(
15189
+ Scheduler.unstable_NormalPriority,
15190
+ replayUnblockedEvents
15191
+ )));
15192
+ }
15193
+ var lastScheduledReplayQueue = null;
15194
+ function scheduleReplayQueueIfNeeded(formReplayingQueue) {
15195
+ lastScheduledReplayQueue !== formReplayingQueue &&
15196
+ ((lastScheduledReplayQueue = formReplayingQueue),
15197
+ Scheduler.unstable_scheduleCallback(
15198
+ Scheduler.unstable_NormalPriority,
15199
+ function () {
15200
+ lastScheduledReplayQueue === formReplayingQueue &&
15201
+ (lastScheduledReplayQueue = null);
15202
+ for (var i = 0; i < formReplayingQueue.length; i += 3) {
15203
+ var form = formReplayingQueue[i],
15204
+ submitterOrAction = formReplayingQueue[i + 1],
15205
+ formData = formReplayingQueue[i + 2];
15206
+ if ("function" !== typeof submitterOrAction)
15207
+ if (null === findInstanceBlockingTarget(submitterOrAction || form))
15208
+ continue;
15209
+ else break;
15210
+ var formInst = getInstanceFromNode(form);
15211
+ null !== formInst &&
15212
+ (formReplayingQueue.splice(i, 3),
15213
+ (i -= 3),
15214
+ startHostTransition(
15215
+ formInst,
15216
+ {
15217
+ pending: !0,
15218
+ data: formData,
15219
+ method: form.method,
15220
+ action: submitterOrAction
15221
+ },
15222
+ submitterOrAction,
15223
+ formData
15224
+ ));
15225
+ }
15226
+ }
15227
+ ));
15228
+ }
15229
+ function retryIfBlockedOn(unblocked) {
15230
+ function unblock(queuedEvent) {
15231
+ return scheduleCallbackIfUnblocked(queuedEvent, unblocked);
15232
+ }
15233
+ null !== queuedFocus && scheduleCallbackIfUnblocked(queuedFocus, unblocked);
15234
+ null !== queuedDrag && scheduleCallbackIfUnblocked(queuedDrag, unblocked);
15235
+ null !== queuedMouse && scheduleCallbackIfUnblocked(queuedMouse, unblocked);
15236
+ queuedPointers.forEach(unblock);
15237
+ queuedPointerCaptures.forEach(unblock);
15238
+ for (var i = 0; i < queuedExplicitHydrationTargets.length; i++) {
15239
+ var queuedTarget = queuedExplicitHydrationTargets[i];
15240
+ queuedTarget.blockedOn === unblocked && (queuedTarget.blockedOn = null);
15241
+ }
15242
+ for (
15243
+ ;
15244
+ 0 < queuedExplicitHydrationTargets.length &&
15245
+ ((i = queuedExplicitHydrationTargets[0]), null === i.blockedOn);
15246
+
15247
+ )
15248
+ attemptExplicitHydrationTarget(i),
15249
+ null === i.blockedOn && queuedExplicitHydrationTargets.shift();
15250
+ i = (unblocked.ownerDocument || unblocked).$$reactFormReplay;
15251
+ if (null != i)
15252
+ for (queuedTarget = 0; queuedTarget < i.length; queuedTarget += 3) {
15253
+ var form = i[queuedTarget],
15254
+ submitterOrAction = i[queuedTarget + 1],
15255
+ formProps = form[internalPropsKey] || null;
15256
+ if ("function" === typeof submitterOrAction)
15257
+ formProps || scheduleReplayQueueIfNeeded(i);
15258
+ else if (formProps) {
15259
+ var action = null;
15260
+ if (submitterOrAction && submitterOrAction.hasAttribute("formAction"))
15261
+ if (
15262
+ ((form = submitterOrAction),
15263
+ (formProps = submitterOrAction[internalPropsKey] || null))
15264
+ )
15265
+ action = formProps.formAction;
15266
+ else {
15267
+ if (null !== findInstanceBlockingTarget(form)) continue;
15268
+ }
15269
+ else action = formProps.action;
15270
+ "function" === typeof action
15271
+ ? (i[queuedTarget + 1] = action)
15272
+ : (i.splice(queuedTarget, 3), (queuedTarget -= 3));
15273
+ scheduleReplayQueueIfNeeded(i);
15274
+ }
15275
+ }
15276
+ }
15277
+ function ReactDOMRoot(internalRoot) {
15278
+ this._internalRoot = internalRoot;
15279
+ }
15280
+ ReactDOMHydrationRoot.prototype.render = ReactDOMRoot.prototype.render =
15281
+ function (children) {
15282
+ var root = this._internalRoot;
15283
+ if (null === root) throw Error(formatProdErrorMessage(409));
15284
+ var current = root.current,
15285
+ lane = requestUpdateLane();
15286
+ updateContainerImpl(current, lane, children, root, null, null);
15287
+ };
15288
+ ReactDOMHydrationRoot.prototype.unmount = ReactDOMRoot.prototype.unmount =
15289
+ function () {
15290
+ var root = this._internalRoot;
15291
+ if (null !== root) {
15292
+ this._internalRoot = null;
15293
+ var container = root.containerInfo;
15294
+ updateContainerImpl(root.current, 2, null, root, null, null);
15295
+ flushSyncWork$1();
15296
+ container[internalContainerInstanceKey] = null;
15297
+ }
15298
+ };
15299
+ function ReactDOMHydrationRoot(internalRoot) {
15300
+ this._internalRoot = internalRoot;
15301
+ }
15302
+ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
15303
+ if (target) {
15304
+ var updatePriority = resolveUpdatePriority();
15305
+ target = { blockedOn: null, target: target, priority: updatePriority };
15306
+ for (
15307
+ var i = 0;
15308
+ i < queuedExplicitHydrationTargets.length &&
15309
+ 0 !== updatePriority &&
15310
+ updatePriority < queuedExplicitHydrationTargets[i].priority;
15311
+ i++
15312
+ );
15313
+ queuedExplicitHydrationTargets.splice(i, 0, target);
15314
+ 0 === i && attemptExplicitHydrationTarget(target);
15315
+ }
15316
+ };
15317
+ var isomorphicReactPackageVersion$jscomp$inline_1785 = React.version;
15318
+ if (
15319
+ "19.1.0" !==
15320
+ isomorphicReactPackageVersion$jscomp$inline_1785
15321
+ )
15322
+ throw Error(
15323
+ formatProdErrorMessage(
15324
+ 527,
15325
+ isomorphicReactPackageVersion$jscomp$inline_1785,
15326
+ "19.1.0"
15327
+ )
15328
+ );
15329
+ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
15330
+ var fiber = componentOrElement._reactInternals;
15331
+ if (void 0 === fiber) {
15332
+ if ("function" === typeof componentOrElement.render)
15333
+ throw Error(formatProdErrorMessage(188));
15334
+ componentOrElement = Object.keys(componentOrElement).join(",");
15335
+ throw Error(formatProdErrorMessage(268, componentOrElement));
15336
+ }
15337
+ componentOrElement = findCurrentFiberUsingSlowPath(fiber);
15338
+ componentOrElement =
15339
+ null !== componentOrElement
15340
+ ? findCurrentHostFiberImpl(componentOrElement)
15341
+ : null;
15342
+ componentOrElement =
15343
+ null === componentOrElement ? null : componentOrElement.stateNode;
15344
+ return componentOrElement;
15345
+ };
15346
+ var internals$jscomp$inline_2256 = {
15347
+ bundleType: 0,
15348
+ version: "19.1.0",
15349
+ rendererPackageName: "react-dom",
15350
+ currentDispatcherRef: ReactSharedInternals,
15351
+ reconcilerVersion: "19.1.0"
15352
+ };
15353
+ if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
15354
+ var hook$jscomp$inline_2257 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
15355
+ if (
15356
+ !hook$jscomp$inline_2257.isDisabled &&
15357
+ hook$jscomp$inline_2257.supportsFiber
15358
+ )
15359
+ try {
15360
+ (rendererID = hook$jscomp$inline_2257.inject(
15361
+ internals$jscomp$inline_2256
15362
+ )),
15363
+ (injectedHook = hook$jscomp$inline_2257);
15364
+ } catch (err) {}
15365
+ }
15366
+ exports.createRoot = function (container, options) {
15367
+ if (!isValidContainer(container)) throw Error(formatProdErrorMessage(299));
15368
+ var isStrictMode = !1,
15369
+ identifierPrefix = "",
15370
+ onUncaughtError = defaultOnUncaughtError,
15371
+ onCaughtError = defaultOnCaughtError,
15372
+ onRecoverableError = defaultOnRecoverableError,
15373
+ transitionCallbacks = null;
15374
+ null !== options &&
15375
+ void 0 !== options &&
15376
+ (!0 === options.unstable_strictMode && (isStrictMode = !0),
15377
+ void 0 !== options.identifierPrefix &&
15378
+ (identifierPrefix = options.identifierPrefix),
15379
+ void 0 !== options.onUncaughtError &&
15380
+ (onUncaughtError = options.onUncaughtError),
15381
+ void 0 !== options.onCaughtError && (onCaughtError = options.onCaughtError),
15382
+ void 0 !== options.onRecoverableError &&
15383
+ (onRecoverableError = options.onRecoverableError),
15384
+ void 0 !== options.unstable_transitionCallbacks &&
15385
+ (transitionCallbacks = options.unstable_transitionCallbacks));
15386
+ options = createFiberRoot(
15387
+ container,
15388
+ 1,
15389
+ !1,
15390
+ null,
15391
+ null,
15392
+ isStrictMode,
15393
+ identifierPrefix,
15394
+ onUncaughtError,
15395
+ onCaughtError,
15396
+ onRecoverableError,
15397
+ transitionCallbacks,
15398
+ null
15399
+ );
15400
+ container[internalContainerInstanceKey] = options.current;
15401
+ listenToAllSupportedEvents(container);
15402
+ return new ReactDOMRoot(options);
15403
+ };
15404
+ exports.hydrateRoot = function (container, initialChildren, options) {
15405
+ if (!isValidContainer(container)) throw Error(formatProdErrorMessage(299));
15406
+ var isStrictMode = !1,
15407
+ identifierPrefix = "",
15408
+ onUncaughtError = defaultOnUncaughtError,
15409
+ onCaughtError = defaultOnCaughtError,
15410
+ onRecoverableError = defaultOnRecoverableError,
15411
+ transitionCallbacks = null,
15412
+ formState = null;
15413
+ null !== options &&
15414
+ void 0 !== options &&
15415
+ (!0 === options.unstable_strictMode && (isStrictMode = !0),
15416
+ void 0 !== options.identifierPrefix &&
15417
+ (identifierPrefix = options.identifierPrefix),
15418
+ void 0 !== options.onUncaughtError &&
15419
+ (onUncaughtError = options.onUncaughtError),
15420
+ void 0 !== options.onCaughtError && (onCaughtError = options.onCaughtError),
15421
+ void 0 !== options.onRecoverableError &&
15422
+ (onRecoverableError = options.onRecoverableError),
15423
+ void 0 !== options.unstable_transitionCallbacks &&
15424
+ (transitionCallbacks = options.unstable_transitionCallbacks),
15425
+ void 0 !== options.formState && (formState = options.formState));
15426
+ initialChildren = createFiberRoot(
15427
+ container,
15428
+ 1,
15429
+ !0,
15430
+ initialChildren,
15431
+ null != options ? options : null,
15432
+ isStrictMode,
15433
+ identifierPrefix,
15434
+ onUncaughtError,
15435
+ onCaughtError,
15436
+ onRecoverableError,
15437
+ transitionCallbacks,
15438
+ formState
15439
+ );
15440
+ initialChildren.context = getContextForSubtree(null);
15441
+ options = initialChildren.current;
15442
+ isStrictMode = requestUpdateLane();
15443
+ isStrictMode = getBumpedLaneForHydrationByLane(isStrictMode);
15444
+ identifierPrefix = createUpdate(isStrictMode);
15445
+ identifierPrefix.callback = null;
15446
+ enqueueUpdate(options, identifierPrefix, isStrictMode);
15447
+ options = isStrictMode;
15448
+ initialChildren.current.lanes = options;
15449
+ markRootUpdated$1(initialChildren, options);
15450
+ ensureRootIsScheduled(initialChildren);
15451
+ container[internalContainerInstanceKey] = initialChildren.current;
15452
+ listenToAllSupportedEvents(container);
15453
+ return new ReactDOMHydrationRoot(initialChildren);
15454
+ };
15455
+ exports.version = "19.1.0";
15456
+
15457
+
15458
+ /***/ }),
15459
+
15460
+ /***/ 683:
15461
+ /*!***************************************************************************!*\
15462
+ !*** ./node_modules/.pnpm/react@19.1.0/node_modules/react/jsx-runtime.js ***!
15463
+ \***************************************************************************/
15464
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
15465
+
15466
+
15467
+
15468
+ if (true) {
15469
+ module.exports = __webpack_require__(/*! ./cjs/react-jsx-runtime.production.js */ 807);
15470
+ } else {}
15471
+
15472
+
15473
+ /***/ }),
15474
+
15475
+ /***/ 692:
15476
+ /*!*************************************************************************************************************!*\
15477
+ !*** ./node_modules/.pnpm/react-dom@19.1.0_react@19.1.0/node_modules/react-dom/cjs/react-dom.production.js ***!
15478
+ \*************************************************************************************************************/
15479
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
15480
+
15481
+ /**
15482
+ * @license React
15483
+ * react-dom.production.js
15484
+ *
15485
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
15486
+ *
15487
+ * This source code is licensed under the MIT license found in the
15488
+ * LICENSE file in the root directory of this source tree.
15489
+ */
15490
+
15491
+
15492
+ var React = __webpack_require__(/*! react */ 75);
15493
+ function formatProdErrorMessage(code) {
15494
+ var url = "https://react.dev/errors/" + code;
15495
+ if (1 < arguments.length) {
15496
+ url += "?args[]=" + encodeURIComponent(arguments[1]);
15497
+ for (var i = 2; i < arguments.length; i++)
15498
+ url += "&args[]=" + encodeURIComponent(arguments[i]);
15499
+ }
15500
+ return (
15501
+ "Minified React error #" +
15502
+ code +
15503
+ "; visit " +
15504
+ url +
15505
+ " for the full message or use the non-minified dev environment for full errors and additional helpful warnings."
15506
+ );
15507
+ }
15508
+ function noop() {}
15509
+ var Internals = {
15510
+ d: {
15511
+ f: noop,
15512
+ r: function () {
15513
+ throw Error(formatProdErrorMessage(522));
15514
+ },
15515
+ D: noop,
15516
+ C: noop,
15517
+ L: noop,
15518
+ m: noop,
15519
+ X: noop,
15520
+ S: noop,
15521
+ M: noop
15522
+ },
15523
+ p: 0,
15524
+ findDOMNode: null
15525
+ },
15526
+ REACT_PORTAL_TYPE = Symbol.for("react.portal");
15527
+ function createPortal$1(children, containerInfo, implementation) {
15528
+ var key =
15529
+ 3 < arguments.length && void 0 !== arguments[3] ? arguments[3] : null;
15530
+ return {
15531
+ $$typeof: REACT_PORTAL_TYPE,
15532
+ key: null == key ? null : "" + key,
15533
+ children: children,
15534
+ containerInfo: containerInfo,
15535
+ implementation: implementation
15536
+ };
15537
+ }
15538
+ var ReactSharedInternals =
15539
+ React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;
15540
+ function getCrossOriginStringAs(as, input) {
15541
+ if ("font" === as) return "";
15542
+ if ("string" === typeof input)
15543
+ return "use-credentials" === input ? input : "";
15544
+ }
15545
+ exports.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =
15546
+ Internals;
15547
+ exports.createPortal = function (children, container) {
15548
+ var key =
15549
+ 2 < arguments.length && void 0 !== arguments[2] ? arguments[2] : null;
15550
+ if (
15551
+ !container ||
15552
+ (1 !== container.nodeType &&
15553
+ 9 !== container.nodeType &&
15554
+ 11 !== container.nodeType)
15555
+ )
15556
+ throw Error(formatProdErrorMessage(299));
15557
+ return createPortal$1(children, container, null, key);
15558
+ };
15559
+ exports.flushSync = function (fn) {
15560
+ var previousTransition = ReactSharedInternals.T,
15561
+ previousUpdatePriority = Internals.p;
15562
+ try {
15563
+ if (((ReactSharedInternals.T = null), (Internals.p = 2), fn)) return fn();
15564
+ } finally {
15565
+ (ReactSharedInternals.T = previousTransition),
15566
+ (Internals.p = previousUpdatePriority),
15567
+ Internals.d.f();
15568
+ }
15569
+ };
15570
+ exports.preconnect = function (href, options) {
15571
+ "string" === typeof href &&
15572
+ (options
15573
+ ? ((options = options.crossOrigin),
15574
+ (options =
15575
+ "string" === typeof options
15576
+ ? "use-credentials" === options
15577
+ ? options
15578
+ : ""
15579
+ : void 0))
15580
+ : (options = null),
15581
+ Internals.d.C(href, options));
15582
+ };
15583
+ exports.prefetchDNS = function (href) {
15584
+ "string" === typeof href && Internals.d.D(href);
15585
+ };
15586
+ exports.preinit = function (href, options) {
15587
+ if ("string" === typeof href && options && "string" === typeof options.as) {
15588
+ var as = options.as,
15589
+ crossOrigin = getCrossOriginStringAs(as, options.crossOrigin),
15590
+ integrity =
15591
+ "string" === typeof options.integrity ? options.integrity : void 0,
15592
+ fetchPriority =
15593
+ "string" === typeof options.fetchPriority
15594
+ ? options.fetchPriority
15595
+ : void 0;
15596
+ "style" === as
15597
+ ? Internals.d.S(
15598
+ href,
15599
+ "string" === typeof options.precedence ? options.precedence : void 0,
15600
+ {
15601
+ crossOrigin: crossOrigin,
15602
+ integrity: integrity,
15603
+ fetchPriority: fetchPriority
15604
+ }
15605
+ )
15606
+ : "script" === as &&
15607
+ Internals.d.X(href, {
15608
+ crossOrigin: crossOrigin,
15609
+ integrity: integrity,
15610
+ fetchPriority: fetchPriority,
15611
+ nonce: "string" === typeof options.nonce ? options.nonce : void 0
15612
+ });
15613
+ }
15614
+ };
15615
+ exports.preinitModule = function (href, options) {
15616
+ if ("string" === typeof href)
15617
+ if ("object" === typeof options && null !== options) {
15618
+ if (null == options.as || "script" === options.as) {
15619
+ var crossOrigin = getCrossOriginStringAs(
15620
+ options.as,
15621
+ options.crossOrigin
15622
+ );
15623
+ Internals.d.M(href, {
15624
+ crossOrigin: crossOrigin,
15625
+ integrity:
15626
+ "string" === typeof options.integrity ? options.integrity : void 0,
15627
+ nonce: "string" === typeof options.nonce ? options.nonce : void 0
15628
+ });
15629
+ }
15630
+ } else null == options && Internals.d.M(href);
15631
+ };
15632
+ exports.preload = function (href, options) {
15633
+ if (
15634
+ "string" === typeof href &&
15635
+ "object" === typeof options &&
15636
+ null !== options &&
15637
+ "string" === typeof options.as
15638
+ ) {
15639
+ var as = options.as,
15640
+ crossOrigin = getCrossOriginStringAs(as, options.crossOrigin);
15641
+ Internals.d.L(href, as, {
15642
+ crossOrigin: crossOrigin,
15643
+ integrity:
15644
+ "string" === typeof options.integrity ? options.integrity : void 0,
15645
+ nonce: "string" === typeof options.nonce ? options.nonce : void 0,
15646
+ type: "string" === typeof options.type ? options.type : void 0,
15647
+ fetchPriority:
15648
+ "string" === typeof options.fetchPriority
15649
+ ? options.fetchPriority
15650
+ : void 0,
15651
+ referrerPolicy:
15652
+ "string" === typeof options.referrerPolicy
15653
+ ? options.referrerPolicy
15654
+ : void 0,
15655
+ imageSrcSet:
15656
+ "string" === typeof options.imageSrcSet ? options.imageSrcSet : void 0,
15657
+ imageSizes:
15658
+ "string" === typeof options.imageSizes ? options.imageSizes : void 0,
15659
+ media: "string" === typeof options.media ? options.media : void 0
15660
+ });
15661
+ }
15662
+ };
15663
+ exports.preloadModule = function (href, options) {
15664
+ if ("string" === typeof href)
15665
+ if (options) {
15666
+ var crossOrigin = getCrossOriginStringAs(options.as, options.crossOrigin);
15667
+ Internals.d.m(href, {
15668
+ as:
15669
+ "string" === typeof options.as && "script" !== options.as
15670
+ ? options.as
15671
+ : void 0,
15672
+ crossOrigin: crossOrigin,
15673
+ integrity:
15674
+ "string" === typeof options.integrity ? options.integrity : void 0
15675
+ });
15676
+ } else Internals.d.m(href);
15677
+ };
15678
+ exports.requestFormReset = function (form) {
15679
+ Internals.d.r(form);
15680
+ };
15681
+ exports.unstable_batchedUpdates = function (fn, a) {
15682
+ return fn(a);
15683
+ };
15684
+ exports.useFormState = function (action, initialState, permalink) {
15685
+ return ReactSharedInternals.H.useFormState(action, initialState, permalink);
15686
+ };
15687
+ exports.useFormStatus = function () {
15688
+ return ReactSharedInternals.H.useHostTransitionStatus();
15689
+ };
15690
+ exports.version = "19.1.0";
15691
+
15692
+
15693
+ /***/ }),
15694
+
15695
+ /***/ 807:
15696
+ /*!************************************************************************************************!*\
15697
+ !*** ./node_modules/.pnpm/react@19.1.0/node_modules/react/cjs/react-jsx-runtime.production.js ***!
15698
+ \************************************************************************************************/
15699
+ /***/ ((__unused_webpack_module, exports) => {
15700
+
15701
+ /**
15702
+ * @license React
15703
+ * react-jsx-runtime.production.js
15704
+ *
15705
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
15706
+ *
15707
+ * This source code is licensed under the MIT license found in the
15708
+ * LICENSE file in the root directory of this source tree.
15709
+ */
15710
+
15711
+
15712
+ var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
15713
+ REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
15714
+ function jsxProd(type, config, maybeKey) {
15715
+ var key = null;
15716
+ void 0 !== maybeKey && (key = "" + maybeKey);
15717
+ void 0 !== config.key && (key = "" + config.key);
15718
+ if ("key" in config) {
15719
+ maybeKey = {};
15720
+ for (var propName in config)
15721
+ "key" !== propName && (maybeKey[propName] = config[propName]);
15722
+ } else maybeKey = config;
15723
+ config = maybeKey.ref;
15724
+ return {
15725
+ $$typeof: REACT_ELEMENT_TYPE,
15726
+ type: type,
15727
+ key: key,
15728
+ ref: void 0 !== config ? config : null,
15729
+ props: maybeKey
15730
+ };
15731
+ }
15732
+ exports.Fragment = REACT_FRAGMENT_TYPE;
15733
+ exports.jsx = jsxProd;
15734
+ exports.jsxs = jsxProd;
15735
+
15736
+
15737
+ /***/ }),
15738
+
15739
+ /***/ 811:
15740
+ /*!************************************************************************************************!*\
15741
+ !*** ./node_modules/.pnpm/scheduler@0.26.0/node_modules/scheduler/cjs/scheduler.production.js ***!
15742
+ \************************************************************************************************/
15743
+ /***/ ((__unused_webpack_module, exports) => {
15744
+
15745
+ /**
15746
+ * @license React
15747
+ * scheduler.production.js
15748
+ *
15749
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
15750
+ *
15751
+ * This source code is licensed under the MIT license found in the
15752
+ * LICENSE file in the root directory of this source tree.
15753
+ */
15754
+
15755
+
15756
+ function push(heap, node) {
15757
+ var index = heap.length;
15758
+ heap.push(node);
15759
+ a: for (; 0 < index; ) {
15760
+ var parentIndex = (index - 1) >>> 1,
15761
+ parent = heap[parentIndex];
15762
+ if (0 < compare(parent, node))
15763
+ (heap[parentIndex] = node), (heap[index] = parent), (index = parentIndex);
15764
+ else break a;
15748
15765
  }
15749
- queuedTarget.blockedOn = null;
15750
15766
  }
15751
- function attemptReplayContinuousQueuedEvent(queuedEvent) {
15752
- if (null !== queuedEvent.blockedOn) return !1;
15753
- for (
15754
- var targetContainers = queuedEvent.targetContainers;
15755
- 0 < targetContainers.length;
15767
+ function peek(heap) {
15768
+ return 0 === heap.length ? null : heap[0];
15769
+ }
15770
+ function pop(heap) {
15771
+ if (0 === heap.length) return null;
15772
+ var first = heap[0],
15773
+ last = heap.pop();
15774
+ if (last !== first) {
15775
+ heap[0] = last;
15776
+ a: for (
15777
+ var index = 0, length = heap.length, halfLength = length >>> 1;
15778
+ index < halfLength;
15756
15779
 
15757
- ) {
15758
- var nextBlockedOn = findInstanceBlockingEvent(queuedEvent.nativeEvent);
15759
- if (null === nextBlockedOn) {
15760
- nextBlockedOn = queuedEvent.nativeEvent;
15761
- var nativeEventClone = new nextBlockedOn.constructor(
15762
- nextBlockedOn.type,
15763
- nextBlockedOn
15764
- );
15765
- currentReplayingEvent = nativeEventClone;
15766
- nextBlockedOn.target.dispatchEvent(nativeEventClone);
15767
- currentReplayingEvent = null;
15768
- } else
15769
- return (
15770
- (targetContainers = getInstanceFromNode(nextBlockedOn)),
15771
- null !== targetContainers &&
15772
- attemptContinuousHydration(targetContainers),
15773
- (queuedEvent.blockedOn = nextBlockedOn),
15774
- !1
15775
- );
15776
- targetContainers.shift();
15780
+ ) {
15781
+ var leftIndex = 2 * (index + 1) - 1,
15782
+ left = heap[leftIndex],
15783
+ rightIndex = leftIndex + 1,
15784
+ right = heap[rightIndex];
15785
+ if (0 > compare(left, last))
15786
+ rightIndex < length && 0 > compare(right, left)
15787
+ ? ((heap[index] = right),
15788
+ (heap[rightIndex] = last),
15789
+ (index = rightIndex))
15790
+ : ((heap[index] = left),
15791
+ (heap[leftIndex] = last),
15792
+ (index = leftIndex));
15793
+ else if (rightIndex < length && 0 > compare(right, last))
15794
+ (heap[index] = right), (heap[rightIndex] = last), (index = rightIndex);
15795
+ else break a;
15796
+ }
15777
15797
  }
15778
- return !0;
15798
+ return first;
15779
15799
  }
15780
- function attemptReplayContinuousQueuedEventInMap(queuedEvent, key, map) {
15781
- attemptReplayContinuousQueuedEvent(queuedEvent) && map.delete(key);
15800
+ function compare(a, b) {
15801
+ var diff = a.sortIndex - b.sortIndex;
15802
+ return 0 !== diff ? diff : a.id - b.id;
15782
15803
  }
15783
- function replayUnblockedEvents() {
15784
- hasScheduledReplayAttempt = !1;
15785
- null !== queuedFocus &&
15786
- attemptReplayContinuousQueuedEvent(queuedFocus) &&
15787
- (queuedFocus = null);
15788
- null !== queuedDrag &&
15789
- attemptReplayContinuousQueuedEvent(queuedDrag) &&
15790
- (queuedDrag = null);
15791
- null !== queuedMouse &&
15792
- attemptReplayContinuousQueuedEvent(queuedMouse) &&
15793
- (queuedMouse = null);
15794
- queuedPointers.forEach(attemptReplayContinuousQueuedEventInMap);
15795
- queuedPointerCaptures.forEach(attemptReplayContinuousQueuedEventInMap);
15804
+ exports.unstable_now = void 0;
15805
+ if ("object" === typeof performance && "function" === typeof performance.now) {
15806
+ var localPerformance = performance;
15807
+ exports.unstable_now = function () {
15808
+ return localPerformance.now();
15809
+ };
15810
+ } else {
15811
+ var localDate = Date,
15812
+ initialTime = localDate.now();
15813
+ exports.unstable_now = function () {
15814
+ return localDate.now() - initialTime;
15815
+ };
15796
15816
  }
15797
- function scheduleCallbackIfUnblocked(queuedEvent, unblocked) {
15798
- queuedEvent.blockedOn === unblocked &&
15799
- ((queuedEvent.blockedOn = null),
15800
- hasScheduledReplayAttempt ||
15801
- ((hasScheduledReplayAttempt = !0),
15802
- Scheduler.unstable_scheduleCallback(
15803
- Scheduler.unstable_NormalPriority,
15804
- replayUnblockedEvents
15805
- )));
15817
+ var taskQueue = [],
15818
+ timerQueue = [],
15819
+ taskIdCounter = 1,
15820
+ currentTask = null,
15821
+ currentPriorityLevel = 3,
15822
+ isPerformingWork = !1,
15823
+ isHostCallbackScheduled = !1,
15824
+ isHostTimeoutScheduled = !1,
15825
+ needsPaint = !1,
15826
+ localSetTimeout = "function" === typeof setTimeout ? setTimeout : null,
15827
+ localClearTimeout = "function" === typeof clearTimeout ? clearTimeout : null,
15828
+ localSetImmediate = "undefined" !== typeof setImmediate ? setImmediate : null;
15829
+ function advanceTimers(currentTime) {
15830
+ for (var timer = peek(timerQueue); null !== timer; ) {
15831
+ if (null === timer.callback) pop(timerQueue);
15832
+ else if (timer.startTime <= currentTime)
15833
+ pop(timerQueue),
15834
+ (timer.sortIndex = timer.expirationTime),
15835
+ push(taskQueue, timer);
15836
+ else break;
15837
+ timer = peek(timerQueue);
15838
+ }
15806
15839
  }
15807
- var lastScheduledReplayQueue = null;
15808
- function scheduleReplayQueueIfNeeded(formReplayingQueue) {
15809
- lastScheduledReplayQueue !== formReplayingQueue &&
15810
- ((lastScheduledReplayQueue = formReplayingQueue),
15811
- Scheduler.unstable_scheduleCallback(
15812
- Scheduler.unstable_NormalPriority,
15813
- function () {
15814
- lastScheduledReplayQueue === formReplayingQueue &&
15815
- (lastScheduledReplayQueue = null);
15816
- for (var i = 0; i < formReplayingQueue.length; i += 3) {
15817
- var form = formReplayingQueue[i],
15818
- submitterOrAction = formReplayingQueue[i + 1],
15819
- formData = formReplayingQueue[i + 2];
15820
- if ("function" !== typeof submitterOrAction)
15821
- if (null === findInstanceBlockingTarget(submitterOrAction || form))
15822
- continue;
15823
- else break;
15824
- var formInst = getInstanceFromNode(form);
15825
- null !== formInst &&
15826
- (formReplayingQueue.splice(i, 3),
15827
- (i -= 3),
15828
- startHostTransition(
15829
- formInst,
15830
- {
15831
- pending: !0,
15832
- data: formData,
15833
- method: form.method,
15834
- action: submitterOrAction
15835
- },
15836
- submitterOrAction,
15837
- formData
15838
- ));
15839
- }
15840
- }
15841
- ));
15840
+ function handleTimeout(currentTime) {
15841
+ isHostTimeoutScheduled = !1;
15842
+ advanceTimers(currentTime);
15843
+ if (!isHostCallbackScheduled)
15844
+ if (null !== peek(taskQueue))
15845
+ (isHostCallbackScheduled = !0),
15846
+ isMessageLoopRunning ||
15847
+ ((isMessageLoopRunning = !0), schedulePerformWorkUntilDeadline());
15848
+ else {
15849
+ var firstTimer = peek(timerQueue);
15850
+ null !== firstTimer &&
15851
+ requestHostTimeout(handleTimeout, firstTimer.startTime - currentTime);
15852
+ }
15842
15853
  }
15843
- function retryIfBlockedOn(unblocked) {
15844
- function unblock(queuedEvent) {
15845
- return scheduleCallbackIfUnblocked(queuedEvent, unblocked);
15846
- }
15847
- null !== queuedFocus && scheduleCallbackIfUnblocked(queuedFocus, unblocked);
15848
- null !== queuedDrag && scheduleCallbackIfUnblocked(queuedDrag, unblocked);
15849
- null !== queuedMouse && scheduleCallbackIfUnblocked(queuedMouse, unblocked);
15850
- queuedPointers.forEach(unblock);
15851
- queuedPointerCaptures.forEach(unblock);
15852
- for (var i = 0; i < queuedExplicitHydrationTargets.length; i++) {
15853
- var queuedTarget = queuedExplicitHydrationTargets[i];
15854
- queuedTarget.blockedOn === unblocked && (queuedTarget.blockedOn = null);
15855
- }
15856
- for (
15857
- ;
15858
- 0 < queuedExplicitHydrationTargets.length &&
15859
- ((i = queuedExplicitHydrationTargets[0]), null === i.blockedOn);
15854
+ var isMessageLoopRunning = !1,
15855
+ taskTimeoutID = -1,
15856
+ frameInterval = 5,
15857
+ startTime = -1;
15858
+ function shouldYieldToHost() {
15859
+ return needsPaint
15860
+ ? !0
15861
+ : exports.unstable_now() - startTime < frameInterval
15862
+ ? !1
15863
+ : !0;
15864
+ }
15865
+ function performWorkUntilDeadline() {
15866
+ needsPaint = !1;
15867
+ if (isMessageLoopRunning) {
15868
+ var currentTime = exports.unstable_now();
15869
+ startTime = currentTime;
15870
+ var hasMoreWork = !0;
15871
+ try {
15872
+ a: {
15873
+ isHostCallbackScheduled = !1;
15874
+ isHostTimeoutScheduled &&
15875
+ ((isHostTimeoutScheduled = !1),
15876
+ localClearTimeout(taskTimeoutID),
15877
+ (taskTimeoutID = -1));
15878
+ isPerformingWork = !0;
15879
+ var previousPriorityLevel = currentPriorityLevel;
15880
+ try {
15881
+ b: {
15882
+ advanceTimers(currentTime);
15883
+ for (
15884
+ currentTask = peek(taskQueue);
15885
+ null !== currentTask &&
15886
+ !(
15887
+ currentTask.expirationTime > currentTime && shouldYieldToHost()
15888
+ );
15860
15889
 
15861
- )
15862
- attemptExplicitHydrationTarget(i),
15863
- null === i.blockedOn && queuedExplicitHydrationTargets.shift();
15864
- i = (unblocked.ownerDocument || unblocked).$$reactFormReplay;
15865
- if (null != i)
15866
- for (queuedTarget = 0; queuedTarget < i.length; queuedTarget += 3) {
15867
- var form = i[queuedTarget],
15868
- submitterOrAction = i[queuedTarget + 1],
15869
- formProps = form[internalPropsKey] || null;
15870
- if ("function" === typeof submitterOrAction)
15871
- formProps || scheduleReplayQueueIfNeeded(i);
15872
- else if (formProps) {
15873
- var action = null;
15874
- if (submitterOrAction && submitterOrAction.hasAttribute("formAction"))
15875
- if (
15876
- ((form = submitterOrAction),
15877
- (formProps = submitterOrAction[internalPropsKey] || null))
15878
- )
15879
- action = formProps.formAction;
15880
- else {
15881
- if (null !== findInstanceBlockingTarget(form)) continue;
15890
+ ) {
15891
+ var callback = currentTask.callback;
15892
+ if ("function" === typeof callback) {
15893
+ currentTask.callback = null;
15894
+ currentPriorityLevel = currentTask.priorityLevel;
15895
+ var continuationCallback = callback(
15896
+ currentTask.expirationTime <= currentTime
15897
+ );
15898
+ currentTime = exports.unstable_now();
15899
+ if ("function" === typeof continuationCallback) {
15900
+ currentTask.callback = continuationCallback;
15901
+ advanceTimers(currentTime);
15902
+ hasMoreWork = !0;
15903
+ break b;
15904
+ }
15905
+ currentTask === peek(taskQueue) && pop(taskQueue);
15906
+ advanceTimers(currentTime);
15907
+ } else pop(taskQueue);
15908
+ currentTask = peek(taskQueue);
15909
+ }
15910
+ if (null !== currentTask) hasMoreWork = !0;
15911
+ else {
15912
+ var firstTimer = peek(timerQueue);
15913
+ null !== firstTimer &&
15914
+ requestHostTimeout(
15915
+ handleTimeout,
15916
+ firstTimer.startTime - currentTime
15917
+ );
15918
+ hasMoreWork = !1;
15919
+ }
15882
15920
  }
15883
- else action = formProps.action;
15884
- "function" === typeof action
15885
- ? (i[queuedTarget + 1] = action)
15886
- : (i.splice(queuedTarget, 3), (queuedTarget -= 3));
15887
- scheduleReplayQueueIfNeeded(i);
15921
+ break a;
15922
+ } finally {
15923
+ (currentTask = null),
15924
+ (currentPriorityLevel = previousPriorityLevel),
15925
+ (isPerformingWork = !1);
15926
+ }
15927
+ hasMoreWork = void 0;
15888
15928
  }
15929
+ } finally {
15930
+ hasMoreWork
15931
+ ? schedulePerformWorkUntilDeadline()
15932
+ : (isMessageLoopRunning = !1);
15889
15933
  }
15934
+ }
15890
15935
  }
15891
- function ReactDOMRoot(internalRoot) {
15892
- this._internalRoot = internalRoot;
15893
- }
15894
- ReactDOMHydrationRoot.prototype.render = ReactDOMRoot.prototype.render =
15895
- function (children) {
15896
- var root = this._internalRoot;
15897
- if (null === root) throw Error(formatProdErrorMessage(409));
15898
- var current = root.current,
15899
- lane = requestUpdateLane();
15900
- updateContainerImpl(current, lane, children, root, null, null);
15936
+ var schedulePerformWorkUntilDeadline;
15937
+ if ("function" === typeof localSetImmediate)
15938
+ schedulePerformWorkUntilDeadline = function () {
15939
+ localSetImmediate(performWorkUntilDeadline);
15901
15940
  };
15902
- ReactDOMHydrationRoot.prototype.unmount = ReactDOMRoot.prototype.unmount =
15903
- function () {
15904
- var root = this._internalRoot;
15905
- if (null !== root) {
15906
- this._internalRoot = null;
15907
- var container = root.containerInfo;
15908
- updateContainerImpl(root.current, 2, null, root, null, null);
15909
- flushSyncWork$1();
15910
- container[internalContainerInstanceKey] = null;
15911
- }
15941
+ else if ("undefined" !== typeof MessageChannel) {
15942
+ var channel = new MessageChannel(),
15943
+ port = channel.port2;
15944
+ channel.port1.onmessage = performWorkUntilDeadline;
15945
+ schedulePerformWorkUntilDeadline = function () {
15946
+ port.postMessage(null);
15912
15947
  };
15913
- function ReactDOMHydrationRoot(internalRoot) {
15914
- this._internalRoot = internalRoot;
15948
+ } else
15949
+ schedulePerformWorkUntilDeadline = function () {
15950
+ localSetTimeout(performWorkUntilDeadline, 0);
15951
+ };
15952
+ function requestHostTimeout(callback, ms) {
15953
+ taskTimeoutID = localSetTimeout(function () {
15954
+ callback(exports.unstable_now());
15955
+ }, ms);
15915
15956
  }
15916
- ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
15917
- if (target) {
15918
- var updatePriority = resolveUpdatePriority();
15919
- target = { blockedOn: null, target: target, priority: updatePriority };
15920
- for (
15921
- var i = 0;
15922
- i < queuedExplicitHydrationTargets.length &&
15923
- 0 !== updatePriority &&
15924
- updatePriority < queuedExplicitHydrationTargets[i].priority;
15925
- i++
15926
- );
15927
- queuedExplicitHydrationTargets.splice(i, 0, target);
15928
- 0 === i && attemptExplicitHydrationTarget(target);
15957
+ exports.unstable_IdlePriority = 5;
15958
+ exports.unstable_ImmediatePriority = 1;
15959
+ exports.unstable_LowPriority = 4;
15960
+ exports.unstable_NormalPriority = 3;
15961
+ exports.unstable_Profiling = null;
15962
+ exports.unstable_UserBlockingPriority = 2;
15963
+ exports.unstable_cancelCallback = function (task) {
15964
+ task.callback = null;
15965
+ };
15966
+ exports.unstable_forceFrameRate = function (fps) {
15967
+ 0 > fps || 125 < fps
15968
+ ? console.error(
15969
+ "forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"
15970
+ )
15971
+ : (frameInterval = 0 < fps ? Math.floor(1e3 / fps) : 5);
15972
+ };
15973
+ exports.unstable_getCurrentPriorityLevel = function () {
15974
+ return currentPriorityLevel;
15975
+ };
15976
+ exports.unstable_next = function (eventHandler) {
15977
+ switch (currentPriorityLevel) {
15978
+ case 1:
15979
+ case 2:
15980
+ case 3:
15981
+ var priorityLevel = 3;
15982
+ break;
15983
+ default:
15984
+ priorityLevel = currentPriorityLevel;
15985
+ }
15986
+ var previousPriorityLevel = currentPriorityLevel;
15987
+ currentPriorityLevel = priorityLevel;
15988
+ try {
15989
+ return eventHandler();
15990
+ } finally {
15991
+ currentPriorityLevel = previousPriorityLevel;
15929
15992
  }
15930
15993
  };
15931
- var isomorphicReactPackageVersion$jscomp$inline_1785 = React.version;
15932
- if (
15933
- "19.1.0" !==
15934
- isomorphicReactPackageVersion$jscomp$inline_1785
15935
- )
15936
- throw Error(
15937
- formatProdErrorMessage(
15938
- 527,
15939
- isomorphicReactPackageVersion$jscomp$inline_1785,
15940
- "19.1.0"
15941
- )
15942
- );
15943
- ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
15944
- var fiber = componentOrElement._reactInternals;
15945
- if (void 0 === fiber) {
15946
- if ("function" === typeof componentOrElement.render)
15947
- throw Error(formatProdErrorMessage(188));
15948
- componentOrElement = Object.keys(componentOrElement).join(",");
15949
- throw Error(formatProdErrorMessage(268, componentOrElement));
15994
+ exports.unstable_requestPaint = function () {
15995
+ needsPaint = !0;
15996
+ };
15997
+ exports.unstable_runWithPriority = function (priorityLevel, eventHandler) {
15998
+ switch (priorityLevel) {
15999
+ case 1:
16000
+ case 2:
16001
+ case 3:
16002
+ case 4:
16003
+ case 5:
16004
+ break;
16005
+ default:
16006
+ priorityLevel = 3;
15950
16007
  }
15951
- componentOrElement = findCurrentFiberUsingSlowPath(fiber);
15952
- componentOrElement =
15953
- null !== componentOrElement
15954
- ? findCurrentHostFiberImpl(componentOrElement)
15955
- : null;
15956
- componentOrElement =
15957
- null === componentOrElement ? null : componentOrElement.stateNode;
15958
- return componentOrElement;
16008
+ var previousPriorityLevel = currentPriorityLevel;
16009
+ currentPriorityLevel = priorityLevel;
16010
+ try {
16011
+ return eventHandler();
16012
+ } finally {
16013
+ currentPriorityLevel = previousPriorityLevel;
16014
+ }
16015
+ };
16016
+ exports.unstable_scheduleCallback = function (
16017
+ priorityLevel,
16018
+ callback,
16019
+ options
16020
+ ) {
16021
+ var currentTime = exports.unstable_now();
16022
+ "object" === typeof options && null !== options
16023
+ ? ((options = options.delay),
16024
+ (options =
16025
+ "number" === typeof options && 0 < options
16026
+ ? currentTime + options
16027
+ : currentTime))
16028
+ : (options = currentTime);
16029
+ switch (priorityLevel) {
16030
+ case 1:
16031
+ var timeout = -1;
16032
+ break;
16033
+ case 2:
16034
+ timeout = 250;
16035
+ break;
16036
+ case 5:
16037
+ timeout = 1073741823;
16038
+ break;
16039
+ case 4:
16040
+ timeout = 1e4;
16041
+ break;
16042
+ default:
16043
+ timeout = 5e3;
16044
+ }
16045
+ timeout = options + timeout;
16046
+ priorityLevel = {
16047
+ id: taskIdCounter++,
16048
+ callback: callback,
16049
+ priorityLevel: priorityLevel,
16050
+ startTime: options,
16051
+ expirationTime: timeout,
16052
+ sortIndex: -1
16053
+ };
16054
+ options > currentTime
16055
+ ? ((priorityLevel.sortIndex = options),
16056
+ push(timerQueue, priorityLevel),
16057
+ null === peek(taskQueue) &&
16058
+ priorityLevel === peek(timerQueue) &&
16059
+ (isHostTimeoutScheduled
16060
+ ? (localClearTimeout(taskTimeoutID), (taskTimeoutID = -1))
16061
+ : (isHostTimeoutScheduled = !0),
16062
+ requestHostTimeout(handleTimeout, options - currentTime)))
16063
+ : ((priorityLevel.sortIndex = timeout),
16064
+ push(taskQueue, priorityLevel),
16065
+ isHostCallbackScheduled ||
16066
+ isPerformingWork ||
16067
+ ((isHostCallbackScheduled = !0),
16068
+ isMessageLoopRunning ||
16069
+ ((isMessageLoopRunning = !0), schedulePerformWorkUntilDeadline())));
16070
+ return priorityLevel;
15959
16071
  };
15960
- var internals$jscomp$inline_2256 = {
15961
- bundleType: 0,
15962
- version: "19.1.0",
15963
- rendererPackageName: "react-dom",
15964
- currentDispatcherRef: ReactSharedInternals,
15965
- reconcilerVersion: "19.1.0"
16072
+ exports.unstable_shouldYield = shouldYieldToHost;
16073
+ exports.unstable_wrapCallback = function (callback) {
16074
+ var parentPriorityLevel = currentPriorityLevel;
16075
+ return function () {
16076
+ var previousPriorityLevel = currentPriorityLevel;
16077
+ currentPriorityLevel = parentPriorityLevel;
16078
+ try {
16079
+ return callback.apply(this, arguments);
16080
+ } finally {
16081
+ currentPriorityLevel = previousPriorityLevel;
16082
+ }
16083
+ };
15966
16084
  };
15967
- if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
15968
- var hook$jscomp$inline_2257 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
16085
+
16086
+
16087
+ /***/ }),
16088
+
16089
+ /***/ 816:
16090
+ /*!*****************************************************************************!*\
16091
+ !*** ./node_modules/.pnpm/scheduler@0.26.0/node_modules/scheduler/index.js ***!
16092
+ \*****************************************************************************/
16093
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
16094
+
16095
+
16096
+
16097
+ if (true) {
16098
+ module.exports = __webpack_require__(/*! ./cjs/scheduler.production.js */ 811);
16099
+ } else {}
16100
+
16101
+
16102
+ /***/ }),
16103
+
16104
+ /***/ 955:
16105
+ /*!*******************************************************************************************!*\
16106
+ !*** ./node_modules/.pnpm/react-dom@19.1.0_react@19.1.0/node_modules/react-dom/client.js ***!
16107
+ \*******************************************************************************************/
16108
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
16109
+
16110
+
16111
+
16112
+ function checkDCE() {
16113
+ /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */
15969
16114
  if (
15970
- !hook$jscomp$inline_2257.isDisabled &&
15971
- hook$jscomp$inline_2257.supportsFiber
15972
- )
15973
- try {
15974
- (rendererID = hook$jscomp$inline_2257.inject(
15975
- internals$jscomp$inline_2256
15976
- )),
15977
- (injectedHook = hook$jscomp$inline_2257);
15978
- } catch (err) {}
16115
+ typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined' ||
16116
+ typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE !== 'function'
16117
+ ) {
16118
+ return;
16119
+ }
16120
+ if (false) {}
16121
+ try {
16122
+ // Verify that the code above has been dead code eliminated (DCE'd).
16123
+ __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(checkDCE);
16124
+ } catch (err) {
16125
+ // DevTools shouldn't crash React, no matter what.
16126
+ // We should still report in case we break this code.
16127
+ console.error(err);
16128
+ }
15979
16129
  }
15980
- exports.createRoot = function (container, options) {
15981
- if (!isValidContainer(container)) throw Error(formatProdErrorMessage(299));
15982
- var isStrictMode = !1,
15983
- identifierPrefix = "",
15984
- onUncaughtError = defaultOnUncaughtError,
15985
- onCaughtError = defaultOnCaughtError,
15986
- onRecoverableError = defaultOnRecoverableError,
15987
- transitionCallbacks = null;
15988
- null !== options &&
15989
- void 0 !== options &&
15990
- (!0 === options.unstable_strictMode && (isStrictMode = !0),
15991
- void 0 !== options.identifierPrefix &&
15992
- (identifierPrefix = options.identifierPrefix),
15993
- void 0 !== options.onUncaughtError &&
15994
- (onUncaughtError = options.onUncaughtError),
15995
- void 0 !== options.onCaughtError && (onCaughtError = options.onCaughtError),
15996
- void 0 !== options.onRecoverableError &&
15997
- (onRecoverableError = options.onRecoverableError),
15998
- void 0 !== options.unstable_transitionCallbacks &&
15999
- (transitionCallbacks = options.unstable_transitionCallbacks));
16000
- options = createFiberRoot(
16001
- container,
16002
- 1,
16003
- !1,
16004
- null,
16005
- null,
16006
- isStrictMode,
16007
- identifierPrefix,
16008
- onUncaughtError,
16009
- onCaughtError,
16010
- onRecoverableError,
16011
- transitionCallbacks,
16012
- null
16013
- );
16014
- container[internalContainerInstanceKey] = options.current;
16015
- listenToAllSupportedEvents(container);
16016
- return new ReactDOMRoot(options);
16017
- };
16018
- exports.hydrateRoot = function (container, initialChildren, options) {
16019
- if (!isValidContainer(container)) throw Error(formatProdErrorMessage(299));
16020
- var isStrictMode = !1,
16021
- identifierPrefix = "",
16022
- onUncaughtError = defaultOnUncaughtError,
16023
- onCaughtError = defaultOnCaughtError,
16024
- onRecoverableError = defaultOnRecoverableError,
16025
- transitionCallbacks = null,
16026
- formState = null;
16027
- null !== options &&
16028
- void 0 !== options &&
16029
- (!0 === options.unstable_strictMode && (isStrictMode = !0),
16030
- void 0 !== options.identifierPrefix &&
16031
- (identifierPrefix = options.identifierPrefix),
16032
- void 0 !== options.onUncaughtError &&
16033
- (onUncaughtError = options.onUncaughtError),
16034
- void 0 !== options.onCaughtError && (onCaughtError = options.onCaughtError),
16035
- void 0 !== options.onRecoverableError &&
16036
- (onRecoverableError = options.onRecoverableError),
16037
- void 0 !== options.unstable_transitionCallbacks &&
16038
- (transitionCallbacks = options.unstable_transitionCallbacks),
16039
- void 0 !== options.formState && (formState = options.formState));
16040
- initialChildren = createFiberRoot(
16041
- container,
16042
- 1,
16043
- !0,
16044
- initialChildren,
16045
- null != options ? options : null,
16046
- isStrictMode,
16047
- identifierPrefix,
16048
- onUncaughtError,
16049
- onCaughtError,
16050
- onRecoverableError,
16051
- transitionCallbacks,
16052
- formState
16053
- );
16054
- initialChildren.context = getContextForSubtree(null);
16055
- options = initialChildren.current;
16056
- isStrictMode = requestUpdateLane();
16057
- isStrictMode = getBumpedLaneForHydrationByLane(isStrictMode);
16058
- identifierPrefix = createUpdate(isStrictMode);
16059
- identifierPrefix.callback = null;
16060
- enqueueUpdate(options, identifierPrefix, isStrictMode);
16061
- options = isStrictMode;
16062
- initialChildren.current.lanes = options;
16063
- markRootUpdated$1(initialChildren, options);
16064
- ensureRootIsScheduled(initialChildren);
16065
- container[internalContainerInstanceKey] = initialChildren.current;
16066
- listenToAllSupportedEvents(container);
16067
- return new ReactDOMHydrationRoot(initialChildren);
16068
- };
16069
- exports.version = "19.1.0";
16130
+
16131
+ if (true) {
16132
+ // DCE check should happen before ReactDOM bundle executes so that
16133
+ // DevTools can report bad minification during injection.
16134
+ checkDCE();
16135
+ module.exports = __webpack_require__(/*! ./cjs/react-dom-client.production.js */ 256);
16136
+ } else {}
16070
16137
 
16071
16138
 
16072
16139
  /***/ }),
16073
16140
 
16074
- /***/ 826:
16141
+ /***/ 992:
16075
16142
  /*!************************************************************************************!*\
16076
16143
  !*** ./node_modules/.pnpm/react@19.1.0/node_modules/react/cjs/react.production.js ***!
16077
16144
  \************************************************************************************/
@@ -16625,73 +16692,6 @@ exports.useTransition = function () {
16625
16692
  exports.version = "19.1.0";
16626
16693
 
16627
16694
 
16628
- /***/ }),
16629
-
16630
- /***/ 834:
16631
- /*!*****************************************************************************!*\
16632
- !*** ./node_modules/.pnpm/scheduler@0.26.0/node_modules/scheduler/index.js ***!
16633
- \*****************************************************************************/
16634
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
16635
-
16636
-
16637
-
16638
- if (true) {
16639
- module.exports = __webpack_require__(/*! ./cjs/scheduler.production.js */ 505);
16640
- } else {}
16641
-
16642
-
16643
- /***/ }),
16644
-
16645
- /***/ 913:
16646
- /*!***************************************************************************!*\
16647
- !*** ./node_modules/.pnpm/react@19.1.0/node_modules/react/jsx-runtime.js ***!
16648
- \***************************************************************************/
16649
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
16650
-
16651
-
16652
-
16653
- if (true) {
16654
- module.exports = __webpack_require__(/*! ./cjs/react-jsx-runtime.production.js */ 577);
16655
- } else {}
16656
-
16657
-
16658
- /***/ }),
16659
-
16660
- /***/ 956:
16661
- /*!******************************************************************************************!*\
16662
- !*** ./node_modules/.pnpm/react-dom@19.1.0_react@19.1.0/node_modules/react-dom/index.js ***!
16663
- \******************************************************************************************/
16664
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
16665
-
16666
-
16667
-
16668
- function checkDCE() {
16669
- /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */
16670
- if (
16671
- typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined' ||
16672
- typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE !== 'function'
16673
- ) {
16674
- return;
16675
- }
16676
- if (false) {}
16677
- try {
16678
- // Verify that the code above has been dead code eliminated (DCE'd).
16679
- __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(checkDCE);
16680
- } catch (err) {
16681
- // DevTools shouldn't crash React, no matter what.
16682
- // We should still report in case we break this code.
16683
- console.error(err);
16684
- }
16685
- }
16686
-
16687
- if (true) {
16688
- // DCE check should happen before ReactDOM bundle executes so that
16689
- // DevTools can report bad minification during injection.
16690
- checkDCE();
16691
- module.exports = __webpack_require__(/*! ./cjs/react-dom.production.js */ 458);
16692
- } else {}
16693
-
16694
-
16695
16695
  /***/ })
16696
16696
 
16697
16697
  /******/ });
@@ -16794,10 +16794,10 @@ __webpack_require__.r(__webpack_exports__);
16794
16794
  /* harmony export */ ReactDOMClient: () => (/* reexport fake namespace object from non-harmony */ react_dom_client__WEBPACK_IMPORTED_MODULE_3___namespace_cache || (react_dom_client__WEBPACK_IMPORTED_MODULE_3___namespace_cache = __webpack_require__.t(react_dom_client__WEBPACK_IMPORTED_MODULE_3__, 2))),
16795
16795
  /* harmony export */ ReactJSX: () => (/* reexport fake namespace object from non-harmony */ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1___namespace_cache || (react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1___namespace_cache = __webpack_require__.t(react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__, 2)))
16796
16796
  /* harmony export */ });
16797
- /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ 213);
16798
- /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react/jsx-runtime */ 913);
16799
- /* harmony import */ var react_dom__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! react-dom */ 956);
16800
- /* harmony import */ var react_dom_client__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! react-dom/client */ 373);
16797
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ 75);
16798
+ /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react/jsx-runtime */ 683);
16799
+ /* harmony import */ var react_dom__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! react-dom */ 186);
16800
+ /* harmony import */ var react_dom_client__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! react-dom/client */ 955);
16801
16801
 
16802
16802
 
16803
16803