Skip to content

Commit cb70b73

Browse files
committed
feat(babel-plugin-react-compiler): support satisfies operator (#32742)
Solve #29818 --------- Co-authored-by: Rodrigo Faria <[email protected]> DiffTrain build for [ef4bc8b](ef4bc8b)
1 parent 0c1b2bf commit cb70b73

35 files changed

+106
-87
lines changed

compiled/eslint-plugin-react-hooks/index.js

+20-1
Original file line numberDiff line numberDiff line change
@@ -31354,6 +31354,19 @@ function lowerExpression(builder, exprPath) {
3135431354
kind: 'TypeCastExpression',
3135531355
value: lowerExpressionToTemporary(builder, expr.get('expression')),
3135631356
typeAnnotation: typeAnnotation.node,
31357+
typeAnnotationKind: 'cast',
31358+
type: lowerType(typeAnnotation.node),
31359+
loc: exprLoc,
31360+
};
31361+
}
31362+
case 'TSSatisfiesExpression': {
31363+
let expr = exprPath;
31364+
const typeAnnotation = expr.get('typeAnnotation');
31365+
return {
31366+
kind: 'TypeCastExpression',
31367+
value: lowerExpressionToTemporary(builder, expr.get('expression')),
31368+
typeAnnotation: typeAnnotation.node,
31369+
typeAnnotationKind: 'satisfies',
3135731370
type: lowerType(typeAnnotation.node),
3135831371
loc: exprLoc,
3135931372
};
@@ -31365,6 +31378,7 @@ function lowerExpression(builder, exprPath) {
3136531378
kind: 'TypeCastExpression',
3136631379
value: lowerExpressionToTemporary(builder, expr.get('expression')),
3136731380
typeAnnotation: typeAnnotation.node,
31381+
typeAnnotationKind: 'as',
3136831382
type: lowerType(typeAnnotation.node),
3136931383
loc: exprLoc,
3137031384
};
@@ -43346,7 +43360,12 @@ function codegenInstructionValue(cx, instrValue) {
4334643360
}
4334743361
case 'TypeCastExpression': {
4334843362
if (libExports.isTSType(instrValue.typeAnnotation)) {
43349-
value = libExports.tsAsExpression(codegenPlaceToExpression(cx, instrValue.value), instrValue.typeAnnotation);
43363+
if (instrValue.typeAnnotationKind === 'satisfies') {
43364+
value = libExports.tsSatisfiesExpression(codegenPlaceToExpression(cx, instrValue.value), instrValue.typeAnnotation);
43365+
}
43366+
else {
43367+
value = libExports.tsAsExpression(codegenPlaceToExpression(cx, instrValue.value), instrValue.typeAnnotation);
43368+
}
4335043369
}
4335143370
else {
4335243371
value = libExports.typeCastExpression(codegenPlaceToExpression(cx, instrValue.value), libExports.typeAnnotation(instrValue.typeAnnotation));

compiled/facebook-www/REVISION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8039f1b2a05d00437cd29707761aeae098c80adc
1+
ef4bc8b4f91023afac437be9179beef350b32db3
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8039f1b2a05d00437cd29707761aeae098c80adc
1+
ef4bc8b4f91023afac437be9179beef350b32db3

compiled/facebook-www/React-dev.classic.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1511,7 +1511,7 @@ __DEV__ &&
15111511
exports.useTransition = function () {
15121512
return resolveDispatcher().useTransition();
15131513
};
1514-
exports.version = "19.1.0-www-classic-8039f1b2-20250327";
1514+
exports.version = "19.1.0-www-classic-ef4bc8b4-20250328";
15151515
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
15161516
"function" ===
15171517
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/React-dev.modern.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1511,7 +1511,7 @@ __DEV__ &&
15111511
exports.useTransition = function () {
15121512
return resolveDispatcher().useTransition();
15131513
};
1514-
exports.version = "19.1.0-www-modern-8039f1b2-20250327";
1514+
exports.version = "19.1.0-www-modern-ef4bc8b4-20250328";
15151515
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
15161516
"function" ===
15171517
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/React-prod.classic.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -624,4 +624,4 @@ exports.useSyncExternalStore = function (
624624
exports.useTransition = function () {
625625
return ReactSharedInternals.H.useTransition();
626626
};
627-
exports.version = "19.1.0-www-classic-8039f1b2-20250327";
627+
exports.version = "19.1.0-www-classic-ef4bc8b4-20250328";

compiled/facebook-www/React-prod.modern.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -624,4 +624,4 @@ exports.useSyncExternalStore = function (
624624
exports.useTransition = function () {
625625
return ReactSharedInternals.H.useTransition();
626626
};
627-
exports.version = "19.1.0-www-modern-8039f1b2-20250327";
627+
exports.version = "19.1.0-www-modern-ef4bc8b4-20250328";

compiled/facebook-www/React-profiling.classic.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,7 @@ exports.useSyncExternalStore = function (
628628
exports.useTransition = function () {
629629
return ReactSharedInternals.H.useTransition();
630630
};
631-
exports.version = "19.1.0-www-classic-8039f1b2-20250327";
631+
exports.version = "19.1.0-www-classic-ef4bc8b4-20250328";
632632
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
633633
"function" ===
634634
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/React-profiling.modern.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,7 @@ exports.useSyncExternalStore = function (
628628
exports.useTransition = function () {
629629
return ReactSharedInternals.H.useTransition();
630630
};
631-
exports.version = "19.1.0-www-modern-8039f1b2-20250327";
631+
exports.version = "19.1.0-www-modern-ef4bc8b4-20250328";
632632
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
633633
"function" ===
634634
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/ReactART-dev.classic.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -18200,10 +18200,10 @@ __DEV__ &&
1820018200
(function () {
1820118201
var internals = {
1820218202
bundleType: 1,
18203-
version: "19.1.0-www-classic-8039f1b2-20250327",
18203+
version: "19.1.0-www-classic-ef4bc8b4-20250328",
1820418204
rendererPackageName: "react-art",
1820518205
currentDispatcherRef: ReactSharedInternals,
18206-
reconcilerVersion: "19.1.0-www-classic-8039f1b2-20250327"
18206+
reconcilerVersion: "19.1.0-www-classic-ef4bc8b4-20250328"
1820718207
};
1820818208
internals.overrideHookState = overrideHookState;
1820918209
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -18237,7 +18237,7 @@ __DEV__ &&
1823718237
exports.Shape = Shape;
1823818238
exports.Surface = Surface;
1823918239
exports.Text = Text;
18240-
exports.version = "19.1.0-www-classic-8039f1b2-20250327";
18240+
exports.version = "19.1.0-www-classic-ef4bc8b4-20250328";
1824118241
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1824218242
"function" ===
1824318243
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/ReactART-dev.modern.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -17972,10 +17972,10 @@ __DEV__ &&
1797217972
(function () {
1797317973
var internals = {
1797417974
bundleType: 1,
17975-
version: "19.1.0-www-modern-8039f1b2-20250327",
17975+
version: "19.1.0-www-modern-ef4bc8b4-20250328",
1797617976
rendererPackageName: "react-art",
1797717977
currentDispatcherRef: ReactSharedInternals,
17978-
reconcilerVersion: "19.1.0-www-modern-8039f1b2-20250327"
17978+
reconcilerVersion: "19.1.0-www-modern-ef4bc8b4-20250328"
1797917979
};
1798017980
internals.overrideHookState = overrideHookState;
1798117981
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -18009,7 +18009,7 @@ __DEV__ &&
1800918009
exports.Shape = Shape;
1801018010
exports.Surface = Surface;
1801118011
exports.Text = Text;
18012-
exports.version = "19.1.0-www-modern-8039f1b2-20250327";
18012+
exports.version = "19.1.0-www-modern-ef4bc8b4-20250328";
1801318013
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1801418014
"function" ===
1801518015
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/ReactART-prod.classic.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -11152,10 +11152,10 @@ var slice = Array.prototype.slice,
1115211152
})(React.Component);
1115311153
var internals$jscomp$inline_1582 = {
1115411154
bundleType: 0,
11155-
version: "19.1.0-www-classic-8039f1b2-20250327",
11155+
version: "19.1.0-www-classic-ef4bc8b4-20250328",
1115611156
rendererPackageName: "react-art",
1115711157
currentDispatcherRef: ReactSharedInternals,
11158-
reconcilerVersion: "19.1.0-www-classic-8039f1b2-20250327"
11158+
reconcilerVersion: "19.1.0-www-classic-ef4bc8b4-20250328"
1115911159
};
1116011160
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1116111161
var hook$jscomp$inline_1583 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -11181,4 +11181,4 @@ exports.RadialGradient = RadialGradient;
1118111181
exports.Shape = TYPES.SHAPE;
1118211182
exports.Surface = Surface;
1118311183
exports.Text = Text;
11184-
exports.version = "19.1.0-www-classic-8039f1b2-20250327";
11184+
exports.version = "19.1.0-www-classic-ef4bc8b4-20250328";

compiled/facebook-www/ReactART-prod.modern.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -10865,10 +10865,10 @@ var slice = Array.prototype.slice,
1086510865
})(React.Component);
1086610866
var internals$jscomp$inline_1555 = {
1086710867
bundleType: 0,
10868-
version: "19.1.0-www-modern-8039f1b2-20250327",
10868+
version: "19.1.0-www-modern-ef4bc8b4-20250328",
1086910869
rendererPackageName: "react-art",
1087010870
currentDispatcherRef: ReactSharedInternals,
10871-
reconcilerVersion: "19.1.0-www-modern-8039f1b2-20250327"
10871+
reconcilerVersion: "19.1.0-www-modern-ef4bc8b4-20250328"
1087210872
};
1087310873
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1087410874
var hook$jscomp$inline_1556 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -10894,4 +10894,4 @@ exports.RadialGradient = RadialGradient;
1089410894
exports.Shape = TYPES.SHAPE;
1089510895
exports.Surface = Surface;
1089610896
exports.Text = Text;
10897-
exports.version = "19.1.0-www-modern-8039f1b2-20250327";
10897+
exports.version = "19.1.0-www-modern-ef4bc8b4-20250328";

compiled/facebook-www/ReactDOM-dev.classic.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -29918,11 +29918,11 @@ __DEV__ &&
2991829918
return_targetInst = null;
2991929919
(function () {
2992029920
var isomorphicReactPackageVersion = React.version;
29921-
if ("19.1.0-www-classic-8039f1b2-20250327" !== isomorphicReactPackageVersion)
29921+
if ("19.1.0-www-classic-ef4bc8b4-20250328" !== isomorphicReactPackageVersion)
2992229922
throw Error(
2992329923
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
2992429924
(isomorphicReactPackageVersion +
29925-
"\n - react-dom: 19.1.0-www-classic-8039f1b2-20250327\nLearn more: https://react.dev/warnings/version-mismatch")
29925+
"\n - react-dom: 19.1.0-www-classic-ef4bc8b4-20250328\nLearn more: https://react.dev/warnings/version-mismatch")
2992629926
);
2992729927
})();
2992829928
("function" === typeof Map &&
@@ -29965,10 +29965,10 @@ __DEV__ &&
2996529965
!(function () {
2996629966
var internals = {
2996729967
bundleType: 1,
29968-
version: "19.1.0-www-classic-8039f1b2-20250327",
29968+
version: "19.1.0-www-classic-ef4bc8b4-20250328",
2996929969
rendererPackageName: "react-dom",
2997029970
currentDispatcherRef: ReactSharedInternals,
29971-
reconcilerVersion: "19.1.0-www-classic-8039f1b2-20250327"
29971+
reconcilerVersion: "19.1.0-www-classic-ef4bc8b4-20250328"
2997229972
};
2997329973
internals.overrideHookState = overrideHookState;
2997429974
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -30566,7 +30566,7 @@ __DEV__ &&
3056630566
exports.useFormStatus = function () {
3056730567
return resolveDispatcher().useHostTransitionStatus();
3056830568
};
30569-
exports.version = "19.1.0-www-classic-8039f1b2-20250327";
30569+
exports.version = "19.1.0-www-classic-ef4bc8b4-20250328";
3057030570
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
3057130571
"function" ===
3057230572
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/ReactDOM-dev.modern.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -29704,11 +29704,11 @@ __DEV__ &&
2970429704
return_targetInst = null;
2970529705
(function () {
2970629706
var isomorphicReactPackageVersion = React.version;
29707-
if ("19.1.0-www-modern-8039f1b2-20250327" !== isomorphicReactPackageVersion)
29707+
if ("19.1.0-www-modern-ef4bc8b4-20250328" !== isomorphicReactPackageVersion)
2970829708
throw Error(
2970929709
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
2971029710
(isomorphicReactPackageVersion +
29711-
"\n - react-dom: 19.1.0-www-modern-8039f1b2-20250327\nLearn more: https://react.dev/warnings/version-mismatch")
29711+
"\n - react-dom: 19.1.0-www-modern-ef4bc8b4-20250328\nLearn more: https://react.dev/warnings/version-mismatch")
2971229712
);
2971329713
})();
2971429714
("function" === typeof Map &&
@@ -29751,10 +29751,10 @@ __DEV__ &&
2975129751
!(function () {
2975229752
var internals = {
2975329753
bundleType: 1,
29754-
version: "19.1.0-www-modern-8039f1b2-20250327",
29754+
version: "19.1.0-www-modern-ef4bc8b4-20250328",
2975529755
rendererPackageName: "react-dom",
2975629756
currentDispatcherRef: ReactSharedInternals,
29757-
reconcilerVersion: "19.1.0-www-modern-8039f1b2-20250327"
29757+
reconcilerVersion: "19.1.0-www-modern-ef4bc8b4-20250328"
2975829758
};
2975929759
internals.overrideHookState = overrideHookState;
2976029760
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -30352,7 +30352,7 @@ __DEV__ &&
3035230352
exports.useFormStatus = function () {
3035330353
return resolveDispatcher().useHostTransitionStatus();
3035430354
};
30355-
exports.version = "19.1.0-www-modern-8039f1b2-20250327";
30355+
exports.version = "19.1.0-www-modern-ef4bc8b4-20250328";
3035630356
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
3035730357
"function" ===
3035830358
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/ReactDOM-prod.classic.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -18807,14 +18807,14 @@ function getCrossOriginStringAs(as, input) {
1880718807
}
1880818808
var isomorphicReactPackageVersion$jscomp$inline_1974 = React.version;
1880918809
if (
18810-
"19.1.0-www-classic-8039f1b2-20250327" !==
18810+
"19.1.0-www-classic-ef4bc8b4-20250328" !==
1881118811
isomorphicReactPackageVersion$jscomp$inline_1974
1881218812
)
1881318813
throw Error(
1881418814
formatProdErrorMessage(
1881518815
527,
1881618816
isomorphicReactPackageVersion$jscomp$inline_1974,
18817-
"19.1.0-www-classic-8039f1b2-20250327"
18817+
"19.1.0-www-classic-ef4bc8b4-20250328"
1881818818
)
1881918819
);
1882018820
Internals.findDOMNode = function (componentOrElement) {
@@ -18832,10 +18832,10 @@ Internals.Events = [
1883218832
];
1883318833
var internals$jscomp$inline_2558 = {
1883418834
bundleType: 0,
18835-
version: "19.1.0-www-classic-8039f1b2-20250327",
18835+
version: "19.1.0-www-classic-ef4bc8b4-20250328",
1883618836
rendererPackageName: "react-dom",
1883718837
currentDispatcherRef: ReactSharedInternals,
18838-
reconcilerVersion: "19.1.0-www-classic-8039f1b2-20250327"
18838+
reconcilerVersion: "19.1.0-www-classic-ef4bc8b4-20250328"
1883918839
};
1884018840
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1884118841
var hook$jscomp$inline_2559 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -19199,4 +19199,4 @@ exports.useFormState = function (action, initialState, permalink) {
1919919199
exports.useFormStatus = function () {
1920019200
return ReactSharedInternals.H.useHostTransitionStatus();
1920119201
};
19202-
exports.version = "19.1.0-www-classic-8039f1b2-20250327";
19202+
exports.version = "19.1.0-www-classic-ef4bc8b4-20250328";

compiled/facebook-www/ReactDOM-prod.modern.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -18536,14 +18536,14 @@ function getCrossOriginStringAs(as, input) {
1853618536
}
1853718537
var isomorphicReactPackageVersion$jscomp$inline_1964 = React.version;
1853818538
if (
18539-
"19.1.0-www-modern-8039f1b2-20250327" !==
18539+
"19.1.0-www-modern-ef4bc8b4-20250328" !==
1854018540
isomorphicReactPackageVersion$jscomp$inline_1964
1854118541
)
1854218542
throw Error(
1854318543
formatProdErrorMessage(
1854418544
527,
1854518545
isomorphicReactPackageVersion$jscomp$inline_1964,
18546-
"19.1.0-www-modern-8039f1b2-20250327"
18546+
"19.1.0-www-modern-ef4bc8b4-20250328"
1854718547
)
1854818548
);
1854918549
Internals.findDOMNode = function (componentOrElement) {
@@ -18561,10 +18561,10 @@ Internals.Events = [
1856118561
];
1856218562
var internals$jscomp$inline_2540 = {
1856318563
bundleType: 0,
18564-
version: "19.1.0-www-modern-8039f1b2-20250327",
18564+
version: "19.1.0-www-modern-ef4bc8b4-20250328",
1856518565
rendererPackageName: "react-dom",
1856618566
currentDispatcherRef: ReactSharedInternals,
18567-
reconcilerVersion: "19.1.0-www-modern-8039f1b2-20250327"
18567+
reconcilerVersion: "19.1.0-www-modern-ef4bc8b4-20250328"
1856818568
};
1856918569
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1857018570
var hook$jscomp$inline_2541 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -18928,4 +18928,4 @@ exports.useFormState = function (action, initialState, permalink) {
1892818928
exports.useFormStatus = function () {
1892918929
return ReactSharedInternals.H.useHostTransitionStatus();
1893018930
};
18931-
exports.version = "19.1.0-www-modern-8039f1b2-20250327";
18931+
exports.version = "19.1.0-www-modern-ef4bc8b4-20250328";

compiled/facebook-www/ReactDOM-profiling.classic.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -20540,14 +20540,14 @@ function getCrossOriginStringAs(as, input) {
2054020540
}
2054120541
var isomorphicReactPackageVersion$jscomp$inline_2134 = React.version;
2054220542
if (
20543-
"19.1.0-www-classic-8039f1b2-20250327" !==
20543+
"19.1.0-www-classic-ef4bc8b4-20250328" !==
2054420544
isomorphicReactPackageVersion$jscomp$inline_2134
2054520545
)
2054620546
throw Error(
2054720547
formatProdErrorMessage(
2054820548
527,
2054920549
isomorphicReactPackageVersion$jscomp$inline_2134,
20550-
"19.1.0-www-classic-8039f1b2-20250327"
20550+
"19.1.0-www-classic-ef4bc8b4-20250328"
2055120551
)
2055220552
);
2055320553
Internals.findDOMNode = function (componentOrElement) {
@@ -20565,10 +20565,10 @@ Internals.Events = [
2056520565
];
2056620566
var internals$jscomp$inline_2136 = {
2056720567
bundleType: 0,
20568-
version: "19.1.0-www-classic-8039f1b2-20250327",
20568+
version: "19.1.0-www-classic-ef4bc8b4-20250328",
2056920569
rendererPackageName: "react-dom",
2057020570
currentDispatcherRef: ReactSharedInternals,
20571-
reconcilerVersion: "19.1.0-www-classic-8039f1b2-20250327"
20571+
reconcilerVersion: "19.1.0-www-classic-ef4bc8b4-20250328"
2057220572
};
2057320573
enableSchedulingProfiler &&
2057420574
((internals$jscomp$inline_2136.getLaneLabelMap = getLaneLabelMap),
@@ -20935,7 +20935,7 @@ exports.useFormState = function (action, initialState, permalink) {
2093520935
exports.useFormStatus = function () {
2093620936
return ReactSharedInternals.H.useHostTransitionStatus();
2093720937
};
20938-
exports.version = "19.1.0-www-classic-8039f1b2-20250327";
20938+
exports.version = "19.1.0-www-classic-ef4bc8b4-20250328";
2093920939
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
2094020940
"function" ===
2094120941
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/ReactDOM-profiling.modern.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -20338,14 +20338,14 @@ function getCrossOriginStringAs(as, input) {
2033820338
}
2033920339
var isomorphicReactPackageVersion$jscomp$inline_2124 = React.version;
2034020340
if (
20341-
"19.1.0-www-modern-8039f1b2-20250327" !==
20341+
"19.1.0-www-modern-ef4bc8b4-20250328" !==
2034220342
isomorphicReactPackageVersion$jscomp$inline_2124
2034320343
)
2034420344
throw Error(
2034520345
formatProdErrorMessage(
2034620346
527,
2034720347
isomorphicReactPackageVersion$jscomp$inline_2124,
20348-
"19.1.0-www-modern-8039f1b2-20250327"
20348+
"19.1.0-www-modern-ef4bc8b4-20250328"
2034920349
)
2035020350
);
2035120351
Internals.findDOMNode = function (componentOrElement) {
@@ -20363,10 +20363,10 @@ Internals.Events = [
2036320363
];
2036420364
var internals$jscomp$inline_2126 = {
2036520365
bundleType: 0,
20366-
version: "19.1.0-www-modern-8039f1b2-20250327",
20366+
version: "19.1.0-www-modern-ef4bc8b4-20250328",
2036720367
rendererPackageName: "react-dom",
2036820368
currentDispatcherRef: ReactSharedInternals,
20369-
reconcilerVersion: "19.1.0-www-modern-8039f1b2-20250327"
20369+
reconcilerVersion: "19.1.0-www-modern-ef4bc8b4-20250328"
2037020370
};
2037120371
enableSchedulingProfiler &&
2037220372
((internals$jscomp$inline_2126.getLaneLabelMap = getLaneLabelMap),
@@ -20733,7 +20733,7 @@ exports.useFormState = function (action, initialState, permalink) {
2073320733
exports.useFormStatus = function () {
2073420734
return ReactSharedInternals.H.useHostTransitionStatus();
2073520735
};
20736-
exports.version = "19.1.0-www-modern-8039f1b2-20250327";
20736+
exports.version = "19.1.0-www-modern-ef4bc8b4-20250328";
2073720737
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
2073820738
"function" ===
2073920739
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

0 commit comments

Comments
 (0)