react-dom 19.3.0-canary-67f7d47a-20251103 → 19.3.0-canary-dd048c3b-20251105
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.
- package/cjs/react-dom-client.development.js +194 -140
- package/cjs/react-dom-client.production.js +250 -205
- package/cjs/react-dom-profiling.development.js +194 -140
- package/cjs/react-dom-profiling.profiling.js +274 -229
- package/cjs/react-dom-server-legacy.browser.development.js +147 -149
- package/cjs/react-dom-server-legacy.browser.production.js +70 -92
- package/cjs/react-dom-server-legacy.node.development.js +147 -149
- package/cjs/react-dom-server-legacy.node.production.js +70 -92
- package/cjs/react-dom-server.browser.development.js +159 -171
- package/cjs/react-dom-server.browser.production.js +80 -112
- package/cjs/react-dom-server.bun.development.js +150 -176
- package/cjs/react-dom-server.bun.production.js +83 -119
- package/cjs/react-dom-server.edge.development.js +159 -171
- package/cjs/react-dom-server.edge.production.js +80 -112
- package/cjs/react-dom-server.node.development.js +162 -178
- package/cjs/react-dom-server.node.production.js +83 -119
- package/cjs/react-dom.development.js +1 -1
- package/cjs/react-dom.production.js +1 -1
- package/cjs/react-dom.react-server.development.js +1 -1
- package/cjs/react-dom.react-server.production.js +1 -1
- package/package.json +3 -3
|
@@ -2155,19 +2155,19 @@ function getTargetInstForChangeEvent(domEventName, targetInst) {
|
|
|
2155
2155
|
}
|
|
2156
2156
|
var isInputEventSupported = !1;
|
|
2157
2157
|
if (canUseDOM) {
|
|
2158
|
-
var JSCompiler_inline_result$jscomp$
|
|
2158
|
+
var JSCompiler_inline_result$jscomp$311;
|
|
2159
2159
|
if (canUseDOM) {
|
|
2160
|
-
var isSupported$jscomp$
|
|
2161
|
-
if (!isSupported$jscomp$
|
|
2162
|
-
var element$jscomp$
|
|
2163
|
-
element$jscomp$
|
|
2164
|
-
isSupported$jscomp$
|
|
2165
|
-
"function" === typeof element$jscomp$
|
|
2160
|
+
var isSupported$jscomp$inline_472 = "oninput" in document;
|
|
2161
|
+
if (!isSupported$jscomp$inline_472) {
|
|
2162
|
+
var element$jscomp$inline_473 = document.createElement("div");
|
|
2163
|
+
element$jscomp$inline_473.setAttribute("oninput", "return;");
|
|
2164
|
+
isSupported$jscomp$inline_472 =
|
|
2165
|
+
"function" === typeof element$jscomp$inline_473.oninput;
|
|
2166
2166
|
}
|
|
2167
|
-
JSCompiler_inline_result$jscomp$
|
|
2168
|
-
} else JSCompiler_inline_result$jscomp$
|
|
2167
|
+
JSCompiler_inline_result$jscomp$311 = isSupported$jscomp$inline_472;
|
|
2168
|
+
} else JSCompiler_inline_result$jscomp$311 = !1;
|
|
2169
2169
|
isInputEventSupported =
|
|
2170
|
-
JSCompiler_inline_result$jscomp$
|
|
2170
|
+
JSCompiler_inline_result$jscomp$311 &&
|
|
2171
2171
|
(!document.documentMode || 9 < document.documentMode);
|
|
2172
2172
|
}
|
|
2173
2173
|
function stopWatchingForValueChange() {
|
|
@@ -4464,7 +4464,7 @@ function pushOffscreenSuspenseHandler(fiber) {
|
|
|
4464
4464
|
? (push(suspenseStackCursor, suspenseStackCursor.current),
|
|
4465
4465
|
push(suspenseHandlerStackCursor, fiber),
|
|
4466
4466
|
null === shellBoundary && (shellBoundary = fiber))
|
|
4467
|
-
: reuseSuspenseHandlerOnStack(
|
|
4467
|
+
: reuseSuspenseHandlerOnStack();
|
|
4468
4468
|
}
|
|
4469
4469
|
function reuseSuspenseHandlerOnStack() {
|
|
4470
4470
|
push(suspenseStackCursor, suspenseStackCursor.current);
|
|
@@ -4476,6 +4476,15 @@ function popSuspenseHandler(fiber) {
|
|
|
4476
4476
|
pop(suspenseStackCursor);
|
|
4477
4477
|
}
|
|
4478
4478
|
var suspenseStackCursor = createCursor(0);
|
|
4479
|
+
function pushSuspenseListContext(fiber, newContext) {
|
|
4480
|
+
push(suspenseHandlerStackCursor, suspenseHandlerStackCursor.current);
|
|
4481
|
+
push(suspenseStackCursor, newContext);
|
|
4482
|
+
}
|
|
4483
|
+
function popSuspenseListContext(fiber) {
|
|
4484
|
+
pop(suspenseStackCursor);
|
|
4485
|
+
pop(suspenseHandlerStackCursor);
|
|
4486
|
+
shellBoundary === fiber && (shellBoundary = null);
|
|
4487
|
+
}
|
|
4479
4488
|
function findFirstSuspended(row) {
|
|
4480
4489
|
for (var node = row; null !== node; ) {
|
|
4481
4490
|
if (13 === node.tag) {
|
|
@@ -6185,6 +6194,7 @@ function throwException(
|
|
|
6185
6194
|
switch (sourceFiber.tag) {
|
|
6186
6195
|
case 31:
|
|
6187
6196
|
case 13:
|
|
6197
|
+
case 19:
|
|
6188
6198
|
return (
|
|
6189
6199
|
null === shellBoundary
|
|
6190
6200
|
? renderDidSuspendDelayIfPossible()
|
|
@@ -6506,11 +6516,11 @@ function updateOffscreenComponent(
|
|
|
6506
6516
|
null !== prevState
|
|
6507
6517
|
? (pushTransition(workInProgress, prevState.cachePool),
|
|
6508
6518
|
pushHiddenContext(workInProgress, prevState),
|
|
6509
|
-
reuseSuspenseHandlerOnStack(
|
|
6519
|
+
reuseSuspenseHandlerOnStack(),
|
|
6510
6520
|
(workInProgress.memoizedState = null))
|
|
6511
6521
|
: (null !== current && pushTransition(workInProgress, null),
|
|
6512
6522
|
reuseHiddenContextOnStack(),
|
|
6513
|
-
reuseSuspenseHandlerOnStack(
|
|
6523
|
+
reuseSuspenseHandlerOnStack());
|
|
6514
6524
|
reconcileChildren(current, workInProgress, nextChildren, renderLanes);
|
|
6515
6525
|
return workInProgress.child;
|
|
6516
6526
|
}
|
|
@@ -7050,7 +7060,7 @@ function updateSuspenseComponent(current, workInProgress, renderLanes) {
|
|
|
7050
7060
|
if (isHydrating) {
|
|
7051
7061
|
showFallback
|
|
7052
7062
|
? pushPrimaryTreeSuspenseHandler(workInProgress)
|
|
7053
|
-
: reuseSuspenseHandlerOnStack(
|
|
7063
|
+
: reuseSuspenseHandlerOnStack();
|
|
7054
7064
|
(current = nextHydratableInstance)
|
|
7055
7065
|
? ((current = canHydrateHydrationBoundary(
|
|
7056
7066
|
current,
|
|
@@ -7083,7 +7093,7 @@ function updateSuspenseComponent(current, workInProgress, renderLanes) {
|
|
|
7083
7093
|
nextProps = nextProps.fallback;
|
|
7084
7094
|
if (showFallback)
|
|
7085
7095
|
return (
|
|
7086
|
-
reuseSuspenseHandlerOnStack(
|
|
7096
|
+
reuseSuspenseHandlerOnStack(),
|
|
7087
7097
|
(showFallback = workInProgress.mode),
|
|
7088
7098
|
(nextPrimaryChildren = mountWorkInProgressOffscreenFiber(
|
|
7089
7099
|
{ mode: "hidden", children: nextPrimaryChildren },
|
|
@@ -7127,11 +7137,11 @@ function updateSuspenseComponent(current, workInProgress, renderLanes) {
|
|
|
7127
7137
|
renderLanes
|
|
7128
7138
|
)))
|
|
7129
7139
|
: null !== workInProgress.memoizedState
|
|
7130
|
-
? (reuseSuspenseHandlerOnStack(
|
|
7140
|
+
? (reuseSuspenseHandlerOnStack(),
|
|
7131
7141
|
(workInProgress.child = current.child),
|
|
7132
7142
|
(workInProgress.flags |= 128),
|
|
7133
7143
|
(workInProgress = null))
|
|
7134
|
-
: (reuseSuspenseHandlerOnStack(
|
|
7144
|
+
: (reuseSuspenseHandlerOnStack(),
|
|
7135
7145
|
(nextPrimaryChildren = nextProps.fallback),
|
|
7136
7146
|
(showFallback = workInProgress.mode),
|
|
7137
7147
|
(nextProps = mountWorkInProgressOffscreenFiber(
|
|
@@ -7232,7 +7242,7 @@ function updateSuspenseComponent(current, workInProgress, renderLanes) {
|
|
|
7232
7242
|
}
|
|
7233
7243
|
if (showFallback)
|
|
7234
7244
|
return (
|
|
7235
|
-
reuseSuspenseHandlerOnStack(
|
|
7245
|
+
reuseSuspenseHandlerOnStack(),
|
|
7236
7246
|
(nextPrimaryChildren = nextProps.fallback),
|
|
7237
7247
|
(showFallback = workInProgress.mode),
|
|
7238
7248
|
(prevState = current.child),
|
|
@@ -7386,13 +7396,15 @@ function updateSuspenseListComponent(current, workInProgress, renderLanes) {
|
|
|
7386
7396
|
revealOrder = nextProps.revealOrder,
|
|
7387
7397
|
tailMode = nextProps.tail;
|
|
7388
7398
|
nextProps = nextProps.children;
|
|
7389
|
-
var suspenseContext = suspenseStackCursor.current
|
|
7390
|
-
|
|
7399
|
+
var suspenseContext = suspenseStackCursor.current;
|
|
7400
|
+
if (workInProgress.flags & 128)
|
|
7401
|
+
return pushSuspenseListContext(workInProgress, suspenseContext), null;
|
|
7402
|
+
var shouldForceFallback = 0 !== (suspenseContext & 2);
|
|
7391
7403
|
shouldForceFallback
|
|
7392
7404
|
? ((suspenseContext = (suspenseContext & 1) | 2),
|
|
7393
7405
|
(workInProgress.flags |= 128))
|
|
7394
7406
|
: (suspenseContext &= 1);
|
|
7395
|
-
|
|
7407
|
+
pushSuspenseListContext(workInProgress, suspenseContext);
|
|
7396
7408
|
"backwards" === revealOrder && null !== current
|
|
7397
7409
|
? (reverseChildren(current),
|
|
7398
7410
|
reconcileChildren(current, workInProgress, nextProps, renderLanes),
|
|
@@ -7581,6 +7593,12 @@ function attemptEarlyBailoutIfNoScheduledUpdate(
|
|
|
7581
7593
|
pushPrimaryTreeSuspenseHandler(workInProgress);
|
|
7582
7594
|
break;
|
|
7583
7595
|
case 19:
|
|
7596
|
+
if (workInProgress.flags & 128)
|
|
7597
|
+
return updateSuspenseListComponent(
|
|
7598
|
+
current,
|
|
7599
|
+
workInProgress,
|
|
7600
|
+
renderLanes
|
|
7601
|
+
);
|
|
7584
7602
|
var didSuspendBefore = 0 !== (current.flags & 128);
|
|
7585
7603
|
state$106 = 0 !== (renderLanes & workInProgress.childLanes);
|
|
7586
7604
|
state$106 ||
|
|
@@ -7605,7 +7623,7 @@ function attemptEarlyBailoutIfNoScheduledUpdate(
|
|
|
7605
7623
|
((didSuspendBefore.rendering = null),
|
|
7606
7624
|
(didSuspendBefore.tail = null),
|
|
7607
7625
|
(didSuspendBefore.lastEffect = null));
|
|
7608
|
-
|
|
7626
|
+
pushSuspenseListContext(workInProgress, suspenseStackCursor.current);
|
|
7609
7627
|
if (state$106) break;
|
|
7610
7628
|
else return null;
|
|
7611
7629
|
case 22:
|
|
@@ -8575,7 +8593,7 @@ function completeWork(current, workInProgress, renderLanes) {
|
|
|
8575
8593
|
popProvider(workInProgress.type), bubbleProperties(workInProgress), null
|
|
8576
8594
|
);
|
|
8577
8595
|
case 19:
|
|
8578
|
-
|
|
8596
|
+
popSuspenseListContext(workInProgress);
|
|
8579
8597
|
newProps = workInProgress.memoizedState;
|
|
8580
8598
|
if (null === newProps) return bubbleProperties(workInProgress), null;
|
|
8581
8599
|
type = 0 !== (workInProgress.flags & 128);
|
|
@@ -8600,8 +8618,8 @@ function completeWork(current, workInProgress, renderLanes) {
|
|
|
8600
8618
|
for (renderLanes = workInProgress.child; null !== renderLanes; )
|
|
8601
8619
|
resetWorkInProgress(renderLanes, current),
|
|
8602
8620
|
(renderLanes = renderLanes.sibling);
|
|
8603
|
-
|
|
8604
|
-
|
|
8621
|
+
pushSuspenseListContext(
|
|
8622
|
+
workInProgress,
|
|
8605
8623
|
(suspenseStackCursor.current & 1) | 2
|
|
8606
8624
|
);
|
|
8607
8625
|
isHydrating &&
|
|
@@ -8653,21 +8671,36 @@ function completeWork(current, workInProgress, renderLanes) {
|
|
|
8653
8671
|
: (workInProgress.child = nextResource),
|
|
8654
8672
|
(newProps.last = nextResource));
|
|
8655
8673
|
}
|
|
8656
|
-
if (null !== newProps.tail)
|
|
8657
|
-
|
|
8658
|
-
|
|
8659
|
-
(
|
|
8660
|
-
|
|
8661
|
-
|
|
8662
|
-
|
|
8663
|
-
|
|
8664
|
-
|
|
8665
|
-
|
|
8666
|
-
|
|
8667
|
-
|
|
8668
|
-
|
|
8669
|
-
|
|
8670
|
-
);
|
|
8674
|
+
if (null !== newProps.tail) {
|
|
8675
|
+
current = newProps.tail;
|
|
8676
|
+
a: {
|
|
8677
|
+
for (renderLanes = current; null !== renderLanes; ) {
|
|
8678
|
+
if (null !== renderLanes.alternate) {
|
|
8679
|
+
renderLanes = !1;
|
|
8680
|
+
break a;
|
|
8681
|
+
}
|
|
8682
|
+
renderLanes = renderLanes.sibling;
|
|
8683
|
+
}
|
|
8684
|
+
renderLanes = !0;
|
|
8685
|
+
}
|
|
8686
|
+
newProps.rendering = current;
|
|
8687
|
+
newProps.tail = current.sibling;
|
|
8688
|
+
newProps.renderingStartTime = now();
|
|
8689
|
+
current.sibling = null;
|
|
8690
|
+
nextResource = suspenseStackCursor.current;
|
|
8691
|
+
nextResource = type ? (nextResource & 1) | 2 : nextResource & 1;
|
|
8692
|
+
"visible" === newProps.tailMode ||
|
|
8693
|
+
"collapsed" === newProps.tailMode ||
|
|
8694
|
+
!renderLanes ||
|
|
8695
|
+
isHydrating
|
|
8696
|
+
? pushSuspenseListContext(workInProgress, nextResource)
|
|
8697
|
+
: ((renderLanes = nextResource),
|
|
8698
|
+
push(suspenseHandlerStackCursor, workInProgress),
|
|
8699
|
+
push(suspenseStackCursor, renderLanes),
|
|
8700
|
+
null === shellBoundary && (shellBoundary = workInProgress));
|
|
8701
|
+
isHydrating && pushTreeFork(workInProgress, newProps.treeForkCount);
|
|
8702
|
+
return current;
|
|
8703
|
+
}
|
|
8671
8704
|
bubbleProperties(workInProgress);
|
|
8672
8705
|
return null;
|
|
8673
8706
|
case 22:
|
|
@@ -8770,7 +8803,18 @@ function unwindWork(current, workInProgress) {
|
|
|
8770
8803
|
? ((workInProgress.flags = (current & -65537) | 128), workInProgress)
|
|
8771
8804
|
: null;
|
|
8772
8805
|
case 19:
|
|
8773
|
-
return
|
|
8806
|
+
return (
|
|
8807
|
+
popSuspenseListContext(workInProgress),
|
|
8808
|
+
(current = workInProgress.flags),
|
|
8809
|
+
current & 65536
|
|
8810
|
+
? ((workInProgress.flags = (current & -65537) | 128),
|
|
8811
|
+
(current = workInProgress.memoizedState),
|
|
8812
|
+
null !== current &&
|
|
8813
|
+
((current.rendering = null), (current.tail = null)),
|
|
8814
|
+
(workInProgress.flags |= 4),
|
|
8815
|
+
workInProgress)
|
|
8816
|
+
: null
|
|
8817
|
+
);
|
|
8774
8818
|
case 4:
|
|
8775
8819
|
return popHostContainer(), null;
|
|
8776
8820
|
case 10:
|
|
@@ -8817,7 +8861,7 @@ function unwindInterruptedWork(current, interruptedWork) {
|
|
|
8817
8861
|
popSuspenseHandler(interruptedWork);
|
|
8818
8862
|
break;
|
|
8819
8863
|
case 19:
|
|
8820
|
-
|
|
8864
|
+
popSuspenseListContext(interruptedWork);
|
|
8821
8865
|
break;
|
|
8822
8866
|
case 10:
|
|
8823
8867
|
popProvider(interruptedWork.type);
|
|
@@ -8969,8 +9013,8 @@ function safelyDetachRef(current, nearestMountedAncestor) {
|
|
|
8969
9013
|
else if ("function" === typeof ref)
|
|
8970
9014
|
try {
|
|
8971
9015
|
ref(null);
|
|
8972
|
-
} catch (error$
|
|
8973
|
-
captureCommitPhaseError(current, nearestMountedAncestor, error$
|
|
9016
|
+
} catch (error$146) {
|
|
9017
|
+
captureCommitPhaseError(current, nearestMountedAncestor, error$146);
|
|
8974
9018
|
}
|
|
8975
9019
|
else ref.current = null;
|
|
8976
9020
|
}
|
|
@@ -9019,12 +9063,12 @@ function commitNewChildToFragmentInstances(fiber, parentFragmentInstances) {
|
|
|
9019
9063
|
function commitFragmentInstanceDeletionEffects(fiber) {
|
|
9020
9064
|
for (var parent = fiber.return; null !== parent; ) {
|
|
9021
9065
|
if (isFragmentInstanceParent(parent)) {
|
|
9022
|
-
var
|
|
9066
|
+
var childInstance = fiber.stateNode,
|
|
9023
9067
|
eventListeners = parent.stateNode._eventListeners;
|
|
9024
9068
|
if (null !== eventListeners)
|
|
9025
9069
|
for (var i = 0; i < eventListeners.length; i++) {
|
|
9026
9070
|
var _eventListeners$i4 = eventListeners[i];
|
|
9027
|
-
|
|
9071
|
+
childInstance.removeEventListener(
|
|
9028
9072
|
_eventListeners$i4.type,
|
|
9029
9073
|
_eventListeners$i4.listener,
|
|
9030
9074
|
_eventListeners$i4.optionsOrUseCapture
|
|
@@ -9809,11 +9853,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
|
|
9809
9853
|
current,
|
|
9810
9854
|
finishedRoot.__reactInternalSnapshotBeforeUpdate
|
|
9811
9855
|
);
|
|
9812
|
-
} catch (error$
|
|
9856
|
+
} catch (error$144) {
|
|
9813
9857
|
captureCommitPhaseError(
|
|
9814
9858
|
finishedWork,
|
|
9815
9859
|
finishedWork.return,
|
|
9816
|
-
error$
|
|
9860
|
+
error$144
|
|
9817
9861
|
);
|
|
9818
9862
|
}
|
|
9819
9863
|
}
|
|
@@ -10528,14 +10572,14 @@ function commitMutationEffectsOnFiber(finishedWork, root, lanes) {
|
|
|
10528
10572
|
var wasHidden = null !== current && null !== current.memoizedState,
|
|
10529
10573
|
prevOffscreenSubtreeIsHidden = offscreenSubtreeIsHidden,
|
|
10530
10574
|
prevOffscreenSubtreeWasHidden = offscreenSubtreeWasHidden,
|
|
10531
|
-
prevOffscreenDirectParentIsHidden$
|
|
10575
|
+
prevOffscreenDirectParentIsHidden$161 = offscreenDirectParentIsHidden;
|
|
10532
10576
|
offscreenSubtreeIsHidden = prevOffscreenSubtreeIsHidden || hoistableRoot;
|
|
10533
10577
|
offscreenDirectParentIsHidden =
|
|
10534
|
-
prevOffscreenDirectParentIsHidden$
|
|
10578
|
+
prevOffscreenDirectParentIsHidden$161 || hoistableRoot;
|
|
10535
10579
|
offscreenSubtreeWasHidden = prevOffscreenSubtreeWasHidden || wasHidden;
|
|
10536
10580
|
recursivelyTraverseMutationEffects(root, finishedWork, lanes);
|
|
10537
10581
|
offscreenSubtreeWasHidden = prevOffscreenSubtreeWasHidden;
|
|
10538
|
-
offscreenDirectParentIsHidden = prevOffscreenDirectParentIsHidden$
|
|
10582
|
+
offscreenDirectParentIsHidden = prevOffscreenDirectParentIsHidden$161;
|
|
10539
10583
|
offscreenSubtreeIsHidden = prevOffscreenSubtreeIsHidden;
|
|
10540
10584
|
commitReconciliationEffects(finishedWork);
|
|
10541
10585
|
if (
|
|
@@ -10708,25 +10752,25 @@ function commitReconciliationEffects(finishedWork) {
|
|
|
10708
10752
|
);
|
|
10709
10753
|
break;
|
|
10710
10754
|
case 5:
|
|
10711
|
-
var parent$
|
|
10755
|
+
var parent$147 = hostParentFiber.stateNode;
|
|
10712
10756
|
hostParentFiber.flags & 32 &&
|
|
10713
|
-
(setTextContent(parent$
|
|
10714
|
-
var before$
|
|
10757
|
+
(setTextContent(parent$147, ""), (hostParentFiber.flags &= -33));
|
|
10758
|
+
var before$148 = getHostSibling(finishedWork);
|
|
10715
10759
|
insertOrAppendPlacementNode(
|
|
10716
10760
|
finishedWork,
|
|
10717
|
-
before$
|
|
10718
|
-
parent$
|
|
10761
|
+
before$148,
|
|
10762
|
+
parent$147,
|
|
10719
10763
|
parentFragmentInstances
|
|
10720
10764
|
);
|
|
10721
10765
|
break;
|
|
10722
10766
|
case 3:
|
|
10723
10767
|
case 4:
|
|
10724
|
-
var parent$
|
|
10725
|
-
before$
|
|
10768
|
+
var parent$149 = hostParentFiber.stateNode.containerInfo,
|
|
10769
|
+
before$150 = getHostSibling(finishedWork);
|
|
10726
10770
|
insertOrAppendPlacementNodeIntoContainer(
|
|
10727
10771
|
finishedWork,
|
|
10728
|
-
before$
|
|
10729
|
-
parent$
|
|
10772
|
+
before$150,
|
|
10773
|
+
parent$149,
|
|
10730
10774
|
parentFragmentInstances
|
|
10731
10775
|
);
|
|
10732
10776
|
break;
|
|
@@ -11857,7 +11901,8 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
|
|
11857
11901
|
case 1:
|
|
11858
11902
|
throw Error(formatProdErrorMessage(345));
|
|
11859
11903
|
case 4:
|
|
11860
|
-
if ((lanes & 4194048) !== lanes)
|
|
11904
|
+
if ((lanes & 4194048) !== lanes && (lanes & 62914560) !== lanes)
|
|
11905
|
+
break;
|
|
11861
11906
|
case 6:
|
|
11862
11907
|
markRootSuspended(
|
|
11863
11908
|
shouldTimeSlice,
|
|
@@ -12270,8 +12315,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) {
|
|
|
12270
12315
|
workLoopSync();
|
|
12271
12316
|
exitStatus = workInProgressRootExitStatus;
|
|
12272
12317
|
break;
|
|
12273
|
-
} catch (thrownValue$
|
|
12274
|
-
handleThrow(root, thrownValue$
|
|
12318
|
+
} catch (thrownValue$176) {
|
|
12319
|
+
handleThrow(root, thrownValue$176);
|
|
12275
12320
|
}
|
|
12276
12321
|
while (1);
|
|
12277
12322
|
lanes && root.shellSuspendCounter++;
|
|
@@ -12390,8 +12435,8 @@ function renderRootConcurrent(root, lanes) {
|
|
|
12390
12435
|
}
|
|
12391
12436
|
workLoopConcurrentByScheduler();
|
|
12392
12437
|
break;
|
|
12393
|
-
} catch (thrownValue$
|
|
12394
|
-
handleThrow(root, thrownValue$
|
|
12438
|
+
} catch (thrownValue$178) {
|
|
12439
|
+
handleThrow(root, thrownValue$178);
|
|
12395
12440
|
}
|
|
12396
12441
|
while (1);
|
|
12397
12442
|
lastContextDependency = currentlyRenderingFiber$1 = null;
|
|
@@ -13078,14 +13123,14 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {
|
|
|
13078
13123
|
isFlushingWork = !0;
|
|
13079
13124
|
do {
|
|
13080
13125
|
var didPerformSomeWork = !1;
|
|
13081
|
-
for (var root$
|
|
13126
|
+
for (var root$182 = firstScheduledRoot; null !== root$182; ) {
|
|
13082
13127
|
if (!onlyLegacy)
|
|
13083
13128
|
if (0 !== syncTransitionLanes) {
|
|
13084
|
-
var pendingLanes = root$
|
|
13129
|
+
var pendingLanes = root$182.pendingLanes;
|
|
13085
13130
|
if (0 === pendingLanes) var JSCompiler_inline_result = 0;
|
|
13086
13131
|
else {
|
|
13087
|
-
var suspendedLanes = root$
|
|
13088
|
-
pingedLanes = root$
|
|
13132
|
+
var suspendedLanes = root$182.suspendedLanes,
|
|
13133
|
+
pingedLanes = root$182.pingedLanes;
|
|
13089
13134
|
JSCompiler_inline_result =
|
|
13090
13135
|
(1 << (31 - clz32(42 | syncTransitionLanes) + 1)) - 1;
|
|
13091
13136
|
JSCompiler_inline_result &=
|
|
@@ -13099,20 +13144,20 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {
|
|
|
13099
13144
|
}
|
|
13100
13145
|
0 !== JSCompiler_inline_result &&
|
|
13101
13146
|
((didPerformSomeWork = !0),
|
|
13102
|
-
performSyncWorkOnRoot(root$
|
|
13147
|
+
performSyncWorkOnRoot(root$182, JSCompiler_inline_result));
|
|
13103
13148
|
} else
|
|
13104
13149
|
(JSCompiler_inline_result = workInProgressRootRenderLanes),
|
|
13105
13150
|
(JSCompiler_inline_result = getNextLanes(
|
|
13106
|
-
root$
|
|
13107
|
-
root$
|
|
13108
|
-
null !== root$
|
|
13109
|
-
-1 !== root$
|
|
13151
|
+
root$182,
|
|
13152
|
+
root$182 === workInProgressRoot ? JSCompiler_inline_result : 0,
|
|
13153
|
+
null !== root$182.cancelPendingCommit ||
|
|
13154
|
+
-1 !== root$182.timeoutHandle
|
|
13110
13155
|
)),
|
|
13111
13156
|
0 === (JSCompiler_inline_result & 3) ||
|
|
13112
|
-
checkIfRootIsPrerendering(root$
|
|
13157
|
+
checkIfRootIsPrerendering(root$182, JSCompiler_inline_result) ||
|
|
13113
13158
|
((didPerformSomeWork = !0),
|
|
13114
|
-
performSyncWorkOnRoot(root$
|
|
13115
|
-
root$
|
|
13159
|
+
performSyncWorkOnRoot(root$182, JSCompiler_inline_result));
|
|
13160
|
+
root$182 = root$182.next;
|
|
13116
13161
|
}
|
|
13117
13162
|
} while (didPerformSomeWork);
|
|
13118
13163
|
isFlushingWork = !1;
|
|
@@ -13360,20 +13405,20 @@ function extractEvents$1(
|
|
|
13360
13405
|
}
|
|
13361
13406
|
}
|
|
13362
13407
|
for (
|
|
13363
|
-
var i$jscomp$
|
|
13364
|
-
i$jscomp$
|
|
13365
|
-
i$jscomp$
|
|
13408
|
+
var i$jscomp$inline_1676 = 0;
|
|
13409
|
+
i$jscomp$inline_1676 < simpleEventPluginEvents.length;
|
|
13410
|
+
i$jscomp$inline_1676++
|
|
13366
13411
|
) {
|
|
13367
|
-
var eventName$jscomp$
|
|
13368
|
-
simpleEventPluginEvents[i$jscomp$
|
|
13369
|
-
domEventName$jscomp$
|
|
13370
|
-
eventName$jscomp$
|
|
13371
|
-
capitalizedEvent$jscomp$
|
|
13372
|
-
eventName$jscomp$
|
|
13373
|
-
eventName$jscomp$
|
|
13412
|
+
var eventName$jscomp$inline_1677 =
|
|
13413
|
+
simpleEventPluginEvents[i$jscomp$inline_1676],
|
|
13414
|
+
domEventName$jscomp$inline_1678 =
|
|
13415
|
+
eventName$jscomp$inline_1677.toLowerCase(),
|
|
13416
|
+
capitalizedEvent$jscomp$inline_1679 =
|
|
13417
|
+
eventName$jscomp$inline_1677[0].toUpperCase() +
|
|
13418
|
+
eventName$jscomp$inline_1677.slice(1);
|
|
13374
13419
|
registerSimpleEvent(
|
|
13375
|
-
domEventName$jscomp$
|
|
13376
|
-
"on" + capitalizedEvent$jscomp$
|
|
13420
|
+
domEventName$jscomp$inline_1678,
|
|
13421
|
+
"on" + capitalizedEvent$jscomp$inline_1679
|
|
13377
13422
|
);
|
|
13378
13423
|
}
|
|
13379
13424
|
registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
|
|
@@ -14527,34 +14572,34 @@ function setInitialProperties(domElement, tag, props) {
|
|
|
14527
14572
|
defaultChecked = null;
|
|
14528
14573
|
for (hasSrc in props)
|
|
14529
14574
|
if (props.hasOwnProperty(hasSrc)) {
|
|
14530
|
-
var propValue$
|
|
14531
|
-
if (null != propValue$
|
|
14575
|
+
var propValue$196 = props[hasSrc];
|
|
14576
|
+
if (null != propValue$196)
|
|
14532
14577
|
switch (hasSrc) {
|
|
14533
14578
|
case "name":
|
|
14534
|
-
hasSrcSet = propValue$
|
|
14579
|
+
hasSrcSet = propValue$196;
|
|
14535
14580
|
break;
|
|
14536
14581
|
case "type":
|
|
14537
|
-
propValue = propValue$
|
|
14582
|
+
propValue = propValue$196;
|
|
14538
14583
|
break;
|
|
14539
14584
|
case "checked":
|
|
14540
|
-
checked = propValue$
|
|
14585
|
+
checked = propValue$196;
|
|
14541
14586
|
break;
|
|
14542
14587
|
case "defaultChecked":
|
|
14543
|
-
defaultChecked = propValue$
|
|
14588
|
+
defaultChecked = propValue$196;
|
|
14544
14589
|
break;
|
|
14545
14590
|
case "value":
|
|
14546
|
-
propKey = propValue$
|
|
14591
|
+
propKey = propValue$196;
|
|
14547
14592
|
break;
|
|
14548
14593
|
case "defaultValue":
|
|
14549
|
-
defaultValue = propValue$
|
|
14594
|
+
defaultValue = propValue$196;
|
|
14550
14595
|
break;
|
|
14551
14596
|
case "children":
|
|
14552
14597
|
case "dangerouslySetInnerHTML":
|
|
14553
|
-
if (null != propValue$
|
|
14598
|
+
if (null != propValue$196)
|
|
14554
14599
|
throw Error(formatProdErrorMessage(137, tag));
|
|
14555
14600
|
break;
|
|
14556
14601
|
default:
|
|
14557
|
-
setProp(domElement, tag, hasSrc, propValue$
|
|
14602
|
+
setProp(domElement, tag, hasSrc, propValue$196, props, null);
|
|
14558
14603
|
}
|
|
14559
14604
|
}
|
|
14560
14605
|
initInput(
|
|
@@ -14691,14 +14736,14 @@ function setInitialProperties(domElement, tag, props) {
|
|
|
14691
14736
|
return;
|
|
14692
14737
|
default:
|
|
14693
14738
|
if (isCustomElement(tag)) {
|
|
14694
|
-
for (propValue$
|
|
14695
|
-
props.hasOwnProperty(propValue$
|
|
14696
|
-
((hasSrc = props[propValue$
|
|
14739
|
+
for (propValue$196 in props)
|
|
14740
|
+
props.hasOwnProperty(propValue$196) &&
|
|
14741
|
+
((hasSrc = props[propValue$196]),
|
|
14697
14742
|
void 0 !== hasSrc &&
|
|
14698
14743
|
setPropOnCustomElement(
|
|
14699
14744
|
domElement,
|
|
14700
14745
|
tag,
|
|
14701
|
-
propValue$
|
|
14746
|
+
propValue$196,
|
|
14702
14747
|
hasSrc,
|
|
14703
14748
|
props,
|
|
14704
14749
|
void 0
|
|
@@ -14746,14 +14791,14 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
|
14746
14791
|
setProp(domElement, tag, propKey, null, nextProps, lastProp);
|
|
14747
14792
|
}
|
|
14748
14793
|
}
|
|
14749
|
-
for (var propKey$
|
|
14750
|
-
var propKey = nextProps[propKey$
|
|
14751
|
-
lastProp = lastProps[propKey$
|
|
14794
|
+
for (var propKey$213 in nextProps) {
|
|
14795
|
+
var propKey = nextProps[propKey$213];
|
|
14796
|
+
lastProp = lastProps[propKey$213];
|
|
14752
14797
|
if (
|
|
14753
|
-
nextProps.hasOwnProperty(propKey$
|
|
14798
|
+
nextProps.hasOwnProperty(propKey$213) &&
|
|
14754
14799
|
(null != propKey || null != lastProp)
|
|
14755
14800
|
)
|
|
14756
|
-
switch (propKey$
|
|
14801
|
+
switch (propKey$213) {
|
|
14757
14802
|
case "type":
|
|
14758
14803
|
propKey !== lastProp && (viewTransitionMutationContext = !0);
|
|
14759
14804
|
type = propKey;
|
|
@@ -14788,7 +14833,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
|
14788
14833
|
setProp(
|
|
14789
14834
|
domElement,
|
|
14790
14835
|
tag,
|
|
14791
|
-
propKey$
|
|
14836
|
+
propKey$213,
|
|
14792
14837
|
propKey,
|
|
14793
14838
|
nextProps,
|
|
14794
14839
|
lastProp
|
|
@@ -14807,7 +14852,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
|
14807
14852
|
);
|
|
14808
14853
|
return;
|
|
14809
14854
|
case "select":
|
|
14810
|
-
propKey = value = defaultValue = propKey$
|
|
14855
|
+
propKey = value = defaultValue = propKey$213 = null;
|
|
14811
14856
|
for (type in lastProps)
|
|
14812
14857
|
if (
|
|
14813
14858
|
((lastDefaultValue = lastProps[type]),
|
|
@@ -14839,7 +14884,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
|
14839
14884
|
switch (name) {
|
|
14840
14885
|
case "value":
|
|
14841
14886
|
type !== lastDefaultValue && (viewTransitionMutationContext = !0);
|
|
14842
|
-
propKey$
|
|
14887
|
+
propKey$213 = type;
|
|
14843
14888
|
break;
|
|
14844
14889
|
case "defaultValue":
|
|
14845
14890
|
type !== lastDefaultValue && (viewTransitionMutationContext = !0);
|
|
@@ -14862,15 +14907,15 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
|
14862
14907
|
tag = defaultValue;
|
|
14863
14908
|
lastProps = value;
|
|
14864
14909
|
nextProps = propKey;
|
|
14865
|
-
null != propKey$
|
|
14866
|
-
? updateOptions(domElement, !!lastProps, propKey$
|
|
14910
|
+
null != propKey$213
|
|
14911
|
+
? updateOptions(domElement, !!lastProps, propKey$213, !1)
|
|
14867
14912
|
: !!nextProps !== !!lastProps &&
|
|
14868
14913
|
(null != tag
|
|
14869
14914
|
? updateOptions(domElement, !!lastProps, tag, !0)
|
|
14870
14915
|
: updateOptions(domElement, !!lastProps, lastProps ? [] : "", !1));
|
|
14871
14916
|
return;
|
|
14872
14917
|
case "textarea":
|
|
14873
|
-
propKey = propKey$
|
|
14918
|
+
propKey = propKey$213 = null;
|
|
14874
14919
|
for (defaultValue in lastProps)
|
|
14875
14920
|
if (
|
|
14876
14921
|
((name = lastProps[defaultValue]),
|
|
@@ -14895,7 +14940,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
|
14895
14940
|
switch (value) {
|
|
14896
14941
|
case "value":
|
|
14897
14942
|
name !== type && (viewTransitionMutationContext = !0);
|
|
14898
|
-
propKey$
|
|
14943
|
+
propKey$213 = name;
|
|
14899
14944
|
break;
|
|
14900
14945
|
case "defaultValue":
|
|
14901
14946
|
name !== type && (viewTransitionMutationContext = !0);
|
|
@@ -14910,17 +14955,17 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
|
14910
14955
|
name !== type &&
|
|
14911
14956
|
setProp(domElement, tag, value, name, nextProps, type);
|
|
14912
14957
|
}
|
|
14913
|
-
updateTextarea(domElement, propKey$
|
|
14958
|
+
updateTextarea(domElement, propKey$213, propKey);
|
|
14914
14959
|
return;
|
|
14915
14960
|
case "option":
|
|
14916
|
-
for (var propKey$
|
|
14961
|
+
for (var propKey$229 in lastProps)
|
|
14917
14962
|
if (
|
|
14918
|
-
((propKey$
|
|
14919
|
-
lastProps.hasOwnProperty(propKey$
|
|
14920
|
-
null != propKey$
|
|
14921
|
-
!nextProps.hasOwnProperty(propKey$
|
|
14963
|
+
((propKey$213 = lastProps[propKey$229]),
|
|
14964
|
+
lastProps.hasOwnProperty(propKey$229) &&
|
|
14965
|
+
null != propKey$213 &&
|
|
14966
|
+
!nextProps.hasOwnProperty(propKey$229))
|
|
14922
14967
|
)
|
|
14923
|
-
switch (propKey$
|
|
14968
|
+
switch (propKey$229) {
|
|
14924
14969
|
case "selected":
|
|
14925
14970
|
domElement.selected = !1;
|
|
14926
14971
|
break;
|
|
@@ -14928,34 +14973,34 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
|
14928
14973
|
setProp(
|
|
14929
14974
|
domElement,
|
|
14930
14975
|
tag,
|
|
14931
|
-
propKey$
|
|
14976
|
+
propKey$229,
|
|
14932
14977
|
null,
|
|
14933
14978
|
nextProps,
|
|
14934
|
-
propKey$
|
|
14979
|
+
propKey$213
|
|
14935
14980
|
);
|
|
14936
14981
|
}
|
|
14937
14982
|
for (lastDefaultValue in nextProps)
|
|
14938
14983
|
if (
|
|
14939
|
-
((propKey$
|
|
14984
|
+
((propKey$213 = nextProps[lastDefaultValue]),
|
|
14940
14985
|
(propKey = lastProps[lastDefaultValue]),
|
|
14941
14986
|
nextProps.hasOwnProperty(lastDefaultValue) &&
|
|
14942
|
-
propKey$
|
|
14943
|
-
(null != propKey$
|
|
14987
|
+
propKey$213 !== propKey &&
|
|
14988
|
+
(null != propKey$213 || null != propKey))
|
|
14944
14989
|
)
|
|
14945
14990
|
switch (lastDefaultValue) {
|
|
14946
14991
|
case "selected":
|
|
14947
|
-
propKey$
|
|
14992
|
+
propKey$213 !== propKey && (viewTransitionMutationContext = !0);
|
|
14948
14993
|
domElement.selected =
|
|
14949
|
-
propKey$
|
|
14950
|
-
"function" !== typeof propKey$
|
|
14951
|
-
"symbol" !== typeof propKey$
|
|
14994
|
+
propKey$213 &&
|
|
14995
|
+
"function" !== typeof propKey$213 &&
|
|
14996
|
+
"symbol" !== typeof propKey$213;
|
|
14952
14997
|
break;
|
|
14953
14998
|
default:
|
|
14954
14999
|
setProp(
|
|
14955
15000
|
domElement,
|
|
14956
15001
|
tag,
|
|
14957
15002
|
lastDefaultValue,
|
|
14958
|
-
propKey$
|
|
15003
|
+
propKey$213,
|
|
14959
15004
|
nextProps,
|
|
14960
15005
|
propKey
|
|
14961
15006
|
);
|
|
@@ -14976,24 +15021,24 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
|
14976
15021
|
case "track":
|
|
14977
15022
|
case "wbr":
|
|
14978
15023
|
case "menuitem":
|
|
14979
|
-
for (var propKey$
|
|
14980
|
-
(propKey$
|
|
14981
|
-
lastProps.hasOwnProperty(propKey$
|
|
14982
|
-
null != propKey$
|
|
14983
|
-
!nextProps.hasOwnProperty(propKey$
|
|
14984
|
-
setProp(domElement, tag, propKey$
|
|
15024
|
+
for (var propKey$234 in lastProps)
|
|
15025
|
+
(propKey$213 = lastProps[propKey$234]),
|
|
15026
|
+
lastProps.hasOwnProperty(propKey$234) &&
|
|
15027
|
+
null != propKey$213 &&
|
|
15028
|
+
!nextProps.hasOwnProperty(propKey$234) &&
|
|
15029
|
+
setProp(domElement, tag, propKey$234, null, nextProps, propKey$213);
|
|
14985
15030
|
for (checked in nextProps)
|
|
14986
15031
|
if (
|
|
14987
|
-
((propKey$
|
|
15032
|
+
((propKey$213 = nextProps[checked]),
|
|
14988
15033
|
(propKey = lastProps[checked]),
|
|
14989
15034
|
nextProps.hasOwnProperty(checked) &&
|
|
14990
|
-
propKey$
|
|
14991
|
-
(null != propKey$
|
|
15035
|
+
propKey$213 !== propKey &&
|
|
15036
|
+
(null != propKey$213 || null != propKey))
|
|
14992
15037
|
)
|
|
14993
15038
|
switch (checked) {
|
|
14994
15039
|
case "children":
|
|
14995
15040
|
case "dangerouslySetInnerHTML":
|
|
14996
|
-
if (null != propKey$
|
|
15041
|
+
if (null != propKey$213)
|
|
14997
15042
|
throw Error(formatProdErrorMessage(137, tag));
|
|
14998
15043
|
break;
|
|
14999
15044
|
default:
|
|
@@ -15001,7 +15046,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
|
15001
15046
|
domElement,
|
|
15002
15047
|
tag,
|
|
15003
15048
|
checked,
|
|
15004
|
-
propKey$
|
|
15049
|
+
propKey$213,
|
|
15005
15050
|
nextProps,
|
|
15006
15051
|
propKey
|
|
15007
15052
|
);
|
|
@@ -15009,49 +15054,49 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
|
15009
15054
|
return;
|
|
15010
15055
|
default:
|
|
15011
15056
|
if (isCustomElement(tag)) {
|
|
15012
|
-
for (var propKey$
|
|
15013
|
-
(propKey$
|
|
15014
|
-
lastProps.hasOwnProperty(propKey$
|
|
15015
|
-
void 0 !== propKey$
|
|
15016
|
-
!nextProps.hasOwnProperty(propKey$
|
|
15057
|
+
for (var propKey$239 in lastProps)
|
|
15058
|
+
(propKey$213 = lastProps[propKey$239]),
|
|
15059
|
+
lastProps.hasOwnProperty(propKey$239) &&
|
|
15060
|
+
void 0 !== propKey$213 &&
|
|
15061
|
+
!nextProps.hasOwnProperty(propKey$239) &&
|
|
15017
15062
|
setPropOnCustomElement(
|
|
15018
15063
|
domElement,
|
|
15019
15064
|
tag,
|
|
15020
|
-
propKey$
|
|
15065
|
+
propKey$239,
|
|
15021
15066
|
void 0,
|
|
15022
15067
|
nextProps,
|
|
15023
|
-
propKey$
|
|
15068
|
+
propKey$213
|
|
15024
15069
|
);
|
|
15025
15070
|
for (defaultChecked in nextProps)
|
|
15026
|
-
(propKey$
|
|
15071
|
+
(propKey$213 = nextProps[defaultChecked]),
|
|
15027
15072
|
(propKey = lastProps[defaultChecked]),
|
|
15028
15073
|
!nextProps.hasOwnProperty(defaultChecked) ||
|
|
15029
|
-
propKey$
|
|
15030
|
-
(void 0 === propKey$
|
|
15074
|
+
propKey$213 === propKey ||
|
|
15075
|
+
(void 0 === propKey$213 && void 0 === propKey) ||
|
|
15031
15076
|
setPropOnCustomElement(
|
|
15032
15077
|
domElement,
|
|
15033
15078
|
tag,
|
|
15034
15079
|
defaultChecked,
|
|
15035
|
-
propKey$
|
|
15080
|
+
propKey$213,
|
|
15036
15081
|
nextProps,
|
|
15037
15082
|
propKey
|
|
15038
15083
|
);
|
|
15039
15084
|
return;
|
|
15040
15085
|
}
|
|
15041
15086
|
}
|
|
15042
|
-
for (var propKey$
|
|
15043
|
-
(propKey$
|
|
15044
|
-
lastProps.hasOwnProperty(propKey$
|
|
15045
|
-
null != propKey$
|
|
15046
|
-
!nextProps.hasOwnProperty(propKey$
|
|
15047
|
-
setProp(domElement, tag, propKey$
|
|
15087
|
+
for (var propKey$244 in lastProps)
|
|
15088
|
+
(propKey$213 = lastProps[propKey$244]),
|
|
15089
|
+
lastProps.hasOwnProperty(propKey$244) &&
|
|
15090
|
+
null != propKey$213 &&
|
|
15091
|
+
!nextProps.hasOwnProperty(propKey$244) &&
|
|
15092
|
+
setProp(domElement, tag, propKey$244, null, nextProps, propKey$213);
|
|
15048
15093
|
for (lastProp in nextProps)
|
|
15049
|
-
(propKey$
|
|
15094
|
+
(propKey$213 = nextProps[lastProp]),
|
|
15050
15095
|
(propKey = lastProps[lastProp]),
|
|
15051
15096
|
!nextProps.hasOwnProperty(lastProp) ||
|
|
15052
|
-
propKey$
|
|
15053
|
-
(null == propKey$
|
|
15054
|
-
setProp(domElement, tag, lastProp, propKey$
|
|
15097
|
+
propKey$213 === propKey ||
|
|
15098
|
+
(null == propKey$213 && null == propKey) ||
|
|
15099
|
+
setProp(domElement, tag, lastProp, propKey$213, nextProps, propKey);
|
|
15055
15100
|
}
|
|
15056
15101
|
function isLikelyStaticResource(initiatorType) {
|
|
15057
15102
|
switch (initiatorType) {
|
|
@@ -16630,26 +16675,26 @@ function getResource(type, currentProps, pendingProps, currentResource) {
|
|
|
16630
16675
|
"string" === typeof pendingProps.precedence
|
|
16631
16676
|
) {
|
|
16632
16677
|
type = getStyleKey(pendingProps.href);
|
|
16633
|
-
var styles$
|
|
16678
|
+
var styles$260 = getResourcesFromRoot(
|
|
16634
16679
|
JSCompiler_inline_result
|
|
16635
16680
|
).hoistableStyles,
|
|
16636
|
-
resource$
|
|
16637
|
-
resource$
|
|
16681
|
+
resource$261 = styles$260.get(type);
|
|
16682
|
+
resource$261 ||
|
|
16638
16683
|
((JSCompiler_inline_result =
|
|
16639
16684
|
JSCompiler_inline_result.ownerDocument || JSCompiler_inline_result),
|
|
16640
|
-
(resource$
|
|
16685
|
+
(resource$261 = {
|
|
16641
16686
|
type: "stylesheet",
|
|
16642
16687
|
instance: null,
|
|
16643
16688
|
count: 0,
|
|
16644
16689
|
state: { loading: 0, preload: null }
|
|
16645
16690
|
}),
|
|
16646
|
-
styles$
|
|
16647
|
-
(styles$
|
|
16691
|
+
styles$260.set(type, resource$261),
|
|
16692
|
+
(styles$260 = JSCompiler_inline_result.querySelector(
|
|
16648
16693
|
getStylesheetSelectorFromKey(type)
|
|
16649
16694
|
)) &&
|
|
16650
|
-
!styles$
|
|
16651
|
-
((resource$
|
|
16652
|
-
(resource$
|
|
16695
|
+
!styles$260._p &&
|
|
16696
|
+
((resource$261.instance = styles$260),
|
|
16697
|
+
(resource$261.state.loading = 5)),
|
|
16653
16698
|
preloadPropsMap.has(type) ||
|
|
16654
16699
|
((pendingProps = {
|
|
16655
16700
|
rel: "preload",
|
|
@@ -16662,16 +16707,16 @@ function getResource(type, currentProps, pendingProps, currentResource) {
|
|
|
16662
16707
|
referrerPolicy: pendingProps.referrerPolicy
|
|
16663
16708
|
}),
|
|
16664
16709
|
preloadPropsMap.set(type, pendingProps),
|
|
16665
|
-
styles$
|
|
16710
|
+
styles$260 ||
|
|
16666
16711
|
preloadStylesheet(
|
|
16667
16712
|
JSCompiler_inline_result,
|
|
16668
16713
|
type,
|
|
16669
16714
|
pendingProps,
|
|
16670
|
-
resource$
|
|
16715
|
+
resource$261.state
|
|
16671
16716
|
)));
|
|
16672
16717
|
if (currentProps && null === currentResource)
|
|
16673
16718
|
throw Error(formatProdErrorMessage(528, ""));
|
|
16674
|
-
return resource$
|
|
16719
|
+
return resource$261;
|
|
16675
16720
|
}
|
|
16676
16721
|
if (currentProps && null !== currentResource)
|
|
16677
16722
|
throw Error(formatProdErrorMessage(529, ""));
|
|
@@ -16768,37 +16813,37 @@ function acquireResource(hoistableRoot, resource, props) {
|
|
|
16768
16813
|
return (resource.instance = instance);
|
|
16769
16814
|
case "stylesheet":
|
|
16770
16815
|
styleProps = getStyleKey(props.href);
|
|
16771
|
-
var instance$
|
|
16816
|
+
var instance$266 = hoistableRoot.querySelector(
|
|
16772
16817
|
getStylesheetSelectorFromKey(styleProps)
|
|
16773
16818
|
);
|
|
16774
|
-
if (instance$
|
|
16819
|
+
if (instance$266)
|
|
16775
16820
|
return (
|
|
16776
16821
|
(resource.state.loading |= 4),
|
|
16777
|
-
(resource.instance = instance$
|
|
16778
|
-
markNodeAsHoistable(instance$
|
|
16779
|
-
instance$
|
|
16822
|
+
(resource.instance = instance$266),
|
|
16823
|
+
markNodeAsHoistable(instance$266),
|
|
16824
|
+
instance$266
|
|
16780
16825
|
);
|
|
16781
16826
|
instance = stylesheetPropsFromRawProps(props);
|
|
16782
16827
|
(styleProps = preloadPropsMap.get(styleProps)) &&
|
|
16783
16828
|
adoptPreloadPropsForStylesheet(instance, styleProps);
|
|
16784
|
-
instance$
|
|
16829
|
+
instance$266 = (
|
|
16785
16830
|
hoistableRoot.ownerDocument || hoistableRoot
|
|
16786
16831
|
).createElement("link");
|
|
16787
|
-
markNodeAsHoistable(instance$
|
|
16788
|
-
var linkInstance = instance$
|
|
16832
|
+
markNodeAsHoistable(instance$266);
|
|
16833
|
+
var linkInstance = instance$266;
|
|
16789
16834
|
linkInstance._p = new Promise(function (resolve, reject) {
|
|
16790
16835
|
linkInstance.onload = resolve;
|
|
16791
16836
|
linkInstance.onerror = reject;
|
|
16792
16837
|
});
|
|
16793
|
-
setInitialProperties(instance$
|
|
16838
|
+
setInitialProperties(instance$266, "link", instance);
|
|
16794
16839
|
resource.state.loading |= 4;
|
|
16795
|
-
insertStylesheet(instance$
|
|
16796
|
-
return (resource.instance = instance$
|
|
16840
|
+
insertStylesheet(instance$266, props.precedence, hoistableRoot);
|
|
16841
|
+
return (resource.instance = instance$266);
|
|
16797
16842
|
case "script":
|
|
16798
|
-
instance$
|
|
16843
|
+
instance$266 = getScriptKey(props.src);
|
|
16799
16844
|
if (
|
|
16800
16845
|
(styleProps = hoistableRoot.querySelector(
|
|
16801
|
-
getScriptSelectorFromKey(instance$
|
|
16846
|
+
getScriptSelectorFromKey(instance$266)
|
|
16802
16847
|
))
|
|
16803
16848
|
)
|
|
16804
16849
|
return (
|
|
@@ -16807,7 +16852,7 @@ function acquireResource(hoistableRoot, resource, props) {
|
|
|
16807
16852
|
styleProps
|
|
16808
16853
|
);
|
|
16809
16854
|
instance = props;
|
|
16810
|
-
if ((styleProps = preloadPropsMap.get(instance$
|
|
16855
|
+
if ((styleProps = preloadPropsMap.get(instance$266)))
|
|
16811
16856
|
(instance = assign({}, props)),
|
|
16812
16857
|
adoptPreloadPropsForScript(instance, styleProps);
|
|
16813
16858
|
hoistableRoot = hoistableRoot.ownerDocument || hoistableRoot;
|
|
@@ -17942,16 +17987,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
|
|
17942
17987
|
0 === i && attemptExplicitHydrationTarget(target);
|
|
17943
17988
|
}
|
|
17944
17989
|
};
|
|
17945
|
-
var isomorphicReactPackageVersion$jscomp$
|
|
17990
|
+
var isomorphicReactPackageVersion$jscomp$inline_2032 = React.version;
|
|
17946
17991
|
if (
|
|
17947
|
-
"19.3.0-canary-
|
|
17948
|
-
isomorphicReactPackageVersion$jscomp$
|
|
17992
|
+
"19.3.0-canary-dd048c3b-20251105" !==
|
|
17993
|
+
isomorphicReactPackageVersion$jscomp$inline_2032
|
|
17949
17994
|
)
|
|
17950
17995
|
throw Error(
|
|
17951
17996
|
formatProdErrorMessage(
|
|
17952
17997
|
527,
|
|
17953
|
-
isomorphicReactPackageVersion$jscomp$
|
|
17954
|
-
"19.3.0-canary-
|
|
17998
|
+
isomorphicReactPackageVersion$jscomp$inline_2032,
|
|
17999
|
+
"19.3.0-canary-dd048c3b-20251105"
|
|
17955
18000
|
)
|
|
17956
18001
|
);
|
|
17957
18002
|
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
@@ -17971,24 +18016,24 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
|
17971
18016
|
null === componentOrElement ? null : componentOrElement.stateNode;
|
|
17972
18017
|
return componentOrElement;
|
|
17973
18018
|
};
|
|
17974
|
-
var internals$jscomp$
|
|
18019
|
+
var internals$jscomp$inline_2617 = {
|
|
17975
18020
|
bundleType: 0,
|
|
17976
|
-
version: "19.3.0-canary-
|
|
18021
|
+
version: "19.3.0-canary-dd048c3b-20251105",
|
|
17977
18022
|
rendererPackageName: "react-dom",
|
|
17978
18023
|
currentDispatcherRef: ReactSharedInternals,
|
|
17979
|
-
reconcilerVersion: "19.3.0-canary-
|
|
18024
|
+
reconcilerVersion: "19.3.0-canary-dd048c3b-20251105"
|
|
17980
18025
|
};
|
|
17981
18026
|
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
|
17982
|
-
var hook$jscomp$
|
|
18027
|
+
var hook$jscomp$inline_2618 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
|
17983
18028
|
if (
|
|
17984
|
-
!hook$jscomp$
|
|
17985
|
-
hook$jscomp$
|
|
18029
|
+
!hook$jscomp$inline_2618.isDisabled &&
|
|
18030
|
+
hook$jscomp$inline_2618.supportsFiber
|
|
17986
18031
|
)
|
|
17987
18032
|
try {
|
|
17988
|
-
(rendererID = hook$jscomp$
|
|
17989
|
-
internals$jscomp$
|
|
18033
|
+
(rendererID = hook$jscomp$inline_2618.inject(
|
|
18034
|
+
internals$jscomp$inline_2617
|
|
17990
18035
|
)),
|
|
17991
|
-
(injectedHook = hook$jscomp$
|
|
18036
|
+
(injectedHook = hook$jscomp$inline_2618);
|
|
17992
18037
|
} catch (err) {}
|
|
17993
18038
|
}
|
|
17994
18039
|
exports.createRoot = function (container, options) {
|
|
@@ -18074,4 +18119,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
|
|
|
18074
18119
|
listenToAllSupportedEvents(container);
|
|
18075
18120
|
return new ReactDOMHydrationRoot(initialChildren);
|
|
18076
18121
|
};
|
|
18077
|
-
exports.version = "19.3.0-canary-
|
|
18122
|
+
exports.version = "19.3.0-canary-dd048c3b-20251105";
|