@@ -2381,7 +2381,7 @@ function getViewTransitionName(props, instance) {
2381
2381
if (null !== instance.autoName) return instance.autoName;
2382
2382
props = pendingEffectsRoot.identifierPrefix;
2383
2383
var globalClientId = globalClientIdCounter$1++;
2384
- props = "\u00ab " + props + "t " + globalClientId.toString(32) + "\u00bb ";
2384
+ props = "_ " + props + "t_ " + globalClientId.toString(32) + "_ ";
2385
2385
return (instance.autoName = props);
2386
2386
}
2387
2387
function getClassNameByType(classByType) {
@@ -4610,7 +4610,13 @@ function findFirstSuspended(row) {
4610
4610
isSuspenseInstanceFallback(state))
4611
4611
)
4612
4612
return node;
4613
- } else if (19 === node.tag && void 0 !== node.memoizedProps.revealOrder) {
4613
+ } else if (
4614
+ 19 === node.tag &&
4615
+ ("forwards" === node.memoizedProps.revealOrder ||
4616
+ "backwards" === node.memoizedProps.revealOrder ||
4617
+ "unstable_legacy-backwards" === node.memoizedProps.revealOrder ||
4618
+ "together" === node.memoizedProps.revealOrder)
4619
+ ) {
4614
4620
if (0 !== (node.flags & 128)) return node;
4615
4621
} else if (null !== node.child) {
4616
4622
node.child.return = node;
@@ -6002,19 +6008,19 @@ var HooksDispatcherOnMount = {
6002
6008
idWithLeadingBit & ~(1 << (32 - clz32(idWithLeadingBit) - 1))
6003
6009
).toString(32) + JSCompiler_inline_result;
6004
6010
identifierPrefix =
6005
- "\u00ab " + identifierPrefix + "R " + JSCompiler_inline_result;
6011
+ "_ " + identifierPrefix + "R_ " + JSCompiler_inline_result;
6006
6012
JSCompiler_inline_result = localIdCounter++;
6007
6013
0 < JSCompiler_inline_result &&
6008
6014
(identifierPrefix += "H" + JSCompiler_inline_result.toString(32));
6009
- identifierPrefix += "\u00bb ";
6015
+ identifierPrefix += "_ ";
6010
6016
} else
6011
6017
(JSCompiler_inline_result = globalClientIdCounter++),
6012
6018
(identifierPrefix =
6013
- "\u00ab " +
6019
+ "_ " +
6014
6020
identifierPrefix +
6015
- "r " +
6021
+ "r_ " +
6016
6022
JSCompiler_inline_result.toString(32) +
6017
- "\u00bb ");
6023
+ "_ ");
6018
6024
return (hook.memoizedState = identifierPrefix);
6019
6025
},
6020
6026
useHostTransitionStatus: useHostTransitionStatus,
@@ -7532,6 +7538,7 @@ function updateSuspenseListComponent(current, workInProgress, renderLanes) {
7532
7538
);
7533
7539
break;
7534
7540
case "backwards":
7541
+ case "unstable_legacy-backwards":
7535
7542
renderLanes = null;
7536
7543
revealOrder = workInProgress.child;
7537
7544
for (workInProgress.child = null; null !== revealOrder; ) {
@@ -19132,14 +19139,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
19132
19139
};
19133
19140
var isomorphicReactPackageVersion$jscomp$inline_2180 = React.version;
19134
19141
if (
19135
- "19.2.0-experimental-14094f80-20250529 " !==
19142
+ "19.2.0-experimental-280ff6fe-20250606 " !==
19136
19143
isomorphicReactPackageVersion$jscomp$inline_2180
19137
19144
)
19138
19145
throw Error(
19139
19146
formatProdErrorMessage(
19140
19147
527,
19141
19148
isomorphicReactPackageVersion$jscomp$inline_2180,
19142
- "19.2.0-experimental-14094f80-20250529 "
19149
+ "19.2.0-experimental-280ff6fe-20250606 "
19143
19150
)
19144
19151
);
19145
19152
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -19161,10 +19168,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
19161
19168
};
19162
19169
var internals$jscomp$inline_2865 = {
19163
19170
bundleType: 0,
19164
- version: "19.2.0-experimental-14094f80-20250529 ",
19171
+ version: "19.2.0-experimental-280ff6fe-20250606 ",
19165
19172
rendererPackageName: "react-dom",
19166
19173
currentDispatcherRef: ReactSharedInternals,
19167
- reconcilerVersion: "19.2.0-experimental-14094f80-20250529 "
19174
+ reconcilerVersion: "19.2.0-experimental-280ff6fe-20250606 "
19168
19175
};
19169
19176
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
19170
19177
var hook$jscomp$inline_2866 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -19271,4 +19278,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
19271
19278
listenToAllSupportedEvents(container);
19272
19279
return new ReactDOMHydrationRoot(initialChildren);
19273
19280
};
19274
- exports.version = "19.2.0-experimental-14094f80-20250529 ";
19281
+ exports.version = "19.2.0-experimental-280ff6fe-20250606 ";
0 commit comments