Skip to content

Commit ab0ba75

Browse files
ncc-compiled
1 parent 7d79600 commit ab0ba75

File tree

88 files changed

+469
-461
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+469
-461
lines changed

packages/next/src/compiled/react-dom-experimental/cjs/react-dom-client.development.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3822,7 +3822,7 @@
38223822
if (null !== instance.autoName) return instance.autoName;
38233823
props = pendingEffectsRoot.identifierPrefix;
38243824
var globalClientId = globalClientIdCounter$1++;
3825-
props = "\u00ab" + props + "t" + globalClientId.toString(32) + "\u00bb";
3825+
props = "_" + props + "t_" + globalClientId.toString(32) + "_";
38263826
return (instance.autoName = props);
38273827
}
38283828
function getClassNameByType(classByType) {
@@ -8814,14 +8814,14 @@
88148814
(
88158815
idWithLeadingBit & ~(1 << (32 - clz32(idWithLeadingBit) - 1))
88168816
).toString(32) + treeId;
8817-
identifierPrefix = "\u00ab" + identifierPrefix + "R" + treeId;
8817+
identifierPrefix = "_" + identifierPrefix + "R_" + treeId;
88188818
treeId = localIdCounter++;
88198819
0 < treeId && (identifierPrefix += "H" + treeId.toString(32));
8820-
identifierPrefix += "\u00bb";
8820+
identifierPrefix += "_";
88218821
} else
88228822
(treeId = globalClientIdCounter++),
88238823
(identifierPrefix =
8824-
"\u00ab" + identifierPrefix + "r" + treeId.toString(32) + "\u00bb");
8824+
"_" + identifierPrefix + "r_" + treeId.toString(32) + "_");
88258825
return (hook.memoizedState = identifierPrefix);
88268826
}
88278827
function mountRefresh() {
@@ -30602,11 +30602,11 @@
3060230602
};
3060330603
(function () {
3060430604
var isomorphicReactPackageVersion = React.version;
30605-
if ("19.2.0-experimental-14094f80-20250529" !== isomorphicReactPackageVersion)
30605+
if ("19.2.0-experimental-1ae0a845-20250603" !== isomorphicReactPackageVersion)
3060630606
throw Error(
3060730607
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
3060830608
(isomorphicReactPackageVersion +
30609-
"\n - react-dom: 19.2.0-experimental-14094f80-20250529\nLearn more: https://react.dev/warnings/version-mismatch")
30609+
"\n - react-dom: 19.2.0-experimental-1ae0a845-20250603\nLearn more: https://react.dev/warnings/version-mismatch")
3061030610
);
3061130611
})();
3061230612
("function" === typeof Map &&
@@ -30643,10 +30643,10 @@
3064330643
!(function () {
3064430644
var internals = {
3064530645
bundleType: 1,
30646-
version: "19.2.0-experimental-14094f80-20250529",
30646+
version: "19.2.0-experimental-1ae0a845-20250603",
3064730647
rendererPackageName: "react-dom",
3064830648
currentDispatcherRef: ReactSharedInternals,
30649-
reconcilerVersion: "19.2.0-experimental-14094f80-20250529"
30649+
reconcilerVersion: "19.2.0-experimental-1ae0a845-20250603"
3065030650
};
3065130651
internals.overrideHookState = overrideHookState;
3065230652
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -30792,7 +30792,7 @@
3079230792
listenToAllSupportedEvents(container);
3079330793
return new ReactDOMHydrationRoot(initialChildren);
3079430794
};
30795-
exports.version = "19.2.0-experimental-14094f80-20250529";
30795+
exports.version = "19.2.0-experimental-1ae0a845-20250603";
3079630796
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
3079730797
"function" ===
3079830798
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

packages/next/src/compiled/react-dom-experimental/cjs/react-dom-client.production.js

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2381,7 +2381,7 @@ function getViewTransitionName(props, instance) {
23812381
if (null !== instance.autoName) return instance.autoName;
23822382
props = pendingEffectsRoot.identifierPrefix;
23832383
var globalClientId = globalClientIdCounter$1++;
2384-
props = "\u00ab" + props + "t" + globalClientId.toString(32) + "\u00bb";
2384+
props = "_" + props + "t_" + globalClientId.toString(32) + "_";
23852385
return (instance.autoName = props);
23862386
}
23872387
function getClassNameByType(classByType) {
@@ -6002,19 +6002,19 @@ var HooksDispatcherOnMount = {
60026002
idWithLeadingBit & ~(1 << (32 - clz32(idWithLeadingBit) - 1))
60036003
).toString(32) + JSCompiler_inline_result;
60046004
identifierPrefix =
6005-
"\u00ab" + identifierPrefix + "R" + JSCompiler_inline_result;
6005+
"_" + identifierPrefix + "R_" + JSCompiler_inline_result;
60066006
JSCompiler_inline_result = localIdCounter++;
60076007
0 < JSCompiler_inline_result &&
60086008
(identifierPrefix += "H" + JSCompiler_inline_result.toString(32));
6009-
identifierPrefix += "\u00bb";
6009+
identifierPrefix += "_";
60106010
} else
60116011
(JSCompiler_inline_result = globalClientIdCounter++),
60126012
(identifierPrefix =
6013-
"\u00ab" +
6013+
"_" +
60146014
identifierPrefix +
6015-
"r" +
6015+
"r_" +
60166016
JSCompiler_inline_result.toString(32) +
6017-
"\u00bb");
6017+
"_");
60186018
return (hook.memoizedState = identifierPrefix);
60196019
},
60206020
useHostTransitionStatus: useHostTransitionStatus,
@@ -19132,14 +19132,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
1913219132
};
1913319133
var isomorphicReactPackageVersion$jscomp$inline_2180 = React.version;
1913419134
if (
19135-
"19.2.0-experimental-14094f80-20250529" !==
19135+
"19.2.0-experimental-1ae0a845-20250603" !==
1913619136
isomorphicReactPackageVersion$jscomp$inline_2180
1913719137
)
1913819138
throw Error(
1913919139
formatProdErrorMessage(
1914019140
527,
1914119141
isomorphicReactPackageVersion$jscomp$inline_2180,
19142-
"19.2.0-experimental-14094f80-20250529"
19142+
"19.2.0-experimental-1ae0a845-20250603"
1914319143
)
1914419144
);
1914519145
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -19161,10 +19161,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
1916119161
};
1916219162
var internals$jscomp$inline_2865 = {
1916319163
bundleType: 0,
19164-
version: "19.2.0-experimental-14094f80-20250529",
19164+
version: "19.2.0-experimental-1ae0a845-20250603",
1916519165
rendererPackageName: "react-dom",
1916619166
currentDispatcherRef: ReactSharedInternals,
19167-
reconcilerVersion: "19.2.0-experimental-14094f80-20250529"
19167+
reconcilerVersion: "19.2.0-experimental-1ae0a845-20250603"
1916819168
};
1916919169
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1917019170
var hook$jscomp$inline_2866 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -19271,4 +19271,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
1927119271
listenToAllSupportedEvents(container);
1927219272
return new ReactDOMHydrationRoot(initialChildren);
1927319273
};
19274-
exports.version = "19.2.0-experimental-14094f80-20250529";
19274+
exports.version = "19.2.0-experimental-1ae0a845-20250603";

packages/next/src/compiled/react-dom-experimental/cjs/react-dom-profiling.development.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3830,7 +3830,7 @@
38303830
if (null !== instance.autoName) return instance.autoName;
38313831
props = pendingEffectsRoot.identifierPrefix;
38323832
var globalClientId = globalClientIdCounter$1++;
3833-
props = "\u00ab" + props + "t" + globalClientId.toString(32) + "\u00bb";
3833+
props = "_" + props + "t_" + globalClientId.toString(32) + "_";
38343834
return (instance.autoName = props);
38353835
}
38363836
function getClassNameByType(classByType) {
@@ -8822,14 +8822,14 @@
88228822
(
88238823
idWithLeadingBit & ~(1 << (32 - clz32(idWithLeadingBit) - 1))
88248824
).toString(32) + treeId;
8825-
identifierPrefix = "\u00ab" + identifierPrefix + "R" + treeId;
8825+
identifierPrefix = "_" + identifierPrefix + "R_" + treeId;
88268826
treeId = localIdCounter++;
88278827
0 < treeId && (identifierPrefix += "H" + treeId.toString(32));
8828-
identifierPrefix += "\u00bb";
8828+
identifierPrefix += "_";
88298829
} else
88308830
(treeId = globalClientIdCounter++),
88318831
(identifierPrefix =
8832-
"\u00ab" + identifierPrefix + "r" + treeId.toString(32) + "\u00bb");
8832+
"_" + identifierPrefix + "r_" + treeId.toString(32) + "_");
88338833
return (hook.memoizedState = identifierPrefix);
88348834
}
88358835
function mountRefresh() {
@@ -30654,11 +30654,11 @@
3065430654
};
3065530655
(function () {
3065630656
var isomorphicReactPackageVersion = React.version;
30657-
if ("19.2.0-experimental-14094f80-20250529" !== isomorphicReactPackageVersion)
30657+
if ("19.2.0-experimental-1ae0a845-20250603" !== isomorphicReactPackageVersion)
3065830658
throw Error(
3065930659
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
3066030660
(isomorphicReactPackageVersion +
30661-
"\n - react-dom: 19.2.0-experimental-14094f80-20250529\nLearn more: https://react.dev/warnings/version-mismatch")
30661+
"\n - react-dom: 19.2.0-experimental-1ae0a845-20250603\nLearn more: https://react.dev/warnings/version-mismatch")
3066230662
);
3066330663
})();
3066430664
("function" === typeof Map &&
@@ -30695,10 +30695,10 @@
3069530695
!(function () {
3069630696
var internals = {
3069730697
bundleType: 1,
30698-
version: "19.2.0-experimental-14094f80-20250529",
30698+
version: "19.2.0-experimental-1ae0a845-20250603",
3069930699
rendererPackageName: "react-dom",
3070030700
currentDispatcherRef: ReactSharedInternals,
30701-
reconcilerVersion: "19.2.0-experimental-14094f80-20250529"
30701+
reconcilerVersion: "19.2.0-experimental-1ae0a845-20250603"
3070230702
};
3070330703
internals.overrideHookState = overrideHookState;
3070430704
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -31174,7 +31174,7 @@
3117431174
exports.useFormStatus = function () {
3117531175
return resolveDispatcher().useHostTransitionStatus();
3117631176
};
31177-
exports.version = "19.2.0-experimental-14094f80-20250529";
31177+
exports.version = "19.2.0-experimental-1ae0a845-20250603";
3117831178
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
3117931179
"function" ===
3118031180
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

packages/next/src/compiled/react-dom-experimental/cjs/react-dom-profiling.profiling.js

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2476,7 +2476,7 @@ function getViewTransitionName(props, instance) {
24762476
if (null !== instance.autoName) return instance.autoName;
24772477
props = pendingEffectsRoot.identifierPrefix;
24782478
var globalClientId = globalClientIdCounter$1++;
2479-
props = "\u00ab" + props + "t" + globalClientId.toString(32) + "\u00bb";
2479+
props = "_" + props + "t_" + globalClientId.toString(32) + "_";
24802480
return (instance.autoName = props);
24812481
}
24822482
function getClassNameByType(classByType) {
@@ -6417,19 +6417,19 @@ var HooksDispatcherOnMount = {
64176417
idWithLeadingBit & ~(1 << (32 - clz32(idWithLeadingBit) - 1))
64186418
).toString(32) + JSCompiler_inline_result;
64196419
identifierPrefix =
6420-
"\u00ab" + identifierPrefix + "R" + JSCompiler_inline_result;
6420+
"_" + identifierPrefix + "R_" + JSCompiler_inline_result;
64216421
JSCompiler_inline_result = localIdCounter++;
64226422
0 < JSCompiler_inline_result &&
64236423
(identifierPrefix += "H" + JSCompiler_inline_result.toString(32));
6424-
identifierPrefix += "\u00bb";
6424+
identifierPrefix += "_";
64256425
} else
64266426
(JSCompiler_inline_result = globalClientIdCounter++),
64276427
(identifierPrefix =
6428-
"\u00ab" +
6428+
"_" +
64296429
identifierPrefix +
6430-
"r" +
6430+
"r_" +
64316431
JSCompiler_inline_result.toString(32) +
6432-
"\u00bb");
6432+
"_");
64336433
return (hook.memoizedState = identifierPrefix);
64346434
},
64356435
useHostTransitionStatus: useHostTransitionStatus,
@@ -20787,14 +20787,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
2078720787
};
2078820788
var isomorphicReactPackageVersion$jscomp$inline_2400 = React.version;
2078920789
if (
20790-
"19.2.0-experimental-14094f80-20250529" !==
20790+
"19.2.0-experimental-1ae0a845-20250603" !==
2079120791
isomorphicReactPackageVersion$jscomp$inline_2400
2079220792
)
2079320793
throw Error(
2079420794
formatProdErrorMessage(
2079520795
527,
2079620796
isomorphicReactPackageVersion$jscomp$inline_2400,
20797-
"19.2.0-experimental-14094f80-20250529"
20797+
"19.2.0-experimental-1ae0a845-20250603"
2079820798
)
2079920799
);
2080020800
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -20816,10 +20816,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
2081620816
};
2081720817
var internals$jscomp$inline_3087 = {
2081820818
bundleType: 0,
20819-
version: "19.2.0-experimental-14094f80-20250529",
20819+
version: "19.2.0-experimental-1ae0a845-20250603",
2082020820
rendererPackageName: "react-dom",
2082120821
currentDispatcherRef: ReactSharedInternals,
20822-
reconcilerVersion: "19.2.0-experimental-14094f80-20250529"
20822+
reconcilerVersion: "19.2.0-experimental-1ae0a845-20250603"
2082320823
};
2082420824
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
2082520825
var hook$jscomp$inline_3088 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -21086,7 +21086,7 @@ exports.useFormState = function (action, initialState, permalink) {
2108621086
exports.useFormStatus = function () {
2108721087
return ReactSharedInternals.H.useHostTransitionStatus();
2108821088
};
21089-
exports.version = "19.2.0-experimental-14094f80-20250529";
21089+
exports.version = "19.2.0-experimental-1ae0a845-20250603";
2109021090
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
2109121091
"function" ===
2109221092
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

0 commit comments

Comments
 (0)