Skip to content

Commit 877636d

Browse files
committed
[rcr] Re-export useMemoCache in top level React namespace (#31139)
In order to support using the compiler on versions of React prior to 19, we need the ability to statically import `c` (aka useMemoCache) or fallback to a polyfill supplied by `react-compiler-runtime` (note: this is a separate npm package, not to be confused with `react/compiler-runtime`, which is currently a part of react). To do this we first need to re-export `useMemoCache` under the top level React namespace again, which is additive and thus non-breaking. Doing so allows `react-compiler-runtime` to statically either re-export `React.__COMPILER_RUNTIME.c` or supply a polyfill, without the need for a dynamic import which is finicky to support due to returning a promise. In later PRs I will remove `react/compiler-runtime` and update the compiler to emit imports to `react-compiler-runtime` instead. DiffTrain build for [b78a7f2](b78a7f2)
1 parent 56bda35 commit 877636d

34 files changed

+100
-88
lines changed

compiled/facebook-www/REVISION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
d8c90fa48d3addefe4b805ec56a3c65e4ee39127
1+
b78a7f2f35e554a8647c3262d7f392e68d06febc
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
d8c90fa48d3addefe4b805ec56a3c65e4ee39127
1+
b78a7f2f35e554a8647c3262d7f392e68d06febc

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1361,7 +1361,8 @@ __DEV__ &&
13611361
return queueMicrotask(callback);
13621362
});
13631363
}
1364-
: enqueueTask;
1364+
: enqueueTask,
1365+
ReactCompilerRuntime = { c: useMemoCache };
13651366
exports.Children = {
13661367
map: mapChildren,
13671368
forEach: function (children, forEachFunc, forEachContext) {
@@ -1403,6 +1404,7 @@ __DEV__ &&
14031404
exports.Suspense = REACT_SUSPENSE_TYPE;
14041405
exports.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =
14051406
ReactSharedInternals;
1407+
exports.__COMPILER_RUNTIME = ReactCompilerRuntime;
14061408
exports.act = function (callback) {
14071409
var prevIsBatchingLegacy = disableLegacyMode
14081410
? !1
@@ -2000,7 +2002,7 @@ __DEV__ &&
20002002
exports.useTransition = function () {
20012003
return resolveDispatcher().useTransition();
20022004
};
2003-
exports.version = "19.0.0-www-classic-d8c90fa4-20241001";
2005+
exports.version = "19.0.0-www-classic-b78a7f2f-20241007";
20042006
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
20052007
"function" ===
20062008
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1357,7 +1357,8 @@ __DEV__ &&
13571357
return queueMicrotask(callback);
13581358
});
13591359
}
1360-
: enqueueTask;
1360+
: enqueueTask,
1361+
ReactCompilerRuntime = { c: useMemoCache };
13611362
exports.Children = {
13621363
map: mapChildren,
13631364
forEach: function (children, forEachFunc, forEachContext) {
@@ -1399,6 +1400,7 @@ __DEV__ &&
13991400
exports.Suspense = REACT_SUSPENSE_TYPE;
14001401
exports.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =
14011402
ReactSharedInternals;
1403+
exports.__COMPILER_RUNTIME = ReactCompilerRuntime;
14021404
exports.act = function (callback) {
14031405
var prevActQueue = ReactSharedInternals.actQueue,
14041406
prevActScopeDepth = actScopeDepth;
@@ -1980,7 +1982,7 @@ __DEV__ &&
19801982
exports.useTransition = function () {
19811983
return resolveDispatcher().useTransition();
19821984
};
1983-
exports.version = "19.0.0-www-modern-d8c90fa4-20241001";
1985+
exports.version = "19.0.0-www-modern-b78a7f2f-20241007";
19841986
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
19851987
"function" ===
19861988
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,6 +395,7 @@ var reportGlobalError =
395395
console.error(error);
396396
};
397397
function noop() {}
398+
var ReactCompilerRuntime = { c: useMemoCache };
398399
exports.Children = {
399400
map: mapChildren,
400401
forEach: function (children, forEachFunc, forEachContext) {
@@ -436,6 +437,7 @@ exports.StrictMode = REACT_STRICT_MODE_TYPE;
436437
exports.Suspense = REACT_SUSPENSE_TYPE;
437438
exports.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =
438439
ReactSharedInternals;
440+
exports.__COMPILER_RUNTIME = ReactCompilerRuntime;
439441
exports.act = function () {
440442
throw Error("act(...) is not supported in production builds of React.");
441443
};
@@ -665,4 +667,4 @@ exports.useSyncExternalStore = function (
665667
exports.useTransition = function () {
666668
return ReactSharedInternals.H.useTransition();
667669
};
668-
exports.version = "19.0.0-www-classic-d8c90fa4-20241001";
670+
exports.version = "19.0.0-www-classic-b78a7f2f-20241007";

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,6 +395,7 @@ var reportGlobalError =
395395
console.error(error);
396396
};
397397
function noop() {}
398+
var ReactCompilerRuntime = { c: useMemoCache };
398399
exports.Children = {
399400
map: mapChildren,
400401
forEach: function (children, forEachFunc, forEachContext) {
@@ -436,6 +437,7 @@ exports.StrictMode = REACT_STRICT_MODE_TYPE;
436437
exports.Suspense = REACT_SUSPENSE_TYPE;
437438
exports.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =
438439
ReactSharedInternals;
440+
exports.__COMPILER_RUNTIME = ReactCompilerRuntime;
439441
exports.act = function () {
440442
throw Error("act(...) is not supported in production builds of React.");
441443
};
@@ -665,4 +667,4 @@ exports.useSyncExternalStore = function (
665667
exports.useTransition = function () {
666668
return ReactSharedInternals.H.useTransition();
667669
};
668-
exports.version = "19.0.0-www-modern-d8c90fa4-20241001";
670+
exports.version = "19.0.0-www-modern-b78a7f2f-20241007";

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,6 +399,7 @@ var reportGlobalError =
399399
console.error(error);
400400
};
401401
function noop() {}
402+
var ReactCompilerRuntime = { c: useMemoCache };
402403
exports.Children = {
403404
map: mapChildren,
404405
forEach: function (children, forEachFunc, forEachContext) {
@@ -440,6 +441,7 @@ exports.StrictMode = REACT_STRICT_MODE_TYPE;
440441
exports.Suspense = REACT_SUSPENSE_TYPE;
441442
exports.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =
442443
ReactSharedInternals;
444+
exports.__COMPILER_RUNTIME = ReactCompilerRuntime;
443445
exports.act = function () {
444446
throw Error("act(...) is not supported in production builds of React.");
445447
};
@@ -669,7 +671,7 @@ exports.useSyncExternalStore = function (
669671
exports.useTransition = function () {
670672
return ReactSharedInternals.H.useTransition();
671673
};
672-
exports.version = "19.0.0-www-classic-d8c90fa4-20241001";
674+
exports.version = "19.0.0-www-classic-b78a7f2f-20241007";
673675
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
674676
"function" ===
675677
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,6 +399,7 @@ var reportGlobalError =
399399
console.error(error);
400400
};
401401
function noop() {}
402+
var ReactCompilerRuntime = { c: useMemoCache };
402403
exports.Children = {
403404
map: mapChildren,
404405
forEach: function (children, forEachFunc, forEachContext) {
@@ -440,6 +441,7 @@ exports.StrictMode = REACT_STRICT_MODE_TYPE;
440441
exports.Suspense = REACT_SUSPENSE_TYPE;
441442
exports.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =
442443
ReactSharedInternals;
444+
exports.__COMPILER_RUNTIME = ReactCompilerRuntime;
443445
exports.act = function () {
444446
throw Error("act(...) is not supported in production builds of React.");
445447
};
@@ -669,7 +671,7 @@ exports.useSyncExternalStore = function (
669671
exports.useTransition = function () {
670672
return ReactSharedInternals.H.useTransition();
671673
};
672-
exports.version = "19.0.0-www-modern-d8c90fa4-20241001";
674+
exports.version = "19.0.0-www-modern-b78a7f2f-20241007";
673675
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
674676
"function" ===
675677
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17014,11 +17014,11 @@ __DEV__ &&
1701417014
(function () {
1701517015
var internals = {
1701617016
bundleType: 1,
17017-
version: "19.0.0-www-classic-d8c90fa4-20241001",
17017+
version: "19.0.0-www-classic-b78a7f2f-20241007",
1701817018
rendererPackageName: "react-art",
1701917019
currentDispatcherRef: ReactSharedInternals,
1702017020
findFiberByHostInstance: getInstanceFromNode,
17021-
reconcilerVersion: "19.0.0-www-classic-d8c90fa4-20241001"
17021+
reconcilerVersion: "19.0.0-www-classic-b78a7f2f-20241007"
1702217022
};
1702317023
internals.overrideHookState = overrideHookState;
1702417024
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -17052,7 +17052,7 @@ __DEV__ &&
1705217052
exports.Shape = Shape;
1705317053
exports.Surface = Surface;
1705417054
exports.Text = Text;
17055-
exports.version = "19.0.0-www-classic-d8c90fa4-20241001";
17055+
exports.version = "19.0.0-www-classic-b78a7f2f-20241007";
1705617056
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1705717057
"function" ===
1705817058
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16457,11 +16457,11 @@ __DEV__ &&
1645716457
(function () {
1645816458
var internals = {
1645916459
bundleType: 1,
16460-
version: "19.0.0-www-modern-d8c90fa4-20241001",
16460+
version: "19.0.0-www-modern-b78a7f2f-20241007",
1646116461
rendererPackageName: "react-art",
1646216462
currentDispatcherRef: ReactSharedInternals,
1646316463
findFiberByHostInstance: getInstanceFromNode,
16464-
reconcilerVersion: "19.0.0-www-modern-d8c90fa4-20241001"
16464+
reconcilerVersion: "19.0.0-www-modern-b78a7f2f-20241007"
1646516465
};
1646616466
internals.overrideHookState = overrideHookState;
1646716467
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -16495,7 +16495,7 @@ __DEV__ &&
1649516495
exports.Shape = Shape;
1649616496
exports.Surface = Surface;
1649716497
exports.Text = Text;
16498-
exports.version = "19.0.0-www-modern-d8c90fa4-20241001";
16498+
exports.version = "19.0.0-www-modern-b78a7f2f-20241007";
1649916499
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1650016500
"function" ===
1650116501
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10826,13 +10826,13 @@ var slice = Array.prototype.slice,
1082610826
})(React.Component);
1082710827
var internals$jscomp$inline_1467 = {
1082810828
bundleType: 0,
10829-
version: "19.0.0-www-classic-d8c90fa4-20241001",
10829+
version: "19.0.0-www-classic-b78a7f2f-20241007",
1083010830
rendererPackageName: "react-art",
1083110831
currentDispatcherRef: ReactSharedInternals,
1083210832
findFiberByHostInstance: function () {
1083310833
return null;
1083410834
},
10835-
reconcilerVersion: "19.0.0-www-classic-d8c90fa4-20241001"
10835+
reconcilerVersion: "19.0.0-www-classic-b78a7f2f-20241007"
1083610836
};
1083710837
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1083810838
var hook$jscomp$inline_1468 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -10858,4 +10858,4 @@ exports.RadialGradient = RadialGradient;
1085810858
exports.Shape = TYPES.SHAPE;
1085910859
exports.Surface = Surface;
1086010860
exports.Text = Text;
10861-
exports.version = "19.0.0-www-classic-d8c90fa4-20241001";
10861+
exports.version = "19.0.0-www-classic-b78a7f2f-20241007";

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10337,13 +10337,13 @@ var slice = Array.prototype.slice,
1033710337
})(React.Component);
1033810338
var internals$jscomp$inline_1459 = {
1033910339
bundleType: 0,
10340-
version: "19.0.0-www-modern-d8c90fa4-20241001",
10340+
version: "19.0.0-www-modern-b78a7f2f-20241007",
1034110341
rendererPackageName: "react-art",
1034210342
currentDispatcherRef: ReactSharedInternals,
1034310343
findFiberByHostInstance: function () {
1034410344
return null;
1034510345
},
10346-
reconcilerVersion: "19.0.0-www-modern-d8c90fa4-20241001"
10346+
reconcilerVersion: "19.0.0-www-modern-b78a7f2f-20241007"
1034710347
};
1034810348
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1034910349
var hook$jscomp$inline_1460 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -10369,4 +10369,4 @@ exports.RadialGradient = RadialGradient;
1036910369
exports.Shape = TYPES.SHAPE;
1037010370
exports.Surface = Surface;
1037110371
exports.Text = Text;
10372-
exports.version = "19.0.0-www-modern-d8c90fa4-20241001";
10372+
exports.version = "19.0.0-www-modern-b78a7f2f-20241007";

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27771,11 +27771,11 @@ __DEV__ &&
2777127771
: flushSyncErrorInBuildsThatSupportLegacyMode;
2777227772
(function () {
2777327773
var isomorphicReactPackageVersion = React.version;
27774-
if ("19.0.0-www-classic-d8c90fa4-20241001" !== isomorphicReactPackageVersion)
27774+
if ("19.0.0-www-classic-b78a7f2f-20241007" !== isomorphicReactPackageVersion)
2777527775
throw Error(
2777627776
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
2777727777
(isomorphicReactPackageVersion +
27778-
"\n - react-dom: 19.0.0-www-classic-d8c90fa4-20241001\nLearn more: https://react.dev/warnings/version-mismatch")
27778+
"\n - react-dom: 19.0.0-www-classic-b78a7f2f-20241007\nLearn more: https://react.dev/warnings/version-mismatch")
2777927779
);
2778027780
})();
2778127781
("function" === typeof Map &&
@@ -27819,11 +27819,11 @@ __DEV__ &&
2781927819
!(function () {
2782027820
var internals = {
2782127821
bundleType: 1,
27822-
version: "19.0.0-www-classic-d8c90fa4-20241001",
27822+
version: "19.0.0-www-classic-b78a7f2f-20241007",
2782327823
rendererPackageName: "react-dom",
2782427824
currentDispatcherRef: ReactSharedInternals,
2782527825
findFiberByHostInstance: getClosestInstanceFromNode,
27826-
reconcilerVersion: "19.0.0-www-classic-d8c90fa4-20241001"
27826+
reconcilerVersion: "19.0.0-www-classic-b78a7f2f-20241007"
2782727827
};
2782827828
internals.overrideHookState = overrideHookState;
2782927829
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -28476,7 +28476,7 @@ __DEV__ &&
2847628476
exports.useFormStatus = function () {
2847728477
return resolveDispatcher().useHostTransitionStatus();
2847828478
};
28479-
exports.version = "19.0.0-www-classic-d8c90fa4-20241001";
28479+
exports.version = "19.0.0-www-classic-b78a7f2f-20241007";
2848028480
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
2848128481
"function" ===
2848228482
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26885,11 +26885,11 @@ __DEV__ &&
2688526885
return_targetInst = null;
2688626886
(function () {
2688726887
var isomorphicReactPackageVersion = React.version;
26888-
if ("19.0.0-www-modern-d8c90fa4-20241001" !== isomorphicReactPackageVersion)
26888+
if ("19.0.0-www-modern-b78a7f2f-20241007" !== isomorphicReactPackageVersion)
2688926889
throw Error(
2689026890
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
2689126891
(isomorphicReactPackageVersion +
26892-
"\n - react-dom: 19.0.0-www-modern-d8c90fa4-20241001\nLearn more: https://react.dev/warnings/version-mismatch")
26892+
"\n - react-dom: 19.0.0-www-modern-b78a7f2f-20241007\nLearn more: https://react.dev/warnings/version-mismatch")
2689326893
);
2689426894
})();
2689526895
("function" === typeof Map &&
@@ -26932,11 +26932,11 @@ __DEV__ &&
2693226932
!(function () {
2693326933
var internals = {
2693426934
bundleType: 1,
26935-
version: "19.0.0-www-modern-d8c90fa4-20241001",
26935+
version: "19.0.0-www-modern-b78a7f2f-20241007",
2693626936
rendererPackageName: "react-dom",
2693726937
currentDispatcherRef: ReactSharedInternals,
2693826938
findFiberByHostInstance: getClosestInstanceFromNode,
26939-
reconcilerVersion: "19.0.0-www-modern-d8c90fa4-20241001"
26939+
reconcilerVersion: "19.0.0-www-modern-b78a7f2f-20241007"
2694026940
};
2694126941
internals.overrideHookState = overrideHookState;
2694226942
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -27541,7 +27541,7 @@ __DEV__ &&
2754127541
exports.useFormStatus = function () {
2754227542
return resolveDispatcher().useHostTransitionStatus();
2754327543
};
27544-
exports.version = "19.0.0-www-modern-d8c90fa4-20241001";
27544+
exports.version = "19.0.0-www-modern-b78a7f2f-20241007";
2754527545
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
2754627546
"function" ===
2754727547
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17412,14 +17412,14 @@ function getCrossOriginStringAs(as, input) {
1741217412
}
1741317413
var isomorphicReactPackageVersion$jscomp$inline_1774 = React.version;
1741417414
if (
17415-
"19.0.0-www-classic-d8c90fa4-20241001" !==
17415+
"19.0.0-www-classic-b78a7f2f-20241007" !==
1741617416
isomorphicReactPackageVersion$jscomp$inline_1774
1741717417
)
1741817418
throw Error(
1741917419
formatProdErrorMessage(
1742017420
527,
1742117421
isomorphicReactPackageVersion$jscomp$inline_1774,
17422-
"19.0.0-www-classic-d8c90fa4-20241001"
17422+
"19.0.0-www-classic-b78a7f2f-20241007"
1742317423
)
1742417424
);
1742517425
function flushSyncFromReconciler(fn) {
@@ -17464,11 +17464,11 @@ Internals.Events = [
1746417464
];
1746517465
var internals$jscomp$inline_2287 = {
1746617466
bundleType: 0,
17467-
version: "19.0.0-www-classic-d8c90fa4-20241001",
17467+
version: "19.0.0-www-classic-b78a7f2f-20241007",
1746817468
rendererPackageName: "react-dom",
1746917469
currentDispatcherRef: ReactSharedInternals,
1747017470
findFiberByHostInstance: getClosestInstanceFromNode,
17471-
reconcilerVersion: "19.0.0-www-classic-d8c90fa4-20241001"
17471+
reconcilerVersion: "19.0.0-www-classic-b78a7f2f-20241007"
1747217472
};
1747317473
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1747417474
var hook$jscomp$inline_2288 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -17924,4 +17924,4 @@ exports.useFormState = function (action, initialState, permalink) {
1792417924
exports.useFormStatus = function () {
1792517925
return ReactSharedInternals.H.useHostTransitionStatus();
1792617926
};
17927-
exports.version = "19.0.0-www-classic-d8c90fa4-20241001";
17927+
exports.version = "19.0.0-www-classic-b78a7f2f-20241007";

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16780,14 +16780,14 @@ function getCrossOriginStringAs(as, input) {
1678016780
}
1678116781
var isomorphicReactPackageVersion$jscomp$inline_1745 = React.version;
1678216782
if (
16783-
"19.0.0-www-modern-d8c90fa4-20241001" !==
16783+
"19.0.0-www-modern-b78a7f2f-20241007" !==
1678416784
isomorphicReactPackageVersion$jscomp$inline_1745
1678516785
)
1678616786
throw Error(
1678716787
formatProdErrorMessage(
1678816788
527,
1678916789
isomorphicReactPackageVersion$jscomp$inline_1745,
16790-
"19.0.0-www-modern-d8c90fa4-20241001"
16790+
"19.0.0-www-modern-b78a7f2f-20241007"
1679116791
)
1679216792
);
1679316793
Internals.findDOMNode = function (componentOrElement) {
@@ -16805,11 +16805,11 @@ Internals.Events = [
1680516805
];
1680616806
var internals$jscomp$inline_2278 = {
1680716807
bundleType: 0,
16808-
version: "19.0.0-www-modern-d8c90fa4-20241001",
16808+
version: "19.0.0-www-modern-b78a7f2f-20241007",
1680916809
rendererPackageName: "react-dom",
1681016810
currentDispatcherRef: ReactSharedInternals,
1681116811
findFiberByHostInstance: getClosestInstanceFromNode,
16812-
reconcilerVersion: "19.0.0-www-modern-d8c90fa4-20241001"
16812+
reconcilerVersion: "19.0.0-www-modern-b78a7f2f-20241007"
1681316813
};
1681416814
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1681516815
var hook$jscomp$inline_2279 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -17172,4 +17172,4 @@ exports.useFormState = function (action, initialState, permalink) {
1717217172
exports.useFormStatus = function () {
1717317173
return ReactSharedInternals.H.useHostTransitionStatus();
1717417174
};
17175-
exports.version = "19.0.0-www-modern-d8c90fa4-20241001";
17175+
exports.version = "19.0.0-www-modern-b78a7f2f-20241007";

0 commit comments

Comments
 (0)