react-dom 19.2.0-canary-462d08f9-20250517 → 19.2.0-canary-23884812-20250520
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 +73 -56
- package/cjs/react-dom-client.production.js +33 -32
- package/cjs/react-dom-profiling.development.js +73 -56
- package/cjs/react-dom-profiling.profiling.js +33 -32
- package/cjs/react-dom-server-legacy.browser.development.js +593 -251
- package/cjs/react-dom-server-legacy.browser.production.js +469 -182
- package/cjs/react-dom-server-legacy.node.development.js +593 -251
- package/cjs/react-dom-server-legacy.node.production.js +469 -182
- package/cjs/react-dom-server.browser.development.js +579 -220
- package/cjs/react-dom-server.browser.production.js +441 -133
- package/cjs/react-dom-server.bun.development.js +587 -224
- package/cjs/react-dom-server.bun.production.js +465 -142
- package/cjs/react-dom-server.edge.development.js +579 -220
- package/cjs/react-dom-server.edge.production.js +441 -133
- package/cjs/react-dom-server.node.development.js +579 -217
- package/cjs/react-dom-server.node.production.js +441 -133
- 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
@@ -6208,6 +6208,20 @@
|
|
6208
6208
|
}
|
6209
6209
|
};
|
6210
6210
|
}
|
6211
|
+
function validateSuspenseListNestedChild(childSlot, index) {
|
6212
|
+
var isAnArray = isArrayImpl(childSlot);
|
6213
|
+
childSlot = !isAnArray && "function" === typeof getIteratorFn(childSlot);
|
6214
|
+
return isAnArray || childSlot
|
6215
|
+
? ((isAnArray = isAnArray ? "array" : "iterable"),
|
6216
|
+
console.error(
|
6217
|
+
"A nested %s was passed to row #%s in <SuspenseList />. Wrap it in an additional SuspenseList to configure its revealOrder: <SuspenseList revealOrder=...> ... <SuspenseList revealOrder=...>{%s}</SuspenseList> ... </SuspenseList>",
|
6218
|
+
isAnArray,
|
6219
|
+
index,
|
6220
|
+
isAnArray
|
6221
|
+
),
|
6222
|
+
!1)
|
6223
|
+
: !0;
|
6224
|
+
}
|
6211
6225
|
function initializeUpdateQueue(fiber) {
|
6212
6226
|
fiber.updateQueue = {
|
6213
6227
|
baseState: fiber.memoizedState,
|
@@ -10080,20 +10094,6 @@
|
|
10080
10094
|
propagationRoot
|
10081
10095
|
);
|
10082
10096
|
}
|
10083
|
-
function validateSuspenseListNestedChild(childSlot, index) {
|
10084
|
-
var isAnArray = isArrayImpl(childSlot);
|
10085
|
-
childSlot = !isAnArray && "function" === typeof getIteratorFn(childSlot);
|
10086
|
-
return isAnArray || childSlot
|
10087
|
-
? ((isAnArray = isAnArray ? "array" : "iterable"),
|
10088
|
-
console.error(
|
10089
|
-
"A nested %s was passed to row #%s in <SuspenseList />. Wrap it in an additional SuspenseList to configure its revealOrder: <SuspenseList revealOrder=...> ... <SuspenseList revealOrder=...>{%s}</SuspenseList> ... </SuspenseList>",
|
10090
|
-
isAnArray,
|
10091
|
-
index,
|
10092
|
-
isAnArray
|
10093
|
-
),
|
10094
|
-
!1)
|
10095
|
-
: !0;
|
10096
|
-
}
|
10097
10097
|
function initSuspenseListRenderState(
|
10098
10098
|
workInProgress,
|
10099
10099
|
isBackwards,
|
@@ -10123,6 +10123,15 @@
|
|
10123
10123
|
revealOrder = nextProps.revealOrder,
|
10124
10124
|
tailMode = nextProps.tail;
|
10125
10125
|
nextProps = nextProps.children;
|
10126
|
+
var suspenseContext = suspenseStackCursor.current,
|
10127
|
+
shouldForceFallback = 0 !== (suspenseContext & ForceSuspenseFallback);
|
10128
|
+
shouldForceFallback
|
10129
|
+
? ((suspenseContext =
|
10130
|
+
(suspenseContext & SubtreeSuspenseContextMask) |
|
10131
|
+
ForceSuspenseFallback),
|
10132
|
+
(workInProgress.flags |= 128))
|
10133
|
+
: (suspenseContext &= SubtreeSuspenseContextMask);
|
10134
|
+
push(suspenseStackCursor, suspenseContext, workInProgress);
|
10126
10135
|
if (
|
10127
10136
|
void 0 !== revealOrder &&
|
10128
10137
|
"forwards" !== revealOrder &&
|
@@ -10185,12 +10194,29 @@
|
|
10185
10194
|
!1 !== nextProps
|
10186
10195
|
)
|
10187
10196
|
if (isArrayImpl(nextProps))
|
10188
|
-
for (
|
10189
|
-
|
10197
|
+
for (
|
10198
|
+
suspenseContext = 0;
|
10199
|
+
suspenseContext < nextProps.length;
|
10200
|
+
suspenseContext++
|
10201
|
+
) {
|
10202
|
+
if (
|
10203
|
+
!validateSuspenseListNestedChild(
|
10204
|
+
nextProps[suspenseContext],
|
10205
|
+
suspenseContext
|
10206
|
+
)
|
10207
|
+
)
|
10208
|
+
break a;
|
10190
10209
|
}
|
10191
|
-
else if (
|
10192
|
-
|
10193
|
-
|
10210
|
+
else if (
|
10211
|
+
((suspenseContext = getIteratorFn(nextProps)),
|
10212
|
+
"function" === typeof suspenseContext)
|
10213
|
+
) {
|
10214
|
+
if ((suspenseContext = suspenseContext.call(nextProps)))
|
10215
|
+
for (
|
10216
|
+
var step = suspenseContext.next(), _i = 0;
|
10217
|
+
!step.done;
|
10218
|
+
step = suspenseContext.next()
|
10219
|
+
) {
|
10194
10220
|
if (!validateSuspenseListNestedChild(step.value, _i)) break a;
|
10195
10221
|
_i++;
|
10196
10222
|
}
|
@@ -10200,40 +10226,31 @@
|
|
10200
10226
|
revealOrder
|
10201
10227
|
);
|
10202
10228
|
reconcileChildren(current, workInProgress, nextProps, renderLanes);
|
10203
|
-
|
10204
|
-
|
10205
|
-
|
10206
|
-
|
10207
|
-
|
10208
|
-
|
10209
|
-
|
10210
|
-
|
10211
|
-
if (13 === current.tag)
|
10212
|
-
null !== current.memoizedState &&
|
10213
|
-
scheduleSuspenseWorkOnFiber(
|
10214
|
-
current,
|
10215
|
-
renderLanes,
|
10216
|
-
workInProgress
|
10217
|
-
);
|
10218
|
-
else if (19 === current.tag)
|
10229
|
+
if (
|
10230
|
+
!shouldForceFallback &&
|
10231
|
+
null !== current &&
|
10232
|
+
0 !== (current.flags & 128)
|
10233
|
+
)
|
10234
|
+
a: for (current = workInProgress.child; null !== current; ) {
|
10235
|
+
if (13 === current.tag)
|
10236
|
+
null !== current.memoizedState &&
|
10219
10237
|
scheduleSuspenseWorkOnFiber(current, renderLanes, workInProgress);
|
10220
|
-
|
10221
|
-
|
10222
|
-
|
10223
|
-
|
10224
|
-
|
10225
|
-
|
10226
|
-
for (; null === current.sibling; ) {
|
10227
|
-
if (null === current.return || current.return === workInProgress)
|
10228
|
-
break a;
|
10229
|
-
current = current.return;
|
10230
|
-
}
|
10231
|
-
current.sibling.return = current.return;
|
10232
|
-
current = current.sibling;
|
10238
|
+
else if (19 === current.tag)
|
10239
|
+
scheduleSuspenseWorkOnFiber(current, renderLanes, workInProgress);
|
10240
|
+
else if (null !== current.child) {
|
10241
|
+
current.child.return = current;
|
10242
|
+
current = current.child;
|
10243
|
+
continue;
|
10233
10244
|
}
|
10234
|
-
|
10235
|
-
|
10236
|
-
|
10245
|
+
if (current === workInProgress) break a;
|
10246
|
+
for (; null === current.sibling; ) {
|
10247
|
+
if (null === current.return || current.return === workInProgress)
|
10248
|
+
break a;
|
10249
|
+
current = current.return;
|
10250
|
+
}
|
10251
|
+
current.sibling.return = current.return;
|
10252
|
+
current = current.sibling;
|
10253
|
+
}
|
10237
10254
|
switch (revealOrder) {
|
10238
10255
|
case "forwards":
|
10239
10256
|
renderLanes = workInProgress.child;
|
@@ -25432,11 +25449,11 @@
|
|
25432
25449
|
};
|
25433
25450
|
(function () {
|
25434
25451
|
var isomorphicReactPackageVersion = React.version;
|
25435
|
-
if ("19.2.0-canary-
|
25452
|
+
if ("19.2.0-canary-23884812-20250520" !== isomorphicReactPackageVersion)
|
25436
25453
|
throw Error(
|
25437
25454
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
25438
25455
|
(isomorphicReactPackageVersion +
|
25439
|
-
"\n - react-dom: 19.2.0-canary-
|
25456
|
+
"\n - react-dom: 19.2.0-canary-23884812-20250520\nLearn more: https://react.dev/warnings/version-mismatch")
|
25440
25457
|
);
|
25441
25458
|
})();
|
25442
25459
|
("function" === typeof Map &&
|
@@ -25473,10 +25490,10 @@
|
|
25473
25490
|
!(function () {
|
25474
25491
|
var internals = {
|
25475
25492
|
bundleType: 1,
|
25476
|
-
version: "19.2.0-canary-
|
25493
|
+
version: "19.2.0-canary-23884812-20250520",
|
25477
25494
|
rendererPackageName: "react-dom",
|
25478
25495
|
currentDispatcherRef: ReactSharedInternals,
|
25479
|
-
reconcilerVersion: "19.2.0-canary-
|
25496
|
+
reconcilerVersion: "19.2.0-canary-23884812-20250520"
|
25480
25497
|
};
|
25481
25498
|
internals.overrideHookState = overrideHookState;
|
25482
25499
|
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
@@ -25614,7 +25631,7 @@
|
|
25614
25631
|
listenToAllSupportedEvents(container);
|
25615
25632
|
return new ReactDOMHydrationRoot(initialChildren);
|
25616
25633
|
};
|
25617
|
-
exports.version = "19.2.0-canary-
|
25634
|
+
exports.version = "19.2.0-canary-23884812-20250520";
|
25618
25635
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
25619
25636
|
"function" ===
|
25620
25637
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
@@ -6987,35 +6987,36 @@ function updateSuspenseListComponent(current, workInProgress, renderLanes) {
|
|
6987
6987
|
var nextProps = workInProgress.pendingProps,
|
6988
6988
|
revealOrder = nextProps.revealOrder,
|
6989
6989
|
tailMode = nextProps.tail;
|
6990
|
-
|
6991
|
-
|
6992
|
-
|
6993
|
-
|
6994
|
-
|
6995
|
-
|
6996
|
-
|
6997
|
-
|
6998
|
-
|
6999
|
-
|
7000
|
-
|
6990
|
+
nextProps = nextProps.children;
|
6991
|
+
var suspenseContext = suspenseStackCursor.current,
|
6992
|
+
shouldForceFallback = 0 !== (suspenseContext & 2);
|
6993
|
+
shouldForceFallback
|
6994
|
+
? ((suspenseContext = (suspenseContext & 1) | 2),
|
6995
|
+
(workInProgress.flags |= 128))
|
6996
|
+
: (suspenseContext &= 1);
|
6997
|
+
push(suspenseStackCursor, suspenseContext);
|
6998
|
+
reconcileChildren(current, workInProgress, nextProps, renderLanes);
|
6999
|
+
if (!shouldForceFallback && null !== current && 0 !== (current.flags & 128))
|
7000
|
+
a: for (current = workInProgress.child; null !== current; ) {
|
7001
|
+
if (13 === current.tag)
|
7002
|
+
null !== current.memoizedState &&
|
7001
7003
|
scheduleSuspenseWorkOnFiber(current, renderLanes, workInProgress);
|
7002
|
-
|
7003
|
-
|
7004
|
-
|
7005
|
-
|
7006
|
-
|
7007
|
-
|
7008
|
-
for (; null === current.sibling; ) {
|
7009
|
-
if (null === current.return || current.return === workInProgress)
|
7010
|
-
break a;
|
7011
|
-
current = current.return;
|
7012
|
-
}
|
7013
|
-
current.sibling.return = current.return;
|
7014
|
-
current = current.sibling;
|
7004
|
+
else if (19 === current.tag)
|
7005
|
+
scheduleSuspenseWorkOnFiber(current, renderLanes, workInProgress);
|
7006
|
+
else if (null !== current.child) {
|
7007
|
+
current.child.return = current;
|
7008
|
+
current = current.child;
|
7009
|
+
continue;
|
7015
7010
|
}
|
7016
|
-
|
7017
|
-
|
7018
|
-
|
7011
|
+
if (current === workInProgress) break a;
|
7012
|
+
for (; null === current.sibling; ) {
|
7013
|
+
if (null === current.return || current.return === workInProgress)
|
7014
|
+
break a;
|
7015
|
+
current = current.return;
|
7016
|
+
}
|
7017
|
+
current.sibling.return = current.return;
|
7018
|
+
current = current.sibling;
|
7019
|
+
}
|
7019
7020
|
switch (revealOrder) {
|
7020
7021
|
case "forwards":
|
7021
7022
|
renderLanes = workInProgress.child;
|
@@ -15685,14 +15686,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
|
15685
15686
|
};
|
15686
15687
|
var isomorphicReactPackageVersion$jscomp$inline_1851 = React.version;
|
15687
15688
|
if (
|
15688
|
-
"19.2.0-canary-
|
15689
|
+
"19.2.0-canary-23884812-20250520" !==
|
15689
15690
|
isomorphicReactPackageVersion$jscomp$inline_1851
|
15690
15691
|
)
|
15691
15692
|
throw Error(
|
15692
15693
|
formatProdErrorMessage(
|
15693
15694
|
527,
|
15694
15695
|
isomorphicReactPackageVersion$jscomp$inline_1851,
|
15695
|
-
"19.2.0-canary-
|
15696
|
+
"19.2.0-canary-23884812-20250520"
|
15696
15697
|
)
|
15697
15698
|
);
|
15698
15699
|
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
@@ -15714,10 +15715,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
15714
15715
|
};
|
15715
15716
|
var internals$jscomp$inline_2344 = {
|
15716
15717
|
bundleType: 0,
|
15717
|
-
version: "19.2.0-canary-
|
15718
|
+
version: "19.2.0-canary-23884812-20250520",
|
15718
15719
|
rendererPackageName: "react-dom",
|
15719
15720
|
currentDispatcherRef: ReactSharedInternals,
|
15720
|
-
reconcilerVersion: "19.2.0-canary-
|
15721
|
+
reconcilerVersion: "19.2.0-canary-23884812-20250520"
|
15721
15722
|
};
|
15722
15723
|
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
15723
15724
|
var hook$jscomp$inline_2345 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
@@ -15815,4 +15816,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
|
|
15815
15816
|
listenToAllSupportedEvents(container);
|
15816
15817
|
return new ReactDOMHydrationRoot(initialChildren);
|
15817
15818
|
};
|
15818
|
-
exports.version = "19.2.0-canary-
|
15819
|
+
exports.version = "19.2.0-canary-23884812-20250520";
|
@@ -6216,6 +6216,20 @@
|
|
6216
6216
|
}
|
6217
6217
|
};
|
6218
6218
|
}
|
6219
|
+
function validateSuspenseListNestedChild(childSlot, index) {
|
6220
|
+
var isAnArray = isArrayImpl(childSlot);
|
6221
|
+
childSlot = !isAnArray && "function" === typeof getIteratorFn(childSlot);
|
6222
|
+
return isAnArray || childSlot
|
6223
|
+
? ((isAnArray = isAnArray ? "array" : "iterable"),
|
6224
|
+
console.error(
|
6225
|
+
"A nested %s was passed to row #%s in <SuspenseList />. Wrap it in an additional SuspenseList to configure its revealOrder: <SuspenseList revealOrder=...> ... <SuspenseList revealOrder=...>{%s}</SuspenseList> ... </SuspenseList>",
|
6226
|
+
isAnArray,
|
6227
|
+
index,
|
6228
|
+
isAnArray
|
6229
|
+
),
|
6230
|
+
!1)
|
6231
|
+
: !0;
|
6232
|
+
}
|
6219
6233
|
function initializeUpdateQueue(fiber) {
|
6220
6234
|
fiber.updateQueue = {
|
6221
6235
|
baseState: fiber.memoizedState,
|
@@ -10088,20 +10102,6 @@
|
|
10088
10102
|
propagationRoot
|
10089
10103
|
);
|
10090
10104
|
}
|
10091
|
-
function validateSuspenseListNestedChild(childSlot, index) {
|
10092
|
-
var isAnArray = isArrayImpl(childSlot);
|
10093
|
-
childSlot = !isAnArray && "function" === typeof getIteratorFn(childSlot);
|
10094
|
-
return isAnArray || childSlot
|
10095
|
-
? ((isAnArray = isAnArray ? "array" : "iterable"),
|
10096
|
-
console.error(
|
10097
|
-
"A nested %s was passed to row #%s in <SuspenseList />. Wrap it in an additional SuspenseList to configure its revealOrder: <SuspenseList revealOrder=...> ... <SuspenseList revealOrder=...>{%s}</SuspenseList> ... </SuspenseList>",
|
10098
|
-
isAnArray,
|
10099
|
-
index,
|
10100
|
-
isAnArray
|
10101
|
-
),
|
10102
|
-
!1)
|
10103
|
-
: !0;
|
10104
|
-
}
|
10105
10105
|
function initSuspenseListRenderState(
|
10106
10106
|
workInProgress,
|
10107
10107
|
isBackwards,
|
@@ -10131,6 +10131,15 @@
|
|
10131
10131
|
revealOrder = nextProps.revealOrder,
|
10132
10132
|
tailMode = nextProps.tail;
|
10133
10133
|
nextProps = nextProps.children;
|
10134
|
+
var suspenseContext = suspenseStackCursor.current,
|
10135
|
+
shouldForceFallback = 0 !== (suspenseContext & ForceSuspenseFallback);
|
10136
|
+
shouldForceFallback
|
10137
|
+
? ((suspenseContext =
|
10138
|
+
(suspenseContext & SubtreeSuspenseContextMask) |
|
10139
|
+
ForceSuspenseFallback),
|
10140
|
+
(workInProgress.flags |= 128))
|
10141
|
+
: (suspenseContext &= SubtreeSuspenseContextMask);
|
10142
|
+
push(suspenseStackCursor, suspenseContext, workInProgress);
|
10134
10143
|
if (
|
10135
10144
|
void 0 !== revealOrder &&
|
10136
10145
|
"forwards" !== revealOrder &&
|
@@ -10193,12 +10202,29 @@
|
|
10193
10202
|
!1 !== nextProps
|
10194
10203
|
)
|
10195
10204
|
if (isArrayImpl(nextProps))
|
10196
|
-
for (
|
10197
|
-
|
10205
|
+
for (
|
10206
|
+
suspenseContext = 0;
|
10207
|
+
suspenseContext < nextProps.length;
|
10208
|
+
suspenseContext++
|
10209
|
+
) {
|
10210
|
+
if (
|
10211
|
+
!validateSuspenseListNestedChild(
|
10212
|
+
nextProps[suspenseContext],
|
10213
|
+
suspenseContext
|
10214
|
+
)
|
10215
|
+
)
|
10216
|
+
break a;
|
10198
10217
|
}
|
10199
|
-
else if (
|
10200
|
-
|
10201
|
-
|
10218
|
+
else if (
|
10219
|
+
((suspenseContext = getIteratorFn(nextProps)),
|
10220
|
+
"function" === typeof suspenseContext)
|
10221
|
+
) {
|
10222
|
+
if ((suspenseContext = suspenseContext.call(nextProps)))
|
10223
|
+
for (
|
10224
|
+
var step = suspenseContext.next(), _i = 0;
|
10225
|
+
!step.done;
|
10226
|
+
step = suspenseContext.next()
|
10227
|
+
) {
|
10202
10228
|
if (!validateSuspenseListNestedChild(step.value, _i)) break a;
|
10203
10229
|
_i++;
|
10204
10230
|
}
|
@@ -10208,40 +10234,31 @@
|
|
10208
10234
|
revealOrder
|
10209
10235
|
);
|
10210
10236
|
reconcileChildren(current, workInProgress, nextProps, renderLanes);
|
10211
|
-
|
10212
|
-
|
10213
|
-
|
10214
|
-
|
10215
|
-
|
10216
|
-
|
10217
|
-
|
10218
|
-
|
10219
|
-
if (13 === current.tag)
|
10220
|
-
null !== current.memoizedState &&
|
10221
|
-
scheduleSuspenseWorkOnFiber(
|
10222
|
-
current,
|
10223
|
-
renderLanes,
|
10224
|
-
workInProgress
|
10225
|
-
);
|
10226
|
-
else if (19 === current.tag)
|
10237
|
+
if (
|
10238
|
+
!shouldForceFallback &&
|
10239
|
+
null !== current &&
|
10240
|
+
0 !== (current.flags & 128)
|
10241
|
+
)
|
10242
|
+
a: for (current = workInProgress.child; null !== current; ) {
|
10243
|
+
if (13 === current.tag)
|
10244
|
+
null !== current.memoizedState &&
|
10227
10245
|
scheduleSuspenseWorkOnFiber(current, renderLanes, workInProgress);
|
10228
|
-
|
10229
|
-
|
10230
|
-
|
10231
|
-
|
10232
|
-
|
10233
|
-
|
10234
|
-
for (; null === current.sibling; ) {
|
10235
|
-
if (null === current.return || current.return === workInProgress)
|
10236
|
-
break a;
|
10237
|
-
current = current.return;
|
10238
|
-
}
|
10239
|
-
current.sibling.return = current.return;
|
10240
|
-
current = current.sibling;
|
10246
|
+
else if (19 === current.tag)
|
10247
|
+
scheduleSuspenseWorkOnFiber(current, renderLanes, workInProgress);
|
10248
|
+
else if (null !== current.child) {
|
10249
|
+
current.child.return = current;
|
10250
|
+
current = current.child;
|
10251
|
+
continue;
|
10241
10252
|
}
|
10242
|
-
|
10243
|
-
|
10244
|
-
|
10253
|
+
if (current === workInProgress) break a;
|
10254
|
+
for (; null === current.sibling; ) {
|
10255
|
+
if (null === current.return || current.return === workInProgress)
|
10256
|
+
break a;
|
10257
|
+
current = current.return;
|
10258
|
+
}
|
10259
|
+
current.sibling.return = current.return;
|
10260
|
+
current = current.sibling;
|
10261
|
+
}
|
10245
10262
|
switch (revealOrder) {
|
10246
10263
|
case "forwards":
|
10247
10264
|
renderLanes = workInProgress.child;
|
@@ -25484,11 +25501,11 @@
|
|
25484
25501
|
};
|
25485
25502
|
(function () {
|
25486
25503
|
var isomorphicReactPackageVersion = React.version;
|
25487
|
-
if ("19.2.0-canary-
|
25504
|
+
if ("19.2.0-canary-23884812-20250520" !== isomorphicReactPackageVersion)
|
25488
25505
|
throw Error(
|
25489
25506
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
25490
25507
|
(isomorphicReactPackageVersion +
|
25491
|
-
"\n - react-dom: 19.2.0-canary-
|
25508
|
+
"\n - react-dom: 19.2.0-canary-23884812-20250520\nLearn more: https://react.dev/warnings/version-mismatch")
|
25492
25509
|
);
|
25493
25510
|
})();
|
25494
25511
|
("function" === typeof Map &&
|
@@ -25525,10 +25542,10 @@
|
|
25525
25542
|
!(function () {
|
25526
25543
|
var internals = {
|
25527
25544
|
bundleType: 1,
|
25528
|
-
version: "19.2.0-canary-
|
25545
|
+
version: "19.2.0-canary-23884812-20250520",
|
25529
25546
|
rendererPackageName: "react-dom",
|
25530
25547
|
currentDispatcherRef: ReactSharedInternals,
|
25531
|
-
reconcilerVersion: "19.2.0-canary-
|
25548
|
+
reconcilerVersion: "19.2.0-canary-23884812-20250520"
|
25532
25549
|
};
|
25533
25550
|
internals.overrideHookState = overrideHookState;
|
25534
25551
|
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
@@ -25996,7 +26013,7 @@
|
|
25996
26013
|
exports.useFormStatus = function () {
|
25997
26014
|
return resolveDispatcher().useHostTransitionStatus();
|
25998
26015
|
};
|
25999
|
-
exports.version = "19.2.0-canary-
|
26016
|
+
exports.version = "19.2.0-canary-23884812-20250520";
|
26000
26017
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
26001
26018
|
"function" ===
|
26002
26019
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
@@ -7162,35 +7162,36 @@ function updateSuspenseListComponent(current, workInProgress, renderLanes) {
|
|
7162
7162
|
var nextProps = workInProgress.pendingProps,
|
7163
7163
|
revealOrder = nextProps.revealOrder,
|
7164
7164
|
tailMode = nextProps.tail;
|
7165
|
-
|
7166
|
-
|
7167
|
-
|
7168
|
-
|
7169
|
-
|
7170
|
-
|
7171
|
-
|
7172
|
-
|
7173
|
-
|
7174
|
-
|
7175
|
-
|
7165
|
+
nextProps = nextProps.children;
|
7166
|
+
var suspenseContext = suspenseStackCursor.current,
|
7167
|
+
shouldForceFallback = 0 !== (suspenseContext & 2);
|
7168
|
+
shouldForceFallback
|
7169
|
+
? ((suspenseContext = (suspenseContext & 1) | 2),
|
7170
|
+
(workInProgress.flags |= 128))
|
7171
|
+
: (suspenseContext &= 1);
|
7172
|
+
push(suspenseStackCursor, suspenseContext);
|
7173
|
+
reconcileChildren(current, workInProgress, nextProps, renderLanes);
|
7174
|
+
if (!shouldForceFallback && null !== current && 0 !== (current.flags & 128))
|
7175
|
+
a: for (current = workInProgress.child; null !== current; ) {
|
7176
|
+
if (13 === current.tag)
|
7177
|
+
null !== current.memoizedState &&
|
7176
7178
|
scheduleSuspenseWorkOnFiber(current, renderLanes, workInProgress);
|
7177
|
-
|
7178
|
-
|
7179
|
-
|
7180
|
-
|
7181
|
-
|
7182
|
-
|
7183
|
-
for (; null === current.sibling; ) {
|
7184
|
-
if (null === current.return || current.return === workInProgress)
|
7185
|
-
break a;
|
7186
|
-
current = current.return;
|
7187
|
-
}
|
7188
|
-
current.sibling.return = current.return;
|
7189
|
-
current = current.sibling;
|
7179
|
+
else if (19 === current.tag)
|
7180
|
+
scheduleSuspenseWorkOnFiber(current, renderLanes, workInProgress);
|
7181
|
+
else if (null !== current.child) {
|
7182
|
+
current.child.return = current;
|
7183
|
+
current = current.child;
|
7184
|
+
continue;
|
7190
7185
|
}
|
7191
|
-
|
7192
|
-
|
7193
|
-
|
7186
|
+
if (current === workInProgress) break a;
|
7187
|
+
for (; null === current.sibling; ) {
|
7188
|
+
if (null === current.return || current.return === workInProgress)
|
7189
|
+
break a;
|
7190
|
+
current = current.return;
|
7191
|
+
}
|
7192
|
+
current.sibling.return = current.return;
|
7193
|
+
current = current.sibling;
|
7194
|
+
}
|
7194
7195
|
switch (revealOrder) {
|
7195
7196
|
case "forwards":
|
7196
7197
|
renderLanes = workInProgress.child;
|
@@ -16386,14 +16387,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
|
16386
16387
|
};
|
16387
16388
|
var isomorphicReactPackageVersion$jscomp$inline_1955 = React.version;
|
16388
16389
|
if (
|
16389
|
-
"19.2.0-canary-
|
16390
|
+
"19.2.0-canary-23884812-20250520" !==
|
16390
16391
|
isomorphicReactPackageVersion$jscomp$inline_1955
|
16391
16392
|
)
|
16392
16393
|
throw Error(
|
16393
16394
|
formatProdErrorMessage(
|
16394
16395
|
527,
|
16395
16396
|
isomorphicReactPackageVersion$jscomp$inline_1955,
|
16396
|
-
"19.2.0-canary-
|
16397
|
+
"19.2.0-canary-23884812-20250520"
|
16397
16398
|
)
|
16398
16399
|
);
|
16399
16400
|
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
@@ -16415,10 +16416,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
16415
16416
|
};
|
16416
16417
|
var internals$jscomp$inline_1962 = {
|
16417
16418
|
bundleType: 0,
|
16418
|
-
version: "19.2.0-canary-
|
16419
|
+
version: "19.2.0-canary-23884812-20250520",
|
16419
16420
|
rendererPackageName: "react-dom",
|
16420
16421
|
currentDispatcherRef: ReactSharedInternals,
|
16421
|
-
reconcilerVersion: "19.2.0-canary-
|
16422
|
+
reconcilerVersion: "19.2.0-canary-23884812-20250520",
|
16422
16423
|
getLaneLabelMap: function () {
|
16423
16424
|
for (
|
16424
16425
|
var map = new Map(), lane = 1, index$293 = 0;
|
@@ -16691,7 +16692,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
|
16691
16692
|
exports.useFormStatus = function () {
|
16692
16693
|
return ReactSharedInternals.H.useHostTransitionStatus();
|
16693
16694
|
};
|
16694
|
-
exports.version = "19.2.0-canary-
|
16695
|
+
exports.version = "19.2.0-canary-23884812-20250520";
|
16695
16696
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
16696
16697
|
"function" ===
|
16697
16698
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|