mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
Make renameElementSymbol dynamic for native fb (#32566)
Use variant to begin rolling this out internally.
DiffTrain build for [50ab2dde94](https://github.com/facebook/react/commit/50ab2dde940bf0027773a944da005277b3d5598a)
This commit is contained in:
@@ -1 +1 @@
|
||||
19.1.0-native-fb-cc680065-20250307
|
||||
19.1.0-native-fb-50ab2dde-20250310
|
||||
Vendored
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<5edff3291918daa3857981ff8465b386>>
|
||||
* @generated SignedSource<<6763b97d7b06065e3f5dc442add24cb9>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -404,5 +404,5 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-cc680065-20250307";
|
||||
exports.version = "19.1.0-native-fb-50ab2dde-20250310";
|
||||
})();
|
||||
|
||||
Vendored
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<588a475c946866c40c1cf959e83fadd6>>
|
||||
* @generated SignedSource<<474d18a52fd73302db5fedbf7a66886b>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -203,4 +203,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-cc680065-20250307";
|
||||
exports.version = "19.1.0-native-fb-50ab2dde-20250310";
|
||||
|
||||
Vendored
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<588a475c946866c40c1cf959e83fadd6>>
|
||||
* @generated SignedSource<<474d18a52fd73302db5fedbf7a66886b>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -203,4 +203,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-cc680065-20250307";
|
||||
exports.version = "19.1.0-native-fb-50ab2dde-20250310";
|
||||
|
||||
Vendored
+10
-7
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<0538a76ba9831542fbb02dae6934c679>>
|
||||
* @generated SignedSource<<f3f5787e9cfdbd2fd44d8101d37054e0>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -22353,9 +22353,12 @@ __DEV__ &&
|
||||
enableUseEffectCRUDOverload =
|
||||
dynamicFlagsUntyped.enableUseEffectCRUDOverload,
|
||||
enableSiblingPrerendering = dynamicFlagsUntyped.enableSiblingPrerendering,
|
||||
renameElementSymbol = dynamicFlagsUntyped.renameElementSymbol,
|
||||
assign = Object.assign,
|
||||
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"),
|
||||
@@ -26064,11 +26067,11 @@ __DEV__ &&
|
||||
};
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.1.0-native-fb-cc680065-20250307" !== isomorphicReactPackageVersion)
|
||||
if ("19.1.0-native-fb-50ab2dde-20250310" !== 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.1.0-native-fb-cc680065-20250307\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.1.0-native-fb-50ab2dde-20250310\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -26105,10 +26108,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.1.0-native-fb-cc680065-20250307",
|
||||
version: "19.1.0-native-fb-50ab2dde-20250310",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-cc680065-20250307"
|
||||
reconcilerVersion: "19.1.0-native-fb-50ab2dde-20250310"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -26252,5 +26255,5 @@ __DEV__ &&
|
||||
listenToAllSupportedEvents(container);
|
||||
return new ReactDOMHydrationRoot(initialChildren);
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-cc680065-20250307";
|
||||
exports.version = "19.1.0-native-fb-50ab2dde-20250310";
|
||||
})();
|
||||
|
||||
compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-prod.js
Vendored
+15
-11
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<203350160db7029b23ae52387671cd50>>
|
||||
* @generated SignedSource<<7126c1f0f7c0312944b43bbbd6d55b06>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -40,7 +40,8 @@ var alwaysThrottleRetries = dynamicFlagsUntyped.alwaysThrottleRetries,
|
||||
enablePersistedModeClonedFlag =
|
||||
dynamicFlagsUntyped.enablePersistedModeClonedFlag,
|
||||
enableUseEffectCRUDOverload = dynamicFlagsUntyped.enableUseEffectCRUDOverload,
|
||||
enableSiblingPrerendering = dynamicFlagsUntyped.enableSiblingPrerendering;
|
||||
enableSiblingPrerendering = dynamicFlagsUntyped.enableSiblingPrerendering,
|
||||
renameElementSymbol = dynamicFlagsUntyped.renameElementSymbol;
|
||||
function isValidContainer(node) {
|
||||
return !(
|
||||
!node ||
|
||||
@@ -155,6 +156,9 @@ function findCurrentHostFiberImpl(node) {
|
||||
}
|
||||
var assign = Object.assign,
|
||||
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"),
|
||||
@@ -5087,7 +5091,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,
|
||||
@@ -5151,7 +5155,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;
|
||||
@@ -5206,7 +5210,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(
|
||||
@@ -5442,7 +5446,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; null !== currentFirstChild; ) {
|
||||
if (currentFirstChild.key === key) {
|
||||
@@ -16173,14 +16177,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
||||
};
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1817 = React.version;
|
||||
if (
|
||||
"19.1.0-native-fb-cc680065-20250307" !==
|
||||
"19.1.0-native-fb-50ab2dde-20250310" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1817
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1817,
|
||||
"19.1.0-native-fb-cc680065-20250307"
|
||||
"19.1.0-native-fb-50ab2dde-20250310"
|
||||
)
|
||||
);
|
||||
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
@@ -16202,10 +16206,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
};
|
||||
var internals$jscomp$inline_2290 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-cc680065-20250307",
|
||||
version: "19.1.0-native-fb-50ab2dde-20250310",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-cc680065-20250307"
|
||||
reconcilerVersion: "19.1.0-native-fb-50ab2dde-20250310"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2291 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -16309,4 +16313,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
|
||||
listenToAllSupportedEvents(container);
|
||||
return new ReactDOMHydrationRoot(initialChildren);
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-cc680065-20250307";
|
||||
exports.version = "19.1.0-native-fb-50ab2dde-20250310";
|
||||
|
||||
+15
-11
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<7a330aec4fa972445bd767d7231bc931>>
|
||||
* @generated SignedSource<<d5ae63fdb72be023e5dff41f0e572cd2>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -40,7 +40,8 @@ var alwaysThrottleRetries = dynamicFlagsUntyped.alwaysThrottleRetries,
|
||||
enablePersistedModeClonedFlag =
|
||||
dynamicFlagsUntyped.enablePersistedModeClonedFlag,
|
||||
enableUseEffectCRUDOverload = dynamicFlagsUntyped.enableUseEffectCRUDOverload,
|
||||
enableSiblingPrerendering = dynamicFlagsUntyped.enableSiblingPrerendering;
|
||||
enableSiblingPrerendering = dynamicFlagsUntyped.enableSiblingPrerendering,
|
||||
renameElementSymbol = dynamicFlagsUntyped.renameElementSymbol;
|
||||
function isValidContainer(node) {
|
||||
return !(
|
||||
!node ||
|
||||
@@ -155,6 +156,9 @@ function findCurrentHostFiberImpl(node) {
|
||||
}
|
||||
var assign = Object.assign,
|
||||
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"),
|
||||
@@ -5227,7 +5231,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,
|
||||
@@ -5291,7 +5295,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;
|
||||
@@ -5346,7 +5350,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(
|
||||
@@ -5582,7 +5586,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; null !== currentFirstChild; ) {
|
||||
if (currentFirstChild.key === key) {
|
||||
@@ -16823,14 +16827,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
||||
};
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1912 = React.version;
|
||||
if (
|
||||
"19.1.0-native-fb-cc680065-20250307" !==
|
||||
"19.1.0-native-fb-50ab2dde-20250310" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1912
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1912,
|
||||
"19.1.0-native-fb-cc680065-20250307"
|
||||
"19.1.0-native-fb-50ab2dde-20250310"
|
||||
)
|
||||
);
|
||||
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
@@ -16852,10 +16856,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
};
|
||||
var internals$jscomp$inline_1919 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-cc680065-20250307",
|
||||
version: "19.1.0-native-fb-50ab2dde-20250310",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-cc680065-20250307",
|
||||
reconcilerVersion: "19.1.0-native-fb-50ab2dde-20250310",
|
||||
getLaneLabelMap: function () {
|
||||
for (
|
||||
var map = new Map(), lane = 1, index$294 = 0;
|
||||
@@ -16974,4 +16978,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
|
||||
listenToAllSupportedEvents(container);
|
||||
return new ReactDOMHydrationRoot(initialChildren);
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-cc680065-20250307";
|
||||
exports.version = "19.1.0-native-fb-50ab2dde-20250310";
|
||||
|
||||
+10
-7
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<bdeb7247beb66d1cca26602f057756b5>>
|
||||
* @generated SignedSource<<e36ed991c4596ad688caa81cb1a007e4>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -22414,9 +22414,12 @@ __DEV__ &&
|
||||
enableUseEffectCRUDOverload =
|
||||
dynamicFlagsUntyped.enableUseEffectCRUDOverload,
|
||||
enableSiblingPrerendering = dynamicFlagsUntyped.enableSiblingPrerendering,
|
||||
renameElementSymbol = dynamicFlagsUntyped.renameElementSymbol,
|
||||
assign = Object.assign,
|
||||
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"),
|
||||
@@ -26125,11 +26128,11 @@ __DEV__ &&
|
||||
};
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.1.0-native-fb-cc680065-20250307" !== isomorphicReactPackageVersion)
|
||||
if ("19.1.0-native-fb-50ab2dde-20250310" !== 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.1.0-native-fb-cc680065-20250307\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.1.0-native-fb-50ab2dde-20250310\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -26166,10 +26169,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.1.0-native-fb-cc680065-20250307",
|
||||
version: "19.1.0-native-fb-50ab2dde-20250310",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-cc680065-20250307"
|
||||
reconcilerVersion: "19.1.0-native-fb-50ab2dde-20250310"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -26629,7 +26632,7 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-cc680065-20250307";
|
||||
exports.version = "19.1.0-native-fb-50ab2dde-20250310";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
+15
-11
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<ed9751fa94555f13c9e1cc986321aab1>>
|
||||
* @generated SignedSource<<d3ceb7316bc85e1bedbfe90bfd64183f>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -40,7 +40,8 @@ var alwaysThrottleRetries = dynamicFlagsUntyped.alwaysThrottleRetries,
|
||||
enablePersistedModeClonedFlag =
|
||||
dynamicFlagsUntyped.enablePersistedModeClonedFlag,
|
||||
enableUseEffectCRUDOverload = dynamicFlagsUntyped.enableUseEffectCRUDOverload,
|
||||
enableSiblingPrerendering = dynamicFlagsUntyped.enableSiblingPrerendering;
|
||||
enableSiblingPrerendering = dynamicFlagsUntyped.enableSiblingPrerendering,
|
||||
renameElementSymbol = dynamicFlagsUntyped.renameElementSymbol;
|
||||
function isValidContainer(node) {
|
||||
return !(
|
||||
!node ||
|
||||
@@ -155,6 +156,9 @@ function findCurrentHostFiberImpl(node) {
|
||||
}
|
||||
var assign = Object.assign,
|
||||
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"),
|
||||
@@ -5087,7 +5091,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,
|
||||
@@ -5151,7 +5155,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;
|
||||
@@ -5206,7 +5210,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(
|
||||
@@ -5442,7 +5446,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; null !== currentFirstChild; ) {
|
||||
if (currentFirstChild.key === key) {
|
||||
@@ -16184,14 +16188,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
||||
};
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1818 = React.version;
|
||||
if (
|
||||
"19.1.0-native-fb-cc680065-20250307" !==
|
||||
"19.1.0-native-fb-50ab2dde-20250310" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1818
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1818,
|
||||
"19.1.0-native-fb-cc680065-20250307"
|
||||
"19.1.0-native-fb-50ab2dde-20250310"
|
||||
)
|
||||
);
|
||||
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
@@ -16213,10 +16217,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
};
|
||||
var internals$jscomp$inline_2293 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-cc680065-20250307",
|
||||
version: "19.1.0-native-fb-50ab2dde-20250310",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-cc680065-20250307"
|
||||
reconcilerVersion: "19.1.0-native-fb-50ab2dde-20250310"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2294 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -16474,4 +16478,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-cc680065-20250307";
|
||||
exports.version = "19.1.0-native-fb-50ab2dde-20250310";
|
||||
|
||||
+15
-11
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<6d765dd4f38cc7ab485a323b437fb85d>>
|
||||
* @generated SignedSource<<0728b2a5ac3d13fd80eeb53acfb8798f>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -44,7 +44,8 @@ var alwaysThrottleRetries = dynamicFlagsUntyped.alwaysThrottleRetries,
|
||||
enablePersistedModeClonedFlag =
|
||||
dynamicFlagsUntyped.enablePersistedModeClonedFlag,
|
||||
enableUseEffectCRUDOverload = dynamicFlagsUntyped.enableUseEffectCRUDOverload,
|
||||
enableSiblingPrerendering = dynamicFlagsUntyped.enableSiblingPrerendering;
|
||||
enableSiblingPrerendering = dynamicFlagsUntyped.enableSiblingPrerendering,
|
||||
renameElementSymbol = dynamicFlagsUntyped.renameElementSymbol;
|
||||
function isValidContainer(node) {
|
||||
return !(
|
||||
!node ||
|
||||
@@ -159,6 +160,9 @@ function findCurrentHostFiberImpl(node) {
|
||||
}
|
||||
var assign = Object.assign,
|
||||
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"),
|
||||
@@ -5231,7 +5235,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,
|
||||
@@ -5295,7 +5299,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;
|
||||
@@ -5350,7 +5354,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(
|
||||
@@ -5586,7 +5590,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; null !== currentFirstChild; ) {
|
||||
if (currentFirstChild.key === key) {
|
||||
@@ -16838,14 +16842,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
||||
};
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1913 = React.version;
|
||||
if (
|
||||
"19.1.0-native-fb-cc680065-20250307" !==
|
||||
"19.1.0-native-fb-50ab2dde-20250310" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1913
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1913,
|
||||
"19.1.0-native-fb-cc680065-20250307"
|
||||
"19.1.0-native-fb-50ab2dde-20250310"
|
||||
)
|
||||
);
|
||||
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
@@ -16867,10 +16871,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
};
|
||||
var internals$jscomp$inline_1920 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-cc680065-20250307",
|
||||
version: "19.1.0-native-fb-50ab2dde-20250310",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-cc680065-20250307",
|
||||
reconcilerVersion: "19.1.0-native-fb-50ab2dde-20250310",
|
||||
getLaneLabelMap: function () {
|
||||
for (
|
||||
var map = new Map(), lane = 1, index$294 = 0;
|
||||
@@ -17143,7 +17147,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-cc680065-20250307";
|
||||
exports.version = "19.1.0-native-fb-50ab2dde-20250310";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
Vendored
+7
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<608ceae51e00cabefeebc1da2537e215>>
|
||||
* @generated SignedSource<<3e4580300c23f7364cf41f944eda750d>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -44,7 +44,12 @@ __DEV__ &&
|
||||
}
|
||||
}
|
||||
}
|
||||
var REACT_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
var renameElementSymbol =
|
||||
require("ReactNativeInternalFeatureFlags").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"),
|
||||
|
||||
Vendored
+10
-5
@@ -7,11 +7,16 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<73d358767882eb61a273bd94c8f9775a>>
|
||||
* @generated SignedSource<<067a40ab0533b7fbe5433e72a9615081>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
var REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
var renameElementSymbol =
|
||||
require("ReactNativeInternalFeatureFlags").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"),
|
||||
@@ -31,7 +36,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:
|
||||
@@ -60,7 +65,7 @@ function typeOf(object) {
|
||||
}
|
||||
exports.ContextConsumer = REACT_CONSUMER_TYPE;
|
||||
exports.ContextProvider = REACT_CONTEXT_TYPE;
|
||||
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;
|
||||
@@ -80,7 +85,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) {
|
||||
|
||||
Vendored
+10
-5
@@ -7,11 +7,16 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<73d358767882eb61a273bd94c8f9775a>>
|
||||
* @generated SignedSource<<067a40ab0533b7fbe5433e72a9615081>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
var REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
var renameElementSymbol =
|
||||
require("ReactNativeInternalFeatureFlags").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"),
|
||||
@@ -31,7 +36,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:
|
||||
@@ -60,7 +65,7 @@ function typeOf(object) {
|
||||
}
|
||||
exports.ContextConsumer = REACT_CONSUMER_TYPE;
|
||||
exports.ContextProvider = REACT_CONTEXT_TYPE;
|
||||
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;
|
||||
@@ -80,7 +85,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) {
|
||||
|
||||
+4
-4
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<3c169a1000283535dc6037f9283378b3>>
|
||||
* @generated SignedSource<<9596730251393883c439b0b5f61dcbca>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -15613,10 +15613,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.1.0-native-fb-cc680065-20250307",
|
||||
version: "19.1.0-native-fb-50ab2dde-20250310",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-cc680065-20250307"
|
||||
reconcilerVersion: "19.1.0-native-fb-50ab2dde-20250310"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -15761,5 +15761,5 @@ __DEV__ &&
|
||||
flushSyncWorkAcrossRoots_impl(0, !0));
|
||||
}
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-cc680065-20250307";
|
||||
exports.version = "19.1.0-native-fb-50ab2dde-20250310";
|
||||
})();
|
||||
|
||||
+4
-4
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<0bd79abe7d9ca6e68a6e03e01ba55bcf>>
|
||||
* @generated SignedSource<<f9b32dfa85828a3751cc5686d58d3082>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -9825,10 +9825,10 @@ function wrapFiber(fiber) {
|
||||
}
|
||||
var internals$jscomp$inline_1416 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-cc680065-20250307",
|
||||
version: "19.1.0-native-fb-50ab2dde-20250310",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-cc680065-20250307"
|
||||
reconcilerVersion: "19.1.0-native-fb-50ab2dde-20250310"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1417 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -9964,4 +9964,4 @@ exports.unstable_batchedUpdates = function (fn, a) {
|
||||
flushSyncWorkAcrossRoots_impl(0, !0));
|
||||
}
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-cc680065-20250307";
|
||||
exports.version = "19.1.0-native-fb-50ab2dde-20250310";
|
||||
|
||||
+4
-4
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<4e89f91ec3a449611f4d9254718aa690>>
|
||||
* @generated SignedSource<<53d651848cd31baa5e0893e4ca9a59dc>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -10396,10 +10396,10 @@ function wrapFiber(fiber) {
|
||||
}
|
||||
var internals$jscomp$inline_1227 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-cc680065-20250307",
|
||||
version: "19.1.0-native-fb-50ab2dde-20250310",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-cc680065-20250307",
|
||||
reconcilerVersion: "19.1.0-native-fb-50ab2dde-20250310",
|
||||
getLaneLabelMap: function () {
|
||||
for (
|
||||
var map = new Map(), lane = 1, index$147 = 0;
|
||||
@@ -10550,4 +10550,4 @@ exports.unstable_batchedUpdates = function (fn, a) {
|
||||
flushSyncWorkAcrossRoots_impl(0, !0));
|
||||
}
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-cc680065-20250307";
|
||||
exports.version = "19.1.0-native-fb-50ab2dde-20250310";
|
||||
|
||||
Vendored
+8
-3
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<a1ac152b9f6d8eb7e2dc73d27e537d44>>
|
||||
* @generated SignedSource<<720cae6e180874c8223fc1b37c40df0a>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -281,8 +281,13 @@ __DEV__ &&
|
||||
node._store &&
|
||||
(node._store.validated = 1);
|
||||
}
|
||||
var React = require("react"),
|
||||
REACT_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
var dynamicFlagsUntyped = require("ReactNativeInternalFeatureFlags"),
|
||||
React = require("react");
|
||||
dynamicFlagsUntyped = dynamicFlagsUntyped.renameElementSymbol;
|
||||
var REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = dynamicFlagsUntyped
|
||||
? 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"),
|
||||
|
||||
Vendored
+8
-3
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<6d7a9a58ab0c06d307f489ce3459e171>>
|
||||
* @generated SignedSource<<abf680778749b9bc131e2785769daf82>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -281,8 +281,13 @@ __DEV__ &&
|
||||
node._store &&
|
||||
(node._store.validated = 1);
|
||||
}
|
||||
var React = require("react"),
|
||||
REACT_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
var dynamicFlagsUntyped = require("ReactNativeInternalFeatureFlags"),
|
||||
React = require("react");
|
||||
dynamicFlagsUntyped = dynamicFlagsUntyped.renameElementSymbol;
|
||||
var REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = dynamicFlagsUntyped
|
||||
? 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"),
|
||||
|
||||
Vendored
+8
-3
@@ -7,11 +7,16 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<f4d570e4af3e6311db8ba29ccc9dac66>>
|
||||
* @generated SignedSource<<54cf771c835c47a9b7a7eef69b8e06d3>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
var REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
var renameElementSymbol =
|
||||
require("ReactNativeInternalFeatureFlags").renameElementSymbol,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
|
||||
function jsxProd(type, config, maybeKey) {
|
||||
var key = null;
|
||||
@@ -24,7 +29,7 @@ function jsxProd(type, config, maybeKey) {
|
||||
} else maybeKey = config;
|
||||
config = maybeKey.ref;
|
||||
return {
|
||||
$$typeof: REACT_LEGACY_ELEMENT_TYPE,
|
||||
$$typeof: REACT_ELEMENT_TYPE,
|
||||
type: type,
|
||||
key: key,
|
||||
ref: void 0 !== config ? config : null,
|
||||
|
||||
Vendored
+8
-3
@@ -7,11 +7,16 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<f4d570e4af3e6311db8ba29ccc9dac66>>
|
||||
* @generated SignedSource<<54cf771c835c47a9b7a7eef69b8e06d3>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
var REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
var renameElementSymbol =
|
||||
require("ReactNativeInternalFeatureFlags").renameElementSymbol,
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = renameElementSymbol
|
||||
? Symbol.for("react.transitional.element")
|
||||
: REACT_LEGACY_ELEMENT_TYPE,
|
||||
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
|
||||
function jsxProd(type, config, maybeKey) {
|
||||
var key = null;
|
||||
@@ -24,7 +29,7 @@ function jsxProd(type, config, maybeKey) {
|
||||
} else maybeKey = config;
|
||||
config = maybeKey.ref;
|
||||
return {
|
||||
$$typeof: REACT_LEGACY_ELEMENT_TYPE,
|
||||
$$typeof: REACT_ELEMENT_TYPE,
|
||||
type: type,
|
||||
key: key,
|
||||
ref: void 0 !== config ? config : null,
|
||||
|
||||
+24
-20
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<8d99bc6cec263574ded9c3094de604af>>
|
||||
* @generated SignedSource<<21565715a09b85c6705e08b66f7bc712>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -664,9 +664,13 @@ __DEV__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart &&
|
||||
__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());
|
||||
var enableUseEffectCRUDOverload =
|
||||
require("ReactNativeInternalFeatureFlags").enableUseEffectCRUDOverload,
|
||||
REACT_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
var dynamicFlags = require("ReactNativeInternalFeatureFlags"),
|
||||
enableUseEffectCRUDOverload = dynamicFlags.enableUseEffectCRUDOverload;
|
||||
dynamicFlags = dynamicFlags.renameElementSymbol;
|
||||
var REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
REACT_ELEMENT_TYPE = dynamicFlags
|
||||
? 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"),
|
||||
@@ -678,11 +682,11 @@ __DEV__ &&
|
||||
REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"),
|
||||
REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"),
|
||||
REACT_MEMO_TYPE = Symbol.for("react.memo"),
|
||||
REACT_LAZY_TYPE = Symbol.for("react.lazy"),
|
||||
REACT_SCOPE_TYPE = Symbol.for("react.scope"),
|
||||
REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"),
|
||||
REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden"),
|
||||
REACT_TRACING_MARKER_TYPE = Symbol.for("react.tracing_marker"),
|
||||
REACT_LAZY_TYPE = Symbol.for("react.lazy");
|
||||
dynamicFlags = Symbol.for("react.scope");
|
||||
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
|
||||
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.legacy_hidden");
|
||||
var REACT_TRACING_MARKER_TYPE = Symbol.for("react.tracing_marker"),
|
||||
REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition"),
|
||||
MAYBE_ITERATOR_SYMBOL = Symbol.iterator,
|
||||
didWarnStateUpdateForUnmountedComponent = {},
|
||||
@@ -732,10 +736,10 @@ __DEV__ &&
|
||||
deprecatedAPIs.hasOwnProperty(fnName) &&
|
||||
defineDeprecationWarning(fnName, deprecatedAPIs[fnName]);
|
||||
ComponentDummy.prototype = Component.prototype;
|
||||
deprecatedAPIs = PureComponent.prototype = new ComponentDummy();
|
||||
deprecatedAPIs.constructor = PureComponent;
|
||||
assign(deprecatedAPIs, Component.prototype);
|
||||
deprecatedAPIs.isPureReactComponent = !0;
|
||||
var fnName = (PureComponent.prototype = new ComponentDummy());
|
||||
fnName.constructor = PureComponent;
|
||||
assign(fnName, Component.prototype);
|
||||
fnName.isPureReactComponent = !0;
|
||||
var isArrayImpl = Array.isArray,
|
||||
REACT_CLIENT_REFERENCE$1 = Symbol.for("react.client.reference"),
|
||||
ReactSharedInternals = {
|
||||
@@ -806,8 +810,8 @@ __DEV__ &&
|
||||
});
|
||||
}
|
||||
: enqueueTask;
|
||||
deprecatedAPIs = Object.freeze({ __proto__: null, c: useMemoCache });
|
||||
var fnName = {
|
||||
fnName = Object.freeze({ __proto__: null, c: useMemoCache });
|
||||
deprecatedAPIs = {
|
||||
map: mapChildren,
|
||||
forEach: function (children, forEachFunc, forEachContext) {
|
||||
mapChildren(
|
||||
@@ -845,7 +849,7 @@ __DEV__ &&
|
||||
var getCurrentStack = ReactSharedInternals.getCurrentStack;
|
||||
return null === getCurrentStack ? null : getCurrentStack();
|
||||
};
|
||||
exports.Children = fnName;
|
||||
exports.Children = deprecatedAPIs;
|
||||
exports.Component = Component;
|
||||
exports.Fragment = REACT_FRAGMENT_TYPE;
|
||||
exports.Profiler = REACT_PROFILER_TYPE;
|
||||
@@ -854,7 +858,7 @@ __DEV__ &&
|
||||
exports.Suspense = REACT_SUSPENSE_TYPE;
|
||||
exports.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =
|
||||
ReactSharedInternals;
|
||||
exports.__COMPILER_RUNTIME = deprecatedAPIs;
|
||||
exports.__COMPILER_RUNTIME = fnName;
|
||||
exports.act = function (callback) {
|
||||
var prevIsBatchingLegacy = ReactSharedInternals.isBatchingLegacy,
|
||||
prevActQueue = ReactSharedInternals.actQueue,
|
||||
@@ -1287,8 +1291,8 @@ __DEV__ &&
|
||||
}
|
||||
};
|
||||
exports.unstable_Activity = REACT_OFFSCREEN_TYPE;
|
||||
exports.unstable_LegacyHidden = REACT_LEGACY_HIDDEN_TYPE;
|
||||
exports.unstable_Scope = REACT_SCOPE_TYPE;
|
||||
exports.unstable_LegacyHidden = REACT_LEGACY_ELEMENT_TYPE;
|
||||
exports.unstable_Scope = dynamicFlags;
|
||||
exports.unstable_SuspenseList = REACT_SUSPENSE_LIST_TYPE;
|
||||
exports.unstable_TracingMarker = REACT_TRACING_MARKER_TYPE;
|
||||
exports.unstable_ViewTransition = REACT_VIEW_TRANSITION_TYPE;
|
||||
@@ -1414,7 +1418,7 @@ __DEV__ &&
|
||||
exports.useTransition = function () {
|
||||
return resolveDispatcher().useTransition();
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-cc680065-20250307";
|
||||
exports.version = "19.1.0-native-fb-50ab2dde-20250310";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
+11
-7
@@ -7,13 +7,17 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<e0ec5074cffa1643e846ece7cc4e1a95>>
|
||||
* @generated SignedSource<<11f92db0c33344013525c3f2d71047b0>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
var enableUseEffectCRUDOverload =
|
||||
require("ReactNativeInternalFeatureFlags").enableUseEffectCRUDOverload,
|
||||
var dynamicFlagsUntyped = require("ReactNativeInternalFeatureFlags"),
|
||||
enableUseEffectCRUDOverload = dynamicFlagsUntyped.enableUseEffectCRUDOverload,
|
||||
renameElementSymbol = dynamicFlagsUntyped.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"),
|
||||
@@ -87,7 +91,7 @@ var isArrayImpl = Array.isArray,
|
||||
function ReactElement(type, key, self, source, owner, props) {
|
||||
self = props.ref;
|
||||
return {
|
||||
$$typeof: REACT_LEGACY_ELEMENT_TYPE,
|
||||
$$typeof: REACT_ELEMENT_TYPE,
|
||||
type: type,
|
||||
key: key,
|
||||
ref: void 0 !== self ? self : null,
|
||||
@@ -119,7 +123,7 @@ function isValidElement(object) {
|
||||
return (
|
||||
"object" === typeof object &&
|
||||
null !== object &&
|
||||
object.$$typeof === REACT_LEGACY_ELEMENT_TYPE
|
||||
object.$$typeof === REACT_ELEMENT_TYPE
|
||||
);
|
||||
}
|
||||
function escape(key) {
|
||||
@@ -184,7 +188,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;
|
||||
@@ -603,4 +607,4 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-cc680065-20250307";
|
||||
exports.version = "19.1.0-native-fb-50ab2dde-20250310";
|
||||
|
||||
Vendored
+11
-7
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<54fc94ddf27e82c5890c2db787814091>>
|
||||
* @generated SignedSource<<66e603c320f24373204c20ef148cb796>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -15,9 +15,13 @@
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart &&
|
||||
__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());
|
||||
var enableUseEffectCRUDOverload =
|
||||
require("ReactNativeInternalFeatureFlags").enableUseEffectCRUDOverload,
|
||||
var dynamicFlagsUntyped = require("ReactNativeInternalFeatureFlags"),
|
||||
enableUseEffectCRUDOverload = dynamicFlagsUntyped.enableUseEffectCRUDOverload,
|
||||
renameElementSymbol = dynamicFlagsUntyped.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"),
|
||||
@@ -91,7 +95,7 @@ var isArrayImpl = Array.isArray,
|
||||
function ReactElement(type, key, self, source, owner, props) {
|
||||
self = props.ref;
|
||||
return {
|
||||
$$typeof: REACT_LEGACY_ELEMENT_TYPE,
|
||||
$$typeof: REACT_ELEMENT_TYPE,
|
||||
type: type,
|
||||
key: key,
|
||||
ref: void 0 !== self ? self : null,
|
||||
@@ -123,7 +127,7 @@ function isValidElement(object) {
|
||||
return (
|
||||
"object" === typeof object &&
|
||||
null !== object &&
|
||||
object.$$typeof === REACT_LEGACY_ELEMENT_TYPE
|
||||
object.$$typeof === REACT_ELEMENT_TYPE
|
||||
);
|
||||
}
|
||||
function escape(key) {
|
||||
@@ -188,7 +192,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;
|
||||
@@ -607,7 +611,7 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-cc680065-20250307";
|
||||
exports.version = "19.1.0-native-fb-50ab2dde-20250310";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
cc680065c33739cc4c8cd2e8a67312b0c16a6ccc
|
||||
696950aa69e3f2ef0d720c82705e02b532904d70
|
||||
|
||||
+7
-4
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<b5158928793dc9a03741ced8d569f157>>
|
||||
* @generated SignedSource<<9365b560e937c619b4c18c65b56e79e0>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -14602,6 +14602,7 @@ __DEV__ &&
|
||||
dynamicFlagsUntyped.enableFastAddPropertiesInDiffing,
|
||||
enableLazyPublicInstanceInFabric =
|
||||
dynamicFlagsUntyped.enableLazyPublicInstanceInFabric,
|
||||
renameElementSymbol = dynamicFlagsUntyped.renameElementSymbol,
|
||||
assign = Object.assign,
|
||||
disabledDepth = 0,
|
||||
prevLog,
|
||||
@@ -14619,7 +14620,9 @@ __DEV__ &&
|
||||
"function" === typeof WeakMap ? WeakMap : Map
|
||||
)();
|
||||
var 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"),
|
||||
@@ -17455,10 +17458,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.1.0-native-fb-cc680065-20250307",
|
||||
version: "19.1.0-native-fb-50ab2dde-20250310",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-cc680065-20250307"
|
||||
reconcilerVersion: "19.1.0-native-fb-50ab2dde-20250310"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
+11
-7
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<3ff754b828c54f1798bf4d2946f551eb>>
|
||||
* @generated SignedSource<<e8877ea452fbc52bd0efc2ef1c59431f>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -36,6 +36,7 @@ var ReactNativePrivateInterface = require("react-native/Libraries/ReactPrivate/R
|
||||
dynamicFlagsUntyped.enableFastAddPropertiesInDiffing,
|
||||
enableLazyPublicInstanceInFabric =
|
||||
dynamicFlagsUntyped.enableLazyPublicInstanceInFabric,
|
||||
renameElementSymbol = dynamicFlagsUntyped.renameElementSymbol,
|
||||
assign = Object.assign,
|
||||
prefix,
|
||||
suffix;
|
||||
@@ -225,6 +226,9 @@ function getStackByFiberInDevAndProd(workInProgress) {
|
||||
}
|
||||
}
|
||||
var 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"),
|
||||
@@ -4707,7 +4711,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,
|
||||
@@ -4771,7 +4775,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;
|
||||
@@ -4826,7 +4830,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(
|
||||
@@ -5055,7 +5059,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; null !== currentFirstChild; ) {
|
||||
if (currentFirstChild.key === key) {
|
||||
@@ -11105,10 +11109,10 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1245 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-cc680065-20250307",
|
||||
version: "19.1.0-native-fb-50ab2dde-20250310",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-cc680065-20250307"
|
||||
reconcilerVersion: "19.1.0-native-fb-50ab2dde-20250310"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1245.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
+11
-7
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<02d09af0971dbfe3f359e4f18b51a7f9>>
|
||||
* @generated SignedSource<<f401b7d0cecbeb47217a3b034400f6d1>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -40,6 +40,7 @@ var ReactNativePrivateInterface = require("react-native/Libraries/ReactPrivate/R
|
||||
dynamicFlagsUntyped.enableFastAddPropertiesInDiffing,
|
||||
enableLazyPublicInstanceInFabric =
|
||||
dynamicFlagsUntyped.enableLazyPublicInstanceInFabric,
|
||||
renameElementSymbol = dynamicFlagsUntyped.renameElementSymbol,
|
||||
assign = Object.assign,
|
||||
prefix,
|
||||
suffix;
|
||||
@@ -229,6 +230,9 @@ function getStackByFiberInDevAndProd(workInProgress) {
|
||||
}
|
||||
}
|
||||
var 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"),
|
||||
@@ -4849,7 +4853,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,
|
||||
@@ -4913,7 +4917,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;
|
||||
@@ -4968,7 +4972,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(
|
||||
@@ -5197,7 +5201,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; null !== currentFirstChild; ) {
|
||||
if (currentFirstChild.key === key) {
|
||||
@@ -11758,10 +11762,10 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1338 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-cc680065-20250307",
|
||||
version: "19.1.0-native-fb-50ab2dde-20250310",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-cc680065-20250307"
|
||||
reconcilerVersion: "19.1.0-native-fb-50ab2dde-20250310"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1338.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
+9
-6
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<b587eed4b9f3310f3dc1ab948d174cb1>>
|
||||
* @generated SignedSource<<78435502c3919741163132bcf99f4f2d>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -14690,6 +14690,7 @@ __DEV__ &&
|
||||
enableUseEffectCRUDOverload =
|
||||
dynamicFlagsUntyped.enableUseEffectCRUDOverload,
|
||||
enableSiblingPrerendering = dynamicFlagsUntyped.enableSiblingPrerendering,
|
||||
renameElementSymbol = dynamicFlagsUntyped.renameElementSymbol,
|
||||
assign = Object.assign,
|
||||
disabledDepth = 0,
|
||||
prevLog,
|
||||
@@ -14707,7 +14708,9 @@ __DEV__ &&
|
||||
"function" === typeof WeakMap ? WeakMap : Map
|
||||
)();
|
||||
var 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"),
|
||||
@@ -17612,11 +17615,11 @@ __DEV__ &&
|
||||
shouldSuspendImpl = newShouldSuspendImpl;
|
||||
};
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.1.0-native-fb-cc680065-20250307" !== isomorphicReactPackageVersion)
|
||||
if ("19.1.0-native-fb-50ab2dde-20250310" !== isomorphicReactPackageVersion)
|
||||
throw Error(
|
||||
'Incompatible React versions: The "react" and "react-native-renderer" packages must have the exact same version. Instead got:\n - react: ' +
|
||||
(isomorphicReactPackageVersion +
|
||||
"\n - react-native-renderer: 19.1.0-native-fb-cc680065-20250307\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-native-renderer: 19.1.0-native-fb-50ab2dde-20250310\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
if (
|
||||
"function" !==
|
||||
@@ -17642,10 +17645,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.1.0-native-fb-cc680065-20250307",
|
||||
version: "19.1.0-native-fb-50ab2dde-20250310",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-cc680065-20250307"
|
||||
reconcilerVersion: "19.1.0-native-fb-50ab2dde-20250310"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
+13
-9
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<7340e4d93d22b10090f0669afc60bafe>>
|
||||
* @generated SignedSource<<36a5ea1ca29cadf5929c4c1f86d8a38e>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -27,6 +27,7 @@ var ReactNativePrivateInterface = require("react-native/Libraries/ReactPrivate/R
|
||||
dynamicFlagsUntyped.enablePersistedModeClonedFlag,
|
||||
enableUseEffectCRUDOverload = dynamicFlagsUntyped.enableUseEffectCRUDOverload,
|
||||
enableSiblingPrerendering = dynamicFlagsUntyped.enableSiblingPrerendering,
|
||||
renameElementSymbol = dynamicFlagsUntyped.renameElementSymbol,
|
||||
assign = Object.assign,
|
||||
prefix,
|
||||
suffix;
|
||||
@@ -216,6 +217,9 @@ function getStackByFiberInDevAndProd(workInProgress) {
|
||||
}
|
||||
}
|
||||
var 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"),
|
||||
@@ -4871,7 +4875,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,
|
||||
@@ -4935,7 +4939,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;
|
||||
@@ -4990,7 +4994,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(
|
||||
@@ -5219,7 +5223,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; null !== currentFirstChild; ) {
|
||||
if (currentFirstChild.key === key) {
|
||||
@@ -11181,11 +11185,11 @@ function updateContainer(element, container, parentComponent, callback) {
|
||||
return lane;
|
||||
}
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.1.0-native-fb-cc680065-20250307" !== isomorphicReactPackageVersion)
|
||||
if ("19.1.0-native-fb-50ab2dde-20250310" !== isomorphicReactPackageVersion)
|
||||
throw Error(
|
||||
'Incompatible React versions: The "react" and "react-native-renderer" packages must have the exact same version. Instead got:\n - react: ' +
|
||||
(isomorphicReactPackageVersion +
|
||||
"\n - react-native-renderer: 19.1.0-native-fb-cc680065-20250307\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-native-renderer: 19.1.0-native-fb-50ab2dde-20250310\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
if (
|
||||
"function" !==
|
||||
@@ -11234,10 +11238,10 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1292 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-cc680065-20250307",
|
||||
version: "19.1.0-native-fb-50ab2dde-20250310",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-cc680065-20250307"
|
||||
reconcilerVersion: "19.1.0-native-fb-50ab2dde-20250310"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1292.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
+13
-9
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<e0afae988fa2563080a265c64dd6afb7>>
|
||||
* @generated SignedSource<<592c03c54372da4b3d2df33c58e5cd59>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -31,6 +31,7 @@ var ReactNativePrivateInterface = require("react-native/Libraries/ReactPrivate/R
|
||||
dynamicFlagsUntyped.enablePersistedModeClonedFlag,
|
||||
enableUseEffectCRUDOverload = dynamicFlagsUntyped.enableUseEffectCRUDOverload,
|
||||
enableSiblingPrerendering = dynamicFlagsUntyped.enableSiblingPrerendering,
|
||||
renameElementSymbol = dynamicFlagsUntyped.renameElementSymbol,
|
||||
assign = Object.assign,
|
||||
prefix,
|
||||
suffix;
|
||||
@@ -220,6 +221,9 @@ function getStackByFiberInDevAndProd(workInProgress) {
|
||||
}
|
||||
}
|
||||
var 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"),
|
||||
@@ -5013,7 +5017,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,
|
||||
@@ -5077,7 +5081,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;
|
||||
@@ -5132,7 +5136,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(
|
||||
@@ -5361,7 +5365,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; null !== currentFirstChild; ) {
|
||||
if (currentFirstChild.key === key) {
|
||||
@@ -11834,11 +11838,11 @@ function updateContainer(element, container, parentComponent, callback) {
|
||||
return lane;
|
||||
}
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.1.0-native-fb-cc680065-20250307" !== isomorphicReactPackageVersion)
|
||||
if ("19.1.0-native-fb-50ab2dde-20250310" !== isomorphicReactPackageVersion)
|
||||
throw Error(
|
||||
'Incompatible React versions: The "react" and "react-native-renderer" packages must have the exact same version. Instead got:\n - react: ' +
|
||||
(isomorphicReactPackageVersion +
|
||||
"\n - react-native-renderer: 19.1.0-native-fb-cc680065-20250307\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-native-renderer: 19.1.0-native-fb-50ab2dde-20250310\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
if (
|
||||
"function" !==
|
||||
@@ -11887,10 +11891,10 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1385 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-cc680065-20250307",
|
||||
version: "19.1.0-native-fb-50ab2dde-20250310",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-cc680065-20250307"
|
||||
reconcilerVersion: "19.1.0-native-fb-50ab2dde-20250310"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1385.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
Reference in New Issue
Block a user