From 893bdf02aabdea68a767eecac9333092c124dedc Mon Sep 17 00:00:00 2001 From: jackpope Date: Mon, 24 Jun 2024 16:36:04 +0000 Subject: [PATCH] Set renameElementSymbol to dynamic value (#30066) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Prepare to roll this out with dynamic flag `yarn flags --diff www canary` Screenshot 2024-06-24 at 11 33 55 AM DiffTrain build for [89580f209ce68ae9e266e309dfeb1625b434fb58](https://github.com/facebook/react/commit/89580f209ce68ae9e266e309dfeb1625b434fb58) --- .../facebook-www/JSXDEVRuntime-dev.classic.js | 8 +++++-- .../facebook-www/JSXDEVRuntime-dev.modern.js | 12 ++++++---- compiled/facebook-www/REVISION | 2 +- compiled/facebook-www/REVISION_TRANSFORMS | 2 +- compiled/facebook-www/React-dev.classic.js | 8 +++++-- compiled/facebook-www/React-dev.modern.js | 8 +++++-- compiled/facebook-www/React-prod.classic.js | 12 ++++++---- compiled/facebook-www/React-prod.modern.js | 12 ++++++---- .../facebook-www/React-profiling.classic.js | 12 ++++++---- .../facebook-www/React-profiling.modern.js | 12 ++++++---- compiled/facebook-www/ReactART-dev.classic.js | 9 +++++--- compiled/facebook-www/ReactART-dev.modern.js | 9 +++++--- .../facebook-www/ReactART-prod.classic.js | 16 +++++++++----- compiled/facebook-www/ReactART-prod.modern.js | 16 +++++++++----- compiled/facebook-www/ReactDOM-dev.classic.js | 15 ++++++++----- compiled/facebook-www/ReactDOM-dev.modern.js | 15 ++++++++----- .../facebook-www/ReactDOM-prod.classic.js | 22 +++++++++++-------- compiled/facebook-www/ReactDOM-prod.modern.js | 22 +++++++++++-------- .../ReactDOM-profiling.classic.js | 22 +++++++++++-------- .../facebook-www/ReactDOM-profiling.modern.js | 22 +++++++++++-------- .../ReactDOMServer-dev.classic.js | 8 +++++-- .../facebook-www/ReactDOMServer-dev.modern.js | 8 +++++-- .../ReactDOMServer-prod.classic.js | 8 +++++-- .../ReactDOMServer-prod.modern.js | 8 +++++-- .../ReactDOMServerStreaming-dev.modern.js | 6 ++++- .../ReactDOMServerStreaming-prod.modern.js | 6 ++++- .../ReactDOMTesting-dev.classic.js | 15 ++++++++----- .../ReactDOMTesting-dev.modern.js | 15 ++++++++----- .../ReactDOMTesting-prod.classic.js | 22 +++++++++++-------- .../ReactDOMTesting-prod.modern.js | 22 +++++++++++-------- compiled/facebook-www/ReactIs-dev.classic.js | 8 +++++-- compiled/facebook-www/ReactIs-dev.modern.js | 8 +++++-- compiled/facebook-www/ReactIs-prod.classic.js | 10 ++++++--- compiled/facebook-www/ReactIs-prod.modern.js | 10 ++++++--- .../ReactReconciler-dev.classic.js | 7 ++++-- .../ReactReconciler-dev.modern.js | 7 ++++-- .../ReactReconciler-prod.classic.js | 7 ++++-- .../ReactReconciler-prod.modern.js | 7 ++++-- .../ReactTestRenderer-dev.classic.js | 4 ++-- .../ReactTestRenderer-dev.modern.js | 4 ++-- compiled/facebook-www/VERSION_CLASSIC | 2 +- compiled/facebook-www/VERSION_MODERN | 2 +- 42 files changed, 292 insertions(+), 158 deletions(-) diff --git a/compiled/facebook-www/JSXDEVRuntime-dev.classic.js b/compiled/facebook-www/JSXDEVRuntime-dev.classic.js index 3dbf7d00e9..f64369cdc0 100644 --- a/compiled/facebook-www/JSXDEVRuntime-dev.classic.js +++ b/compiled/facebook-www/JSXDEVRuntime-dev.classic.js @@ -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"), diff --git a/compiled/facebook-www/JSXDEVRuntime-dev.modern.js b/compiled/facebook-www/JSXDEVRuntime-dev.modern.js index 0e1df93ff8..11911356d1 100644 --- a/compiled/facebook-www/JSXDEVRuntime-dev.modern.js +++ b/compiled/facebook-www/JSXDEVRuntime-dev.modern.js @@ -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 = {}; diff --git a/compiled/facebook-www/REVISION b/compiled/facebook-www/REVISION index 67928f2a6d..6d956ea015 100644 --- a/compiled/facebook-www/REVISION +++ b/compiled/facebook-www/REVISION @@ -1 +1 @@ -c21bcd627b6a8f31548edfc149dd3b879fea6558 +89580f209ce68ae9e266e309dfeb1625b434fb58 diff --git a/compiled/facebook-www/REVISION_TRANSFORMS b/compiled/facebook-www/REVISION_TRANSFORMS index 67928f2a6d..6d956ea015 100644 --- a/compiled/facebook-www/REVISION_TRANSFORMS +++ b/compiled/facebook-www/REVISION_TRANSFORMS @@ -1 +1 @@ -c21bcd627b6a8f31548edfc149dd3b879fea6558 +89580f209ce68ae9e266e309dfeb1625b434fb58 diff --git a/compiled/facebook-www/React-dev.classic.js b/compiled/facebook-www/React-dev.classic.js index d944465d9b..53993bd5e4 100644 --- a/compiled/facebook-www/React-dev.classic.js +++ b/compiled/facebook-www/React-dev.classic.js @@ -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 && diff --git a/compiled/facebook-www/React-dev.modern.js b/compiled/facebook-www/React-dev.modern.js index 6f0935b721..b86c1c0d93 100644 --- a/compiled/facebook-www/React-dev.modern.js +++ b/compiled/facebook-www/React-dev.modern.js @@ -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 && diff --git a/compiled/facebook-www/React-prod.classic.js b/compiled/facebook-www/React-prod.classic.js index 22c611a098..88166472a8 100644 --- a/compiled/facebook-www/React-prod.classic.js +++ b/compiled/facebook-www/React-prod.classic.js @@ -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"; diff --git a/compiled/facebook-www/React-prod.modern.js b/compiled/facebook-www/React-prod.modern.js index 48bd9172ae..1aaf52443e 100644 --- a/compiled/facebook-www/React-prod.modern.js +++ b/compiled/facebook-www/React-prod.modern.js @@ -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"; diff --git a/compiled/facebook-www/React-profiling.classic.js b/compiled/facebook-www/React-profiling.classic.js index c403e593c8..f4fc013ebf 100644 --- a/compiled/facebook-www/React-profiling.classic.js +++ b/compiled/facebook-www/React-profiling.classic.js @@ -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 && diff --git a/compiled/facebook-www/React-profiling.modern.js b/compiled/facebook-www/React-profiling.modern.js index 303333d486..99ee4e3e5b 100644 --- a/compiled/facebook-www/React-profiling.modern.js +++ b/compiled/facebook-www/React-profiling.modern.js @@ -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 && diff --git a/compiled/facebook-www/ReactART-dev.classic.js b/compiled/facebook-www/ReactART-dev.classic.js index 6552c5c6ea..7bb1fdd58c 100644 --- a/compiled/facebook-www/ReactART-dev.classic.js +++ b/compiled/facebook-www/ReactART-dev.classic.js @@ -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, diff --git a/compiled/facebook-www/ReactART-dev.modern.js b/compiled/facebook-www/ReactART-dev.modern.js index 76b08fd3eb..08909bc516 100644 --- a/compiled/facebook-www/ReactART-dev.modern.js +++ b/compiled/facebook-www/ReactART-dev.modern.js @@ -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, diff --git a/compiled/facebook-www/ReactART-prod.classic.js b/compiled/facebook-www/ReactART-prod.classic.js index 45502d4eb4..933dd163df 100644 --- a/compiled/facebook-www/ReactART-prod.classic.js +++ b/compiled/facebook-www/ReactART-prod.classic.js @@ -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__; diff --git a/compiled/facebook-www/ReactART-prod.modern.js b/compiled/facebook-www/ReactART-prod.modern.js index 2030036c8c..53ded4ab20 100644 --- a/compiled/facebook-www/ReactART-prod.modern.js +++ b/compiled/facebook-www/ReactART-prod.modern.js @@ -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__; diff --git a/compiled/facebook-www/ReactDOM-dev.classic.js b/compiled/facebook-www/ReactDOM-dev.classic.js index 7265a98d04..2ac1af331b 100644 --- a/compiled/facebook-www/ReactDOM-dev.classic.js +++ b/compiled/facebook-www/ReactDOM-dev.classic.js @@ -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 && diff --git a/compiled/facebook-www/ReactDOM-dev.modern.js b/compiled/facebook-www/ReactDOM-dev.modern.js index f000a40f7a..f2b02808b8 100644 --- a/compiled/facebook-www/ReactDOM-dev.modern.js +++ b/compiled/facebook-www/ReactDOM-dev.modern.js @@ -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 && diff --git a/compiled/facebook-www/ReactDOM-prod.classic.js b/compiled/facebook-www/ReactDOM-prod.classic.js index 23350e353f..1158c9899d 100644 --- a/compiled/facebook-www/ReactDOM-prod.classic.js +++ b/compiled/facebook-www/ReactDOM-prod.classic.js @@ -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"; diff --git a/compiled/facebook-www/ReactDOM-prod.modern.js b/compiled/facebook-www/ReactDOM-prod.modern.js index bb28c36cfe..4cbc5bf7f4 100644 --- a/compiled/facebook-www/ReactDOM-prod.modern.js +++ b/compiled/facebook-www/ReactDOM-prod.modern.js @@ -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"; diff --git a/compiled/facebook-www/ReactDOM-profiling.classic.js b/compiled/facebook-www/ReactDOM-profiling.classic.js index eaf6811319..514a103d3c 100644 --- a/compiled/facebook-www/ReactDOM-profiling.classic.js +++ b/compiled/facebook-www/ReactDOM-profiling.classic.js @@ -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 && diff --git a/compiled/facebook-www/ReactDOM-profiling.modern.js b/compiled/facebook-www/ReactDOM-profiling.modern.js index 00f5eb6bb9..d90bcd0d11 100644 --- a/compiled/facebook-www/ReactDOM-profiling.modern.js +++ b/compiled/facebook-www/ReactDOM-profiling.modern.js @@ -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 && diff --git a/compiled/facebook-www/ReactDOMServer-dev.classic.js b/compiled/facebook-www/ReactDOMServer-dev.classic.js index 91bcb59bca..fbab3247ba 100644 --- a/compiled/facebook-www/ReactDOMServer-dev.classic.js +++ b/compiled/facebook-www/ReactDOMServer-dev.classic.js @@ -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"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-dev.modern.js b/compiled/facebook-www/ReactDOMServer-dev.modern.js index 12d2d61128..589338b5db 100644 --- a/compiled/facebook-www/ReactDOMServer-dev.modern.js +++ b/compiled/facebook-www/ReactDOMServer-dev.modern.js @@ -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"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-prod.classic.js b/compiled/facebook-www/ReactDOMServer-prod.classic.js index f733566a51..c145bb6ade 100644 --- a/compiled/facebook-www/ReactDOMServer-prod.classic.js +++ b/compiled/facebook-www/ReactDOMServer-prod.classic.js @@ -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"; diff --git a/compiled/facebook-www/ReactDOMServer-prod.modern.js b/compiled/facebook-www/ReactDOMServer-prod.modern.js index 1a8ac9f4f2..a5a27a20ac 100644 --- a/compiled/facebook-www/ReactDOMServer-prod.modern.js +++ b/compiled/facebook-www/ReactDOMServer-prod.modern.js @@ -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"; diff --git a/compiled/facebook-www/ReactDOMServerStreaming-dev.modern.js b/compiled/facebook-www/ReactDOMServerStreaming-dev.modern.js index 6c318aba7a..dcc7349fac 100644 --- a/compiled/facebook-www/ReactDOMServerStreaming-dev.modern.js +++ b/compiled/facebook-www/ReactDOMServerStreaming-dev.modern.js @@ -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"), diff --git a/compiled/facebook-www/ReactDOMServerStreaming-prod.modern.js b/compiled/facebook-www/ReactDOMServerStreaming-prod.modern.js index 7c8cb2ef66..d6d85eb332 100644 --- a/compiled/facebook-www/ReactDOMServerStreaming-prod.modern.js +++ b/compiled/facebook-www/ReactDOMServerStreaming-prod.modern.js @@ -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; diff --git a/compiled/facebook-www/ReactDOMTesting-dev.classic.js b/compiled/facebook-www/ReactDOMTesting-dev.classic.js index e1acd76eeb..2ccac49d86 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.classic.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.classic.js @@ -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"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-dev.modern.js b/compiled/facebook-www/ReactDOMTesting-dev.modern.js index 1fd9879147..ca83d999fa 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.modern.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.modern.js @@ -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"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-prod.classic.js b/compiled/facebook-www/ReactDOMTesting-prod.classic.js index 15f4d38fcd..bd1b0387be 100644 --- a/compiled/facebook-www/ReactDOMTesting-prod.classic.js +++ b/compiled/facebook-www/ReactDOMTesting-prod.classic.js @@ -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"; diff --git a/compiled/facebook-www/ReactDOMTesting-prod.modern.js b/compiled/facebook-www/ReactDOMTesting-prod.modern.js index 5771f2046c..4a3c167002 100644 --- a/compiled/facebook-www/ReactDOMTesting-prod.modern.js +++ b/compiled/facebook-www/ReactDOMTesting-prod.modern.js @@ -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"; diff --git a/compiled/facebook-www/ReactIs-dev.classic.js b/compiled/facebook-www/ReactIs-dev.classic.js index 6edc5b3125..d98f90d9ee 100644 --- a/compiled/facebook-www/ReactIs-dev.classic.js +++ b/compiled/facebook-www/ReactIs-dev.classic.js @@ -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"), diff --git a/compiled/facebook-www/ReactIs-dev.modern.js b/compiled/facebook-www/ReactIs-dev.modern.js index 6edc5b3125..d98f90d9ee 100644 --- a/compiled/facebook-www/ReactIs-dev.modern.js +++ b/compiled/facebook-www/ReactIs-dev.modern.js @@ -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"), diff --git a/compiled/facebook-www/ReactIs-prod.classic.js b/compiled/facebook-www/ReactIs-prod.classic.js index 67298f1b7b..1887feda51 100644 --- a/compiled/facebook-www/ReactIs-prod.classic.js +++ b/compiled/facebook-www/ReactIs-prod.classic.js @@ -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) { diff --git a/compiled/facebook-www/ReactIs-prod.modern.js b/compiled/facebook-www/ReactIs-prod.modern.js index 67298f1b7b..1887feda51 100644 --- a/compiled/facebook-www/ReactIs-prod.modern.js +++ b/compiled/facebook-www/ReactIs-prod.modern.js @@ -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) { diff --git a/compiled/facebook-www/ReactReconciler-dev.classic.js b/compiled/facebook-www/ReactReconciler-dev.classic.js index 89d1e1cf76..a909dbecca 100644 --- a/compiled/facebook-www/ReactReconciler-dev.classic.js +++ b/compiled/facebook-www/ReactReconciler-dev.classic.js @@ -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 () { diff --git a/compiled/facebook-www/ReactReconciler-dev.modern.js b/compiled/facebook-www/ReactReconciler-dev.modern.js index 7ae8b2fb8a..1345ec1508 100644 --- a/compiled/facebook-www/ReactReconciler-dev.modern.js +++ b/compiled/facebook-www/ReactReconciler-dev.modern.js @@ -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 () { diff --git a/compiled/facebook-www/ReactReconciler-prod.classic.js b/compiled/facebook-www/ReactReconciler-prod.classic.js index 67c70c3468..dd37754829 100644 --- a/compiled/facebook-www/ReactReconciler-prod.classic.js +++ b/compiled/facebook-www/ReactReconciler-prod.classic.js @@ -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; diff --git a/compiled/facebook-www/ReactReconciler-prod.modern.js b/compiled/facebook-www/ReactReconciler-prod.modern.js index 67f4082025..1b6e1d2d45 100644 --- a/compiled/facebook-www/ReactReconciler-prod.modern.js +++ b/compiled/facebook-www/ReactReconciler-prod.modern.js @@ -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; diff --git a/compiled/facebook-www/ReactTestRenderer-dev.classic.js b/compiled/facebook-www/ReactTestRenderer-dev.classic.js index 29675b76b4..d4a32ab2d6 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.classic.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.classic.js @@ -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; diff --git a/compiled/facebook-www/ReactTestRenderer-dev.modern.js b/compiled/facebook-www/ReactTestRenderer-dev.modern.js index db367c1e10..80d228d1c3 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.modern.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.modern.js @@ -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; diff --git a/compiled/facebook-www/VERSION_CLASSIC b/compiled/facebook-www/VERSION_CLASSIC index 5210073476..43618df6e9 100644 --- a/compiled/facebook-www/VERSION_CLASSIC +++ b/compiled/facebook-www/VERSION_CLASSIC @@ -1 +1 @@ -19.0.0-www-classic-c21bcd627b-20240624 \ No newline at end of file +19.0.0-www-classic-89580f209c-20240624 \ No newline at end of file diff --git a/compiled/facebook-www/VERSION_MODERN b/compiled/facebook-www/VERSION_MODERN index 3484aa443b..5e4486ff3e 100644 --- a/compiled/facebook-www/VERSION_MODERN +++ b/compiled/facebook-www/VERSION_MODERN @@ -1 +1 @@ -19.0.0-www-modern-c21bcd627b-20240624 \ No newline at end of file +19.0.0-www-modern-89580f209c-20240624 \ No newline at end of file