mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
Set renameElementSymbol to dynamic value (#30066)
Prepare to roll this out with dynamic flag
`yarn flags --diff www canary`
<img width="514" alt="Screenshot 2024-06-24 at 11 33 55 AM"
src="https://github.com/facebook/react/assets/8965173/31508fdc-4cb1-4ce0-8e22-c02a034377b0">
DiffTrain build for [89580f209c](https://github.com/facebook/react/commit/89580f209ce68ae9e266e309dfeb1625b434fb58)
This commit is contained in:
@@ -811,8 +811,12 @@ __DEV__ &&
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
enableFastJSX = dynamicFeatureFlags.enableFastJSX,
|
||||
disableLegacyMode = dynamicFeatureFlags.disableLegacyMode,
|
||||
REACT_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
disableLegacyMode = dynamicFeatureFlags.disableLegacyMode;
|
||||
dynamicFeatureFlags = Symbol.for("react.element");
|
||||
var REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: dynamicFeatureFlags,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
|
||||
@@ -806,9 +806,13 @@ __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;
|
||||
dynamicFeatureFlags = dynamicFeatureFlags.renameElementSymbol;
|
||||
var REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = dynamicFeatureFlags
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
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 @@
|
||||
c21bcd627b6a8f31548edfc149dd3b879fea6558
|
||||
89580f209ce68ae9e266e309dfeb1625b434fb58
|
||||
|
||||
@@ -1 +1 @@
|
||||
c21bcd627b6a8f31548edfc149dd3b879fea6558
|
||||
89580f209ce68ae9e266e309dfeb1625b434fb58
|
||||
|
||||
@@ -1199,8 +1199,12 @@ __DEV__ &&
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
enableFastJSX = dynamicFeatureFlags.enableFastJSX,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
disableLegacyMode = dynamicFeatureFlags.disableLegacyMode,
|
||||
REACT_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -1987,7 +1991,7 @@ __DEV__ &&
|
||||
exports.useTransition = function () {
|
||||
return resolveDispatcher().useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-c21bcd627b-20240624";
|
||||
exports.version = "19.0.0-www-classic-89580f209c-20240624";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -1196,7 +1196,11 @@ __DEV__ &&
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
enableFastJSX = dynamicFeatureFlags.enableFastJSX,
|
||||
REACT_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -1967,7 +1971,7 @@ __DEV__ &&
|
||||
exports.useTransition = function () {
|
||||
return resolveDispatcher().useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-c21bcd627b-20240624";
|
||||
exports.version = "19.0.0-www-modern-89580f209c-20240624";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -17,7 +17,11 @@ var dynamicFeatureFlags = require("ReactFeatureFlags"),
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
enableFastJSX = dynamicFeatureFlags.enableFastJSX,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -98,7 +102,7 @@ var enableFastJSXWithStringRefs = enableFastJSX && !0,
|
||||
function ReactElement(type, key, _ref, self, source, owner, props) {
|
||||
_ref = props.ref;
|
||||
return {
|
||||
$$typeof: REACT_LEGACY_ELEMENT_TYPE,
|
||||
$$typeof: REACT_ELEMENT_TYPE,
|
||||
type: type,
|
||||
key: key,
|
||||
ref: void 0 !== _ref ? _ref : null,
|
||||
@@ -145,7 +149,7 @@ function isValidElement(object) {
|
||||
return (
|
||||
"object" === typeof object &&
|
||||
null !== object &&
|
||||
object.$$typeof === REACT_LEGACY_ELEMENT_TYPE
|
||||
object.$$typeof === REACT_ELEMENT_TYPE
|
||||
);
|
||||
}
|
||||
function coerceStringRef(mixedRef, owner, type) {
|
||||
@@ -242,7 +246,7 @@ function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {
|
||||
break;
|
||||
case "object":
|
||||
switch (children.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
case REACT_PORTAL_TYPE:
|
||||
invokeCallback = !0;
|
||||
break;
|
||||
@@ -665,4 +669,4 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-c21bcd627b-20240624";
|
||||
exports.version = "19.0.0-www-classic-89580f209c-20240624";
|
||||
|
||||
@@ -17,7 +17,11 @@ var dynamicFeatureFlags = require("ReactFeatureFlags"),
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
enableFastJSX = dynamicFeatureFlags.enableFastJSX,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -98,7 +102,7 @@ var enableFastJSXWithStringRefs = enableFastJSX && !0,
|
||||
function ReactElement(type, key, _ref, self, source, owner, props) {
|
||||
_ref = props.ref;
|
||||
return {
|
||||
$$typeof: REACT_LEGACY_ELEMENT_TYPE,
|
||||
$$typeof: REACT_ELEMENT_TYPE,
|
||||
type: type,
|
||||
key: key,
|
||||
ref: void 0 !== _ref ? _ref : null,
|
||||
@@ -145,7 +149,7 @@ function isValidElement(object) {
|
||||
return (
|
||||
"object" === typeof object &&
|
||||
null !== object &&
|
||||
object.$$typeof === REACT_LEGACY_ELEMENT_TYPE
|
||||
object.$$typeof === REACT_ELEMENT_TYPE
|
||||
);
|
||||
}
|
||||
function coerceStringRef(mixedRef, owner, type) {
|
||||
@@ -242,7 +246,7 @@ function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {
|
||||
break;
|
||||
case "object":
|
||||
switch (children.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
case REACT_PORTAL_TYPE:
|
||||
invokeCallback = !0;
|
||||
break;
|
||||
@@ -665,4 +669,4 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-c21bcd627b-20240624";
|
||||
exports.version = "19.0.0-www-modern-89580f209c-20240624";
|
||||
|
||||
@@ -21,7 +21,11 @@ var dynamicFeatureFlags = require("ReactFeatureFlags"),
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
enableFastJSX = dynamicFeatureFlags.enableFastJSX,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -102,7 +106,7 @@ var enableFastJSXWithStringRefs = enableFastJSX && !0,
|
||||
function ReactElement(type, key, _ref, self, source, owner, props) {
|
||||
_ref = props.ref;
|
||||
return {
|
||||
$$typeof: REACT_LEGACY_ELEMENT_TYPE,
|
||||
$$typeof: REACT_ELEMENT_TYPE,
|
||||
type: type,
|
||||
key: key,
|
||||
ref: void 0 !== _ref ? _ref : null,
|
||||
@@ -149,7 +153,7 @@ function isValidElement(object) {
|
||||
return (
|
||||
"object" === typeof object &&
|
||||
null !== object &&
|
||||
object.$$typeof === REACT_LEGACY_ELEMENT_TYPE
|
||||
object.$$typeof === REACT_ELEMENT_TYPE
|
||||
);
|
||||
}
|
||||
function coerceStringRef(mixedRef, owner, type) {
|
||||
@@ -246,7 +250,7 @@ function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {
|
||||
break;
|
||||
case "object":
|
||||
switch (children.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
case REACT_PORTAL_TYPE:
|
||||
invokeCallback = !0;
|
||||
break;
|
||||
@@ -669,7 +673,7 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-c21bcd627b-20240624";
|
||||
exports.version = "19.0.0-www-classic-89580f209c-20240624";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -21,7 +21,11 @@ var dynamicFeatureFlags = require("ReactFeatureFlags"),
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
enableFastJSX = dynamicFeatureFlags.enableFastJSX,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -102,7 +106,7 @@ var enableFastJSXWithStringRefs = enableFastJSX && !0,
|
||||
function ReactElement(type, key, _ref, self, source, owner, props) {
|
||||
_ref = props.ref;
|
||||
return {
|
||||
$$typeof: REACT_LEGACY_ELEMENT_TYPE,
|
||||
$$typeof: REACT_ELEMENT_TYPE,
|
||||
type: type,
|
||||
key: key,
|
||||
ref: void 0 !== _ref ? _ref : null,
|
||||
@@ -149,7 +153,7 @@ function isValidElement(object) {
|
||||
return (
|
||||
"object" === typeof object &&
|
||||
null !== object &&
|
||||
object.$$typeof === REACT_LEGACY_ELEMENT_TYPE
|
||||
object.$$typeof === REACT_ELEMENT_TYPE
|
||||
);
|
||||
}
|
||||
function coerceStringRef(mixedRef, owner, type) {
|
||||
@@ -246,7 +250,7 @@ function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {
|
||||
break;
|
||||
case "object":
|
||||
switch (children.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
case REACT_PORTAL_TYPE:
|
||||
invokeCallback = !0;
|
||||
break;
|
||||
@@ -669,7 +673,7 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-c21bcd627b-20240624";
|
||||
exports.version = "19.0.0-www-modern-89580f209c-20240624";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -14876,10 +14876,13 @@ __DEV__ &&
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
enableNoCloningMemoCache = dynamicFeatureFlags.enableNoCloningMemoCache,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
enableSchedulingProfiler = dynamicFeatureFlags.enableSchedulingProfiler,
|
||||
disableLegacyMode = dynamicFeatureFlags.disableLegacyMode,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -16929,14 +16932,14 @@ __DEV__ &&
|
||||
scheduleRoot: scheduleRoot,
|
||||
setRefreshHandler: setRefreshHandler,
|
||||
getCurrentFiber: getCurrentFiberForDevTools,
|
||||
reconcilerVersion: "19.0.0-www-classic-c21bcd627b-20240624"
|
||||
reconcilerVersion: "19.0.0-www-classic-89580f209c-20240624"
|
||||
});
|
||||
})({
|
||||
findFiberByHostInstance: function () {
|
||||
return null;
|
||||
},
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-classic-c21bcd627b-20240624",
|
||||
version: "19.0.0-www-classic-89580f209c-20240624",
|
||||
rendererPackageName: "react-art"
|
||||
});
|
||||
var ClippingRectangle = TYPES.CLIPPING_RECTANGLE,
|
||||
|
||||
@@ -14313,9 +14313,12 @@ __DEV__ &&
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
enableNoCloningMemoCache = dynamicFeatureFlags.enableNoCloningMemoCache,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
enableSchedulingProfiler = dynamicFeatureFlags.enableSchedulingProfiler,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -16359,14 +16362,14 @@ __DEV__ &&
|
||||
scheduleRoot: scheduleRoot,
|
||||
setRefreshHandler: setRefreshHandler,
|
||||
getCurrentFiber: getCurrentFiberForDevTools,
|
||||
reconcilerVersion: "19.0.0-www-modern-c21bcd627b-20240624"
|
||||
reconcilerVersion: "19.0.0-www-modern-89580f209c-20240624"
|
||||
});
|
||||
})({
|
||||
findFiberByHostInstance: function () {
|
||||
return null;
|
||||
},
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-modern-c21bcd627b-20240624",
|
||||
version: "19.0.0-www-modern-89580f209c-20240624",
|
||||
rendererPackageName: "react-art"
|
||||
});
|
||||
var ClippingRectangle = TYPES.CLIPPING_RECTANGLE,
|
||||
|
||||
@@ -83,8 +83,12 @@ var dynamicFeatureFlags = require("ReactFeatureFlags"),
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
enableNoCloningMemoCache = dynamicFeatureFlags.enableNoCloningMemoCache,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
disableLegacyMode = dynamicFeatureFlags.disableLegacyMode,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -1937,7 +1941,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
return (
|
||||
(lanes = createFiberFromTypeAndProps(
|
||||
newChild.type,
|
||||
@@ -2001,7 +2005,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
: updateTextNode(returnFiber, oldFiber, "" + newChild, lanes);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
return newChild.key === key
|
||||
? updateElement(returnFiber, oldFiber, newChild, lanes)
|
||||
: null;
|
||||
@@ -2056,7 +2060,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
return (
|
||||
(existingChildren =
|
||||
existingChildren.get(
|
||||
@@ -2284,7 +2288,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
(newChild = newChild.props.children);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
a: {
|
||||
for (
|
||||
var key = newChild.key, child = currentFirstChild;
|
||||
@@ -10704,7 +10708,7 @@ var slice = Array.prototype.slice,
|
||||
return null;
|
||||
},
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-classic-c21bcd627b-20240624",
|
||||
version: "19.0.0-www-classic-89580f209c-20240624",
|
||||
rendererPackageName: "react-art"
|
||||
};
|
||||
var internals$jscomp$inline_1386 = {
|
||||
@@ -10735,7 +10739,7 @@ var internals$jscomp$inline_1386 = {
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-www-classic-c21bcd627b-20240624"
|
||||
reconcilerVersion: "19.0.0-www-classic-89580f209c-20240624"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1387 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
|
||||
@@ -83,7 +83,11 @@ var dynamicFeatureFlags = require("ReactFeatureFlags"),
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
enableNoCloningMemoCache = dynamicFeatureFlags.enableNoCloningMemoCache,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -1733,7 +1737,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
return (
|
||||
(lanes = createFiberFromTypeAndProps(
|
||||
newChild.type,
|
||||
@@ -1797,7 +1801,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
: updateTextNode(returnFiber, oldFiber, "" + newChild, lanes);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
return newChild.key === key
|
||||
? updateElement(returnFiber, oldFiber, newChild, lanes)
|
||||
: null;
|
||||
@@ -1852,7 +1856,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
return (
|
||||
(existingChildren =
|
||||
existingChildren.get(
|
||||
@@ -2080,7 +2084,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
(newChild = newChild.props.children);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
a: {
|
||||
for (
|
||||
var key = newChild.key, child = currentFirstChild;
|
||||
@@ -10157,7 +10161,7 @@ var slice = Array.prototype.slice,
|
||||
return null;
|
||||
},
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-modern-c21bcd627b-20240624",
|
||||
version: "19.0.0-www-modern-89580f209c-20240624",
|
||||
rendererPackageName: "react-art"
|
||||
};
|
||||
var internals$jscomp$inline_1372 = {
|
||||
@@ -10188,7 +10192,7 @@ var internals$jscomp$inline_1372 = {
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-www-modern-c21bcd627b-20240624"
|
||||
reconcilerVersion: "19.0.0-www-modern-89580f209c-20240624"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1373 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
|
||||
@@ -23816,10 +23816,13 @@ __DEV__ &&
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
enableNoCloningMemoCache = dynamicFeatureFlags.enableNoCloningMemoCache,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
enableSchedulingProfiler = dynamicFeatureFlags.enableSchedulingProfiler,
|
||||
disableLegacyMode = dynamicFeatureFlags.disableLegacyMode,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -27365,11 +27368,11 @@ __DEV__ &&
|
||||
: flushSyncErrorInBuildsThatSupportLegacyMode;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.0.0-www-classic-c21bcd627b-20240624" !== isomorphicReactPackageVersion)
|
||||
if ("19.0.0-www-classic-89580f209c-20240624" !== 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-classic-c21bcd627b-20240624\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.0.0-www-classic-89580f209c-20240624\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -27435,12 +27438,12 @@ __DEV__ &&
|
||||
scheduleRoot: scheduleRoot,
|
||||
setRefreshHandler: setRefreshHandler,
|
||||
getCurrentFiber: getCurrentFiberForDevTools,
|
||||
reconcilerVersion: "19.0.0-www-classic-c21bcd627b-20240624"
|
||||
reconcilerVersion: "19.0.0-www-classic-89580f209c-20240624"
|
||||
});
|
||||
})({
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-classic-c21bcd627b-20240624",
|
||||
version: "19.0.0-www-classic-89580f209c-20240624",
|
||||
rendererPackageName: "react-dom"
|
||||
}) &&
|
||||
canUseDOM &&
|
||||
@@ -28083,7 +28086,7 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-c21bcd627b-20240624";
|
||||
exports.version = "19.0.0-www-classic-89580f209c-20240624";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -22970,9 +22970,12 @@ __DEV__ &&
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
enableNoCloningMemoCache = dynamicFeatureFlags.enableNoCloningMemoCache,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
enableSchedulingProfiler = dynamicFeatureFlags.enableSchedulingProfiler,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -26512,11 +26515,11 @@ __DEV__ &&
|
||||
return_targetInst = null;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.0.0-www-modern-c21bcd627b-20240624" !== isomorphicReactPackageVersion)
|
||||
if ("19.0.0-www-modern-89580f209c-20240624" !== 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-c21bcd627b-20240624\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.0.0-www-modern-89580f209c-20240624\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -26581,12 +26584,12 @@ __DEV__ &&
|
||||
scheduleRoot: scheduleRoot,
|
||||
setRefreshHandler: setRefreshHandler,
|
||||
getCurrentFiber: getCurrentFiberForDevTools,
|
||||
reconcilerVersion: "19.0.0-www-modern-c21bcd627b-20240624"
|
||||
reconcilerVersion: "19.0.0-www-modern-89580f209c-20240624"
|
||||
});
|
||||
})({
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-modern-c21bcd627b-20240624",
|
||||
version: "19.0.0-www-modern-89580f209c-20240624",
|
||||
rendererPackageName: "react-dom"
|
||||
}) &&
|
||||
canUseDOM &&
|
||||
@@ -27182,7 +27185,7 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-c21bcd627b-20240624";
|
||||
exports.version = "19.0.0-www-modern-89580f209c-20240624";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -60,8 +60,12 @@ var dynamicFeatureFlags = require("ReactFeatureFlags"),
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
enableNoCloningMemoCache = dynamicFeatureFlags.enableNoCloningMemoCache,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
disableLegacyMode = dynamicFeatureFlags.disableLegacyMode,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -2629,7 +2633,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
return (
|
||||
(lanes = createFiberFromTypeAndProps(
|
||||
newChild.type,
|
||||
@@ -2693,7 +2697,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
: updateTextNode(returnFiber, oldFiber, "" + newChild, lanes);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
return newChild.key === key
|
||||
? updateElement(returnFiber, oldFiber, newChild, lanes)
|
||||
: null;
|
||||
@@ -2748,7 +2752,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
return (
|
||||
(existingChildren =
|
||||
existingChildren.get(
|
||||
@@ -2984,7 +2988,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
(newChild = newChild.props.children);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
a: {
|
||||
for (
|
||||
var key = newChild.key, child = currentFirstChild;
|
||||
@@ -17149,14 +17153,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1769 = React.version;
|
||||
if (
|
||||
"19.0.0-www-classic-c21bcd627b-20240624" !==
|
||||
"19.0.0-www-classic-89580f209c-20240624" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1769
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1769,
|
||||
"19.0.0-www-classic-c21bcd627b-20240624"
|
||||
"19.0.0-www-classic-89580f209c-20240624"
|
||||
)
|
||||
);
|
||||
function flushSyncFromReconciler(fn) {
|
||||
@@ -17202,7 +17206,7 @@ Internals.Events = [
|
||||
var devToolsConfig$jscomp$inline_1776 = {
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-classic-c21bcd627b-20240624",
|
||||
version: "19.0.0-www-classic-89580f209c-20240624",
|
||||
rendererPackageName: "react-dom"
|
||||
};
|
||||
var internals$jscomp$inline_2220 = {
|
||||
@@ -17232,7 +17236,7 @@ var internals$jscomp$inline_2220 = {
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-www-classic-c21bcd627b-20240624"
|
||||
reconcilerVersion: "19.0.0-www-classic-89580f209c-20240624"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2221 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -17696,4 +17700,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-c21bcd627b-20240624";
|
||||
exports.version = "19.0.0-www-classic-89580f209c-20240624";
|
||||
|
||||
@@ -60,7 +60,11 @@ var dynamicFeatureFlags = require("ReactFeatureFlags"),
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
enableNoCloningMemoCache = dynamicFeatureFlags.enableNoCloningMemoCache,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -2415,7 +2419,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
return (
|
||||
(lanes = createFiberFromTypeAndProps(
|
||||
newChild.type,
|
||||
@@ -2479,7 +2483,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
: updateTextNode(returnFiber, oldFiber, "" + newChild, lanes);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
return newChild.key === key
|
||||
? updateElement(returnFiber, oldFiber, newChild, lanes)
|
||||
: null;
|
||||
@@ -2534,7 +2538,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
return (
|
||||
(existingChildren =
|
||||
existingChildren.get(
|
||||
@@ -2770,7 +2774,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
(newChild = newChild.props.children);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
a: {
|
||||
for (
|
||||
var key = newChild.key, child = currentFirstChild;
|
||||
@@ -16464,14 +16468,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1740 = React.version;
|
||||
if (
|
||||
"19.0.0-www-modern-c21bcd627b-20240624" !==
|
||||
"19.0.0-www-modern-89580f209c-20240624" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1740
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1740,
|
||||
"19.0.0-www-modern-c21bcd627b-20240624"
|
||||
"19.0.0-www-modern-89580f209c-20240624"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -16490,7 +16494,7 @@ Internals.Events = [
|
||||
var devToolsConfig$jscomp$inline_1742 = {
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-modern-c21bcd627b-20240624",
|
||||
version: "19.0.0-www-modern-89580f209c-20240624",
|
||||
rendererPackageName: "react-dom"
|
||||
};
|
||||
var internals$jscomp$inline_2211 = {
|
||||
@@ -16520,7 +16524,7 @@ var internals$jscomp$inline_2211 = {
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-www-modern-c21bcd627b-20240624"
|
||||
reconcilerVersion: "19.0.0-www-modern-89580f209c-20240624"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2212 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -16891,4 +16895,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-c21bcd627b-20240624";
|
||||
exports.version = "19.0.0-www-modern-89580f209c-20240624";
|
||||
|
||||
@@ -64,9 +64,13 @@ var dynamicFeatureFlags = require("ReactFeatureFlags"),
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
enableNoCloningMemoCache = dynamicFeatureFlags.enableNoCloningMemoCache,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
enableSchedulingProfiler = dynamicFeatureFlags.enableSchedulingProfiler,
|
||||
disableLegacyMode = dynamicFeatureFlags.disableLegacyMode,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -2765,7 +2769,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
return (
|
||||
(lanes = createFiberFromTypeAndProps(
|
||||
newChild.type,
|
||||
@@ -2829,7 +2833,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
: updateTextNode(returnFiber, oldFiber, "" + newChild, lanes);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
return newChild.key === key
|
||||
? updateElement(returnFiber, oldFiber, newChild, lanes)
|
||||
: null;
|
||||
@@ -2884,7 +2888,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
return (
|
||||
(existingChildren =
|
||||
existingChildren.get(
|
||||
@@ -3120,7 +3124,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
(newChild = newChild.props.children);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
a: {
|
||||
for (
|
||||
var key = newChild.key, child = currentFirstChild;
|
||||
@@ -17916,14 +17920,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1856 = React.version;
|
||||
if (
|
||||
"19.0.0-www-classic-c21bcd627b-20240624" !==
|
||||
"19.0.0-www-classic-89580f209c-20240624" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1856
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1856,
|
||||
"19.0.0-www-classic-c21bcd627b-20240624"
|
||||
"19.0.0-www-classic-89580f209c-20240624"
|
||||
)
|
||||
);
|
||||
function flushSyncFromReconciler(fn) {
|
||||
@@ -17969,7 +17973,7 @@ Internals.Events = [
|
||||
var devToolsConfig$jscomp$inline_1863 = {
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-classic-c21bcd627b-20240624",
|
||||
version: "19.0.0-www-classic-89580f209c-20240624",
|
||||
rendererPackageName: "react-dom"
|
||||
};
|
||||
(function (internals) {
|
||||
@@ -18013,7 +18017,7 @@ var devToolsConfig$jscomp$inline_1863 = {
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-www-classic-c21bcd627b-20240624"
|
||||
reconcilerVersion: "19.0.0-www-classic-89580f209c-20240624"
|
||||
});
|
||||
function ReactDOMRoot(internalRoot) {
|
||||
this._internalRoot = internalRoot;
|
||||
@@ -18464,7 +18468,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-c21bcd627b-20240624";
|
||||
exports.version = "19.0.0-www-classic-89580f209c-20240624";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -64,8 +64,12 @@ var dynamicFeatureFlags = require("ReactFeatureFlags"),
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
enableNoCloningMemoCache = dynamicFeatureFlags.enableNoCloningMemoCache,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
enableSchedulingProfiler = dynamicFeatureFlags.enableSchedulingProfiler,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -2551,7 +2555,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
return (
|
||||
(lanes = createFiberFromTypeAndProps(
|
||||
newChild.type,
|
||||
@@ -2615,7 +2619,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
: updateTextNode(returnFiber, oldFiber, "" + newChild, lanes);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
return newChild.key === key
|
||||
? updateElement(returnFiber, oldFiber, newChild, lanes)
|
||||
: null;
|
||||
@@ -2670,7 +2674,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
return (
|
||||
(existingChildren =
|
||||
existingChildren.get(
|
||||
@@ -2906,7 +2910,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
(newChild = newChild.props.children);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
a: {
|
||||
for (
|
||||
var key = newChild.key, child = currentFirstChild;
|
||||
@@ -17214,14 +17218,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1827 = React.version;
|
||||
if (
|
||||
"19.0.0-www-modern-c21bcd627b-20240624" !==
|
||||
"19.0.0-www-modern-89580f209c-20240624" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1827
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1827,
|
||||
"19.0.0-www-modern-c21bcd627b-20240624"
|
||||
"19.0.0-www-modern-89580f209c-20240624"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -17240,7 +17244,7 @@ Internals.Events = [
|
||||
var devToolsConfig$jscomp$inline_1829 = {
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-modern-c21bcd627b-20240624",
|
||||
version: "19.0.0-www-modern-89580f209c-20240624",
|
||||
rendererPackageName: "react-dom"
|
||||
};
|
||||
(function (internals) {
|
||||
@@ -17284,7 +17288,7 @@ var devToolsConfig$jscomp$inline_1829 = {
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-www-modern-c21bcd627b-20240624"
|
||||
reconcilerVersion: "19.0.0-www-modern-89580f209c-20240624"
|
||||
});
|
||||
function ReactDOMRoot(internalRoot) {
|
||||
this._internalRoot = internalRoot;
|
||||
@@ -17642,7 +17646,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-c21bcd627b-20240624";
|
||||
exports.version = "19.0.0-www-modern-89580f209c-20240624";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -7333,7 +7333,11 @@ __DEV__ &&
|
||||
enableRenderableContext = dynamicFeatureFlags.enableRenderableContext,
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
REACT_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -8771,5 +8775,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-c21bcd627b-20240624";
|
||||
exports.version = "19.0.0-www-classic-89580f209c-20240624";
|
||||
})();
|
||||
|
||||
@@ -7291,7 +7291,11 @@ __DEV__ &&
|
||||
enableRenderableContext = dynamicFeatureFlags.enableRenderableContext,
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
REACT_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -8727,5 +8731,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-c21bcd627b-20240624";
|
||||
exports.version = "19.0.0-www-modern-89580f209c-20240624";
|
||||
})();
|
||||
|
||||
@@ -59,7 +59,11 @@ var dynamicFeatureFlags = require("ReactFeatureFlags"),
|
||||
enableRenderableContext = dynamicFeatureFlags.enableRenderableContext,
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -4362,7 +4366,7 @@ function renderNodeDestructive(request, task, node$jscomp$0, childIndex) {
|
||||
) {
|
||||
if ("object" === typeof node$jscomp$0) {
|
||||
switch (node$jscomp$0.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
var type = node$jscomp$0.type,
|
||||
key = node$jscomp$0.key,
|
||||
props = node$jscomp$0.props;
|
||||
@@ -5761,4 +5765,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-c21bcd627b-20240624";
|
||||
exports.version = "19.0.0-www-classic-89580f209c-20240624";
|
||||
|
||||
@@ -59,7 +59,11 @@ var dynamicFeatureFlags = require("ReactFeatureFlags"),
|
||||
enableRenderableContext = dynamicFeatureFlags.enableRenderableContext,
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -4340,7 +4344,7 @@ function renderNodeDestructive(request, task, node$jscomp$0, childIndex) {
|
||||
) {
|
||||
if ("object" === typeof node$jscomp$0) {
|
||||
switch (node$jscomp$0.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
var type = node$jscomp$0.type,
|
||||
key = node$jscomp$0.key,
|
||||
props = node$jscomp$0.props;
|
||||
@@ -5739,4 +5743,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-c21bcd627b-20240624";
|
||||
exports.version = "19.0.0-www-modern-89580f209c-20240624";
|
||||
|
||||
@@ -6760,7 +6760,11 @@ __DEV__ &&
|
||||
enableRenderableContext = dynamicFeatureFlags.enableRenderableContext,
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
REACT_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
|
||||
@@ -44,7 +44,11 @@ var React = require("react"),
|
||||
enableRenderableContext = dynamicFeatureFlags.enableRenderableContext,
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -4208,7 +4212,7 @@ function renderNodeDestructive(request, task, node$jscomp$0, childIndex) {
|
||||
) {
|
||||
if ("object" === typeof node$jscomp$0) {
|
||||
switch (node$jscomp$0.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
var type = node$jscomp$0.type,
|
||||
key = node$jscomp$0.key,
|
||||
props = node$jscomp$0.props;
|
||||
|
||||
@@ -24100,10 +24100,13 @@ __DEV__ &&
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
enableNoCloningMemoCache = dynamicFeatureFlags.enableNoCloningMemoCache,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
enableSchedulingProfiler = dynamicFeatureFlags.enableSchedulingProfiler,
|
||||
disableLegacyMode = dynamicFeatureFlags.disableLegacyMode,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -27699,11 +27702,11 @@ __DEV__ &&
|
||||
: flushSyncErrorInBuildsThatSupportLegacyMode;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.0.0-www-classic-c21bcd627b-20240624" !== isomorphicReactPackageVersion)
|
||||
if ("19.0.0-www-classic-89580f209c-20240624" !== 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-classic-c21bcd627b-20240624\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.0.0-www-classic-89580f209c-20240624\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -27769,12 +27772,12 @@ __DEV__ &&
|
||||
scheduleRoot: scheduleRoot,
|
||||
setRefreshHandler: setRefreshHandler,
|
||||
getCurrentFiber: getCurrentFiberForDevTools,
|
||||
reconcilerVersion: "19.0.0-www-classic-c21bcd627b-20240624"
|
||||
reconcilerVersion: "19.0.0-www-classic-89580f209c-20240624"
|
||||
});
|
||||
})({
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-classic-c21bcd627b-20240624",
|
||||
version: "19.0.0-www-classic-89580f209c-20240624",
|
||||
rendererPackageName: "react-dom"
|
||||
}) &&
|
||||
canUseDOM &&
|
||||
@@ -28583,5 +28586,5 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-c21bcd627b-20240624";
|
||||
exports.version = "19.0.0-www-classic-89580f209c-20240624";
|
||||
})();
|
||||
|
||||
@@ -23254,9 +23254,12 @@ __DEV__ &&
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
enableNoCloningMemoCache = dynamicFeatureFlags.enableNoCloningMemoCache,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
enableSchedulingProfiler = dynamicFeatureFlags.enableSchedulingProfiler,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -26846,11 +26849,11 @@ __DEV__ &&
|
||||
return_targetInst = null;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.0.0-www-modern-c21bcd627b-20240624" !== isomorphicReactPackageVersion)
|
||||
if ("19.0.0-www-modern-89580f209c-20240624" !== 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-c21bcd627b-20240624\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.0.0-www-modern-89580f209c-20240624\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -26915,12 +26918,12 @@ __DEV__ &&
|
||||
scheduleRoot: scheduleRoot,
|
||||
setRefreshHandler: setRefreshHandler,
|
||||
getCurrentFiber: getCurrentFiberForDevTools,
|
||||
reconcilerVersion: "19.0.0-www-modern-c21bcd627b-20240624"
|
||||
reconcilerVersion: "19.0.0-www-modern-89580f209c-20240624"
|
||||
});
|
||||
})({
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-modern-c21bcd627b-20240624",
|
||||
version: "19.0.0-www-modern-89580f209c-20240624",
|
||||
rendererPackageName: "react-dom"
|
||||
}) &&
|
||||
canUseDOM &&
|
||||
@@ -27682,5 +27685,5 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-c21bcd627b-20240624";
|
||||
exports.version = "19.0.0-www-modern-89580f209c-20240624";
|
||||
})();
|
||||
|
||||
@@ -60,8 +60,12 @@ var dynamicFeatureFlags = require("ReactFeatureFlags"),
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
enableNoCloningMemoCache = dynamicFeatureFlags.enableNoCloningMemoCache,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
disableLegacyMode = dynamicFeatureFlags.disableLegacyMode,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -2715,7 +2719,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
return (
|
||||
(lanes = createFiberFromTypeAndProps(
|
||||
newChild.type,
|
||||
@@ -2779,7 +2783,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
: updateTextNode(returnFiber, oldFiber, "" + newChild, lanes);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
return newChild.key === key
|
||||
? updateElement(returnFiber, oldFiber, newChild, lanes)
|
||||
: null;
|
||||
@@ -2834,7 +2838,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
return (
|
||||
(existingChildren =
|
||||
existingChildren.get(
|
||||
@@ -3070,7 +3074,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
(newChild = newChild.props.children);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
a: {
|
||||
for (
|
||||
var key = newChild.key, child = currentFirstChild;
|
||||
@@ -17478,14 +17482,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1799 = React.version;
|
||||
if (
|
||||
"19.0.0-www-classic-c21bcd627b-20240624" !==
|
||||
"19.0.0-www-classic-89580f209c-20240624" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1799
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1799,
|
||||
"19.0.0-www-classic-c21bcd627b-20240624"
|
||||
"19.0.0-www-classic-89580f209c-20240624"
|
||||
)
|
||||
);
|
||||
function flushSyncFromReconciler(fn) {
|
||||
@@ -17531,7 +17535,7 @@ Internals.Events = [
|
||||
var devToolsConfig$jscomp$inline_1806 = {
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-classic-c21bcd627b-20240624",
|
||||
version: "19.0.0-www-classic-89580f209c-20240624",
|
||||
rendererPackageName: "react-dom"
|
||||
};
|
||||
var internals$jscomp$inline_2255 = {
|
||||
@@ -17561,7 +17565,7 @@ var internals$jscomp$inline_2255 = {
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-www-classic-c21bcd627b-20240624"
|
||||
reconcilerVersion: "19.0.0-www-classic-89580f209c-20240624"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2256 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -18176,4 +18180,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-c21bcd627b-20240624";
|
||||
exports.version = "19.0.0-www-classic-89580f209c-20240624";
|
||||
|
||||
@@ -60,7 +60,11 @@ var dynamicFeatureFlags = require("ReactFeatureFlags"),
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
enableNoCloningMemoCache = dynamicFeatureFlags.enableNoCloningMemoCache,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -2560,7 +2564,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
return (
|
||||
(lanes = createFiberFromTypeAndProps(
|
||||
newChild.type,
|
||||
@@ -2624,7 +2628,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
: updateTextNode(returnFiber, oldFiber, "" + newChild, lanes);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
return newChild.key === key
|
||||
? updateElement(returnFiber, oldFiber, newChild, lanes)
|
||||
: null;
|
||||
@@ -2679,7 +2683,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
return (
|
||||
(existingChildren =
|
||||
existingChildren.get(
|
||||
@@ -2915,7 +2919,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
(newChild = newChild.props.children);
|
||||
if ("object" === typeof newChild && null !== newChild) {
|
||||
switch (newChild.$$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
a: {
|
||||
for (
|
||||
var key = newChild.key, child = currentFirstChild;
|
||||
@@ -16852,14 +16856,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1770 = React.version;
|
||||
if (
|
||||
"19.0.0-www-modern-c21bcd627b-20240624" !==
|
||||
"19.0.0-www-modern-89580f209c-20240624" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1770
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1770,
|
||||
"19.0.0-www-modern-c21bcd627b-20240624"
|
||||
"19.0.0-www-modern-89580f209c-20240624"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -16878,7 +16882,7 @@ Internals.Events = [
|
||||
var devToolsConfig$jscomp$inline_1772 = {
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-modern-c21bcd627b-20240624",
|
||||
version: "19.0.0-www-modern-89580f209c-20240624",
|
||||
rendererPackageName: "react-dom"
|
||||
};
|
||||
var internals$jscomp$inline_2246 = {
|
||||
@@ -16908,7 +16912,7 @@ var internals$jscomp$inline_2246 = {
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-www-modern-c21bcd627b-20240624"
|
||||
reconcilerVersion: "19.0.0-www-modern-89580f209c-20240624"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2247 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -17430,4 +17434,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-c21bcd627b-20240624";
|
||||
exports.version = "19.0.0-www-modern-89580f209c-20240624";
|
||||
|
||||
@@ -48,8 +48,12 @@ __DEV__ &&
|
||||
var dynamicFeatureFlags = require("ReactFeatureFlags"),
|
||||
enableDebugTracing = dynamicFeatureFlags.enableDebugTracing,
|
||||
enableTransitionTracing = dynamicFeatureFlags.enableTransitionTracing,
|
||||
enableRenderableContext = dynamicFeatureFlags.enableRenderableContext,
|
||||
REACT_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
enableRenderableContext = dynamicFeatureFlags.enableRenderableContext;
|
||||
dynamicFeatureFlags = dynamicFeatureFlags.renameElementSymbol;
|
||||
var REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = dynamicFeatureFlags
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
|
||||
@@ -48,8 +48,12 @@ __DEV__ &&
|
||||
var dynamicFeatureFlags = require("ReactFeatureFlags"),
|
||||
enableDebugTracing = dynamicFeatureFlags.enableDebugTracing,
|
||||
enableTransitionTracing = dynamicFeatureFlags.enableTransitionTracing,
|
||||
enableRenderableContext = dynamicFeatureFlags.enableRenderableContext,
|
||||
REACT_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
enableRenderableContext = dynamicFeatureFlags.enableRenderableContext;
|
||||
dynamicFeatureFlags = dynamicFeatureFlags.renameElementSymbol;
|
||||
var REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = dynamicFeatureFlags
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
|
||||
@@ -15,7 +15,11 @@ var dynamicFeatureFlags = require("ReactFeatureFlags"),
|
||||
enableDebugTracing = dynamicFeatureFlags.enableDebugTracing,
|
||||
enableTransitionTracing = dynamicFeatureFlags.enableTransitionTracing,
|
||||
enableRenderableContext = dynamicFeatureFlags.enableRenderableContext,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -38,7 +42,7 @@ function typeOf(object) {
|
||||
if ("object" === typeof object && null !== object) {
|
||||
var $$typeof = object.$$typeof;
|
||||
switch ($$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
switch (((object = object.type), object)) {
|
||||
case REACT_FRAGMENT_TYPE:
|
||||
case REACT_PROFILER_TYPE:
|
||||
@@ -73,7 +77,7 @@ exports.ContextConsumer = enableRenderableContext
|
||||
? REACT_CONSUMER_TYPE
|
||||
: REACT_CONTEXT_TYPE;
|
||||
exports.ContextProvider = ContextProvider;
|
||||
exports.Element = REACT_LEGACY_ELEMENT_TYPE;
|
||||
exports.Element = REACT_ELEMENT_TYPE;
|
||||
exports.ForwardRef = REACT_FORWARD_REF_TYPE;
|
||||
exports.Fragment = REACT_FRAGMENT_TYPE;
|
||||
exports.Lazy = REACT_LAZY_TYPE;
|
||||
@@ -97,7 +101,7 @@ exports.isElement = function (object) {
|
||||
return (
|
||||
"object" === typeof object &&
|
||||
null !== object &&
|
||||
object.$$typeof === REACT_LEGACY_ELEMENT_TYPE
|
||||
object.$$typeof === REACT_ELEMENT_TYPE
|
||||
);
|
||||
};
|
||||
exports.isForwardRef = function (object) {
|
||||
|
||||
@@ -15,7 +15,11 @@ var dynamicFeatureFlags = require("ReactFeatureFlags"),
|
||||
enableDebugTracing = dynamicFeatureFlags.enableDebugTracing,
|
||||
enableTransitionTracing = dynamicFeatureFlags.enableTransitionTracing,
|
||||
enableRenderableContext = dynamicFeatureFlags.enableRenderableContext,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -38,7 +42,7 @@ function typeOf(object) {
|
||||
if ("object" === typeof object && null !== object) {
|
||||
var $$typeof = object.$$typeof;
|
||||
switch ($$typeof) {
|
||||
case REACT_LEGACY_ELEMENT_TYPE:
|
||||
case REACT_ELEMENT_TYPE:
|
||||
switch (((object = object.type), object)) {
|
||||
case REACT_FRAGMENT_TYPE:
|
||||
case REACT_PROFILER_TYPE:
|
||||
@@ -73,7 +77,7 @@ exports.ContextConsumer = enableRenderableContext
|
||||
? REACT_CONSUMER_TYPE
|
||||
: REACT_CONTEXT_TYPE;
|
||||
exports.ContextProvider = ContextProvider;
|
||||
exports.Element = REACT_LEGACY_ELEMENT_TYPE;
|
||||
exports.Element = REACT_ELEMENT_TYPE;
|
||||
exports.ForwardRef = REACT_FORWARD_REF_TYPE;
|
||||
exports.Fragment = REACT_FRAGMENT_TYPE;
|
||||
exports.Lazy = REACT_LAZY_TYPE;
|
||||
@@ -97,7 +101,7 @@ exports.isElement = function (object) {
|
||||
return (
|
||||
"object" === typeof object &&
|
||||
null !== object &&
|
||||
object.$$typeof === REACT_LEGACY_ELEMENT_TYPE
|
||||
object.$$typeof === REACT_ELEMENT_TYPE
|
||||
);
|
||||
};
|
||||
exports.isForwardRef = function (object) {
|
||||
|
||||
@@ -16469,10 +16469,13 @@ __DEV__ &&
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
enableNoCloningMemoCache = dynamicFeatureFlags.enableNoCloningMemoCache,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
enableSchedulingProfiler = dynamicFeatureFlags.enableSchedulingProfiler,
|
||||
disableLegacyMode = dynamicFeatureFlags.disableLegacyMode,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -18987,7 +18990,7 @@ __DEV__ &&
|
||||
scheduleRoot: scheduleRoot,
|
||||
setRefreshHandler: setRefreshHandler,
|
||||
getCurrentFiber: getCurrentFiberForDevTools,
|
||||
reconcilerVersion: "19.0.0-www-classic-c21bcd627b-20240624"
|
||||
reconcilerVersion: "19.0.0-www-classic-89580f209c-20240624"
|
||||
});
|
||||
};
|
||||
exports.isAlreadyRendering = function () {
|
||||
|
||||
@@ -15867,9 +15867,12 @@ __DEV__ &&
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
enableNoCloningMemoCache = dynamicFeatureFlags.enableNoCloningMemoCache,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
enableSchedulingProfiler = dynamicFeatureFlags.enableSchedulingProfiler,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -18366,7 +18369,7 @@ __DEV__ &&
|
||||
scheduleRoot: scheduleRoot,
|
||||
setRefreshHandler: setRefreshHandler,
|
||||
getCurrentFiber: getCurrentFiberForDevTools,
|
||||
reconcilerVersion: "19.0.0-www-modern-c21bcd627b-20240624"
|
||||
reconcilerVersion: "19.0.0-www-modern-89580f209c-20240624"
|
||||
});
|
||||
};
|
||||
exports.isAlreadyRendering = function () {
|
||||
|
||||
@@ -11546,9 +11546,12 @@ module.exports = function ($$$config) {
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
enableNoCloningMemoCache = dynamicFeatureFlags.enableNoCloningMemoCache,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
disableLegacyMode = dynamicFeatureFlags.disableLegacyMode,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -12691,7 +12694,7 @@ module.exports = function ($$$config) {
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-www-classic-c21bcd627b-20240624"
|
||||
reconcilerVersion: "19.0.0-www-classic-89580f209c-20240624"
|
||||
};
|
||||
if ("undefined" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__)
|
||||
devToolsConfig = !1;
|
||||
|
||||
@@ -11055,8 +11055,11 @@ module.exports = function ($$$config) {
|
||||
disableDefaultPropsExceptForClasses =
|
||||
dynamicFeatureFlags.disableDefaultPropsExceptForClasses,
|
||||
enableNoCloningMemoCache = dynamicFeatureFlags.enableNoCloningMemoCache,
|
||||
renameElementSymbol = dynamicFeatureFlags.renameElementSymbol,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
||||
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
||||
@@ -12183,7 +12186,7 @@ module.exports = function ($$$config) {
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-www-modern-c21bcd627b-20240624"
|
||||
reconcilerVersion: "19.0.0-www-modern-89580f209c-20240624"
|
||||
};
|
||||
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-c21bcd627b-20240624"
|
||||
reconcilerVersion: "19.0.0-www-classic-89580f209c-20240624"
|
||||
});
|
||||
})({
|
||||
findFiberByHostInstance: function () {
|
||||
throw Error("TestRenderer does not support findFiberByHostInstance()");
|
||||
},
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-classic-c21bcd627b-20240624",
|
||||
version: "19.0.0-www-classic-89580f209c-20240624",
|
||||
rendererPackageName: "react-test-renderer"
|
||||
});
|
||||
exports._Scheduler = Scheduler;
|
||||
|
||||
@@ -14712,14 +14712,14 @@ __DEV__ &&
|
||||
scheduleRoot: scheduleRoot,
|
||||
setRefreshHandler: setRefreshHandler,
|
||||
getCurrentFiber: getCurrentFiberForDevTools,
|
||||
reconcilerVersion: "19.0.0-www-modern-c21bcd627b-20240624"
|
||||
reconcilerVersion: "19.0.0-www-modern-89580f209c-20240624"
|
||||
});
|
||||
})({
|
||||
findFiberByHostInstance: function () {
|
||||
throw Error("TestRenderer does not support findFiberByHostInstance()");
|
||||
},
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-modern-c21bcd627b-20240624",
|
||||
version: "19.0.0-www-modern-89580f209c-20240624",
|
||||
rendererPackageName: "react-test-renderer"
|
||||
});
|
||||
exports._Scheduler = Scheduler;
|
||||
|
||||
@@ -1 +1 @@
|
||||
19.0.0-www-classic-c21bcd627b-20240624
|
||||
19.0.0-www-classic-89580f209c-20240624
|
||||
@@ -1 +1 @@
|
||||
19.0.0-www-modern-c21bcd627b-20240624
|
||||
19.0.0-www-modern-89580f209c-20240624
|
||||
Reference in New Issue
Block a user