react-dom 19.2.0-canary-b10cb4c0-20250403 → 19.2.0-canary-6a7650c7-20250405
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 +246 -193
- package/cjs/react-dom-client.production.js +256 -241
- package/cjs/react-dom-profiling.development.js +246 -193
- package/cjs/react-dom-profiling.profiling.js +365 -305
- package/cjs/react-dom-server-legacy.browser.development.js +1 -1
- package/cjs/react-dom-server-legacy.browser.production.js +1 -1
- package/cjs/react-dom-server-legacy.node.development.js +1 -1
- package/cjs/react-dom-server-legacy.node.production.js +1 -1
- package/cjs/react-dom-server.browser.development.js +3 -3
- package/cjs/react-dom-server.browser.production.js +3 -3
- package/cjs/react-dom-server.bun.development.js +3 -3
- package/cjs/react-dom-server.bun.production.js +3 -3
- package/cjs/react-dom-server.edge.development.js +3 -3
- package/cjs/react-dom-server.edge.production.js +3 -3
- package/cjs/react-dom-server.node.development.js +3 -3
- package/cjs/react-dom-server.node.production.js +3 -3
- 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
@@ -2016,19 +2016,19 @@ function getTargetInstForChangeEvent(domEventName, targetInst) {
|
|
2016
2016
|
}
|
2017
2017
|
var isInputEventSupported = !1;
|
2018
2018
|
if (canUseDOM) {
|
2019
|
-
var JSCompiler_inline_result$jscomp$
|
2019
|
+
var JSCompiler_inline_result$jscomp$283;
|
2020
2020
|
if (canUseDOM) {
|
2021
|
-
var isSupported$jscomp$
|
2022
|
-
if (!isSupported$jscomp$
|
2023
|
-
var element$jscomp$
|
2024
|
-
element$jscomp$
|
2025
|
-
isSupported$jscomp$
|
2026
|
-
"function" === typeof element$jscomp$
|
2021
|
+
var isSupported$jscomp$inline_419 = "oninput" in document;
|
2022
|
+
if (!isSupported$jscomp$inline_419) {
|
2023
|
+
var element$jscomp$inline_420 = document.createElement("div");
|
2024
|
+
element$jscomp$inline_420.setAttribute("oninput", "return;");
|
2025
|
+
isSupported$jscomp$inline_419 =
|
2026
|
+
"function" === typeof element$jscomp$inline_420.oninput;
|
2027
2027
|
}
|
2028
|
-
JSCompiler_inline_result$jscomp$
|
2029
|
-
} else JSCompiler_inline_result$jscomp$
|
2028
|
+
JSCompiler_inline_result$jscomp$283 = isSupported$jscomp$inline_419;
|
2029
|
+
} else JSCompiler_inline_result$jscomp$283 = !1;
|
2030
2030
|
isInputEventSupported =
|
2031
|
-
JSCompiler_inline_result$jscomp$
|
2031
|
+
JSCompiler_inline_result$jscomp$283 &&
|
2032
2032
|
(!document.documentMode || 9 < document.documentMode);
|
2033
2033
|
}
|
2034
2034
|
function stopWatchingForValueChange() {
|
@@ -5105,7 +5105,7 @@ function updateDeferredValueImpl(hook, prevValue, value, initialValue) {
|
|
5105
5105
|
objectIs(hook, prevValue) || (didReceiveUpdate = !0),
|
5106
5106
|
hook
|
5107
5107
|
);
|
5108
|
-
if (0 === (renderLanes & 42))
|
5108
|
+
if (0 === (renderLanes & 42) || 0 !== (renderLanes & 1073741824))
|
5109
5109
|
return (didReceiveUpdate = !0), (hook.memoizedState = value);
|
5110
5110
|
hook = requestDeferredLane();
|
5111
5111
|
currentlyRenderingFiber.lanes |= hook;
|
@@ -7830,7 +7830,7 @@ function completeWork(current, workInProgress, renderLanes) {
|
|
7830
7830
|
case 27:
|
7831
7831
|
popHostContext(workInProgress);
|
7832
7832
|
renderLanes = rootInstanceStackCursor.current;
|
7833
|
-
var type = workInProgress.type;
|
7833
|
+
var type$116 = workInProgress.type;
|
7834
7834
|
if (null !== current && null != workInProgress.stateNode)
|
7835
7835
|
current.memoizedProps !== newProps && markUpdate(workInProgress);
|
7836
7836
|
else {
|
@@ -7843,7 +7843,11 @@ function completeWork(current, workInProgress, renderLanes) {
|
|
7843
7843
|
current = contextStackCursor.current;
|
7844
7844
|
popHydrationState(workInProgress)
|
7845
7845
|
? prepareToHydrateHostInstance(workInProgress, current)
|
7846
|
-
: ((current = resolveSingletonInstance(
|
7846
|
+
: ((current = resolveSingletonInstance(
|
7847
|
+
type$116,
|
7848
|
+
newProps,
|
7849
|
+
renderLanes
|
7850
|
+
)),
|
7847
7851
|
(workInProgress.stateNode = current),
|
7848
7852
|
markUpdate(workInProgress));
|
7849
7853
|
}
|
@@ -7865,18 +7869,18 @@ function completeWork(current, workInProgress, renderLanes) {
|
|
7865
7869
|
if (popHydrationState(workInProgress))
|
7866
7870
|
prepareToHydrateHostInstance(workInProgress, current);
|
7867
7871
|
else {
|
7868
|
-
type = getOwnerDocumentFromRootContainer(
|
7872
|
+
type$116 = getOwnerDocumentFromRootContainer(
|
7869
7873
|
rootInstanceStackCursor.current
|
7870
7874
|
);
|
7871
7875
|
switch (current) {
|
7872
7876
|
case 1:
|
7873
|
-
current = type.createElementNS(
|
7877
|
+
current = type$116.createElementNS(
|
7874
7878
|
"http://www.w3.org/2000/svg",
|
7875
7879
|
renderLanes
|
7876
7880
|
);
|
7877
7881
|
break;
|
7878
7882
|
case 2:
|
7879
|
-
current = type.createElementNS(
|
7883
|
+
current = type$116.createElementNS(
|
7880
7884
|
"http://www.w3.org/1998/Math/MathML",
|
7881
7885
|
renderLanes
|
7882
7886
|
);
|
@@ -7884,27 +7888,27 @@ function completeWork(current, workInProgress, renderLanes) {
|
|
7884
7888
|
default:
|
7885
7889
|
switch (renderLanes) {
|
7886
7890
|
case "svg":
|
7887
|
-
current = type.createElementNS(
|
7891
|
+
current = type$116.createElementNS(
|
7888
7892
|
"http://www.w3.org/2000/svg",
|
7889
7893
|
renderLanes
|
7890
7894
|
);
|
7891
7895
|
break;
|
7892
7896
|
case "math":
|
7893
|
-
current = type.createElementNS(
|
7897
|
+
current = type$116.createElementNS(
|
7894
7898
|
"http://www.w3.org/1998/Math/MathML",
|
7895
7899
|
renderLanes
|
7896
7900
|
);
|
7897
7901
|
break;
|
7898
7902
|
case "script":
|
7899
|
-
current = type.createElement("div");
|
7903
|
+
current = type$116.createElement("div");
|
7900
7904
|
current.innerHTML = "<script>\x3c/script>";
|
7901
7905
|
current = current.removeChild(current.firstChild);
|
7902
7906
|
break;
|
7903
7907
|
case "select":
|
7904
7908
|
current =
|
7905
7909
|
"string" === typeof newProps.is
|
7906
|
-
? type.createElement("select", { is: newProps.is })
|
7907
|
-
: type.createElement("select");
|
7910
|
+
? type$116.createElement("select", { is: newProps.is })
|
7911
|
+
: type$116.createElement("select");
|
7908
7912
|
newProps.multiple
|
7909
7913
|
? (current.multiple = !0)
|
7910
7914
|
: newProps.size && (current.size = newProps.size);
|
@@ -7912,28 +7916,35 @@ function completeWork(current, workInProgress, renderLanes) {
|
|
7912
7916
|
default:
|
7913
7917
|
current =
|
7914
7918
|
"string" === typeof newProps.is
|
7915
|
-
? type.createElement(renderLanes, { is: newProps.is })
|
7916
|
-
: type.createElement(renderLanes);
|
7919
|
+
? type$116.createElement(renderLanes, { is: newProps.is })
|
7920
|
+
: type$116.createElement(renderLanes);
|
7917
7921
|
}
|
7918
7922
|
}
|
7919
7923
|
current[internalInstanceKey] = workInProgress;
|
7920
7924
|
current[internalPropsKey] = newProps;
|
7921
|
-
a: for (type = workInProgress.child; null !== type; ) {
|
7922
|
-
if (5 === type.tag || 6 === type.tag)
|
7923
|
-
current.appendChild(type.stateNode);
|
7924
|
-
else if (
|
7925
|
-
type.
|
7926
|
-
|
7925
|
+
a: for (type$116 = workInProgress.child; null !== type$116; ) {
|
7926
|
+
if (5 === type$116.tag || 6 === type$116.tag)
|
7927
|
+
current.appendChild(type$116.stateNode);
|
7928
|
+
else if (
|
7929
|
+
4 !== type$116.tag &&
|
7930
|
+
27 !== type$116.tag &&
|
7931
|
+
null !== type$116.child
|
7932
|
+
) {
|
7933
|
+
type$116.child.return = type$116;
|
7934
|
+
type$116 = type$116.child;
|
7927
7935
|
continue;
|
7928
7936
|
}
|
7929
|
-
if (type === workInProgress) break a;
|
7930
|
-
for (; null === type.sibling; ) {
|
7931
|
-
if (
|
7937
|
+
if (type$116 === workInProgress) break a;
|
7938
|
+
for (; null === type$116.sibling; ) {
|
7939
|
+
if (
|
7940
|
+
null === type$116.return ||
|
7941
|
+
type$116.return === workInProgress
|
7942
|
+
)
|
7932
7943
|
break a;
|
7933
|
-
type = type.return;
|
7944
|
+
type$116 = type$116.return;
|
7934
7945
|
}
|
7935
|
-
type.sibling.return = type.return;
|
7936
|
-
type = type.sibling;
|
7946
|
+
type$116.sibling.return = type$116.return;
|
7947
|
+
type$116 = type$116.sibling;
|
7937
7948
|
}
|
7938
7949
|
workInProgress.stateNode = current;
|
7939
7950
|
a: switch (
|
@@ -7968,12 +7979,12 @@ function completeWork(current, workInProgress, renderLanes) {
|
|
7968
7979
|
current = workInProgress.stateNode;
|
7969
7980
|
renderLanes = workInProgress.memoizedProps;
|
7970
7981
|
newProps = null;
|
7971
|
-
type = hydrationParentFiber;
|
7972
|
-
if (null !== type)
|
7973
|
-
switch (type.tag) {
|
7982
|
+
type$116 = hydrationParentFiber;
|
7983
|
+
if (null !== type$116)
|
7984
|
+
switch (type$116.tag) {
|
7974
7985
|
case 27:
|
7975
7986
|
case 5:
|
7976
|
-
newProps = type.memoizedProps;
|
7987
|
+
newProps = type$116.memoizedProps;
|
7977
7988
|
}
|
7978
7989
|
current[internalInstanceKey] = workInProgress;
|
7979
7990
|
current =
|
@@ -8000,28 +8011,28 @@ function completeWork(current, workInProgress, renderLanes) {
|
|
8000
8011
|
(null !== current.memoizedState &&
|
8001
8012
|
null !== current.memoizedState.dehydrated)
|
8002
8013
|
) {
|
8003
|
-
type = popHydrationState(workInProgress);
|
8014
|
+
type$116 = popHydrationState(workInProgress);
|
8004
8015
|
if (null !== newProps && null !== newProps.dehydrated) {
|
8005
8016
|
if (null === current) {
|
8006
|
-
if (!type) throw Error(formatProdErrorMessage(318));
|
8007
|
-
type = workInProgress.memoizedState;
|
8008
|
-
type = null !== type ? type.dehydrated : null;
|
8009
|
-
if (!type) throw Error(formatProdErrorMessage(317));
|
8010
|
-
type[internalInstanceKey] = workInProgress;
|
8017
|
+
if (!type$116) throw Error(formatProdErrorMessage(318));
|
8018
|
+
type$116 = workInProgress.memoizedState;
|
8019
|
+
type$116 = null !== type$116 ? type$116.dehydrated : null;
|
8020
|
+
if (!type$116) throw Error(formatProdErrorMessage(317));
|
8021
|
+
type$116[internalInstanceKey] = workInProgress;
|
8011
8022
|
} else
|
8012
8023
|
resetHydrationState(),
|
8013
8024
|
0 === (workInProgress.flags & 128) &&
|
8014
8025
|
(workInProgress.memoizedState = null),
|
8015
8026
|
(workInProgress.flags |= 4);
|
8016
8027
|
bubbleProperties(workInProgress);
|
8017
|
-
type = !1;
|
8028
|
+
type$116 = !1;
|
8018
8029
|
} else
|
8019
|
-
(type = upgradeHydrationErrorsToRecoverable()),
|
8030
|
+
(type$116 = upgradeHydrationErrorsToRecoverable()),
|
8020
8031
|
null !== current &&
|
8021
8032
|
null !== current.memoizedState &&
|
8022
|
-
(current.memoizedState.hydrationErrors = type),
|
8023
|
-
(type = !0);
|
8024
|
-
if (!type) {
|
8033
|
+
(current.memoizedState.hydrationErrors = type$116),
|
8034
|
+
(type$116 = !0);
|
8035
|
+
if (!type$116) {
|
8025
8036
|
if (workInProgress.flags & 256)
|
8026
8037
|
return popSuspenseHandler(workInProgress), workInProgress;
|
8027
8038
|
popSuspenseHandler(workInProgress);
|
@@ -8035,16 +8046,16 @@ function completeWork(current, workInProgress, renderLanes) {
|
|
8035
8046
|
current = null !== current && null !== current.memoizedState;
|
8036
8047
|
if (renderLanes) {
|
8037
8048
|
newProps = workInProgress.child;
|
8038
|
-
type = null;
|
8049
|
+
type$116 = null;
|
8039
8050
|
null !== newProps.alternate &&
|
8040
8051
|
null !== newProps.alternate.memoizedState &&
|
8041
8052
|
null !== newProps.alternate.memoizedState.cachePool &&
|
8042
|
-
(type = newProps.alternate.memoizedState.cachePool.pool);
|
8043
|
-
var cache$
|
8053
|
+
(type$116 = newProps.alternate.memoizedState.cachePool.pool);
|
8054
|
+
var cache$128 = null;
|
8044
8055
|
null !== newProps.memoizedState &&
|
8045
8056
|
null !== newProps.memoizedState.cachePool &&
|
8046
|
-
(cache$
|
8047
|
-
cache$
|
8057
|
+
(cache$128 = newProps.memoizedState.cachePool.pool);
|
8058
|
+
cache$128 !== type$116 && (newProps.flags |= 2048);
|
8048
8059
|
}
|
8049
8060
|
renderLanes !== current &&
|
8050
8061
|
renderLanes &&
|
@@ -8066,23 +8077,23 @@ function completeWork(current, workInProgress, renderLanes) {
|
|
8066
8077
|
);
|
8067
8078
|
case 19:
|
8068
8079
|
pop(suspenseStackCursor);
|
8069
|
-
type = workInProgress.memoizedState;
|
8070
|
-
if (null === type) return bubbleProperties(workInProgress), null;
|
8080
|
+
type$116 = workInProgress.memoizedState;
|
8081
|
+
if (null === type$116) return bubbleProperties(workInProgress), null;
|
8071
8082
|
newProps = 0 !== (workInProgress.flags & 128);
|
8072
|
-
cache$
|
8073
|
-
if (null === cache$
|
8074
|
-
if (newProps) cutOffTailIfNeeded(type, !1);
|
8083
|
+
cache$128 = type$116.rendering;
|
8084
|
+
if (null === cache$128)
|
8085
|
+
if (newProps) cutOffTailIfNeeded(type$116, !1);
|
8075
8086
|
else {
|
8076
8087
|
if (
|
8077
8088
|
0 !== workInProgressRootExitStatus ||
|
8078
8089
|
(null !== current && 0 !== (current.flags & 128))
|
8079
8090
|
)
|
8080
8091
|
for (current = workInProgress.child; null !== current; ) {
|
8081
|
-
cache$
|
8082
|
-
if (null !== cache$
|
8092
|
+
cache$128 = findFirstSuspended(current);
|
8093
|
+
if (null !== cache$128) {
|
8083
8094
|
workInProgress.flags |= 128;
|
8084
|
-
cutOffTailIfNeeded(type, !1);
|
8085
|
-
current = cache$
|
8095
|
+
cutOffTailIfNeeded(type$116, !1);
|
8096
|
+
current = cache$128.updateQueue;
|
8086
8097
|
workInProgress.updateQueue = current;
|
8087
8098
|
scheduleRetryEffect(workInProgress, current);
|
8088
8099
|
workInProgress.subtreeFlags = 0;
|
@@ -8098,52 +8109,52 @@ function completeWork(current, workInProgress, renderLanes) {
|
|
8098
8109
|
}
|
8099
8110
|
current = current.sibling;
|
8100
8111
|
}
|
8101
|
-
null !== type.tail &&
|
8112
|
+
null !== type$116.tail &&
|
8102
8113
|
now() > workInProgressRootRenderTargetTime &&
|
8103
8114
|
((workInProgress.flags |= 128),
|
8104
8115
|
(newProps = !0),
|
8105
|
-
cutOffTailIfNeeded(type, !1),
|
8116
|
+
cutOffTailIfNeeded(type$116, !1),
|
8106
8117
|
(workInProgress.lanes = 4194304));
|
8107
8118
|
}
|
8108
8119
|
else {
|
8109
8120
|
if (!newProps)
|
8110
|
-
if (((current = findFirstSuspended(cache$
|
8121
|
+
if (((current = findFirstSuspended(cache$128)), null !== current)) {
|
8111
8122
|
if (
|
8112
8123
|
((workInProgress.flags |= 128),
|
8113
8124
|
(newProps = !0),
|
8114
8125
|
(current = current.updateQueue),
|
8115
8126
|
(workInProgress.updateQueue = current),
|
8116
8127
|
scheduleRetryEffect(workInProgress, current),
|
8117
|
-
cutOffTailIfNeeded(type, !0),
|
8118
|
-
null === type.tail &&
|
8119
|
-
"hidden" === type.tailMode &&
|
8120
|
-
!cache$
|
8128
|
+
cutOffTailIfNeeded(type$116, !0),
|
8129
|
+
null === type$116.tail &&
|
8130
|
+
"hidden" === type$116.tailMode &&
|
8131
|
+
!cache$128.alternate &&
|
8121
8132
|
!isHydrating)
|
8122
8133
|
)
|
8123
8134
|
return bubbleProperties(workInProgress), null;
|
8124
8135
|
} else
|
8125
|
-
2 * now() - type.renderingStartTime >
|
8136
|
+
2 * now() - type$116.renderingStartTime >
|
8126
8137
|
workInProgressRootRenderTargetTime &&
|
8127
8138
|
536870912 !== renderLanes &&
|
8128
8139
|
((workInProgress.flags |= 128),
|
8129
8140
|
(newProps = !0),
|
8130
|
-
cutOffTailIfNeeded(type, !1),
|
8141
|
+
cutOffTailIfNeeded(type$116, !1),
|
8131
8142
|
(workInProgress.lanes = 4194304));
|
8132
|
-
type.isBackwards
|
8133
|
-
? ((cache$
|
8134
|
-
(workInProgress.child = cache$
|
8135
|
-
: ((current = type.last),
|
8143
|
+
type$116.isBackwards
|
8144
|
+
? ((cache$128.sibling = workInProgress.child),
|
8145
|
+
(workInProgress.child = cache$128))
|
8146
|
+
: ((current = type$116.last),
|
8136
8147
|
null !== current
|
8137
|
-
? (current.sibling = cache$
|
8138
|
-
: (workInProgress.child = cache$
|
8139
|
-
(type.last = cache$
|
8148
|
+
? (current.sibling = cache$128)
|
8149
|
+
: (workInProgress.child = cache$128),
|
8150
|
+
(type$116.last = cache$128));
|
8140
8151
|
}
|
8141
|
-
if (null !== type.tail)
|
8152
|
+
if (null !== type$116.tail)
|
8142
8153
|
return (
|
8143
|
-
(workInProgress = type.tail),
|
8144
|
-
(type.rendering = workInProgress),
|
8145
|
-
(type.tail = workInProgress.sibling),
|
8146
|
-
(type.renderingStartTime = now()),
|
8154
|
+
(workInProgress = type$116.tail),
|
8155
|
+
(type$116.rendering = workInProgress),
|
8156
|
+
(type$116.tail = workInProgress.sibling),
|
8157
|
+
(type$116.renderingStartTime = now()),
|
8147
8158
|
(workInProgress.sibling = null),
|
8148
8159
|
(current = suspenseStackCursor.current),
|
8149
8160
|
push(suspenseStackCursor, newProps ? (current & 1) | 2 : current & 1),
|
@@ -8422,8 +8433,8 @@ function safelyDetachRef(current, nearestMountedAncestor) {
|
|
8422
8433
|
else if ("function" === typeof ref)
|
8423
8434
|
try {
|
8424
8435
|
ref(null);
|
8425
|
-
} catch (error$
|
8426
|
-
captureCommitPhaseError(current, nearestMountedAncestor, error$
|
8436
|
+
} catch (error$144) {
|
8437
|
+
captureCommitPhaseError(current, nearestMountedAncestor, error$144);
|
8427
8438
|
}
|
8428
8439
|
else ref.current = null;
|
8429
8440
|
}
|
@@ -8749,11 +8760,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
|
8749
8760
|
current,
|
8750
8761
|
finishedRoot.__reactInternalSnapshotBeforeUpdate
|
8751
8762
|
);
|
8752
|
-
} catch (error$
|
8763
|
+
} catch (error$143) {
|
8753
8764
|
captureCommitPhaseError(
|
8754
8765
|
finishedWork,
|
8755
8766
|
finishedWork.return,
|
8756
|
-
error$
|
8767
|
+
error$143
|
8757
8768
|
);
|
8758
8769
|
}
|
8759
8770
|
}
|
@@ -9535,20 +9546,20 @@ function commitReconciliationEffects(finishedWork) {
|
|
9535
9546
|
insertOrAppendPlacementNode(finishedWork, before, parent);
|
9536
9547
|
break;
|
9537
9548
|
case 5:
|
9538
|
-
var parent$
|
9549
|
+
var parent$145 = hostParentFiber.stateNode;
|
9539
9550
|
hostParentFiber.flags & 32 &&
|
9540
|
-
(setTextContent(parent$
|
9541
|
-
var before$
|
9542
|
-
insertOrAppendPlacementNode(finishedWork, before$
|
9551
|
+
(setTextContent(parent$145, ""), (hostParentFiber.flags &= -33));
|
9552
|
+
var before$146 = getHostSibling(finishedWork);
|
9553
|
+
insertOrAppendPlacementNode(finishedWork, before$146, parent$145);
|
9543
9554
|
break;
|
9544
9555
|
case 3:
|
9545
9556
|
case 4:
|
9546
|
-
var parent$
|
9547
|
-
before$
|
9557
|
+
var parent$147 = hostParentFiber.stateNode.containerInfo,
|
9558
|
+
before$148 = getHostSibling(finishedWork);
|
9548
9559
|
insertOrAppendPlacementNodeIntoContainer(
|
9549
9560
|
finishedWork,
|
9550
|
-
before$
|
9551
|
-
parent$
|
9561
|
+
before$148,
|
9562
|
+
parent$147
|
9552
9563
|
);
|
9553
9564
|
break;
|
9554
9565
|
default:
|
@@ -10734,8 +10745,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) {
|
|
10734
10745
|
workLoopSync();
|
10735
10746
|
exitStatus = workInProgressRootExitStatus;
|
10736
10747
|
break;
|
10737
|
-
} catch (thrownValue$
|
10738
|
-
handleThrow(root, thrownValue$
|
10748
|
+
} catch (thrownValue$168) {
|
10749
|
+
handleThrow(root, thrownValue$168);
|
10739
10750
|
}
|
10740
10751
|
while (1);
|
10741
10752
|
lanes && root.shellSuspendCounter++;
|
@@ -10816,7 +10827,11 @@ function renderRootConcurrent(root, lanes) {
|
|
10816
10827
|
case 5:
|
10817
10828
|
case 27:
|
10818
10829
|
var hostFiber = workInProgress;
|
10819
|
-
if (
|
10830
|
+
if (
|
10831
|
+
resource
|
10832
|
+
? preloadResource(resource)
|
10833
|
+
: hostFiber.stateNode.complete
|
10834
|
+
) {
|
10820
10835
|
workInProgressSuspendedReason = 0;
|
10821
10836
|
workInProgressThrownValue = null;
|
10822
10837
|
var sibling = hostFiber.sibling;
|
@@ -10850,8 +10865,8 @@ function renderRootConcurrent(root, lanes) {
|
|
10850
10865
|
}
|
10851
10866
|
workLoopConcurrentByScheduler();
|
10852
10867
|
break;
|
10853
|
-
} catch (thrownValue$
|
10854
|
-
handleThrow(root, thrownValue$
|
10868
|
+
} catch (thrownValue$170) {
|
10869
|
+
handleThrow(root, thrownValue$170);
|
10855
10870
|
}
|
10856
10871
|
while (1);
|
10857
10872
|
lastContextDependency = currentlyRenderingFiber$1 = null;
|
@@ -11486,14 +11501,14 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {
|
|
11486
11501
|
isFlushingWork = !0;
|
11487
11502
|
do {
|
11488
11503
|
var didPerformSomeWork = !1;
|
11489
|
-
for (var root$
|
11504
|
+
for (var root$175 = firstScheduledRoot; null !== root$175; ) {
|
11490
11505
|
if (!onlyLegacy)
|
11491
11506
|
if (0 !== syncTransitionLanes) {
|
11492
|
-
var pendingLanes = root$
|
11507
|
+
var pendingLanes = root$175.pendingLanes;
|
11493
11508
|
if (0 === pendingLanes) var JSCompiler_inline_result = 0;
|
11494
11509
|
else {
|
11495
|
-
var suspendedLanes = root$
|
11496
|
-
pingedLanes = root$
|
11510
|
+
var suspendedLanes = root$175.suspendedLanes,
|
11511
|
+
pingedLanes = root$175.pingedLanes;
|
11497
11512
|
JSCompiler_inline_result =
|
11498
11513
|
(1 << (31 - clz32(42 | syncTransitionLanes) + 1)) - 1;
|
11499
11514
|
JSCompiler_inline_result &=
|
@@ -11507,20 +11522,20 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {
|
|
11507
11522
|
}
|
11508
11523
|
0 !== JSCompiler_inline_result &&
|
11509
11524
|
((didPerformSomeWork = !0),
|
11510
|
-
performSyncWorkOnRoot(root$
|
11525
|
+
performSyncWorkOnRoot(root$175, JSCompiler_inline_result));
|
11511
11526
|
} else
|
11512
11527
|
(JSCompiler_inline_result = workInProgressRootRenderLanes),
|
11513
11528
|
(JSCompiler_inline_result = getNextLanes(
|
11514
|
-
root$
|
11515
|
-
root$
|
11516
|
-
null !== root$
|
11517
|
-
-1 !== root$
|
11529
|
+
root$175,
|
11530
|
+
root$175 === workInProgressRoot ? JSCompiler_inline_result : 0,
|
11531
|
+
null !== root$175.cancelPendingCommit ||
|
11532
|
+
-1 !== root$175.timeoutHandle
|
11518
11533
|
)),
|
11519
11534
|
0 === (JSCompiler_inline_result & 3) ||
|
11520
|
-
checkIfRootIsPrerendering(root$
|
11535
|
+
checkIfRootIsPrerendering(root$175, JSCompiler_inline_result) ||
|
11521
11536
|
((didPerformSomeWork = !0),
|
11522
|
-
performSyncWorkOnRoot(root$
|
11523
|
-
root$
|
11537
|
+
performSyncWorkOnRoot(root$175, JSCompiler_inline_result));
|
11538
|
+
root$175 = root$175.next;
|
11524
11539
|
}
|
11525
11540
|
} while (didPerformSomeWork);
|
11526
11541
|
isFlushingWork = !1;
|
@@ -11761,20 +11776,20 @@ function extractEvents$1(
|
|
11761
11776
|
}
|
11762
11777
|
}
|
11763
11778
|
for (
|
11764
|
-
var i$jscomp$
|
11765
|
-
i$jscomp$
|
11766
|
-
i$jscomp$
|
11779
|
+
var i$jscomp$inline_1515 = 0;
|
11780
|
+
i$jscomp$inline_1515 < simpleEventPluginEvents.length;
|
11781
|
+
i$jscomp$inline_1515++
|
11767
11782
|
) {
|
11768
|
-
var eventName$jscomp$
|
11769
|
-
simpleEventPluginEvents[i$jscomp$
|
11770
|
-
domEventName$jscomp$
|
11771
|
-
eventName$jscomp$
|
11772
|
-
capitalizedEvent$jscomp$
|
11773
|
-
eventName$jscomp$
|
11774
|
-
eventName$jscomp$
|
11783
|
+
var eventName$jscomp$inline_1516 =
|
11784
|
+
simpleEventPluginEvents[i$jscomp$inline_1515],
|
11785
|
+
domEventName$jscomp$inline_1517 =
|
11786
|
+
eventName$jscomp$inline_1516.toLowerCase(),
|
11787
|
+
capitalizedEvent$jscomp$inline_1518 =
|
11788
|
+
eventName$jscomp$inline_1516[0].toUpperCase() +
|
11789
|
+
eventName$jscomp$inline_1516.slice(1);
|
11775
11790
|
registerSimpleEvent(
|
11776
|
-
domEventName$jscomp$
|
11777
|
-
"on" + capitalizedEvent$jscomp$
|
11791
|
+
domEventName$jscomp$inline_1517,
|
11792
|
+
"on" + capitalizedEvent$jscomp$inline_1518
|
11778
11793
|
);
|
11779
11794
|
}
|
11780
11795
|
registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
|
@@ -12951,34 +12966,34 @@ function setInitialProperties(domElement, tag, props) {
|
|
12951
12966
|
defaultChecked = null;
|
12952
12967
|
for (hasSrc in props)
|
12953
12968
|
if (props.hasOwnProperty(hasSrc)) {
|
12954
|
-
var propValue$
|
12955
|
-
if (null != propValue$
|
12969
|
+
var propValue$189 = props[hasSrc];
|
12970
|
+
if (null != propValue$189)
|
12956
12971
|
switch (hasSrc) {
|
12957
12972
|
case "name":
|
12958
|
-
hasSrcSet = propValue$
|
12973
|
+
hasSrcSet = propValue$189;
|
12959
12974
|
break;
|
12960
12975
|
case "type":
|
12961
|
-
propValue = propValue$
|
12976
|
+
propValue = propValue$189;
|
12962
12977
|
break;
|
12963
12978
|
case "checked":
|
12964
|
-
checked = propValue$
|
12979
|
+
checked = propValue$189;
|
12965
12980
|
break;
|
12966
12981
|
case "defaultChecked":
|
12967
|
-
defaultChecked = propValue$
|
12982
|
+
defaultChecked = propValue$189;
|
12968
12983
|
break;
|
12969
12984
|
case "value":
|
12970
|
-
propKey = propValue$
|
12985
|
+
propKey = propValue$189;
|
12971
12986
|
break;
|
12972
12987
|
case "defaultValue":
|
12973
|
-
defaultValue = propValue$
|
12988
|
+
defaultValue = propValue$189;
|
12974
12989
|
break;
|
12975
12990
|
case "children":
|
12976
12991
|
case "dangerouslySetInnerHTML":
|
12977
|
-
if (null != propValue$
|
12992
|
+
if (null != propValue$189)
|
12978
12993
|
throw Error(formatProdErrorMessage(137, tag));
|
12979
12994
|
break;
|
12980
12995
|
default:
|
12981
|
-
setProp(domElement, tag, hasSrc, propValue$
|
12996
|
+
setProp(domElement, tag, hasSrc, propValue$189, props, null);
|
12982
12997
|
}
|
12983
12998
|
}
|
12984
12999
|
initInput(
|
@@ -13117,14 +13132,14 @@ function setInitialProperties(domElement, tag, props) {
|
|
13117
13132
|
return;
|
13118
13133
|
default:
|
13119
13134
|
if (isCustomElement(tag)) {
|
13120
|
-
for (propValue$
|
13121
|
-
props.hasOwnProperty(propValue$
|
13122
|
-
((hasSrc = props[propValue$
|
13135
|
+
for (propValue$189 in props)
|
13136
|
+
props.hasOwnProperty(propValue$189) &&
|
13137
|
+
((hasSrc = props[propValue$189]),
|
13123
13138
|
void 0 !== hasSrc &&
|
13124
13139
|
setPropOnCustomElement(
|
13125
13140
|
domElement,
|
13126
13141
|
tag,
|
13127
|
-
propValue$
|
13142
|
+
propValue$189,
|
13128
13143
|
hasSrc,
|
13129
13144
|
props,
|
13130
13145
|
void 0
|
@@ -13172,14 +13187,14 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13172
13187
|
setProp(domElement, tag, propKey, null, nextProps, lastProp);
|
13173
13188
|
}
|
13174
13189
|
}
|
13175
|
-
for (var propKey$
|
13176
|
-
var propKey = nextProps[propKey$
|
13177
|
-
lastProp = lastProps[propKey$
|
13190
|
+
for (var propKey$206 in nextProps) {
|
13191
|
+
var propKey = nextProps[propKey$206];
|
13192
|
+
lastProp = lastProps[propKey$206];
|
13178
13193
|
if (
|
13179
|
-
nextProps.hasOwnProperty(propKey$
|
13194
|
+
nextProps.hasOwnProperty(propKey$206) &&
|
13180
13195
|
(null != propKey || null != lastProp)
|
13181
13196
|
)
|
13182
|
-
switch (propKey$
|
13197
|
+
switch (propKey$206) {
|
13183
13198
|
case "type":
|
13184
13199
|
type = propKey;
|
13185
13200
|
break;
|
@@ -13208,7 +13223,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13208
13223
|
setProp(
|
13209
13224
|
domElement,
|
13210
13225
|
tag,
|
13211
|
-
propKey$
|
13226
|
+
propKey$206,
|
13212
13227
|
propKey,
|
13213
13228
|
nextProps,
|
13214
13229
|
lastProp
|
@@ -13227,7 +13242,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13227
13242
|
);
|
13228
13243
|
return;
|
13229
13244
|
case "select":
|
13230
|
-
propKey = value = defaultValue = propKey$
|
13245
|
+
propKey = value = defaultValue = propKey$206 = null;
|
13231
13246
|
for (type in lastProps)
|
13232
13247
|
if (
|
13233
13248
|
((lastDefaultValue = lastProps[type]),
|
@@ -13258,7 +13273,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13258
13273
|
)
|
13259
13274
|
switch (name) {
|
13260
13275
|
case "value":
|
13261
|
-
propKey$
|
13276
|
+
propKey$206 = type;
|
13262
13277
|
break;
|
13263
13278
|
case "defaultValue":
|
13264
13279
|
defaultValue = type;
|
@@ -13279,15 +13294,15 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13279
13294
|
tag = defaultValue;
|
13280
13295
|
lastProps = value;
|
13281
13296
|
nextProps = propKey;
|
13282
|
-
null != propKey$
|
13283
|
-
? updateOptions(domElement, !!lastProps, propKey$
|
13297
|
+
null != propKey$206
|
13298
|
+
? updateOptions(domElement, !!lastProps, propKey$206, !1)
|
13284
13299
|
: !!nextProps !== !!lastProps &&
|
13285
13300
|
(null != tag
|
13286
13301
|
? updateOptions(domElement, !!lastProps, tag, !0)
|
13287
13302
|
: updateOptions(domElement, !!lastProps, lastProps ? [] : "", !1));
|
13288
13303
|
return;
|
13289
13304
|
case "textarea":
|
13290
|
-
propKey = propKey$
|
13305
|
+
propKey = propKey$206 = null;
|
13291
13306
|
for (defaultValue in lastProps)
|
13292
13307
|
if (
|
13293
13308
|
((name = lastProps[defaultValue]),
|
@@ -13311,7 +13326,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13311
13326
|
)
|
13312
13327
|
switch (value) {
|
13313
13328
|
case "value":
|
13314
|
-
propKey$
|
13329
|
+
propKey$206 = name;
|
13315
13330
|
break;
|
13316
13331
|
case "defaultValue":
|
13317
13332
|
propKey = name;
|
@@ -13325,17 +13340,17 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13325
13340
|
name !== type &&
|
13326
13341
|
setProp(domElement, tag, value, name, nextProps, type);
|
13327
13342
|
}
|
13328
|
-
updateTextarea(domElement, propKey$
|
13343
|
+
updateTextarea(domElement, propKey$206, propKey);
|
13329
13344
|
return;
|
13330
13345
|
case "option":
|
13331
|
-
for (var propKey$
|
13346
|
+
for (var propKey$222 in lastProps)
|
13332
13347
|
if (
|
13333
|
-
((propKey$
|
13334
|
-
lastProps.hasOwnProperty(propKey$
|
13335
|
-
null != propKey$
|
13336
|
-
!nextProps.hasOwnProperty(propKey$
|
13348
|
+
((propKey$206 = lastProps[propKey$222]),
|
13349
|
+
lastProps.hasOwnProperty(propKey$222) &&
|
13350
|
+
null != propKey$206 &&
|
13351
|
+
!nextProps.hasOwnProperty(propKey$222))
|
13337
13352
|
)
|
13338
|
-
switch (propKey$
|
13353
|
+
switch (propKey$222) {
|
13339
13354
|
case "selected":
|
13340
13355
|
domElement.selected = !1;
|
13341
13356
|
break;
|
@@ -13343,33 +13358,33 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13343
13358
|
setProp(
|
13344
13359
|
domElement,
|
13345
13360
|
tag,
|
13346
|
-
propKey$
|
13361
|
+
propKey$222,
|
13347
13362
|
null,
|
13348
13363
|
nextProps,
|
13349
|
-
propKey$
|
13364
|
+
propKey$206
|
13350
13365
|
);
|
13351
13366
|
}
|
13352
13367
|
for (lastDefaultValue in nextProps)
|
13353
13368
|
if (
|
13354
|
-
((propKey$
|
13369
|
+
((propKey$206 = nextProps[lastDefaultValue]),
|
13355
13370
|
(propKey = lastProps[lastDefaultValue]),
|
13356
13371
|
nextProps.hasOwnProperty(lastDefaultValue) &&
|
13357
|
-
propKey$
|
13358
|
-
(null != propKey$
|
13372
|
+
propKey$206 !== propKey &&
|
13373
|
+
(null != propKey$206 || null != propKey))
|
13359
13374
|
)
|
13360
13375
|
switch (lastDefaultValue) {
|
13361
13376
|
case "selected":
|
13362
13377
|
domElement.selected =
|
13363
|
-
propKey$
|
13364
|
-
"function" !== typeof propKey$
|
13365
|
-
"symbol" !== typeof propKey$
|
13378
|
+
propKey$206 &&
|
13379
|
+
"function" !== typeof propKey$206 &&
|
13380
|
+
"symbol" !== typeof propKey$206;
|
13366
13381
|
break;
|
13367
13382
|
default:
|
13368
13383
|
setProp(
|
13369
13384
|
domElement,
|
13370
13385
|
tag,
|
13371
13386
|
lastDefaultValue,
|
13372
|
-
propKey$
|
13387
|
+
propKey$206,
|
13373
13388
|
nextProps,
|
13374
13389
|
propKey
|
13375
13390
|
);
|
@@ -13390,24 +13405,24 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13390
13405
|
case "track":
|
13391
13406
|
case "wbr":
|
13392
13407
|
case "menuitem":
|
13393
|
-
for (var propKey$
|
13394
|
-
(propKey$
|
13395
|
-
lastProps.hasOwnProperty(propKey$
|
13396
|
-
null != propKey$
|
13397
|
-
!nextProps.hasOwnProperty(propKey$
|
13398
|
-
setProp(domElement, tag, propKey$
|
13408
|
+
for (var propKey$227 in lastProps)
|
13409
|
+
(propKey$206 = lastProps[propKey$227]),
|
13410
|
+
lastProps.hasOwnProperty(propKey$227) &&
|
13411
|
+
null != propKey$206 &&
|
13412
|
+
!nextProps.hasOwnProperty(propKey$227) &&
|
13413
|
+
setProp(domElement, tag, propKey$227, null, nextProps, propKey$206);
|
13399
13414
|
for (checked in nextProps)
|
13400
13415
|
if (
|
13401
|
-
((propKey$
|
13416
|
+
((propKey$206 = nextProps[checked]),
|
13402
13417
|
(propKey = lastProps[checked]),
|
13403
13418
|
nextProps.hasOwnProperty(checked) &&
|
13404
|
-
propKey$
|
13405
|
-
(null != propKey$
|
13419
|
+
propKey$206 !== propKey &&
|
13420
|
+
(null != propKey$206 || null != propKey))
|
13406
13421
|
)
|
13407
13422
|
switch (checked) {
|
13408
13423
|
case "children":
|
13409
13424
|
case "dangerouslySetInnerHTML":
|
13410
|
-
if (null != propKey$
|
13425
|
+
if (null != propKey$206)
|
13411
13426
|
throw Error(formatProdErrorMessage(137, tag));
|
13412
13427
|
break;
|
13413
13428
|
default:
|
@@ -13415,7 +13430,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13415
13430
|
domElement,
|
13416
13431
|
tag,
|
13417
13432
|
checked,
|
13418
|
-
propKey$
|
13433
|
+
propKey$206,
|
13419
13434
|
nextProps,
|
13420
13435
|
propKey
|
13421
13436
|
);
|
@@ -13423,49 +13438,49 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13423
13438
|
return;
|
13424
13439
|
default:
|
13425
13440
|
if (isCustomElement(tag)) {
|
13426
|
-
for (var propKey$
|
13427
|
-
(propKey$
|
13428
|
-
lastProps.hasOwnProperty(propKey$
|
13429
|
-
void 0 !== propKey$
|
13430
|
-
!nextProps.hasOwnProperty(propKey$
|
13441
|
+
for (var propKey$232 in lastProps)
|
13442
|
+
(propKey$206 = lastProps[propKey$232]),
|
13443
|
+
lastProps.hasOwnProperty(propKey$232) &&
|
13444
|
+
void 0 !== propKey$206 &&
|
13445
|
+
!nextProps.hasOwnProperty(propKey$232) &&
|
13431
13446
|
setPropOnCustomElement(
|
13432
13447
|
domElement,
|
13433
13448
|
tag,
|
13434
|
-
propKey$
|
13449
|
+
propKey$232,
|
13435
13450
|
void 0,
|
13436
13451
|
nextProps,
|
13437
|
-
propKey$
|
13452
|
+
propKey$206
|
13438
13453
|
);
|
13439
13454
|
for (defaultChecked in nextProps)
|
13440
|
-
(propKey$
|
13455
|
+
(propKey$206 = nextProps[defaultChecked]),
|
13441
13456
|
(propKey = lastProps[defaultChecked]),
|
13442
13457
|
!nextProps.hasOwnProperty(defaultChecked) ||
|
13443
|
-
propKey$
|
13444
|
-
(void 0 === propKey$
|
13458
|
+
propKey$206 === propKey ||
|
13459
|
+
(void 0 === propKey$206 && void 0 === propKey) ||
|
13445
13460
|
setPropOnCustomElement(
|
13446
13461
|
domElement,
|
13447
13462
|
tag,
|
13448
13463
|
defaultChecked,
|
13449
|
-
propKey$
|
13464
|
+
propKey$206,
|
13450
13465
|
nextProps,
|
13451
13466
|
propKey
|
13452
13467
|
);
|
13453
13468
|
return;
|
13454
13469
|
}
|
13455
13470
|
}
|
13456
|
-
for (var propKey$
|
13457
|
-
(propKey$
|
13458
|
-
lastProps.hasOwnProperty(propKey$
|
13459
|
-
null != propKey$
|
13460
|
-
!nextProps.hasOwnProperty(propKey$
|
13461
|
-
setProp(domElement, tag, propKey$
|
13471
|
+
for (var propKey$237 in lastProps)
|
13472
|
+
(propKey$206 = lastProps[propKey$237]),
|
13473
|
+
lastProps.hasOwnProperty(propKey$237) &&
|
13474
|
+
null != propKey$206 &&
|
13475
|
+
!nextProps.hasOwnProperty(propKey$237) &&
|
13476
|
+
setProp(domElement, tag, propKey$237, null, nextProps, propKey$206);
|
13462
13477
|
for (lastProp in nextProps)
|
13463
|
-
(propKey$
|
13478
|
+
(propKey$206 = nextProps[lastProp]),
|
13464
13479
|
(propKey = lastProps[lastProp]),
|
13465
13480
|
!nextProps.hasOwnProperty(lastProp) ||
|
13466
|
-
propKey$
|
13467
|
-
(null == propKey$
|
13468
|
-
setProp(domElement, tag, lastProp, propKey$
|
13481
|
+
propKey$206 === propKey ||
|
13482
|
+
(null == propKey$206 && null == propKey) ||
|
13483
|
+
setProp(domElement, tag, lastProp, propKey$206, nextProps, propKey);
|
13469
13484
|
}
|
13470
13485
|
var eventsEnabled = null,
|
13471
13486
|
selectionInformation = null;
|
@@ -14074,26 +14089,26 @@ function getResource(type, currentProps, pendingProps, currentResource) {
|
|
14074
14089
|
"string" === typeof pendingProps.precedence
|
14075
14090
|
) {
|
14076
14091
|
type = getStyleKey(pendingProps.href);
|
14077
|
-
var styles$
|
14092
|
+
var styles$245 = getResourcesFromRoot(
|
14078
14093
|
JSCompiler_inline_result
|
14079
14094
|
).hoistableStyles,
|
14080
|
-
resource$
|
14081
|
-
resource$
|
14095
|
+
resource$246 = styles$245.get(type);
|
14096
|
+
resource$246 ||
|
14082
14097
|
((JSCompiler_inline_result =
|
14083
14098
|
JSCompiler_inline_result.ownerDocument || JSCompiler_inline_result),
|
14084
|
-
(resource$
|
14099
|
+
(resource$246 = {
|
14085
14100
|
type: "stylesheet",
|
14086
14101
|
instance: null,
|
14087
14102
|
count: 0,
|
14088
14103
|
state: { loading: 0, preload: null }
|
14089
14104
|
}),
|
14090
|
-
styles$
|
14091
|
-
(styles$
|
14105
|
+
styles$245.set(type, resource$246),
|
14106
|
+
(styles$245 = JSCompiler_inline_result.querySelector(
|
14092
14107
|
getStylesheetSelectorFromKey(type)
|
14093
14108
|
)) &&
|
14094
|
-
!styles$
|
14095
|
-
((resource$
|
14096
|
-
(resource$
|
14109
|
+
!styles$245._p &&
|
14110
|
+
((resource$246.instance = styles$245),
|
14111
|
+
(resource$246.state.loading = 5)),
|
14097
14112
|
preloadPropsMap.has(type) ||
|
14098
14113
|
((pendingProps = {
|
14099
14114
|
rel: "preload",
|
@@ -14106,16 +14121,16 @@ function getResource(type, currentProps, pendingProps, currentResource) {
|
|
14106
14121
|
referrerPolicy: pendingProps.referrerPolicy
|
14107
14122
|
}),
|
14108
14123
|
preloadPropsMap.set(type, pendingProps),
|
14109
|
-
styles$
|
14124
|
+
styles$245 ||
|
14110
14125
|
preloadStylesheet(
|
14111
14126
|
JSCompiler_inline_result,
|
14112
14127
|
type,
|
14113
14128
|
pendingProps,
|
14114
|
-
resource$
|
14129
|
+
resource$246.state
|
14115
14130
|
)));
|
14116
14131
|
if (currentProps && null === currentResource)
|
14117
14132
|
throw Error(formatProdErrorMessage(528, ""));
|
14118
|
-
return resource$
|
14133
|
+
return resource$246;
|
14119
14134
|
}
|
14120
14135
|
if (currentProps && null !== currentResource)
|
14121
14136
|
throw Error(formatProdErrorMessage(529, ""));
|
@@ -14212,37 +14227,37 @@ function acquireResource(hoistableRoot, resource, props) {
|
|
14212
14227
|
return (resource.instance = instance);
|
14213
14228
|
case "stylesheet":
|
14214
14229
|
styleProps = getStyleKey(props.href);
|
14215
|
-
var instance$
|
14230
|
+
var instance$251 = hoistableRoot.querySelector(
|
14216
14231
|
getStylesheetSelectorFromKey(styleProps)
|
14217
14232
|
);
|
14218
|
-
if (instance$
|
14233
|
+
if (instance$251)
|
14219
14234
|
return (
|
14220
14235
|
(resource.state.loading |= 4),
|
14221
|
-
(resource.instance = instance$
|
14222
|
-
markNodeAsHoistable(instance$
|
14223
|
-
instance$
|
14236
|
+
(resource.instance = instance$251),
|
14237
|
+
markNodeAsHoistable(instance$251),
|
14238
|
+
instance$251
|
14224
14239
|
);
|
14225
14240
|
instance = stylesheetPropsFromRawProps(props);
|
14226
14241
|
(styleProps = preloadPropsMap.get(styleProps)) &&
|
14227
14242
|
adoptPreloadPropsForStylesheet(instance, styleProps);
|
14228
|
-
instance$
|
14243
|
+
instance$251 = (
|
14229
14244
|
hoistableRoot.ownerDocument || hoistableRoot
|
14230
14245
|
).createElement("link");
|
14231
|
-
markNodeAsHoistable(instance$
|
14232
|
-
var linkInstance = instance$
|
14246
|
+
markNodeAsHoistable(instance$251);
|
14247
|
+
var linkInstance = instance$251;
|
14233
14248
|
linkInstance._p = new Promise(function (resolve, reject) {
|
14234
14249
|
linkInstance.onload = resolve;
|
14235
14250
|
linkInstance.onerror = reject;
|
14236
14251
|
});
|
14237
|
-
setInitialProperties(instance$
|
14252
|
+
setInitialProperties(instance$251, "link", instance);
|
14238
14253
|
resource.state.loading |= 4;
|
14239
|
-
insertStylesheet(instance$
|
14240
|
-
return (resource.instance = instance$
|
14254
|
+
insertStylesheet(instance$251, props.precedence, hoistableRoot);
|
14255
|
+
return (resource.instance = instance$251);
|
14241
14256
|
case "script":
|
14242
|
-
instance$
|
14257
|
+
instance$251 = getScriptKey(props.src);
|
14243
14258
|
if (
|
14244
14259
|
(styleProps = hoistableRoot.querySelector(
|
14245
|
-
getScriptSelectorFromKey(instance$
|
14260
|
+
getScriptSelectorFromKey(instance$251)
|
14246
14261
|
))
|
14247
14262
|
)
|
14248
14263
|
return (
|
@@ -14251,7 +14266,7 @@ function acquireResource(hoistableRoot, resource, props) {
|
|
14251
14266
|
styleProps
|
14252
14267
|
);
|
14253
14268
|
instance = props;
|
14254
|
-
if ((styleProps = preloadPropsMap.get(instance$
|
14269
|
+
if ((styleProps = preloadPropsMap.get(instance$251)))
|
14255
14270
|
(instance = assign({}, props)),
|
14256
14271
|
adoptPreloadPropsForScript(instance, styleProps);
|
14257
14272
|
hoistableRoot = hoistableRoot.ownerDocument || hoistableRoot;
|
@@ -15270,16 +15285,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
|
15270
15285
|
0 === i && attemptExplicitHydrationTarget(target);
|
15271
15286
|
}
|
15272
15287
|
};
|
15273
|
-
var isomorphicReactPackageVersion$jscomp$
|
15288
|
+
var isomorphicReactPackageVersion$jscomp$inline_1772 = React.version;
|
15274
15289
|
if (
|
15275
|
-
"19.2.0-canary-
|
15276
|
-
isomorphicReactPackageVersion$jscomp$
|
15290
|
+
"19.2.0-canary-6a7650c7-20250405" !==
|
15291
|
+
isomorphicReactPackageVersion$jscomp$inline_1772
|
15277
15292
|
)
|
15278
15293
|
throw Error(
|
15279
15294
|
formatProdErrorMessage(
|
15280
15295
|
527,
|
15281
|
-
isomorphicReactPackageVersion$jscomp$
|
15282
|
-
"19.2.0-canary-
|
15296
|
+
isomorphicReactPackageVersion$jscomp$inline_1772,
|
15297
|
+
"19.2.0-canary-6a7650c7-20250405"
|
15283
15298
|
)
|
15284
15299
|
);
|
15285
15300
|
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
@@ -15299,24 +15314,24 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
15299
15314
|
null === componentOrElement ? null : componentOrElement.stateNode;
|
15300
15315
|
return componentOrElement;
|
15301
15316
|
};
|
15302
|
-
var internals$jscomp$
|
15317
|
+
var internals$jscomp$inline_2240 = {
|
15303
15318
|
bundleType: 0,
|
15304
|
-
version: "19.2.0-canary-
|
15319
|
+
version: "19.2.0-canary-6a7650c7-20250405",
|
15305
15320
|
rendererPackageName: "react-dom",
|
15306
15321
|
currentDispatcherRef: ReactSharedInternals,
|
15307
|
-
reconcilerVersion: "19.2.0-canary-
|
15322
|
+
reconcilerVersion: "19.2.0-canary-6a7650c7-20250405"
|
15308
15323
|
};
|
15309
15324
|
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
15310
|
-
var hook$jscomp$
|
15325
|
+
var hook$jscomp$inline_2241 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
15311
15326
|
if (
|
15312
|
-
!hook$jscomp$
|
15313
|
-
hook$jscomp$
|
15327
|
+
!hook$jscomp$inline_2241.isDisabled &&
|
15328
|
+
hook$jscomp$inline_2241.supportsFiber
|
15314
15329
|
)
|
15315
15330
|
try {
|
15316
|
-
(rendererID = hook$jscomp$
|
15317
|
-
internals$jscomp$
|
15331
|
+
(rendererID = hook$jscomp$inline_2241.inject(
|
15332
|
+
internals$jscomp$inline_2240
|
15318
15333
|
)),
|
15319
|
-
(injectedHook = hook$jscomp$
|
15334
|
+
(injectedHook = hook$jscomp$inline_2241);
|
15320
15335
|
} catch (err) {}
|
15321
15336
|
}
|
15322
15337
|
exports.createRoot = function (container, options) {
|
@@ -15408,4 +15423,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
|
|
15408
15423
|
listenToAllSupportedEvents(container);
|
15409
15424
|
return new ReactDOMHydrationRoot(initialChildren);
|
15410
15425
|
};
|
15411
|
-
exports.version = "19.2.0-canary-
|
15426
|
+
exports.version = "19.2.0-canary-6a7650c7-20250405";
|