react-dom 19.2.0-canary-14094f80-20250529 → 19.2.0-canary-1ae0a845-20250603
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 +8 -8
- package/cjs/react-dom-client.production.js +10 -10
- package/cjs/react-dom-profiling.development.js +8 -8
- package/cjs/react-dom-profiling.profiling.js +10 -10
- package/cjs/react-dom-server-legacy.browser.development.js +16 -6
- package/cjs/react-dom-server-legacy.browser.production.js +5 -5
- package/cjs/react-dom-server-legacy.node.development.js +16 -6
- package/cjs/react-dom-server-legacy.node.production.js +5 -5
- package/cjs/react-dom-server.browser.development.js +19 -9
- package/cjs/react-dom-server.browser.production.js +8 -10
- package/cjs/react-dom-server.bun.development.js +20 -11
- package/cjs/react-dom-server.bun.production.js +7 -7
- package/cjs/react-dom-server.edge.development.js +19 -9
- package/cjs/react-dom-server.edge.production.js +8 -10
- package/cjs/react-dom-server.node.development.js +19 -9
- package/cjs/react-dom-server.node.production.js +8 -8
- 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
@@ -8086,14 +8086,14 @@
|
|
8086
8086
|
(
|
8087
8087
|
idWithLeadingBit & ~(1 << (32 - clz32(idWithLeadingBit) - 1))
|
8088
8088
|
).toString(32) + treeId;
|
8089
|
-
identifierPrefix = "
|
8089
|
+
identifierPrefix = "_" + identifierPrefix + "R_" + treeId;
|
8090
8090
|
treeId = localIdCounter++;
|
8091
8091
|
0 < treeId && (identifierPrefix += "H" + treeId.toString(32));
|
8092
|
-
identifierPrefix += "
|
8092
|
+
identifierPrefix += "_";
|
8093
8093
|
} else
|
8094
8094
|
(treeId = globalClientIdCounter++),
|
8095
8095
|
(identifierPrefix =
|
8096
|
-
"
|
8096
|
+
"_" + identifierPrefix + "r_" + treeId.toString(32) + "_");
|
8097
8097
|
return (hook.memoizedState = identifierPrefix);
|
8098
8098
|
}
|
8099
8099
|
function mountRefresh() {
|
@@ -25449,11 +25449,11 @@
|
|
25449
25449
|
};
|
25450
25450
|
(function () {
|
25451
25451
|
var isomorphicReactPackageVersion = React.version;
|
25452
|
-
if ("19.2.0-canary-
|
25452
|
+
if ("19.2.0-canary-1ae0a845-20250603" !== isomorphicReactPackageVersion)
|
25453
25453
|
throw Error(
|
25454
25454
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
25455
25455
|
(isomorphicReactPackageVersion +
|
25456
|
-
"\n - react-dom: 19.2.0-canary-
|
25456
|
+
"\n - react-dom: 19.2.0-canary-1ae0a845-20250603\nLearn more: https://react.dev/warnings/version-mismatch")
|
25457
25457
|
);
|
25458
25458
|
})();
|
25459
25459
|
("function" === typeof Map &&
|
@@ -25490,10 +25490,10 @@
|
|
25490
25490
|
!(function () {
|
25491
25491
|
var internals = {
|
25492
25492
|
bundleType: 1,
|
25493
|
-
version: "19.2.0-canary-
|
25493
|
+
version: "19.2.0-canary-1ae0a845-20250603",
|
25494
25494
|
rendererPackageName: "react-dom",
|
25495
25495
|
currentDispatcherRef: ReactSharedInternals,
|
25496
|
-
reconcilerVersion: "19.2.0-canary-
|
25496
|
+
reconcilerVersion: "19.2.0-canary-1ae0a845-20250603"
|
25497
25497
|
};
|
25498
25498
|
internals.overrideHookState = overrideHookState;
|
25499
25499
|
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
@@ -25631,7 +25631,7 @@
|
|
25631
25631
|
listenToAllSupportedEvents(container);
|
25632
25632
|
return new ReactDOMHydrationRoot(initialChildren);
|
25633
25633
|
};
|
25634
|
-
exports.version = "19.2.0-canary-
|
25634
|
+
exports.version = "19.2.0-canary-1ae0a845-20250603";
|
25635
25635
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
25636
25636
|
"function" ===
|
25637
25637
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
@@ -5589,19 +5589,19 @@ var ContextOnlyDispatcher = {
|
|
5589
5589
|
idWithLeadingBit & ~(1 << (32 - clz32(idWithLeadingBit) - 1))
|
5590
5590
|
).toString(32) + JSCompiler_inline_result;
|
5591
5591
|
identifierPrefix =
|
5592
|
-
"
|
5592
|
+
"_" + identifierPrefix + "R_" + JSCompiler_inline_result;
|
5593
5593
|
JSCompiler_inline_result = localIdCounter++;
|
5594
5594
|
0 < JSCompiler_inline_result &&
|
5595
5595
|
(identifierPrefix += "H" + JSCompiler_inline_result.toString(32));
|
5596
|
-
identifierPrefix += "
|
5596
|
+
identifierPrefix += "_";
|
5597
5597
|
} else
|
5598
5598
|
(JSCompiler_inline_result = globalClientIdCounter++),
|
5599
5599
|
(identifierPrefix =
|
5600
|
-
"
|
5600
|
+
"_" +
|
5601
5601
|
identifierPrefix +
|
5602
|
-
"
|
5602
|
+
"r_" +
|
5603
5603
|
JSCompiler_inline_result.toString(32) +
|
5604
|
-
"
|
5604
|
+
"_");
|
5605
5605
|
return (hook.memoizedState = identifierPrefix);
|
5606
5606
|
},
|
5607
5607
|
useHostTransitionStatus: useHostTransitionStatus,
|
@@ -15686,14 +15686,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
|
15686
15686
|
};
|
15687
15687
|
var isomorphicReactPackageVersion$jscomp$inline_1851 = React.version;
|
15688
15688
|
if (
|
15689
|
-
"19.2.0-canary-
|
15689
|
+
"19.2.0-canary-1ae0a845-20250603" !==
|
15690
15690
|
isomorphicReactPackageVersion$jscomp$inline_1851
|
15691
15691
|
)
|
15692
15692
|
throw Error(
|
15693
15693
|
formatProdErrorMessage(
|
15694
15694
|
527,
|
15695
15695
|
isomorphicReactPackageVersion$jscomp$inline_1851,
|
15696
|
-
"19.2.0-canary-
|
15696
|
+
"19.2.0-canary-1ae0a845-20250603"
|
15697
15697
|
)
|
15698
15698
|
);
|
15699
15699
|
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
@@ -15715,10 +15715,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
15715
15715
|
};
|
15716
15716
|
var internals$jscomp$inline_2344 = {
|
15717
15717
|
bundleType: 0,
|
15718
|
-
version: "19.2.0-canary-
|
15718
|
+
version: "19.2.0-canary-1ae0a845-20250603",
|
15719
15719
|
rendererPackageName: "react-dom",
|
15720
15720
|
currentDispatcherRef: ReactSharedInternals,
|
15721
|
-
reconcilerVersion: "19.2.0-canary-
|
15721
|
+
reconcilerVersion: "19.2.0-canary-1ae0a845-20250603"
|
15722
15722
|
};
|
15723
15723
|
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
15724
15724
|
var hook$jscomp$inline_2345 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
@@ -15816,4 +15816,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
|
|
15816
15816
|
listenToAllSupportedEvents(container);
|
15817
15817
|
return new ReactDOMHydrationRoot(initialChildren);
|
15818
15818
|
};
|
15819
|
-
exports.version = "19.2.0-canary-
|
15819
|
+
exports.version = "19.2.0-canary-1ae0a845-20250603";
|
@@ -8094,14 +8094,14 @@
|
|
8094
8094
|
(
|
8095
8095
|
idWithLeadingBit & ~(1 << (32 - clz32(idWithLeadingBit) - 1))
|
8096
8096
|
).toString(32) + treeId;
|
8097
|
-
identifierPrefix = "
|
8097
|
+
identifierPrefix = "_" + identifierPrefix + "R_" + treeId;
|
8098
8098
|
treeId = localIdCounter++;
|
8099
8099
|
0 < treeId && (identifierPrefix += "H" + treeId.toString(32));
|
8100
|
-
identifierPrefix += "
|
8100
|
+
identifierPrefix += "_";
|
8101
8101
|
} else
|
8102
8102
|
(treeId = globalClientIdCounter++),
|
8103
8103
|
(identifierPrefix =
|
8104
|
-
"
|
8104
|
+
"_" + identifierPrefix + "r_" + treeId.toString(32) + "_");
|
8105
8105
|
return (hook.memoizedState = identifierPrefix);
|
8106
8106
|
}
|
8107
8107
|
function mountRefresh() {
|
@@ -25501,11 +25501,11 @@
|
|
25501
25501
|
};
|
25502
25502
|
(function () {
|
25503
25503
|
var isomorphicReactPackageVersion = React.version;
|
25504
|
-
if ("19.2.0-canary-
|
25504
|
+
if ("19.2.0-canary-1ae0a845-20250603" !== isomorphicReactPackageVersion)
|
25505
25505
|
throw Error(
|
25506
25506
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
25507
25507
|
(isomorphicReactPackageVersion +
|
25508
|
-
"\n - react-dom: 19.2.0-canary-
|
25508
|
+
"\n - react-dom: 19.2.0-canary-1ae0a845-20250603\nLearn more: https://react.dev/warnings/version-mismatch")
|
25509
25509
|
);
|
25510
25510
|
})();
|
25511
25511
|
("function" === typeof Map &&
|
@@ -25542,10 +25542,10 @@
|
|
25542
25542
|
!(function () {
|
25543
25543
|
var internals = {
|
25544
25544
|
bundleType: 1,
|
25545
|
-
version: "19.2.0-canary-
|
25545
|
+
version: "19.2.0-canary-1ae0a845-20250603",
|
25546
25546
|
rendererPackageName: "react-dom",
|
25547
25547
|
currentDispatcherRef: ReactSharedInternals,
|
25548
|
-
reconcilerVersion: "19.2.0-canary-
|
25548
|
+
reconcilerVersion: "19.2.0-canary-1ae0a845-20250603"
|
25549
25549
|
};
|
25550
25550
|
internals.overrideHookState = overrideHookState;
|
25551
25551
|
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
@@ -26013,7 +26013,7 @@
|
|
26013
26013
|
exports.useFormStatus = function () {
|
26014
26014
|
return resolveDispatcher().useHostTransitionStatus();
|
26015
26015
|
};
|
26016
|
-
exports.version = "19.2.0-canary-
|
26016
|
+
exports.version = "19.2.0-canary-1ae0a845-20250603";
|
26017
26017
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
26018
26018
|
"function" ===
|
26019
26019
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
@@ -5751,19 +5751,19 @@ var ContextOnlyDispatcher = {
|
|
5751
5751
|
idWithLeadingBit & ~(1 << (32 - clz32(idWithLeadingBit) - 1))
|
5752
5752
|
).toString(32) + JSCompiler_inline_result;
|
5753
5753
|
identifierPrefix =
|
5754
|
-
"
|
5754
|
+
"_" + identifierPrefix + "R_" + JSCompiler_inline_result;
|
5755
5755
|
JSCompiler_inline_result = localIdCounter++;
|
5756
5756
|
0 < JSCompiler_inline_result &&
|
5757
5757
|
(identifierPrefix += "H" + JSCompiler_inline_result.toString(32));
|
5758
|
-
identifierPrefix += "
|
5758
|
+
identifierPrefix += "_";
|
5759
5759
|
} else
|
5760
5760
|
(JSCompiler_inline_result = globalClientIdCounter++),
|
5761
5761
|
(identifierPrefix =
|
5762
|
-
"
|
5762
|
+
"_" +
|
5763
5763
|
identifierPrefix +
|
5764
|
-
"
|
5764
|
+
"r_" +
|
5765
5765
|
JSCompiler_inline_result.toString(32) +
|
5766
|
-
"
|
5766
|
+
"_");
|
5767
5767
|
return (hook.memoizedState = identifierPrefix);
|
5768
5768
|
},
|
5769
5769
|
useHostTransitionStatus: useHostTransitionStatus,
|
@@ -16387,14 +16387,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
|
16387
16387
|
};
|
16388
16388
|
var isomorphicReactPackageVersion$jscomp$inline_1955 = React.version;
|
16389
16389
|
if (
|
16390
|
-
"19.2.0-canary-
|
16390
|
+
"19.2.0-canary-1ae0a845-20250603" !==
|
16391
16391
|
isomorphicReactPackageVersion$jscomp$inline_1955
|
16392
16392
|
)
|
16393
16393
|
throw Error(
|
16394
16394
|
formatProdErrorMessage(
|
16395
16395
|
527,
|
16396
16396
|
isomorphicReactPackageVersion$jscomp$inline_1955,
|
16397
|
-
"19.2.0-canary-
|
16397
|
+
"19.2.0-canary-1ae0a845-20250603"
|
16398
16398
|
)
|
16399
16399
|
);
|
16400
16400
|
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
@@ -16416,10 +16416,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
16416
16416
|
};
|
16417
16417
|
var internals$jscomp$inline_1962 = {
|
16418
16418
|
bundleType: 0,
|
16419
|
-
version: "19.2.0-canary-
|
16419
|
+
version: "19.2.0-canary-1ae0a845-20250603",
|
16420
16420
|
rendererPackageName: "react-dom",
|
16421
16421
|
currentDispatcherRef: ReactSharedInternals,
|
16422
|
-
reconcilerVersion: "19.2.0-canary-
|
16422
|
+
reconcilerVersion: "19.2.0-canary-1ae0a845-20250603",
|
16423
16423
|
getLaneLabelMap: function () {
|
16424
16424
|
for (
|
16425
16425
|
var map = new Map(), lane = 1, index$293 = 0;
|
@@ -16692,7 +16692,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
|
16692
16692
|
exports.useFormStatus = function () {
|
16693
16693
|
return ReactSharedInternals.H.useHostTransitionStatus();
|
16694
16694
|
};
|
16695
|
-
exports.version = "19.2.0-canary-
|
16695
|
+
exports.version = "19.2.0-canary-1ae0a845-20250603";
|
16696
16696
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
16697
16697
|
"function" ===
|
16698
16698
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
@@ -3163,7 +3163,7 @@
|
|
3163
3163
|
((resumableState.instructions |= SentCompletedShellId),
|
3164
3164
|
target.push(
|
3165
3165
|
completedShellIdAttributeStart,
|
3166
|
-
escapeTextForBrowser("
|
3166
|
+
escapeTextForBrowser("_" + resumableState.idPrefix + "R_"),
|
3167
3167
|
attributeEnd
|
3168
3168
|
));
|
3169
3169
|
}
|
@@ -7829,7 +7829,7 @@
|
|
7829
7829
|
NothingSent
|
7830
7830
|
) {
|
7831
7831
|
resumableState.instructions |= SentCompletedShellId;
|
7832
|
-
var shellId = "
|
7832
|
+
var shellId = "_" + resumableState.idPrefix + "R_";
|
7833
7833
|
destination.push(completedShellIdAttributeStart);
|
7834
7834
|
var chunk$jscomp$1 = escapeTextForBrowser(shellId);
|
7835
7835
|
destination.push(chunk$jscomp$1);
|
@@ -8088,7 +8088,17 @@
|
|
8088
8088
|
: reason;
|
8089
8089
|
request.fatalError = error;
|
8090
8090
|
abortableTasks.forEach(function (task) {
|
8091
|
-
|
8091
|
+
var prevTaskInDEV = currentTaskInDEV,
|
8092
|
+
prevGetCurrentStackImpl = ReactSharedInternals.getCurrentStack;
|
8093
|
+
currentTaskInDEV = task;
|
8094
|
+
ReactSharedInternals.getCurrentStack = getCurrentStackInDEV;
|
8095
|
+
try {
|
8096
|
+
abortTask(task, request, error);
|
8097
|
+
} finally {
|
8098
|
+
(currentTaskInDEV = prevTaskInDEV),
|
8099
|
+
(ReactSharedInternals.getCurrentStack =
|
8100
|
+
prevGetCurrentStackImpl);
|
8101
|
+
}
|
8092
8102
|
});
|
8093
8103
|
abortableTasks.clear();
|
8094
8104
|
}
|
@@ -9497,9 +9507,9 @@
|
|
9497
9507
|
"Invalid hook call. Hooks can only be called inside of the body of a function component."
|
9498
9508
|
);
|
9499
9509
|
overflow = localIdCounter++;
|
9500
|
-
treeId = "
|
9510
|
+
treeId = "_" + resumableState.idPrefix + "R_" + treeId;
|
9501
9511
|
0 < overflow && (treeId += "H" + overflow.toString(32));
|
9502
|
-
return treeId + "
|
9512
|
+
return treeId + "_";
|
9503
9513
|
},
|
9504
9514
|
useSyncExternalStore: function (
|
9505
9515
|
subscribe,
|
@@ -9626,5 +9636,5 @@
|
|
9626
9636
|
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
|
9627
9637
|
);
|
9628
9638
|
};
|
9629
|
-
exports.version = "19.2.0-canary-
|
9639
|
+
exports.version = "19.2.0-canary-1ae0a845-20250603";
|
9630
9640
|
})();
|
@@ -2199,7 +2199,7 @@ function pushCompletedShellIdAttribute(target, resumableState) {
|
|
2199
2199
|
((resumableState.instructions |= 32),
|
2200
2200
|
target.push(
|
2201
2201
|
' id="',
|
2202
|
-
escapeTextForBrowser("
|
2202
|
+
escapeTextForBrowser("_" + resumableState.idPrefix + "R_"),
|
2203
2203
|
'"'
|
2204
2204
|
));
|
2205
2205
|
}
|
@@ -3368,9 +3368,9 @@ var HooksDispatcher = {
|
|
3368
3368
|
if (null === resumableState) throw Error(formatProdErrorMessage(404));
|
3369
3369
|
overflow = localIdCounter++;
|
3370
3370
|
JSCompiler_inline_result =
|
3371
|
-
"
|
3371
|
+
"_" + resumableState.idPrefix + "R_" + JSCompiler_inline_result;
|
3372
3372
|
0 < overflow && (JSCompiler_inline_result += "H" + overflow.toString(32));
|
3373
|
-
return JSCompiler_inline_result + "
|
3373
|
+
return JSCompiler_inline_result + "_";
|
3374
3374
|
},
|
3375
3375
|
useSyncExternalStore: function (subscribe, getSnapshot, getServerSnapshot) {
|
3376
3376
|
if (void 0 === getServerSnapshot)
|
@@ -6109,7 +6109,7 @@ function flushCompletedQueues(request, destination) {
|
|
6109
6109
|
destination.push(renderState$jscomp$0.startInlineScript);
|
6110
6110
|
if (0 === (resumableState.instructions & 32)) {
|
6111
6111
|
resumableState.instructions |= 32;
|
6112
|
-
var shellId = "
|
6112
|
+
var shellId = "_" + resumableState.idPrefix + "R_";
|
6113
6113
|
destination.push(' id="');
|
6114
6114
|
var chunk$jscomp$1 = escapeTextForBrowser(shellId);
|
6115
6115
|
destination.push(chunk$jscomp$1);
|
@@ -6406,4 +6406,4 @@ exports.renderToString = function (children, options) {
|
|
6406
6406
|
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
|
6407
6407
|
);
|
6408
6408
|
};
|
6409
|
-
exports.version = "19.2.0-canary-
|
6409
|
+
exports.version = "19.2.0-canary-1ae0a845-20250603";
|
@@ -3163,7 +3163,7 @@
|
|
3163
3163
|
((resumableState.instructions |= SentCompletedShellId),
|
3164
3164
|
target.push(
|
3165
3165
|
completedShellIdAttributeStart,
|
3166
|
-
escapeTextForBrowser("
|
3166
|
+
escapeTextForBrowser("_" + resumableState.idPrefix + "R_"),
|
3167
3167
|
attributeEnd
|
3168
3168
|
));
|
3169
3169
|
}
|
@@ -7829,7 +7829,7 @@
|
|
7829
7829
|
NothingSent
|
7830
7830
|
) {
|
7831
7831
|
resumableState.instructions |= SentCompletedShellId;
|
7832
|
-
var shellId = "
|
7832
|
+
var shellId = "_" + resumableState.idPrefix + "R_";
|
7833
7833
|
destination.push(completedShellIdAttributeStart);
|
7834
7834
|
var chunk$jscomp$1 = escapeTextForBrowser(shellId);
|
7835
7835
|
destination.push(chunk$jscomp$1);
|
@@ -8088,7 +8088,17 @@
|
|
8088
8088
|
: reason;
|
8089
8089
|
request.fatalError = error;
|
8090
8090
|
abortableTasks.forEach(function (task) {
|
8091
|
-
|
8091
|
+
var prevTaskInDEV = currentTaskInDEV,
|
8092
|
+
prevGetCurrentStackImpl = ReactSharedInternals.getCurrentStack;
|
8093
|
+
currentTaskInDEV = task;
|
8094
|
+
ReactSharedInternals.getCurrentStack = getCurrentStackInDEV;
|
8095
|
+
try {
|
8096
|
+
abortTask(task, request, error);
|
8097
|
+
} finally {
|
8098
|
+
(currentTaskInDEV = prevTaskInDEV),
|
8099
|
+
(ReactSharedInternals.getCurrentStack =
|
8100
|
+
prevGetCurrentStackImpl);
|
8101
|
+
}
|
8092
8102
|
});
|
8093
8103
|
abortableTasks.clear();
|
8094
8104
|
}
|
@@ -9497,9 +9507,9 @@
|
|
9497
9507
|
"Invalid hook call. Hooks can only be called inside of the body of a function component."
|
9498
9508
|
);
|
9499
9509
|
overflow = localIdCounter++;
|
9500
|
-
treeId = "
|
9510
|
+
treeId = "_" + resumableState.idPrefix + "R_" + treeId;
|
9501
9511
|
0 < overflow && (treeId += "H" + overflow.toString(32));
|
9502
|
-
return treeId + "
|
9512
|
+
return treeId + "_";
|
9503
9513
|
},
|
9504
9514
|
useSyncExternalStore: function (
|
9505
9515
|
subscribe,
|
@@ -9626,5 +9636,5 @@
|
|
9626
9636
|
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToPipeableStream" which supports Suspense on the server'
|
9627
9637
|
);
|
9628
9638
|
};
|
9629
|
-
exports.version = "19.2.0-canary-
|
9639
|
+
exports.version = "19.2.0-canary-1ae0a845-20250603";
|
9630
9640
|
})();
|
@@ -2216,7 +2216,7 @@ function pushCompletedShellIdAttribute(target, resumableState) {
|
|
2216
2216
|
((resumableState.instructions |= 32),
|
2217
2217
|
target.push(
|
2218
2218
|
' id="',
|
2219
|
-
escapeTextForBrowser("
|
2219
|
+
escapeTextForBrowser("_" + resumableState.idPrefix + "R_"),
|
2220
2220
|
'"'
|
2221
2221
|
));
|
2222
2222
|
}
|
@@ -3413,9 +3413,9 @@ var HooksDispatcher = {
|
|
3413
3413
|
);
|
3414
3414
|
overflow = localIdCounter++;
|
3415
3415
|
JSCompiler_inline_result =
|
3416
|
-
"
|
3416
|
+
"_" + resumableState.idPrefix + "R_" + JSCompiler_inline_result;
|
3417
3417
|
0 < overflow && (JSCompiler_inline_result += "H" + overflow.toString(32));
|
3418
|
-
return JSCompiler_inline_result + "
|
3418
|
+
return JSCompiler_inline_result + "_";
|
3419
3419
|
},
|
3420
3420
|
useSyncExternalStore: function (subscribe, getSnapshot, getServerSnapshot) {
|
3421
3421
|
if (void 0 === getServerSnapshot)
|
@@ -6189,7 +6189,7 @@ function flushCompletedQueues(request, destination) {
|
|
6189
6189
|
destination.push(renderState$jscomp$0.startInlineScript);
|
6190
6190
|
if (0 === (resumableState.instructions & 32)) {
|
6191
6191
|
resumableState.instructions |= 32;
|
6192
|
-
var shellId = "
|
6192
|
+
var shellId = "_" + resumableState.idPrefix + "R_";
|
6193
6193
|
destination.push(' id="');
|
6194
6194
|
var chunk$jscomp$1 = escapeTextForBrowser(shellId);
|
6195
6195
|
destination.push(chunk$jscomp$1);
|
@@ -6489,4 +6489,4 @@ exports.renderToString = function (children, options) {
|
|
6489
6489
|
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToPipeableStream" which supports Suspense on the server'
|
6490
6490
|
);
|
6491
6491
|
};
|
6492
|
-
exports.version = "19.2.0-canary-
|
6492
|
+
exports.version = "19.2.0-canary-1ae0a845-20250603";
|
@@ -3508,7 +3508,7 @@
|
|
3508
3508
|
target.push(
|
3509
3509
|
completedShellIdAttributeStart,
|
3510
3510
|
stringToChunk(
|
3511
|
-
escapeTextForBrowser("
|
3511
|
+
escapeTextForBrowser("_" + resumableState.idPrefix + "R_")
|
3512
3512
|
),
|
3513
3513
|
attributeEnd
|
3514
3514
|
));
|
@@ -8053,7 +8053,7 @@
|
|
8053
8053
|
NothingSent
|
8054
8054
|
) {
|
8055
8055
|
resumableState.instructions |= SentCompletedShellId;
|
8056
|
-
var shellId = "
|
8056
|
+
var shellId = "_" + resumableState.idPrefix + "R_";
|
8057
8057
|
writeChunk(destination, completedShellIdAttributeStart);
|
8058
8058
|
writeChunk(
|
8059
8059
|
destination,
|
@@ -8350,7 +8350,17 @@
|
|
8350
8350
|
: reason;
|
8351
8351
|
request.fatalError = error;
|
8352
8352
|
abortableTasks.forEach(function (task) {
|
8353
|
-
|
8353
|
+
var prevTaskInDEV = currentTaskInDEV,
|
8354
|
+
prevGetCurrentStackImpl = ReactSharedInternals.getCurrentStack;
|
8355
|
+
currentTaskInDEV = task;
|
8356
|
+
ReactSharedInternals.getCurrentStack = getCurrentStackInDEV;
|
8357
|
+
try {
|
8358
|
+
abortTask(task, request, error);
|
8359
|
+
} finally {
|
8360
|
+
(currentTaskInDEV = prevTaskInDEV),
|
8361
|
+
(ReactSharedInternals.getCurrentStack =
|
8362
|
+
prevGetCurrentStackImpl);
|
8363
|
+
}
|
8354
8364
|
});
|
8355
8365
|
abortableTasks.clear();
|
8356
8366
|
}
|
@@ -8376,11 +8386,11 @@
|
|
8376
8386
|
}
|
8377
8387
|
function ensureCorrectIsomorphicReactVersion() {
|
8378
8388
|
var isomorphicReactPackageVersion = React.version;
|
8379
|
-
if ("19.2.0-canary-
|
8389
|
+
if ("19.2.0-canary-1ae0a845-20250603" !== isomorphicReactPackageVersion)
|
8380
8390
|
throw Error(
|
8381
8391
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
8382
8392
|
(isomorphicReactPackageVersion +
|
8383
|
-
"\n - react-dom: 19.2.0-canary-
|
8393
|
+
"\n - react-dom: 19.2.0-canary-1ae0a845-20250603\nLearn more: https://react.dev/warnings/version-mismatch")
|
8384
8394
|
);
|
8385
8395
|
}
|
8386
8396
|
var React = require("react"),
|
@@ -9618,7 +9628,7 @@
|
|
9618
9628
|
'$RB=[];$RV=function(c){$RT=performance.now();for(var a=0;a<c.length;a+=2){var b=c[a],h=c[a+1],e=b.parentNode;if(e){var f=b.previousSibling,g=0;do{if(b&&8===b.nodeType){var d=b.data;if("/$"===d||"/&"===d)if(0===g)break;else g--;else"$"!==d&&"$?"!==d&&"$~"!==d&&"$!"!==d&&"&"!==d||g++}d=b.nextSibling;e.removeChild(b);b=d}while(b);for(;h.firstChild;)e.insertBefore(h.firstChild,b);f.data="$";f._reactRetry&&f._reactRetry()}}c.length=0};$RC=function(c,a){if(a=document.getElementById(a))if(a.parentNode.removeChild(a),c=document.getElementById(c))c.previousSibling.data="$~",$RB.push(c,a),2===$RB.length&&setTimeout($RV.bind(null,$RB),("number"!==typeof $RT?0:$RT)+300-performance.now())};'
|
9619
9629
|
);
|
9620
9630
|
stringToPrecomputedChunk(
|
9621
|
-
'$RV=function(w,f){function h(a,d){var k=a.getAttribute(d);k&&(d=a.style,l.push(a,d.viewTransitionName,d.viewTransitionClass),"auto"!==k&&(d.viewTransitionClass=k),(a=a.getAttribute("vt-name"))||(a="
|
9631
|
+
'$RV=function(w,f){function h(a,d){var k=a.getAttribute(d);k&&(d=a.style,l.push(a,d.viewTransitionName,d.viewTransitionClass),"auto"!==k&&(d.viewTransitionClass=k),(a=a.getAttribute("vt-name"))||(a="_T_"+F++ +"_"),d.viewTransitionName=a,x=!0)}var x=!1,F=0,l=[];try{var e=document.__reactViewTransition;if(e){e.finished.finally($RV.bind(null,f));return}var m=new Map;for(e=1;e<f.length;e+=2)for(var g=f[e].querySelectorAll("[vt-share]"),c=0;c<g.length;c++){var b=g[c];m.set(b.getAttribute("vt-name"),b)}for(g=0;g<f.length;g+=2){var y=f[g],t=y.parentNode;if(t){var r=t.getBoundingClientRect();if(r.left||r.top||r.width||r.height){b=y;for(e=0;b;){if(8===b.nodeType){var p=b.data;if("/$"===p)if(0===e)break;else e--;else"$"!==p&&"$?"!==p&&"$~"!==p&&"$!"!==p||e++}else if(1===b.nodeType){c=b;var z=c.getAttribute("vt-name"),u=m.get(z);h(c,u?"vt-share":"vt-exit");u&&(h(u,"vt-share"),m.set(z,null));var A=c.querySelectorAll("[vt-share]");for(c=0;c<A.length;c++){var B=A[c],C=B.getAttribute("vt-name"),D=m.get(C);\nD&&(h(B,"vt-share"),h(D,"vt-share"),m.set(C,null))}}b=b.nextSibling}for(var q=f[g+1].firstElementChild;q;)null!==m.get(q.getAttribute("vt-name"))&&h(q,"vt-enter"),q=q.nextElementSibling;b=t;do for(var n=b.firstElementChild;n;){var E=n.getAttribute("vt-update");E&&"none"!==E&&!l.includes(n)&&h(n,"vt-update");n=n.nextElementSibling}while((b=b.parentNode)&&1===b.nodeType&&"none"!==b.getAttribute("vt-update"))}}}if(x){var v=document.__reactViewTransition=document.startViewTransition({update:function(){w(f,\ndocument.documentElement.clientHeight);return Promise.race([document.fonts.ready,new Promise(function(a){return setTimeout(a,500)})])},types:[]});v.ready.finally(function(){for(var a=l.length-3;0<=a;a-=3){var d=l[a],k=d.style;k.viewTransitionName=l[a+1];k.viewTransitionClass=l[a+1];""===d.getAttribute("style")&&d.removeAttribute("style")}});v.finished.finally(function(){document.__reactViewTransition===v&&(document.__reactViewTransition=null)});$RB=[];return}}catch(a){}w(f)}.bind(null,$RV);'
|
9622
9632
|
);
|
9623
9633
|
var completeBoundaryScript1Partial = stringToPrecomputedChunk('$RC("'),
|
9624
9634
|
completeBoundaryWithStylesScript1FullPartial = stringToPrecomputedChunk(
|
@@ -9811,9 +9821,9 @@
|
|
9811
9821
|
"Invalid hook call. Hooks can only be called inside of the body of a function component."
|
9812
9822
|
);
|
9813
9823
|
overflow = localIdCounter++;
|
9814
|
-
treeId = "
|
9824
|
+
treeId = "_" + resumableState.idPrefix + "R_" + treeId;
|
9815
9825
|
0 < overflow && (treeId += "H" + overflow.toString(32));
|
9816
|
-
return treeId + "
|
9826
|
+
return treeId + "_";
|
9817
9827
|
},
|
9818
9828
|
useSyncExternalStore: function (
|
9819
9829
|
subscribe,
|
@@ -10067,5 +10077,5 @@
|
|
10067
10077
|
startWork(request);
|
10068
10078
|
});
|
10069
10079
|
};
|
10070
|
-
exports.version = "19.2.0-canary-
|
10080
|
+
exports.version = "19.2.0-canary-1ae0a845-20250603";
|
10071
10081
|
})();
|
@@ -2545,7 +2545,7 @@ var completeBoundaryScriptFunctionOnly = stringToPrecomputedChunk(
|
|
2545
2545
|
'$RB=[];$RV=function(c){$RT=performance.now();for(var a=0;a<c.length;a+=2){var b=c[a],h=c[a+1],e=b.parentNode;if(e){var f=b.previousSibling,g=0;do{if(b&&8===b.nodeType){var d=b.data;if("/$"===d||"/&"===d)if(0===g)break;else g--;else"$"!==d&&"$?"!==d&&"$~"!==d&&"$!"!==d&&"&"!==d||g++}d=b.nextSibling;e.removeChild(b);b=d}while(b);for(;h.firstChild;)e.insertBefore(h.firstChild,b);f.data="$";f._reactRetry&&f._reactRetry()}}c.length=0};$RC=function(c,a){if(a=document.getElementById(a))if(a.parentNode.removeChild(a),c=document.getElementById(c))c.previousSibling.data="$~",$RB.push(c,a),2===$RB.length&&setTimeout($RV.bind(null,$RB),("number"!==typeof $RT?0:$RT)+300-performance.now())};'
|
2546
2546
|
);
|
2547
2547
|
stringToPrecomputedChunk(
|
2548
|
-
'$RV=function(w,f){function h(a,d){var k=a.getAttribute(d);k&&(d=a.style,l.push(a,d.viewTransitionName,d.viewTransitionClass),"auto"!==k&&(d.viewTransitionClass=k),(a=a.getAttribute("vt-name"))||(a="
|
2548
|
+
'$RV=function(w,f){function h(a,d){var k=a.getAttribute(d);k&&(d=a.style,l.push(a,d.viewTransitionName,d.viewTransitionClass),"auto"!==k&&(d.viewTransitionClass=k),(a=a.getAttribute("vt-name"))||(a="_T_"+F++ +"_"),d.viewTransitionName=a,x=!0)}var x=!1,F=0,l=[];try{var e=document.__reactViewTransition;if(e){e.finished.finally($RV.bind(null,f));return}var m=new Map;for(e=1;e<f.length;e+=2)for(var g=f[e].querySelectorAll("[vt-share]"),c=0;c<g.length;c++){var b=g[c];m.set(b.getAttribute("vt-name"),b)}for(g=0;g<f.length;g+=2){var y=f[g],t=y.parentNode;if(t){var r=t.getBoundingClientRect();if(r.left||r.top||r.width||r.height){b=y;for(e=0;b;){if(8===b.nodeType){var p=b.data;if("/$"===p)if(0===e)break;else e--;else"$"!==p&&"$?"!==p&&"$~"!==p&&"$!"!==p||e++}else if(1===b.nodeType){c=b;var z=c.getAttribute("vt-name"),u=m.get(z);h(c,u?"vt-share":"vt-exit");u&&(h(u,"vt-share"),m.set(z,null));var A=c.querySelectorAll("[vt-share]");for(c=0;c<A.length;c++){var B=A[c],C=B.getAttribute("vt-name"),D=m.get(C);\nD&&(h(B,"vt-share"),h(D,"vt-share"),m.set(C,null))}}b=b.nextSibling}for(var q=f[g+1].firstElementChild;q;)null!==m.get(q.getAttribute("vt-name"))&&h(q,"vt-enter"),q=q.nextElementSibling;b=t;do for(var n=b.firstElementChild;n;){var E=n.getAttribute("vt-update");E&&"none"!==E&&!l.includes(n)&&h(n,"vt-update");n=n.nextElementSibling}while((b=b.parentNode)&&1===b.nodeType&&"none"!==b.getAttribute("vt-update"))}}}if(x){var v=document.__reactViewTransition=document.startViewTransition({update:function(){w(f,\ndocument.documentElement.clientHeight);return Promise.race([document.fonts.ready,new Promise(function(a){return setTimeout(a,500)})])},types:[]});v.ready.finally(function(){for(var a=l.length-3;0<=a;a-=3){var d=l[a],k=d.style;k.viewTransitionName=l[a+1];k.viewTransitionClass=l[a+1];""===d.getAttribute("style")&&d.removeAttribute("style")}});v.finished.finally(function(){document.__reactViewTransition===v&&(document.__reactViewTransition=null)});$RB=[];return}}catch(a){}w(f)}.bind(null,$RV);'
|
2549
2549
|
);
|
2550
2550
|
var completeBoundaryScript1Partial = stringToPrecomputedChunk('$RC("'),
|
2551
2551
|
completeBoundaryWithStylesScript1FullPartial = stringToPrecomputedChunk(
|
@@ -2746,9 +2746,7 @@ function pushCompletedShellIdAttribute(target, resumableState) {
|
|
2746
2746
|
((resumableState.instructions |= 32),
|
2747
2747
|
target.push(
|
2748
2748
|
completedShellIdAttributeStart,
|
2749
|
-
stringToChunk(
|
2750
|
-
escapeTextForBrowser("\u00ab" + resumableState.idPrefix + "R\u00bb")
|
2751
|
-
),
|
2749
|
+
stringToChunk(escapeTextForBrowser("_" + resumableState.idPrefix + "R_")),
|
2752
2750
|
attributeEnd
|
2753
2751
|
));
|
2754
2752
|
}
|
@@ -3753,9 +3751,9 @@ var HooksDispatcher = {
|
|
3753
3751
|
if (null === resumableState) throw Error(formatProdErrorMessage(404));
|
3754
3752
|
overflow = localIdCounter++;
|
3755
3753
|
JSCompiler_inline_result =
|
3756
|
-
"
|
3754
|
+
"_" + resumableState.idPrefix + "R_" + JSCompiler_inline_result;
|
3757
3755
|
0 < overflow && (JSCompiler_inline_result += "H" + overflow.toString(32));
|
3758
|
-
return JSCompiler_inline_result + "
|
3756
|
+
return JSCompiler_inline_result + "_";
|
3759
3757
|
},
|
3760
3758
|
useSyncExternalStore: function (subscribe, getSnapshot, getServerSnapshot) {
|
3761
3759
|
if (void 0 === getServerSnapshot)
|
@@ -6539,7 +6537,7 @@ function flushCompletedQueues(request, destination) {
|
|
6539
6537
|
writeChunk(destination, renderState$jscomp$0.startInlineScript);
|
6540
6538
|
if (0 === (resumableState.instructions & 32)) {
|
6541
6539
|
resumableState.instructions |= 32;
|
6542
|
-
var shellId = "
|
6540
|
+
var shellId = "_" + resumableState.idPrefix + "R_";
|
6543
6541
|
writeChunk(destination, completedShellIdAttributeStart);
|
6544
6542
|
writeChunk(
|
6545
6543
|
destination,
|
@@ -6794,12 +6792,12 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
6794
6792
|
}
|
6795
6793
|
function ensureCorrectIsomorphicReactVersion() {
|
6796
6794
|
var isomorphicReactPackageVersion = React.version;
|
6797
|
-
if ("19.2.0-canary-
|
6795
|
+
if ("19.2.0-canary-1ae0a845-20250603" !== isomorphicReactPackageVersion)
|
6798
6796
|
throw Error(
|
6799
6797
|
formatProdErrorMessage(
|
6800
6798
|
527,
|
6801
6799
|
isomorphicReactPackageVersion,
|
6802
|
-
"19.2.0-canary-
|
6800
|
+
"19.2.0-canary-1ae0a845-20250603"
|
6803
6801
|
)
|
6804
6802
|
);
|
6805
6803
|
}
|
@@ -6946,4 +6944,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
6946
6944
|
startWork(request);
|
6947
6945
|
});
|
6948
6946
|
};
|
6949
|
-
exports.version = "19.2.0-canary-
|
6947
|
+
exports.version = "19.2.0-canary-1ae0a845-20250603";
|
@@ -4095,7 +4095,7 @@ function pushCompletedShellIdAttribute(target, resumableState) {
|
|
4095
4095
|
((resumableState.instructions |= SentCompletedShellId),
|
4096
4096
|
target.push(
|
4097
4097
|
completedShellIdAttributeStart,
|
4098
|
-
escapeTextForBrowser("
|
4098
|
+
escapeTextForBrowser("_" + resumableState.idPrefix + "R_"),
|
4099
4099
|
attributeEnd
|
4100
4100
|
));
|
4101
4101
|
}
|
@@ -5259,9 +5259,9 @@ var HooksDispatcher = {
|
|
5259
5259
|
"Invalid hook call. Hooks can only be called inside of the body of a function component."
|
5260
5260
|
);
|
5261
5261
|
overflow = localIdCounter++;
|
5262
|
-
treeId = "
|
5262
|
+
treeId = "_" + resumableState.idPrefix + "R_" + treeId;
|
5263
5263
|
0 < overflow && (treeId += "H" + overflow.toString(32));
|
5264
|
-
return treeId + "
|
5264
|
+
return treeId + "_";
|
5265
5265
|
},
|
5266
5266
|
useSyncExternalStore: function (subscribe, getSnapshot, getServerSnapshot) {
|
5267
5267
|
if (void 0 === getServerSnapshot)
|
@@ -8979,7 +8979,7 @@ function flushCompletedQueues(request, destination) {
|
|
8979
8979
|
NothingSent
|
8980
8980
|
) {
|
8981
8981
|
resumableState.instructions |= SentCompletedShellId;
|
8982
|
-
var shellId = "
|
8982
|
+
var shellId = "_" + resumableState.idPrefix + "R_";
|
8983
8983
|
writeChunk(destination, completedShellIdAttributeStart);
|
8984
8984
|
writeChunk(destination, escapeTextForBrowser(shellId));
|
8985
8985
|
writeChunk(destination, attributeEnd);
|
@@ -9224,7 +9224,16 @@ function abort(request, reason) {
|
|
9224
9224
|
: reason;
|
9225
9225
|
request.fatalError = error;
|
9226
9226
|
abortableTasks.forEach(function (task) {
|
9227
|
-
|
9227
|
+
var prevTaskInDEV = currentTaskInDEV,
|
9228
|
+
prevGetCurrentStackImpl = ReactSharedInternals.getCurrentStack;
|
9229
|
+
currentTaskInDEV = task;
|
9230
|
+
ReactSharedInternals.getCurrentStack = getCurrentStackInDEV;
|
9231
|
+
try {
|
9232
|
+
abortTask(task, request, error);
|
9233
|
+
} finally {
|
9234
|
+
(currentTaskInDEV = prevTaskInDEV),
|
9235
|
+
(ReactSharedInternals.getCurrentStack = prevGetCurrentStackImpl);
|
9236
|
+
}
|
9228
9237
|
});
|
9229
9238
|
abortableTasks.clear();
|
9230
9239
|
}
|
@@ -9248,15 +9257,15 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
9248
9257
|
parentNode[2].push(node);
|
9249
9258
|
}
|
9250
9259
|
}
|
9251
|
-
var isomorphicReactPackageVersion$jscomp$
|
9260
|
+
var isomorphicReactPackageVersion$jscomp$inline_760 = React.version;
|
9252
9261
|
if (
|
9253
|
-
"19.2.0-canary-
|
9254
|
-
isomorphicReactPackageVersion$jscomp$
|
9262
|
+
"19.2.0-canary-1ae0a845-20250603" !==
|
9263
|
+
isomorphicReactPackageVersion$jscomp$inline_760
|
9255
9264
|
)
|
9256
9265
|
throw Error(
|
9257
9266
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
9258
|
-
(isomorphicReactPackageVersion$jscomp$
|
9259
|
-
"\n - react-dom: 19.2.0-canary-
|
9267
|
+
(isomorphicReactPackageVersion$jscomp$inline_760 +
|
9268
|
+
"\n - react-dom: 19.2.0-canary-1ae0a845-20250603\nLearn more: https://react.dev/warnings/version-mismatch")
|
9260
9269
|
);
|
9261
9270
|
exports.renderToReadableStream = function (children, options) {
|
9262
9271
|
return new Promise(function (resolve, reject) {
|
@@ -9349,4 +9358,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
9349
9358
|
startWork(request$jscomp$0);
|
9350
9359
|
});
|
9351
9360
|
};
|
9352
|
-
exports.version = "19.2.0-canary-
|
9361
|
+
exports.version = "19.2.0-canary-1ae0a845-20250603";
|
@@ -2374,7 +2374,7 @@ function pushCompletedShellIdAttribute(target, resumableState) {
|
|
2374
2374
|
((resumableState.instructions |= 32),
|
2375
2375
|
target.push(
|
2376
2376
|
' id="',
|
2377
|
-
escapeTextForBrowser("
|
2377
|
+
escapeTextForBrowser("_" + resumableState.idPrefix + "R_"),
|
2378
2378
|
'"'
|
2379
2379
|
));
|
2380
2380
|
}
|
@@ -3393,9 +3393,9 @@ var HooksDispatcher = {
|
|
3393
3393
|
);
|
3394
3394
|
overflow = localIdCounter++;
|
3395
3395
|
JSCompiler_inline_result =
|
3396
|
-
"
|
3396
|
+
"_" + resumableState.idPrefix + "R_" + JSCompiler_inline_result;
|
3397
3397
|
0 < overflow && (JSCompiler_inline_result += "H" + overflow.toString(32));
|
3398
|
-
return JSCompiler_inline_result + "
|
3398
|
+
return JSCompiler_inline_result + "_";
|
3399
3399
|
},
|
3400
3400
|
useSyncExternalStore: function (subscribe, getSnapshot, getServerSnapshot) {
|
3401
3401
|
if (void 0 === getServerSnapshot)
|
@@ -6201,7 +6201,7 @@ function flushCompletedQueues(request, destination) {
|
|
6201
6201
|
writeChunk(destination, renderState$jscomp$0.startInlineScript);
|
6202
6202
|
if (0 === (resumableState.instructions & 32)) {
|
6203
6203
|
resumableState.instructions |= 32;
|
6204
|
-
var shellId = "
|
6204
|
+
var shellId = "_" + resumableState.idPrefix + "R_";
|
6205
6205
|
writeChunk(destination, ' id="');
|
6206
6206
|
writeChunk(destination, escapeTextForBrowser(shellId));
|
6207
6207
|
writeChunk(destination, '"');
|
@@ -6437,13 +6437,13 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
6437
6437
|
}
|
6438
6438
|
var isomorphicReactPackageVersion$jscomp$inline_812 = React.version;
|
6439
6439
|
if (
|
6440
|
-
"19.2.0-canary-
|
6440
|
+
"19.2.0-canary-1ae0a845-20250603" !==
|
6441
6441
|
isomorphicReactPackageVersion$jscomp$inline_812
|
6442
6442
|
)
|
6443
6443
|
throw Error(
|
6444
6444
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
6445
6445
|
(isomorphicReactPackageVersion$jscomp$inline_812 +
|
6446
|
-
"\n - react-dom: 19.2.0-canary-
|
6446
|
+
"\n - react-dom: 19.2.0-canary-1ae0a845-20250603\nLearn more: https://react.dev/warnings/version-mismatch")
|
6447
6447
|
);
|
6448
6448
|
exports.renderToReadableStream = function (children, options) {
|
6449
6449
|
return new Promise(function (resolve, reject) {
|
@@ -6534,4 +6534,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
6534
6534
|
startWork(request);
|
6535
6535
|
});
|
6536
6536
|
};
|
6537
|
-
exports.version = "19.2.0-canary-
|
6537
|
+
exports.version = "19.2.0-canary-1ae0a845-20250603";
|
@@ -3504,7 +3504,7 @@
|
|
3504
3504
|
target.push(
|
3505
3505
|
completedShellIdAttributeStart,
|
3506
3506
|
stringToChunk(
|
3507
|
-
escapeTextForBrowser("
|
3507
|
+
escapeTextForBrowser("_" + resumableState.idPrefix + "R_")
|
3508
3508
|
),
|
3509
3509
|
attributeEnd
|
3510
3510
|
));
|
@@ -8063,7 +8063,7 @@
|
|
8063
8063
|
NothingSent
|
8064
8064
|
) {
|
8065
8065
|
resumableState.instructions |= SentCompletedShellId;
|
8066
|
-
var shellId = "
|
8066
|
+
var shellId = "_" + resumableState.idPrefix + "R_";
|
8067
8067
|
writeChunk(destination, completedShellIdAttributeStart);
|
8068
8068
|
writeChunk(
|
8069
8069
|
destination,
|
@@ -8373,7 +8373,17 @@
|
|
8373
8373
|
: reason;
|
8374
8374
|
request.fatalError = error;
|
8375
8375
|
abortableTasks.forEach(function (task) {
|
8376
|
-
|
8376
|
+
var prevTaskInDEV = currentTaskInDEV,
|
8377
|
+
prevGetCurrentStackImpl = ReactSharedInternals.getCurrentStack;
|
8378
|
+
currentTaskInDEV = task;
|
8379
|
+
ReactSharedInternals.getCurrentStack = getCurrentStackInDEV;
|
8380
|
+
try {
|
8381
|
+
abortTask(task, request, error);
|
8382
|
+
} finally {
|
8383
|
+
(currentTaskInDEV = prevTaskInDEV),
|
8384
|
+
(ReactSharedInternals.getCurrentStack =
|
8385
|
+
prevGetCurrentStackImpl);
|
8386
|
+
}
|
8377
8387
|
});
|
8378
8388
|
abortableTasks.clear();
|
8379
8389
|
}
|
@@ -8399,11 +8409,11 @@
|
|
8399
8409
|
}
|
8400
8410
|
function ensureCorrectIsomorphicReactVersion() {
|
8401
8411
|
var isomorphicReactPackageVersion = React.version;
|
8402
|
-
if ("19.2.0-canary-
|
8412
|
+
if ("19.2.0-canary-1ae0a845-20250603" !== isomorphicReactPackageVersion)
|
8403
8413
|
throw Error(
|
8404
8414
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
8405
8415
|
(isomorphicReactPackageVersion +
|
8406
|
-
"\n - react-dom: 19.2.0-canary-
|
8416
|
+
"\n - react-dom: 19.2.0-canary-1ae0a845-20250603\nLearn more: https://react.dev/warnings/version-mismatch")
|
8407
8417
|
);
|
8408
8418
|
}
|
8409
8419
|
var React = require("react"),
|
@@ -9635,7 +9645,7 @@
|
|
9635
9645
|
'$RB=[];$RV=function(c){$RT=performance.now();for(var a=0;a<c.length;a+=2){var b=c[a],h=c[a+1],e=b.parentNode;if(e){var f=b.previousSibling,g=0;do{if(b&&8===b.nodeType){var d=b.data;if("/$"===d||"/&"===d)if(0===g)break;else g--;else"$"!==d&&"$?"!==d&&"$~"!==d&&"$!"!==d&&"&"!==d||g++}d=b.nextSibling;e.removeChild(b);b=d}while(b);for(;h.firstChild;)e.insertBefore(h.firstChild,b);f.data="$";f._reactRetry&&f._reactRetry()}}c.length=0};$RC=function(c,a){if(a=document.getElementById(a))if(a.parentNode.removeChild(a),c=document.getElementById(c))c.previousSibling.data="$~",$RB.push(c,a),2===$RB.length&&setTimeout($RV.bind(null,$RB),("number"!==typeof $RT?0:$RT)+300-performance.now())};'
|
9636
9646
|
);
|
9637
9647
|
stringToPrecomputedChunk(
|
9638
|
-
'$RV=function(w,f){function h(a,d){var k=a.getAttribute(d);k&&(d=a.style,l.push(a,d.viewTransitionName,d.viewTransitionClass),"auto"!==k&&(d.viewTransitionClass=k),(a=a.getAttribute("vt-name"))||(a="
|
9648
|
+
'$RV=function(w,f){function h(a,d){var k=a.getAttribute(d);k&&(d=a.style,l.push(a,d.viewTransitionName,d.viewTransitionClass),"auto"!==k&&(d.viewTransitionClass=k),(a=a.getAttribute("vt-name"))||(a="_T_"+F++ +"_"),d.viewTransitionName=a,x=!0)}var x=!1,F=0,l=[];try{var e=document.__reactViewTransition;if(e){e.finished.finally($RV.bind(null,f));return}var m=new Map;for(e=1;e<f.length;e+=2)for(var g=f[e].querySelectorAll("[vt-share]"),c=0;c<g.length;c++){var b=g[c];m.set(b.getAttribute("vt-name"),b)}for(g=0;g<f.length;g+=2){var y=f[g],t=y.parentNode;if(t){var r=t.getBoundingClientRect();if(r.left||r.top||r.width||r.height){b=y;for(e=0;b;){if(8===b.nodeType){var p=b.data;if("/$"===p)if(0===e)break;else e--;else"$"!==p&&"$?"!==p&&"$~"!==p&&"$!"!==p||e++}else if(1===b.nodeType){c=b;var z=c.getAttribute("vt-name"),u=m.get(z);h(c,u?"vt-share":"vt-exit");u&&(h(u,"vt-share"),m.set(z,null));var A=c.querySelectorAll("[vt-share]");for(c=0;c<A.length;c++){var B=A[c],C=B.getAttribute("vt-name"),D=m.get(C);\nD&&(h(B,"vt-share"),h(D,"vt-share"),m.set(C,null))}}b=b.nextSibling}for(var q=f[g+1].firstElementChild;q;)null!==m.get(q.getAttribute("vt-name"))&&h(q,"vt-enter"),q=q.nextElementSibling;b=t;do for(var n=b.firstElementChild;n;){var E=n.getAttribute("vt-update");E&&"none"!==E&&!l.includes(n)&&h(n,"vt-update");n=n.nextElementSibling}while((b=b.parentNode)&&1===b.nodeType&&"none"!==b.getAttribute("vt-update"))}}}if(x){var v=document.__reactViewTransition=document.startViewTransition({update:function(){w(f,\ndocument.documentElement.clientHeight);return Promise.race([document.fonts.ready,new Promise(function(a){return setTimeout(a,500)})])},types:[]});v.ready.finally(function(){for(var a=l.length-3;0<=a;a-=3){var d=l[a],k=d.style;k.viewTransitionName=l[a+1];k.viewTransitionClass=l[a+1];""===d.getAttribute("style")&&d.removeAttribute("style")}});v.finished.finally(function(){document.__reactViewTransition===v&&(document.__reactViewTransition=null)});$RB=[];return}}catch(a){}w(f)}.bind(null,$RV);'
|
9639
9649
|
);
|
9640
9650
|
var completeBoundaryScript1Partial = stringToPrecomputedChunk('$RC("'),
|
9641
9651
|
completeBoundaryWithStylesScript1FullPartial = stringToPrecomputedChunk(
|
@@ -9830,9 +9840,9 @@
|
|
9830
9840
|
"Invalid hook call. Hooks can only be called inside of the body of a function component."
|
9831
9841
|
);
|
9832
9842
|
overflow = localIdCounter++;
|
9833
|
-
treeId = "
|
9843
|
+
treeId = "_" + resumableState.idPrefix + "R_" + treeId;
|
9834
9844
|
0 < overflow && (treeId += "H" + overflow.toString(32));
|
9835
|
-
return treeId + "
|
9845
|
+
return treeId + "_";
|
9836
9846
|
},
|
9837
9847
|
useSyncExternalStore: function (
|
9838
9848
|
subscribe,
|
@@ -10086,5 +10096,5 @@
|
|
10086
10096
|
startWork(request);
|
10087
10097
|
});
|
10088
10098
|
};
|
10089
|
-
exports.version = "19.2.0-canary-
|
10099
|
+
exports.version = "19.2.0-canary-1ae0a845-20250603";
|
10090
10100
|
})();
|
@@ -2552,7 +2552,7 @@ var completeBoundaryScriptFunctionOnly = stringToPrecomputedChunk(
|
|
2552
2552
|
'$RB=[];$RV=function(c){$RT=performance.now();for(var a=0;a<c.length;a+=2){var b=c[a],h=c[a+1],e=b.parentNode;if(e){var f=b.previousSibling,g=0;do{if(b&&8===b.nodeType){var d=b.data;if("/$"===d||"/&"===d)if(0===g)break;else g--;else"$"!==d&&"$?"!==d&&"$~"!==d&&"$!"!==d&&"&"!==d||g++}d=b.nextSibling;e.removeChild(b);b=d}while(b);for(;h.firstChild;)e.insertBefore(h.firstChild,b);f.data="$";f._reactRetry&&f._reactRetry()}}c.length=0};$RC=function(c,a){if(a=document.getElementById(a))if(a.parentNode.removeChild(a),c=document.getElementById(c))c.previousSibling.data="$~",$RB.push(c,a),2===$RB.length&&setTimeout($RV.bind(null,$RB),("number"!==typeof $RT?0:$RT)+300-performance.now())};'
|
2553
2553
|
);
|
2554
2554
|
stringToPrecomputedChunk(
|
2555
|
-
'$RV=function(w,f){function h(a,d){var k=a.getAttribute(d);k&&(d=a.style,l.push(a,d.viewTransitionName,d.viewTransitionClass),"auto"!==k&&(d.viewTransitionClass=k),(a=a.getAttribute("vt-name"))||(a="
|
2555
|
+
'$RV=function(w,f){function h(a,d){var k=a.getAttribute(d);k&&(d=a.style,l.push(a,d.viewTransitionName,d.viewTransitionClass),"auto"!==k&&(d.viewTransitionClass=k),(a=a.getAttribute("vt-name"))||(a="_T_"+F++ +"_"),d.viewTransitionName=a,x=!0)}var x=!1,F=0,l=[];try{var e=document.__reactViewTransition;if(e){e.finished.finally($RV.bind(null,f));return}var m=new Map;for(e=1;e<f.length;e+=2)for(var g=f[e].querySelectorAll("[vt-share]"),c=0;c<g.length;c++){var b=g[c];m.set(b.getAttribute("vt-name"),b)}for(g=0;g<f.length;g+=2){var y=f[g],t=y.parentNode;if(t){var r=t.getBoundingClientRect();if(r.left||r.top||r.width||r.height){b=y;for(e=0;b;){if(8===b.nodeType){var p=b.data;if("/$"===p)if(0===e)break;else e--;else"$"!==p&&"$?"!==p&&"$~"!==p&&"$!"!==p||e++}else if(1===b.nodeType){c=b;var z=c.getAttribute("vt-name"),u=m.get(z);h(c,u?"vt-share":"vt-exit");u&&(h(u,"vt-share"),m.set(z,null));var A=c.querySelectorAll("[vt-share]");for(c=0;c<A.length;c++){var B=A[c],C=B.getAttribute("vt-name"),D=m.get(C);\nD&&(h(B,"vt-share"),h(D,"vt-share"),m.set(C,null))}}b=b.nextSibling}for(var q=f[g+1].firstElementChild;q;)null!==m.get(q.getAttribute("vt-name"))&&h(q,"vt-enter"),q=q.nextElementSibling;b=t;do for(var n=b.firstElementChild;n;){var E=n.getAttribute("vt-update");E&&"none"!==E&&!l.includes(n)&&h(n,"vt-update");n=n.nextElementSibling}while((b=b.parentNode)&&1===b.nodeType&&"none"!==b.getAttribute("vt-update"))}}}if(x){var v=document.__reactViewTransition=document.startViewTransition({update:function(){w(f,\ndocument.documentElement.clientHeight);return Promise.race([document.fonts.ready,new Promise(function(a){return setTimeout(a,500)})])},types:[]});v.ready.finally(function(){for(var a=l.length-3;0<=a;a-=3){var d=l[a],k=d.style;k.viewTransitionName=l[a+1];k.viewTransitionClass=l[a+1];""===d.getAttribute("style")&&d.removeAttribute("style")}});v.finished.finally(function(){document.__reactViewTransition===v&&(document.__reactViewTransition=null)});$RB=[];return}}catch(a){}w(f)}.bind(null,$RV);'
|
2556
2556
|
);
|
2557
2557
|
var completeBoundaryScript1Partial = stringToPrecomputedChunk('$RC("'),
|
2558
2558
|
completeBoundaryWithStylesScript1FullPartial = stringToPrecomputedChunk(
|
@@ -2753,9 +2753,7 @@ function pushCompletedShellIdAttribute(target, resumableState) {
|
|
2753
2753
|
((resumableState.instructions |= 32),
|
2754
2754
|
target.push(
|
2755
2755
|
completedShellIdAttributeStart,
|
2756
|
-
stringToChunk(
|
2757
|
-
escapeTextForBrowser("\u00ab" + resumableState.idPrefix + "R\u00bb")
|
2758
|
-
),
|
2756
|
+
stringToChunk(escapeTextForBrowser("_" + resumableState.idPrefix + "R_")),
|
2759
2757
|
attributeEnd
|
2760
2758
|
));
|
2761
2759
|
}
|
@@ -3790,9 +3788,9 @@ var HooksDispatcher = {
|
|
3790
3788
|
);
|
3791
3789
|
overflow = localIdCounter++;
|
3792
3790
|
JSCompiler_inline_result =
|
3793
|
-
"
|
3791
|
+
"_" + resumableState.idPrefix + "R_" + JSCompiler_inline_result;
|
3794
3792
|
0 < overflow && (JSCompiler_inline_result += "H" + overflow.toString(32));
|
3795
|
-
return JSCompiler_inline_result + "
|
3793
|
+
return JSCompiler_inline_result + "_";
|
3796
3794
|
},
|
3797
3795
|
useSyncExternalStore: function (subscribe, getSnapshot, getServerSnapshot) {
|
3798
3796
|
if (void 0 === getServerSnapshot)
|
@@ -6624,7 +6622,7 @@ function flushCompletedQueues(request, destination) {
|
|
6624
6622
|
writeChunk(destination, renderState$jscomp$0.startInlineScript);
|
6625
6623
|
if (0 === (resumableState.instructions & 32)) {
|
6626
6624
|
resumableState.instructions |= 32;
|
6627
|
-
var shellId = "
|
6625
|
+
var shellId = "_" + resumableState.idPrefix + "R_";
|
6628
6626
|
writeChunk(destination, completedShellIdAttributeStart);
|
6629
6627
|
writeChunk(
|
6630
6628
|
destination,
|
@@ -6892,11 +6890,11 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
6892
6890
|
}
|
6893
6891
|
function ensureCorrectIsomorphicReactVersion() {
|
6894
6892
|
var isomorphicReactPackageVersion = React.version;
|
6895
|
-
if ("19.2.0-canary-
|
6893
|
+
if ("19.2.0-canary-1ae0a845-20250603" !== isomorphicReactPackageVersion)
|
6896
6894
|
throw Error(
|
6897
6895
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
6898
6896
|
(isomorphicReactPackageVersion +
|
6899
|
-
"\n - react-dom: 19.2.0-canary-
|
6897
|
+
"\n - react-dom: 19.2.0-canary-1ae0a845-20250603\nLearn more: https://react.dev/warnings/version-mismatch")
|
6900
6898
|
);
|
6901
6899
|
}
|
6902
6900
|
ensureCorrectIsomorphicReactVersion();
|
@@ -7042,4 +7040,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
7042
7040
|
startWork(request);
|
7043
7041
|
});
|
7044
7042
|
};
|
7045
|
-
exports.version = "19.2.0-canary-
|
7043
|
+
exports.version = "19.2.0-canary-1ae0a845-20250603";
|
@@ -3416,7 +3416,7 @@
|
|
3416
3416
|
((resumableState.instructions |= SentCompletedShellId),
|
3417
3417
|
target.push(
|
3418
3418
|
completedShellIdAttributeStart,
|
3419
|
-
escapeTextForBrowser("
|
3419
|
+
escapeTextForBrowser("_" + resumableState.idPrefix + "R_"),
|
3420
3420
|
attributeEnd
|
3421
3421
|
));
|
3422
3422
|
}
|
@@ -7954,7 +7954,7 @@
|
|
7954
7954
|
NothingSent
|
7955
7955
|
) {
|
7956
7956
|
resumableState.instructions |= SentCompletedShellId;
|
7957
|
-
var shellId = "
|
7957
|
+
var shellId = "_" + resumableState.idPrefix + "R_";
|
7958
7958
|
writeChunk(destination, completedShellIdAttributeStart);
|
7959
7959
|
writeChunk(destination, escapeTextForBrowser(shellId));
|
7960
7960
|
writeChunk(destination, attributeEnd);
|
@@ -8248,7 +8248,17 @@
|
|
8248
8248
|
: reason;
|
8249
8249
|
request.fatalError = error;
|
8250
8250
|
abortableTasks.forEach(function (task) {
|
8251
|
-
|
8251
|
+
var prevTaskInDEV = currentTaskInDEV,
|
8252
|
+
prevGetCurrentStackImpl = ReactSharedInternals.getCurrentStack;
|
8253
|
+
currentTaskInDEV = task;
|
8254
|
+
ReactSharedInternals.getCurrentStack = getCurrentStackInDEV;
|
8255
|
+
try {
|
8256
|
+
abortTask(task, request, error);
|
8257
|
+
} finally {
|
8258
|
+
(currentTaskInDEV = prevTaskInDEV),
|
8259
|
+
(ReactSharedInternals.getCurrentStack =
|
8260
|
+
prevGetCurrentStackImpl);
|
8261
|
+
}
|
8252
8262
|
});
|
8253
8263
|
abortableTasks.clear();
|
8254
8264
|
}
|
@@ -8274,11 +8284,11 @@
|
|
8274
8284
|
}
|
8275
8285
|
function ensureCorrectIsomorphicReactVersion() {
|
8276
8286
|
var isomorphicReactPackageVersion = React.version;
|
8277
|
-
if ("19.2.0-canary-
|
8287
|
+
if ("19.2.0-canary-1ae0a845-20250603" !== isomorphicReactPackageVersion)
|
8278
8288
|
throw Error(
|
8279
8289
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
8280
8290
|
(isomorphicReactPackageVersion +
|
8281
|
-
"\n - react-dom: 19.2.0-canary-
|
8291
|
+
"\n - react-dom: 19.2.0-canary-1ae0a845-20250603\nLearn more: https://react.dev/warnings/version-mismatch")
|
8282
8292
|
);
|
8283
8293
|
}
|
8284
8294
|
function createDrainHandler(destination, request) {
|
@@ -9561,7 +9571,7 @@
|
|
9561
9571
|
'$RB=[];$RV=function(c){$RT=performance.now();for(var a=0;a<c.length;a+=2){var b=c[a],h=c[a+1],e=b.parentNode;if(e){var f=b.previousSibling,g=0;do{if(b&&8===b.nodeType){var d=b.data;if("/$"===d||"/&"===d)if(0===g)break;else g--;else"$"!==d&&"$?"!==d&&"$~"!==d&&"$!"!==d&&"&"!==d||g++}d=b.nextSibling;e.removeChild(b);b=d}while(b);for(;h.firstChild;)e.insertBefore(h.firstChild,b);f.data="$";f._reactRetry&&f._reactRetry()}}c.length=0};$RC=function(c,a){if(a=document.getElementById(a))if(a.parentNode.removeChild(a),c=document.getElementById(c))c.previousSibling.data="$~",$RB.push(c,a),2===$RB.length&&setTimeout($RV.bind(null,$RB),("number"!==typeof $RT?0:$RT)+300-performance.now())};'
|
9562
9572
|
);
|
9563
9573
|
stringToPrecomputedChunk(
|
9564
|
-
'$RV=function(w,f){function h(a,d){var k=a.getAttribute(d);k&&(d=a.style,l.push(a,d.viewTransitionName,d.viewTransitionClass),"auto"!==k&&(d.viewTransitionClass=k),(a=a.getAttribute("vt-name"))||(a="
|
9574
|
+
'$RV=function(w,f){function h(a,d){var k=a.getAttribute(d);k&&(d=a.style,l.push(a,d.viewTransitionName,d.viewTransitionClass),"auto"!==k&&(d.viewTransitionClass=k),(a=a.getAttribute("vt-name"))||(a="_T_"+F++ +"_"),d.viewTransitionName=a,x=!0)}var x=!1,F=0,l=[];try{var e=document.__reactViewTransition;if(e){e.finished.finally($RV.bind(null,f));return}var m=new Map;for(e=1;e<f.length;e+=2)for(var g=f[e].querySelectorAll("[vt-share]"),c=0;c<g.length;c++){var b=g[c];m.set(b.getAttribute("vt-name"),b)}for(g=0;g<f.length;g+=2){var y=f[g],t=y.parentNode;if(t){var r=t.getBoundingClientRect();if(r.left||r.top||r.width||r.height){b=y;for(e=0;b;){if(8===b.nodeType){var p=b.data;if("/$"===p)if(0===e)break;else e--;else"$"!==p&&"$?"!==p&&"$~"!==p&&"$!"!==p||e++}else if(1===b.nodeType){c=b;var z=c.getAttribute("vt-name"),u=m.get(z);h(c,u?"vt-share":"vt-exit");u&&(h(u,"vt-share"),m.set(z,null));var A=c.querySelectorAll("[vt-share]");for(c=0;c<A.length;c++){var B=A[c],C=B.getAttribute("vt-name"),D=m.get(C);\nD&&(h(B,"vt-share"),h(D,"vt-share"),m.set(C,null))}}b=b.nextSibling}for(var q=f[g+1].firstElementChild;q;)null!==m.get(q.getAttribute("vt-name"))&&h(q,"vt-enter"),q=q.nextElementSibling;b=t;do for(var n=b.firstElementChild;n;){var E=n.getAttribute("vt-update");E&&"none"!==E&&!l.includes(n)&&h(n,"vt-update");n=n.nextElementSibling}while((b=b.parentNode)&&1===b.nodeType&&"none"!==b.getAttribute("vt-update"))}}}if(x){var v=document.__reactViewTransition=document.startViewTransition({update:function(){w(f,\ndocument.documentElement.clientHeight);return Promise.race([document.fonts.ready,new Promise(function(a){return setTimeout(a,500)})])},types:[]});v.ready.finally(function(){for(var a=l.length-3;0<=a;a-=3){var d=l[a],k=d.style;k.viewTransitionName=l[a+1];k.viewTransitionClass=l[a+1];""===d.getAttribute("style")&&d.removeAttribute("style")}});v.finished.finally(function(){document.__reactViewTransition===v&&(document.__reactViewTransition=null)});$RB=[];return}}catch(a){}w(f)}.bind(null,$RV);'
|
9565
9575
|
);
|
9566
9576
|
var completeBoundaryScript1Partial = stringToPrecomputedChunk('$RC("'),
|
9567
9577
|
completeBoundaryWithStylesScript1FullPartial = stringToPrecomputedChunk(
|
@@ -9755,9 +9765,9 @@
|
|
9755
9765
|
"Invalid hook call. Hooks can only be called inside of the body of a function component."
|
9756
9766
|
);
|
9757
9767
|
overflow = localIdCounter++;
|
9758
|
-
treeId = "
|
9768
|
+
treeId = "_" + resumableState.idPrefix + "R_" + treeId;
|
9759
9769
|
0 < overflow && (treeId += "H" + overflow.toString(32));
|
9760
|
-
return treeId + "
|
9770
|
+
return treeId + "_";
|
9761
9771
|
},
|
9762
9772
|
useSyncExternalStore: function (
|
9763
9773
|
subscribe,
|
@@ -9960,5 +9970,5 @@
|
|
9960
9970
|
}
|
9961
9971
|
};
|
9962
9972
|
};
|
9963
|
-
exports.version = "19.2.0-canary-
|
9973
|
+
exports.version = "19.2.0-canary-1ae0a845-20250603";
|
9964
9974
|
})();
|
@@ -2470,7 +2470,7 @@ var completeBoundaryScriptFunctionOnly = stringToPrecomputedChunk(
|
|
2470
2470
|
'$RB=[];$RV=function(c){$RT=performance.now();for(var a=0;a<c.length;a+=2){var b=c[a],h=c[a+1],e=b.parentNode;if(e){var f=b.previousSibling,g=0;do{if(b&&8===b.nodeType){var d=b.data;if("/$"===d||"/&"===d)if(0===g)break;else g--;else"$"!==d&&"$?"!==d&&"$~"!==d&&"$!"!==d&&"&"!==d||g++}d=b.nextSibling;e.removeChild(b);b=d}while(b);for(;h.firstChild;)e.insertBefore(h.firstChild,b);f.data="$";f._reactRetry&&f._reactRetry()}}c.length=0};$RC=function(c,a){if(a=document.getElementById(a))if(a.parentNode.removeChild(a),c=document.getElementById(c))c.previousSibling.data="$~",$RB.push(c,a),2===$RB.length&&setTimeout($RV.bind(null,$RB),("number"!==typeof $RT?0:$RT)+300-performance.now())};'
|
2471
2471
|
);
|
2472
2472
|
stringToPrecomputedChunk(
|
2473
|
-
'$RV=function(w,f){function h(a,d){var k=a.getAttribute(d);k&&(d=a.style,l.push(a,d.viewTransitionName,d.viewTransitionClass),"auto"!==k&&(d.viewTransitionClass=k),(a=a.getAttribute("vt-name"))||(a="
|
2473
|
+
'$RV=function(w,f){function h(a,d){var k=a.getAttribute(d);k&&(d=a.style,l.push(a,d.viewTransitionName,d.viewTransitionClass),"auto"!==k&&(d.viewTransitionClass=k),(a=a.getAttribute("vt-name"))||(a="_T_"+F++ +"_"),d.viewTransitionName=a,x=!0)}var x=!1,F=0,l=[];try{var e=document.__reactViewTransition;if(e){e.finished.finally($RV.bind(null,f));return}var m=new Map;for(e=1;e<f.length;e+=2)for(var g=f[e].querySelectorAll("[vt-share]"),c=0;c<g.length;c++){var b=g[c];m.set(b.getAttribute("vt-name"),b)}for(g=0;g<f.length;g+=2){var y=f[g],t=y.parentNode;if(t){var r=t.getBoundingClientRect();if(r.left||r.top||r.width||r.height){b=y;for(e=0;b;){if(8===b.nodeType){var p=b.data;if("/$"===p)if(0===e)break;else e--;else"$"!==p&&"$?"!==p&&"$~"!==p&&"$!"!==p||e++}else if(1===b.nodeType){c=b;var z=c.getAttribute("vt-name"),u=m.get(z);h(c,u?"vt-share":"vt-exit");u&&(h(u,"vt-share"),m.set(z,null));var A=c.querySelectorAll("[vt-share]");for(c=0;c<A.length;c++){var B=A[c],C=B.getAttribute("vt-name"),D=m.get(C);\nD&&(h(B,"vt-share"),h(D,"vt-share"),m.set(C,null))}}b=b.nextSibling}for(var q=f[g+1].firstElementChild;q;)null!==m.get(q.getAttribute("vt-name"))&&h(q,"vt-enter"),q=q.nextElementSibling;b=t;do for(var n=b.firstElementChild;n;){var E=n.getAttribute("vt-update");E&&"none"!==E&&!l.includes(n)&&h(n,"vt-update");n=n.nextElementSibling}while((b=b.parentNode)&&1===b.nodeType&&"none"!==b.getAttribute("vt-update"))}}}if(x){var v=document.__reactViewTransition=document.startViewTransition({update:function(){w(f,\ndocument.documentElement.clientHeight);return Promise.race([document.fonts.ready,new Promise(function(a){return setTimeout(a,500)})])},types:[]});v.ready.finally(function(){for(var a=l.length-3;0<=a;a-=3){var d=l[a],k=d.style;k.viewTransitionName=l[a+1];k.viewTransitionClass=l[a+1];""===d.getAttribute("style")&&d.removeAttribute("style")}});v.finished.finally(function(){document.__reactViewTransition===v&&(document.__reactViewTransition=null)});$RB=[];return}}catch(a){}w(f)}.bind(null,$RV);'
|
2474
2474
|
);
|
2475
2475
|
var completeBoundaryScript1Partial = stringToPrecomputedChunk('$RC("'),
|
2476
2476
|
completeBoundaryWithStylesScript1FullPartial = stringToPrecomputedChunk(
|
@@ -2671,7 +2671,7 @@ function pushCompletedShellIdAttribute(target, resumableState) {
|
|
2671
2671
|
((resumableState.instructions |= 32),
|
2672
2672
|
target.push(
|
2673
2673
|
completedShellIdAttributeStart,
|
2674
|
-
escapeTextForBrowser("
|
2674
|
+
escapeTextForBrowser("_" + resumableState.idPrefix + "R_"),
|
2675
2675
|
attributeEnd
|
2676
2676
|
));
|
2677
2677
|
}
|
@@ -3694,9 +3694,9 @@ var HooksDispatcher = {
|
|
3694
3694
|
);
|
3695
3695
|
overflow = localIdCounter++;
|
3696
3696
|
JSCompiler_inline_result =
|
3697
|
-
"
|
3697
|
+
"_" + resumableState.idPrefix + "R_" + JSCompiler_inline_result;
|
3698
3698
|
0 < overflow && (JSCompiler_inline_result += "H" + overflow.toString(32));
|
3699
|
-
return JSCompiler_inline_result + "
|
3699
|
+
return JSCompiler_inline_result + "_";
|
3700
3700
|
},
|
3701
3701
|
useSyncExternalStore: function (subscribe, getSnapshot, getServerSnapshot) {
|
3702
3702
|
if (void 0 === getServerSnapshot)
|
@@ -6526,7 +6526,7 @@ function flushCompletedQueues(request, destination) {
|
|
6526
6526
|
writeChunk(destination, renderState$jscomp$0.startInlineScript);
|
6527
6527
|
if (0 === (resumableState.instructions & 32)) {
|
6528
6528
|
resumableState.instructions |= 32;
|
6529
|
-
var shellId = "
|
6529
|
+
var shellId = "_" + resumableState.idPrefix + "R_";
|
6530
6530
|
writeChunk(destination, completedShellIdAttributeStart);
|
6531
6531
|
writeChunk(destination, escapeTextForBrowser(shellId));
|
6532
6532
|
writeChunk(destination, attributeEnd);
|
@@ -6785,11 +6785,11 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
6785
6785
|
}
|
6786
6786
|
function ensureCorrectIsomorphicReactVersion() {
|
6787
6787
|
var isomorphicReactPackageVersion = React.version;
|
6788
|
-
if ("19.2.0-canary-
|
6788
|
+
if ("19.2.0-canary-1ae0a845-20250603" !== isomorphicReactPackageVersion)
|
6789
6789
|
throw Error(
|
6790
6790
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
6791
6791
|
(isomorphicReactPackageVersion +
|
6792
|
-
"\n - react-dom: 19.2.0-canary-
|
6792
|
+
"\n - react-dom: 19.2.0-canary-1ae0a845-20250603\nLearn more: https://react.dev/warnings/version-mismatch")
|
6793
6793
|
);
|
6794
6794
|
}
|
6795
6795
|
ensureCorrectIsomorphicReactVersion();
|
@@ -6938,4 +6938,4 @@ exports.renderToPipeableStream = function (children, options) {
|
|
6938
6938
|
}
|
6939
6939
|
};
|
6940
6940
|
};
|
6941
|
-
exports.version = "19.2.0-canary-
|
6941
|
+
exports.version = "19.2.0-canary-1ae0a845-20250603";
|
@@ -416,7 +416,7 @@
|
|
416
416
|
exports.useFormStatus = function () {
|
417
417
|
return resolveDispatcher().useHostTransitionStatus();
|
418
418
|
};
|
419
|
-
exports.version = "19.2.0-canary-
|
419
|
+
exports.version = "19.2.0-canary-1ae0a845-20250603";
|
420
420
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
421
421
|
"function" ===
|
422
422
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
@@ -207,4 +207,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
|
207
207
|
exports.useFormStatus = function () {
|
208
208
|
return ReactSharedInternals.H.useHostTransitionStatus();
|
209
209
|
};
|
210
|
-
exports.version = "19.2.0-canary-
|
210
|
+
exports.version = "19.2.0-canary-1ae0a845-20250603";
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "react-dom",
|
3
|
-
"version": "19.2.0-canary-
|
3
|
+
"version": "19.2.0-canary-1ae0a845-20250603",
|
4
4
|
"description": "React package for working with the DOM.",
|
5
5
|
"main": "index.js",
|
6
6
|
"repository": {
|
@@ -17,10 +17,10 @@
|
|
17
17
|
},
|
18
18
|
"homepage": "https://react.dev/",
|
19
19
|
"dependencies": {
|
20
|
-
"scheduler": "0.27.0-canary-
|
20
|
+
"scheduler": "0.27.0-canary-1ae0a845-20250603"
|
21
21
|
},
|
22
22
|
"peerDependencies": {
|
23
|
-
"react": "19.2.0-canary-
|
23
|
+
"react": "19.2.0-canary-1ae0a845-20250603"
|
24
24
|
},
|
25
25
|
"files": [
|
26
26
|
"LICENSE",
|