mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
Revert "Set disableLegacyMode to true for www" (#29901)
Reverts facebook/react#29871
Just temporarily while we're investigating something.
DiffTrain build for [88959fd54a](https://github.com/facebook/react/commit/88959fd54af7d418b799a9898b921f32a356b212)
This commit is contained in:
@@ -418,6 +418,9 @@ __DEV__ &&
|
||||
return "SuspenseList";
|
||||
case 25:
|
||||
return "TracingMarker";
|
||||
case 17:
|
||||
case 28:
|
||||
if (disableLegacyMode) break;
|
||||
case 1:
|
||||
case 0:
|
||||
case 14:
|
||||
@@ -806,9 +809,10 @@ __DEV__ &&
|
||||
enableTransitionTracing = dynamicFeatureFlags.enableTransitionTracing,
|
||||
enableRenderableContext = dynamicFeatureFlags.enableRenderableContext,
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses;
|
||||
dynamicFeatureFlags = dynamicFeatureFlags.enableFastJSX;
|
||||
var REACT_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
enableFastJSX = dynamicFeatureFlags.enableFastJSX,
|
||||
disableLegacyMode = dynamicFeatureFlags.disableLegacyMode,
|
||||
REACT_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -853,7 +857,7 @@ __DEV__ &&
|
||||
specialPropKeyWarningShown;
|
||||
var didWarnAboutStringRefs = {};
|
||||
var didWarnAboutElementRef = {};
|
||||
var enableFastJSXWithStringRefs = dynamicFeatureFlags && !0,
|
||||
var enableFastJSXWithStringRefs = enableFastJSX && !0,
|
||||
enableFastJSXWithoutStringRefs = enableFastJSXWithStringRefs && !1,
|
||||
didWarnAboutKeySpread = {},
|
||||
ownerHasKeyUseWarning = {};
|
||||
|
||||
@@ -1 +1 @@
|
||||
f0e8164410049aabc680035e8fd45b657eb020ab
|
||||
88959fd54af7d418b799a9898b921f32a356b212
|
||||
|
||||
@@ -1 +1 @@
|
||||
f0e8164410049aabc680035e8fd45b657eb020ab
|
||||
88959fd54af7d418b799a9898b921f32a356b212
|
||||
|
||||
@@ -504,6 +504,9 @@ __DEV__ &&
|
||||
return "SuspenseList";
|
||||
case 25:
|
||||
return "TracingMarker";
|
||||
case 17:
|
||||
case 28:
|
||||
if (disableLegacyMode) break;
|
||||
case 1:
|
||||
case 0:
|
||||
case 14:
|
||||
@@ -1196,6 +1199,7 @@ __DEV__ &&
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
enableFastJSX = dynamicFeatureFlags.enableFastJSX,
|
||||
disableLegacyMode = dynamicFeatureFlags.disableLegacyMode,
|
||||
REACT_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
@@ -1394,20 +1398,36 @@ __DEV__ &&
|
||||
exports.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =
|
||||
ReactSharedInternals;
|
||||
exports.act = function (callback) {
|
||||
var prevActQueue = ReactSharedInternals.actQueue,
|
||||
var prevIsBatchingLegacy = disableLegacyMode
|
||||
? !1
|
||||
: ReactSharedInternals.isBatchingLegacy,
|
||||
prevActQueue = ReactSharedInternals.actQueue,
|
||||
prevActScopeDepth = actScopeDepth;
|
||||
actScopeDepth++;
|
||||
var queue = (ReactSharedInternals.actQueue =
|
||||
null !== prevActQueue ? prevActQueue : []),
|
||||
didAwaitActCall = !1;
|
||||
null !== prevActQueue ? prevActQueue : []);
|
||||
disableLegacyMode || (ReactSharedInternals.isBatchingLegacy = !0);
|
||||
var didAwaitActCall = !1;
|
||||
try {
|
||||
disableLegacyMode ||
|
||||
(ReactSharedInternals.didScheduleLegacyUpdate = !1);
|
||||
var result = callback();
|
||||
var didScheduleLegacyUpdate = disableLegacyMode
|
||||
? !1
|
||||
: ReactSharedInternals.didScheduleLegacyUpdate;
|
||||
!prevIsBatchingLegacy &&
|
||||
didScheduleLegacyUpdate &&
|
||||
flushActQueue(queue);
|
||||
disableLegacyMode ||
|
||||
(ReactSharedInternals.isBatchingLegacy = prevIsBatchingLegacy);
|
||||
} catch (error$3) {
|
||||
ReactSharedInternals.thrownErrors.push(error$3);
|
||||
}
|
||||
if (0 < ReactSharedInternals.thrownErrors.length)
|
||||
throw (
|
||||
(popActScope(prevActQueue, prevActScopeDepth),
|
||||
(disableLegacyMode ||
|
||||
(ReactSharedInternals.isBatchingLegacy = prevIsBatchingLegacy),
|
||||
popActScope(prevActQueue, prevActScopeDepth),
|
||||
(callback = aggregateErrors(ReactSharedInternals.thrownErrors)),
|
||||
(ReactSharedInternals.thrownErrors.length = 0),
|
||||
callback)
|
||||
@@ -1967,7 +1987,7 @@ __DEV__ &&
|
||||
exports.useTransition = function () {
|
||||
return resolveDispatcher().useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-f0e8164410-20240614";
|
||||
exports.version = "19.0.0-www-classic-88959fd54a-20240614";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -1967,7 +1967,7 @@ __DEV__ &&
|
||||
exports.useTransition = function () {
|
||||
return resolveDispatcher().useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-f0e8164410-20240614";
|
||||
exports.version = "19.0.0-www-modern-88959fd54a-20240614";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -665,4 +665,4 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-f0e8164410-20240614";
|
||||
exports.version = "19.0.0-www-classic-88959fd54a-20240614";
|
||||
|
||||
@@ -665,4 +665,4 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-f0e8164410-20240614";
|
||||
exports.version = "19.0.0-www-modern-88959fd54a-20240614";
|
||||
|
||||
@@ -669,7 +669,7 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-f0e8164410-20240614";
|
||||
exports.version = "19.0.0-www-classic-88959fd54a-20240614";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -669,7 +669,7 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-f0e8164410-20240614";
|
||||
exports.version = "19.0.0-www-modern-88959fd54a-20240614";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -16364,14 +16364,14 @@ __DEV__ &&
|
||||
scheduleRoot: scheduleRoot,
|
||||
setRefreshHandler: setRefreshHandler,
|
||||
getCurrentFiber: getCurrentFiberForDevTools,
|
||||
reconcilerVersion: "19.0.0-www-modern-f0e8164410-20240614"
|
||||
reconcilerVersion: "19.0.0-www-modern-88959fd54a-20240614"
|
||||
});
|
||||
})({
|
||||
findFiberByHostInstance: function () {
|
||||
return null;
|
||||
},
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-modern-f0e8164410-20240614",
|
||||
version: "19.0.0-www-modern-88959fd54a-20240614",
|
||||
rendererPackageName: "react-art"
|
||||
});
|
||||
var ClippingRectangle = TYPES.CLIPPING_RECTANGLE,
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -10162,7 +10162,7 @@ var slice = Array.prototype.slice,
|
||||
return null;
|
||||
},
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-modern-f0e8164410-20240614",
|
||||
version: "19.0.0-www-modern-88959fd54a-20240614",
|
||||
rendererPackageName: "react-art"
|
||||
};
|
||||
var internals$jscomp$inline_1372 = {
|
||||
@@ -10193,7 +10193,7 @@ var internals$jscomp$inline_1372 = {
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-www-modern-f0e8164410-20240614"
|
||||
reconcilerVersion: "19.0.0-www-modern-88959fd54a-20240614"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1373 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -26520,11 +26520,11 @@ __DEV__ &&
|
||||
return_targetInst = null;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.0.0-www-modern-f0e8164410-20240614" !== isomorphicReactPackageVersion)
|
||||
if ("19.0.0-www-modern-88959fd54a-20240614" !== isomorphicReactPackageVersion)
|
||||
throw Error(
|
||||
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
||||
(isomorphicReactPackageVersion +
|
||||
"\n - react-dom: 19.0.0-www-modern-f0e8164410-20240614\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.0.0-www-modern-88959fd54a-20240614\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -26589,12 +26589,12 @@ __DEV__ &&
|
||||
scheduleRoot: scheduleRoot,
|
||||
setRefreshHandler: setRefreshHandler,
|
||||
getCurrentFiber: getCurrentFiberForDevTools,
|
||||
reconcilerVersion: "19.0.0-www-modern-f0e8164410-20240614"
|
||||
reconcilerVersion: "19.0.0-www-modern-88959fd54a-20240614"
|
||||
});
|
||||
})({
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-modern-f0e8164410-20240614",
|
||||
version: "19.0.0-www-modern-88959fd54a-20240614",
|
||||
rendererPackageName: "react-dom"
|
||||
}) &&
|
||||
canUseDOM &&
|
||||
@@ -27190,7 +27190,7 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-f0e8164410-20240614";
|
||||
exports.version = "19.0.0-www-modern-88959fd54a-20240614";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -16469,14 +16469,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1740 = React.version;
|
||||
if (
|
||||
"19.0.0-www-modern-f0e8164410-20240614" !==
|
||||
"19.0.0-www-modern-88959fd54a-20240614" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1740
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1740,
|
||||
"19.0.0-www-modern-f0e8164410-20240614"
|
||||
"19.0.0-www-modern-88959fd54a-20240614"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -16495,7 +16495,7 @@ Internals.Events = [
|
||||
var devToolsConfig$jscomp$inline_1742 = {
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-modern-f0e8164410-20240614",
|
||||
version: "19.0.0-www-modern-88959fd54a-20240614",
|
||||
rendererPackageName: "react-dom"
|
||||
};
|
||||
var internals$jscomp$inline_2211 = {
|
||||
@@ -16525,7 +16525,7 @@ var internals$jscomp$inline_2211 = {
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-www-modern-f0e8164410-20240614"
|
||||
reconcilerVersion: "19.0.0-www-modern-88959fd54a-20240614"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2212 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -16896,4 +16896,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-f0e8164410-20240614";
|
||||
exports.version = "19.0.0-www-modern-88959fd54a-20240614";
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -17219,14 +17219,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1827 = React.version;
|
||||
if (
|
||||
"19.0.0-www-modern-f0e8164410-20240614" !==
|
||||
"19.0.0-www-modern-88959fd54a-20240614" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1827
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1827,
|
||||
"19.0.0-www-modern-f0e8164410-20240614"
|
||||
"19.0.0-www-modern-88959fd54a-20240614"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -17245,7 +17245,7 @@ Internals.Events = [
|
||||
var devToolsConfig$jscomp$inline_1829 = {
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-modern-f0e8164410-20240614",
|
||||
version: "19.0.0-www-modern-88959fd54a-20240614",
|
||||
rendererPackageName: "react-dom"
|
||||
};
|
||||
(function (internals) {
|
||||
@@ -17289,7 +17289,7 @@ var devToolsConfig$jscomp$inline_1829 = {
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-www-modern-f0e8164410-20240614"
|
||||
reconcilerVersion: "19.0.0-www-modern-88959fd54a-20240614"
|
||||
});
|
||||
function ReactDOMRoot(internalRoot) {
|
||||
this._internalRoot = internalRoot;
|
||||
@@ -17647,7 +17647,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-f0e8164410-20240614";
|
||||
exports.version = "19.0.0-www-modern-88959fd54a-20240614";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -8771,5 +8771,5 @@ __DEV__ &&
|
||||
'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'
|
||||
);
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-f0e8164410-20240614";
|
||||
exports.version = "19.0.0-www-classic-88959fd54a-20240614";
|
||||
})();
|
||||
|
||||
@@ -8727,5 +8727,5 @@ __DEV__ &&
|
||||
'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'
|
||||
);
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-f0e8164410-20240614";
|
||||
exports.version = "19.0.0-www-modern-88959fd54a-20240614";
|
||||
})();
|
||||
|
||||
@@ -5761,4 +5761,4 @@ exports.renderToString = function (children, options) {
|
||||
'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'
|
||||
);
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-f0e8164410-20240614";
|
||||
exports.version = "19.0.0-www-classic-88959fd54a-20240614";
|
||||
|
||||
@@ -5739,4 +5739,4 @@ exports.renderToString = function (children, options) {
|
||||
'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'
|
||||
);
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-f0e8164410-20240614";
|
||||
exports.version = "19.0.0-www-modern-88959fd54a-20240614";
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -26854,11 +26854,11 @@ __DEV__ &&
|
||||
return_targetInst = null;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.0.0-www-modern-f0e8164410-20240614" !== isomorphicReactPackageVersion)
|
||||
if ("19.0.0-www-modern-88959fd54a-20240614" !== isomorphicReactPackageVersion)
|
||||
throw Error(
|
||||
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
||||
(isomorphicReactPackageVersion +
|
||||
"\n - react-dom: 19.0.0-www-modern-f0e8164410-20240614\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.0.0-www-modern-88959fd54a-20240614\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -26923,12 +26923,12 @@ __DEV__ &&
|
||||
scheduleRoot: scheduleRoot,
|
||||
setRefreshHandler: setRefreshHandler,
|
||||
getCurrentFiber: getCurrentFiberForDevTools,
|
||||
reconcilerVersion: "19.0.0-www-modern-f0e8164410-20240614"
|
||||
reconcilerVersion: "19.0.0-www-modern-88959fd54a-20240614"
|
||||
});
|
||||
})({
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-modern-f0e8164410-20240614",
|
||||
version: "19.0.0-www-modern-88959fd54a-20240614",
|
||||
rendererPackageName: "react-dom"
|
||||
}) &&
|
||||
canUseDOM &&
|
||||
@@ -27690,5 +27690,5 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-f0e8164410-20240614";
|
||||
exports.version = "19.0.0-www-modern-88959fd54a-20240614";
|
||||
})();
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -16857,14 +16857,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1770 = React.version;
|
||||
if (
|
||||
"19.0.0-www-modern-f0e8164410-20240614" !==
|
||||
"19.0.0-www-modern-88959fd54a-20240614" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1770
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1770,
|
||||
"19.0.0-www-modern-f0e8164410-20240614"
|
||||
"19.0.0-www-modern-88959fd54a-20240614"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -16883,7 +16883,7 @@ Internals.Events = [
|
||||
var devToolsConfig$jscomp$inline_1772 = {
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-modern-f0e8164410-20240614",
|
||||
version: "19.0.0-www-modern-88959fd54a-20240614",
|
||||
rendererPackageName: "react-dom"
|
||||
};
|
||||
var internals$jscomp$inline_2246 = {
|
||||
@@ -16913,7 +16913,7 @@ var internals$jscomp$inline_2246 = {
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-www-modern-f0e8164410-20240614"
|
||||
reconcilerVersion: "19.0.0-www-modern-88959fd54a-20240614"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2247 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -17435,4 +17435,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-f0e8164410-20240614";
|
||||
exports.version = "19.0.0-www-modern-88959fd54a-20240614";
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -18371,7 +18371,7 @@ __DEV__ &&
|
||||
scheduleRoot: scheduleRoot,
|
||||
setRefreshHandler: setRefreshHandler,
|
||||
getCurrentFiber: getCurrentFiberForDevTools,
|
||||
reconcilerVersion: "19.0.0-www-modern-f0e8164410-20240614"
|
||||
reconcilerVersion: "19.0.0-www-modern-88959fd54a-20240614"
|
||||
});
|
||||
};
|
||||
exports.isAlreadyRendering = function () {
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -12188,7 +12188,7 @@ module.exports = function ($$$config) {
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-www-modern-f0e8164410-20240614"
|
||||
reconcilerVersion: "19.0.0-www-modern-88959fd54a-20240614"
|
||||
};
|
||||
if ("undefined" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__)
|
||||
devToolsConfig = !1;
|
||||
|
||||
@@ -14712,14 +14712,14 @@ __DEV__ &&
|
||||
scheduleRoot: scheduleRoot,
|
||||
setRefreshHandler: setRefreshHandler,
|
||||
getCurrentFiber: getCurrentFiberForDevTools,
|
||||
reconcilerVersion: "19.0.0-www-classic-f0e8164410-20240614"
|
||||
reconcilerVersion: "19.0.0-www-classic-88959fd54a-20240614"
|
||||
});
|
||||
})({
|
||||
findFiberByHostInstance: function () {
|
||||
throw Error("TestRenderer does not support findFiberByHostInstance()");
|
||||
},
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-classic-f0e8164410-20240614",
|
||||
version: "19.0.0-www-classic-88959fd54a-20240614",
|
||||
rendererPackageName: "react-test-renderer"
|
||||
});
|
||||
exports._Scheduler = Scheduler;
|
||||
|
||||
@@ -14712,14 +14712,14 @@ __DEV__ &&
|
||||
scheduleRoot: scheduleRoot,
|
||||
setRefreshHandler: setRefreshHandler,
|
||||
getCurrentFiber: getCurrentFiberForDevTools,
|
||||
reconcilerVersion: "19.0.0-www-modern-f0e8164410-20240614"
|
||||
reconcilerVersion: "19.0.0-www-modern-88959fd54a-20240614"
|
||||
});
|
||||
})({
|
||||
findFiberByHostInstance: function () {
|
||||
throw Error("TestRenderer does not support findFiberByHostInstance()");
|
||||
},
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-modern-f0e8164410-20240614",
|
||||
version: "19.0.0-www-modern-88959fd54a-20240614",
|
||||
rendererPackageName: "react-test-renderer"
|
||||
});
|
||||
exports._Scheduler = Scheduler;
|
||||
|
||||
@@ -1 +1 @@
|
||||
19.0.0-www-classic-f0e8164410-20240614
|
||||
19.0.0-www-classic-88959fd54a-20240614
|
||||
@@ -1 +1 @@
|
||||
19.0.0-www-modern-f0e8164410-20240614
|
||||
19.0.0-www-modern-88959fd54a-20240614
|
||||
Reference in New Issue
Block a user