From bcae4ac1992bdfe7b43378b2f9da50ac87cc5625 Mon Sep 17 00:00:00 2001
From: sebmarkbage <63648+sebmarkbage@users.noreply.github.com>
Date: Tue, 25 Feb 2025 09:53:58 -0800
Subject: [PATCH] Use valid CSS selectors in useId format (#32001)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
For the `useId` algorithm we used colon `:` before and after.
https://github.com/facebook/react/pull/23360
This avoids collisions in general by using an unusual characters. It
also avoids collisions when concatenated with some other ID.
Unfortunately, `:` is not a valid character in `view-transition-name`.
This PR swaps the format from:
```
:r123:
```
To the unicode:
```
«r123»
```
Which is valid CSS selectors. This also allows them being used for
`querySelector()` which we didn't really find a legit use for but seems
ok-ish.
That way you can get a view-transition-name that you can manually
reference. E.g. to generate styles:
```js
const id = useId();
return <>
...
>;
```
DiffTrain build for [2e4db3344f030fe622152ecc231a7c99a81a9c9d](https://github.com/facebook/react/commit/2e4db3344f030fe622152ecc231a7c99a81a9c9d)
---
compiled-rn/VERSION_NATIVE_FB | 2 +-
.../react/react-dom/cjs/ReactDOM-dev.js | 4 ++--
.../react/react-dom/cjs/ReactDOM-prod.js | 4 ++--
.../react/react-dom/cjs/ReactDOM-profiling.js | 4 ++--
.../react/react-dom/cjs/ReactDOMClient-dev.js | 18 ++++++++---------
.../react-dom/cjs/ReactDOMClient-prod.js | 20 +++++++++----------
.../react-dom/cjs/ReactDOMClient-profiling.js | 20 +++++++++----------
.../react-dom/cjs/ReactDOMProfiling-dev.js | 18 ++++++++---------
.../react-dom/cjs/ReactDOMProfiling-prod.js | 20 +++++++++----------
.../cjs/ReactDOMProfiling-profiling.js | 20 +++++++++----------
.../cjs/ReactTestRenderer-dev.js | 14 ++++++++-----
.../cjs/ReactTestRenderer-prod.js | 14 ++++++++-----
.../cjs/ReactTestRenderer-profiling.js | 14 ++++++++-----
.../vendor/react/react/cjs/React-dev.js | 4 ++--
.../vendor/react/react/cjs/React-prod.js | 4 ++--
.../vendor/react/react/cjs/React-profiling.js | 4 ++--
.../Libraries/Renderer/REVISION | 2 +-
.../implementations/ReactFabric-dev.fb.js | 12 +++++++----
.../implementations/ReactFabric-prod.fb.js | 12 +++++++----
.../ReactFabric-profiling.fb.js | 12 +++++++----
.../ReactNativeRenderer-dev.fb.js | 16 +++++++++------
.../ReactNativeRenderer-prod.fb.js | 16 +++++++++------
.../ReactNativeRenderer-profiling.fb.js | 16 +++++++++------
23 files changed, 153 insertions(+), 117 deletions(-)
diff --git a/compiled-rn/VERSION_NATIVE_FB b/compiled-rn/VERSION_NATIVE_FB
index 1289358edc..610ec028ea 100644
--- a/compiled-rn/VERSION_NATIVE_FB
+++ b/compiled-rn/VERSION_NATIVE_FB
@@ -1 +1 @@
-19.1.0-native-fb-22e39ea7-20250225
\ No newline at end of file
+19.1.0-native-fb-2e4db334-20250225
\ No newline at end of file
diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-dev.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-dev.js
index f892b0ea59..5563b4c890 100644
--- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-dev.js
+++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-dev.js
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
- * @generated SignedSource<>
+ * @generated SignedSource<>
*/
"use strict";
@@ -404,5 +404,5 @@ __DEV__ &&
exports.useFormStatus = function () {
return resolveDispatcher().useHostTransitionStatus();
};
- exports.version = "19.1.0-native-fb-22e39ea7-20250225";
+ exports.version = "19.1.0-native-fb-2e4db334-20250225";
})();
diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-prod.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-prod.js
index 51e2f3ec93..dcbb0cd93d 100644
--- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-prod.js
+++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-prod.js
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
- * @generated SignedSource<>
+ * @generated SignedSource<>
*/
"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-22e39ea7-20250225";
+exports.version = "19.1.0-native-fb-2e4db334-20250225";
diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-profiling.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-profiling.js
index 51e2f3ec93..dcbb0cd93d 100644
--- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-profiling.js
+++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-profiling.js
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
- * @generated SignedSource<>
+ * @generated SignedSource<>
*/
"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-22e39ea7-20250225";
+exports.version = "19.1.0-native-fb-2e4db334-20250225";
diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-dev.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-dev.js
index c008b50709..c38c74316d 100644
--- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-dev.js
+++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-dev.js
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
- * @generated SignedSource<<1fd06ffcb012198fdeab97d6068359ab>>
+ * @generated SignedSource<<560c3d223c36cf7b055fccab04c780f6>>
*/
/*
@@ -6996,14 +6996,14 @@ __DEV__ &&
(
idWithLeadingBit & ~(1 << (32 - clz32(idWithLeadingBit) - 1))
).toString(32) + treeId;
- identifierPrefix = ":" + identifierPrefix + "R" + treeId;
+ identifierPrefix = "\u00ab" + identifierPrefix + "R" + treeId;
treeId = localIdCounter++;
0 < treeId && (identifierPrefix += "H" + treeId.toString(32));
- identifierPrefix += ":";
+ identifierPrefix += "\u00bb";
} else
(treeId = globalClientIdCounter++),
(identifierPrefix =
- ":" + identifierPrefix + "r" + treeId.toString(32) + ":");
+ "\u00ab" + identifierPrefix + "r" + treeId.toString(32) + "\u00bb");
return (hook.memoizedState = identifierPrefix);
}
function mountRefresh() {
@@ -25886,11 +25886,11 @@ __DEV__ &&
};
(function () {
var isomorphicReactPackageVersion = React.version;
- if ("19.1.0-native-fb-22e39ea7-20250225" !== isomorphicReactPackageVersion)
+ if ("19.1.0-native-fb-2e4db334-20250225" !== 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-22e39ea7-20250225\nLearn more: https://react.dev/warnings/version-mismatch")
+ "\n - react-dom: 19.1.0-native-fb-2e4db334-20250225\nLearn more: https://react.dev/warnings/version-mismatch")
);
})();
("function" === typeof Map &&
@@ -25927,10 +25927,10 @@ __DEV__ &&
!(function () {
var internals = {
bundleType: 1,
- version: "19.1.0-native-fb-22e39ea7-20250225",
+ version: "19.1.0-native-fb-2e4db334-20250225",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
- reconcilerVersion: "19.1.0-native-fb-22e39ea7-20250225"
+ reconcilerVersion: "19.1.0-native-fb-2e4db334-20250225"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -26074,5 +26074,5 @@ __DEV__ &&
listenToAllSupportedEvents(container);
return new ReactDOMHydrationRoot(initialChildren);
};
- exports.version = "19.1.0-native-fb-22e39ea7-20250225";
+ exports.version = "19.1.0-native-fb-2e4db334-20250225";
})();
diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-prod.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-prod.js
index eec351aea0..e4a87c4ca2 100644
--- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-prod.js
+++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-prod.js
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
- * @generated SignedSource<>
+ * @generated SignedSource<<1751b688cf717ea8cc7c1508460e9578>>
*/
/*
@@ -4767,19 +4767,19 @@ var ContextOnlyDispatcher = {
idWithLeadingBit & ~(1 << (32 - clz32(idWithLeadingBit) - 1))
).toString(32) + JSCompiler_inline_result;
identifierPrefix =
- ":" + identifierPrefix + "R" + JSCompiler_inline_result;
+ "\u00ab" + identifierPrefix + "R" + JSCompiler_inline_result;
JSCompiler_inline_result = localIdCounter++;
0 < JSCompiler_inline_result &&
(identifierPrefix += "H" + JSCompiler_inline_result.toString(32));
- identifierPrefix += ":";
+ identifierPrefix += "\u00bb";
} else
(JSCompiler_inline_result = globalClientIdCounter++),
(identifierPrefix =
- ":" +
+ "\u00ab" +
identifierPrefix +
"r" +
JSCompiler_inline_result.toString(32) +
- ":");
+ "\u00bb");
return (hook.memoizedState = identifierPrefix);
},
useHostTransitionStatus: useHostTransitionStatus,
@@ -16001,14 +16001,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
};
var isomorphicReactPackageVersion$jscomp$inline_1785 = React.version;
if (
- "19.1.0-native-fb-22e39ea7-20250225" !==
+ "19.1.0-native-fb-2e4db334-20250225" !==
isomorphicReactPackageVersion$jscomp$inline_1785
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_1785,
- "19.1.0-native-fb-22e39ea7-20250225"
+ "19.1.0-native-fb-2e4db334-20250225"
)
);
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -16030,10 +16030,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
};
var internals$jscomp$inline_2245 = {
bundleType: 0,
- version: "19.1.0-native-fb-22e39ea7-20250225",
+ version: "19.1.0-native-fb-2e4db334-20250225",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
- reconcilerVersion: "19.1.0-native-fb-22e39ea7-20250225"
+ reconcilerVersion: "19.1.0-native-fb-2e4db334-20250225"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_2246 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -16137,4 +16137,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
listenToAllSupportedEvents(container);
return new ReactDOMHydrationRoot(initialChildren);
};
-exports.version = "19.1.0-native-fb-22e39ea7-20250225";
+exports.version = "19.1.0-native-fb-2e4db334-20250225";
diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-profiling.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-profiling.js
index 827d3f21f4..cf5d945b54 100644
--- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-profiling.js
+++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-profiling.js
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
- * @generated SignedSource<>
+ * @generated SignedSource<<0d8a6d1562ba020cf8efbc0ab357709d>>
*/
/*
@@ -4907,19 +4907,19 @@ var ContextOnlyDispatcher = {
idWithLeadingBit & ~(1 << (32 - clz32(idWithLeadingBit) - 1))
).toString(32) + JSCompiler_inline_result;
identifierPrefix =
- ":" + identifierPrefix + "R" + JSCompiler_inline_result;
+ "\u00ab" + identifierPrefix + "R" + JSCompiler_inline_result;
JSCompiler_inline_result = localIdCounter++;
0 < JSCompiler_inline_result &&
(identifierPrefix += "H" + JSCompiler_inline_result.toString(32));
- identifierPrefix += ":";
+ identifierPrefix += "\u00bb";
} else
(JSCompiler_inline_result = globalClientIdCounter++),
(identifierPrefix =
- ":" +
+ "\u00ab" +
identifierPrefix +
"r" +
JSCompiler_inline_result.toString(32) +
- ":");
+ "\u00bb");
return (hook.memoizedState = identifierPrefix);
},
useHostTransitionStatus: useHostTransitionStatus,
@@ -16651,14 +16651,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
};
var isomorphicReactPackageVersion$jscomp$inline_1880 = React.version;
if (
- "19.1.0-native-fb-22e39ea7-20250225" !==
+ "19.1.0-native-fb-2e4db334-20250225" !==
isomorphicReactPackageVersion$jscomp$inline_1880
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_1880,
- "19.1.0-native-fb-22e39ea7-20250225"
+ "19.1.0-native-fb-2e4db334-20250225"
)
);
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -16680,10 +16680,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
};
var internals$jscomp$inline_1887 = {
bundleType: 0,
- version: "19.1.0-native-fb-22e39ea7-20250225",
+ version: "19.1.0-native-fb-2e4db334-20250225",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
- reconcilerVersion: "19.1.0-native-fb-22e39ea7-20250225",
+ reconcilerVersion: "19.1.0-native-fb-2e4db334-20250225",
getLaneLabelMap: function () {
for (
var map = new Map(), lane = 1, index$294 = 0;
@@ -16802,4 +16802,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
listenToAllSupportedEvents(container);
return new ReactDOMHydrationRoot(initialChildren);
};
-exports.version = "19.1.0-native-fb-22e39ea7-20250225";
+exports.version = "19.1.0-native-fb-2e4db334-20250225";
diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-dev.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-dev.js
index 0bf2d30c78..942904f63f 100644
--- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-dev.js
+++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-dev.js
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
- * @generated SignedSource<<4ef9266a7f19a05d7079f6abf92caa6e>>
+ * @generated SignedSource<>
*/
/*
@@ -7004,14 +7004,14 @@ __DEV__ &&
(
idWithLeadingBit & ~(1 << (32 - clz32(idWithLeadingBit) - 1))
).toString(32) + treeId;
- identifierPrefix = ":" + identifierPrefix + "R" + treeId;
+ identifierPrefix = "\u00ab" + identifierPrefix + "R" + treeId;
treeId = localIdCounter++;
0 < treeId && (identifierPrefix += "H" + treeId.toString(32));
- identifierPrefix += ":";
+ identifierPrefix += "\u00bb";
} else
(treeId = globalClientIdCounter++),
(identifierPrefix =
- ":" + identifierPrefix + "r" + treeId.toString(32) + ":");
+ "\u00ab" + identifierPrefix + "r" + treeId.toString(32) + "\u00bb");
return (hook.memoizedState = identifierPrefix);
}
function mountRefresh() {
@@ -25947,11 +25947,11 @@ __DEV__ &&
};
(function () {
var isomorphicReactPackageVersion = React.version;
- if ("19.1.0-native-fb-22e39ea7-20250225" !== isomorphicReactPackageVersion)
+ if ("19.1.0-native-fb-2e4db334-20250225" !== 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-22e39ea7-20250225\nLearn more: https://react.dev/warnings/version-mismatch")
+ "\n - react-dom: 19.1.0-native-fb-2e4db334-20250225\nLearn more: https://react.dev/warnings/version-mismatch")
);
})();
("function" === typeof Map &&
@@ -25988,10 +25988,10 @@ __DEV__ &&
!(function () {
var internals = {
bundleType: 1,
- version: "19.1.0-native-fb-22e39ea7-20250225",
+ version: "19.1.0-native-fb-2e4db334-20250225",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
- reconcilerVersion: "19.1.0-native-fb-22e39ea7-20250225"
+ reconcilerVersion: "19.1.0-native-fb-2e4db334-20250225"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -26451,7 +26451,7 @@ __DEV__ &&
exports.useFormStatus = function () {
return resolveDispatcher().useHostTransitionStatus();
};
- exports.version = "19.1.0-native-fb-22e39ea7-20250225";
+ exports.version = "19.1.0-native-fb-2e4db334-20250225";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-prod.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-prod.js
index f39abde543..58cdf9ea00 100644
--- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-prod.js
+++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-prod.js
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
- * @generated SignedSource<<98df410b2f1c59df92b77d1a9e0d1142>>
+ * @generated SignedSource<<1bed1e066b0e65accdfb93ec026fc62f>>
*/
/*
@@ -4767,19 +4767,19 @@ var ContextOnlyDispatcher = {
idWithLeadingBit & ~(1 << (32 - clz32(idWithLeadingBit) - 1))
).toString(32) + JSCompiler_inline_result;
identifierPrefix =
- ":" + identifierPrefix + "R" + JSCompiler_inline_result;
+ "\u00ab" + identifierPrefix + "R" + JSCompiler_inline_result;
JSCompiler_inline_result = localIdCounter++;
0 < JSCompiler_inline_result &&
(identifierPrefix += "H" + JSCompiler_inline_result.toString(32));
- identifierPrefix += ":";
+ identifierPrefix += "\u00bb";
} else
(JSCompiler_inline_result = globalClientIdCounter++),
(identifierPrefix =
- ":" +
+ "\u00ab" +
identifierPrefix +
"r" +
JSCompiler_inline_result.toString(32) +
- ":");
+ "\u00bb");
return (hook.memoizedState = identifierPrefix);
},
useHostTransitionStatus: useHostTransitionStatus,
@@ -16012,14 +16012,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
};
var isomorphicReactPackageVersion$jscomp$inline_1786 = React.version;
if (
- "19.1.0-native-fb-22e39ea7-20250225" !==
+ "19.1.0-native-fb-2e4db334-20250225" !==
isomorphicReactPackageVersion$jscomp$inline_1786
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_1786,
- "19.1.0-native-fb-22e39ea7-20250225"
+ "19.1.0-native-fb-2e4db334-20250225"
)
);
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -16041,10 +16041,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
};
var internals$jscomp$inline_2248 = {
bundleType: 0,
- version: "19.1.0-native-fb-22e39ea7-20250225",
+ version: "19.1.0-native-fb-2e4db334-20250225",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
- reconcilerVersion: "19.1.0-native-fb-22e39ea7-20250225"
+ reconcilerVersion: "19.1.0-native-fb-2e4db334-20250225"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_2249 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -16302,4 +16302,4 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
-exports.version = "19.1.0-native-fb-22e39ea7-20250225";
+exports.version = "19.1.0-native-fb-2e4db334-20250225";
diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-profiling.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-profiling.js
index 545f82d5ce..0d534b546e 100644
--- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-profiling.js
+++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-profiling.js
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
- * @generated SignedSource<>
+ * @generated SignedSource<<7a5fd3493a0e3bb4780c9dc5349698c3>>
*/
/*
@@ -4911,19 +4911,19 @@ var ContextOnlyDispatcher = {
idWithLeadingBit & ~(1 << (32 - clz32(idWithLeadingBit) - 1))
).toString(32) + JSCompiler_inline_result;
identifierPrefix =
- ":" + identifierPrefix + "R" + JSCompiler_inline_result;
+ "\u00ab" + identifierPrefix + "R" + JSCompiler_inline_result;
JSCompiler_inline_result = localIdCounter++;
0 < JSCompiler_inline_result &&
(identifierPrefix += "H" + JSCompiler_inline_result.toString(32));
- identifierPrefix += ":";
+ identifierPrefix += "\u00bb";
} else
(JSCompiler_inline_result = globalClientIdCounter++),
(identifierPrefix =
- ":" +
+ "\u00ab" +
identifierPrefix +
"r" +
JSCompiler_inline_result.toString(32) +
- ":");
+ "\u00bb");
return (hook.memoizedState = identifierPrefix);
},
useHostTransitionStatus: useHostTransitionStatus,
@@ -16666,14 +16666,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
};
var isomorphicReactPackageVersion$jscomp$inline_1881 = React.version;
if (
- "19.1.0-native-fb-22e39ea7-20250225" !==
+ "19.1.0-native-fb-2e4db334-20250225" !==
isomorphicReactPackageVersion$jscomp$inline_1881
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_1881,
- "19.1.0-native-fb-22e39ea7-20250225"
+ "19.1.0-native-fb-2e4db334-20250225"
)
);
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -16695,10 +16695,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
};
var internals$jscomp$inline_1888 = {
bundleType: 0,
- version: "19.1.0-native-fb-22e39ea7-20250225",
+ version: "19.1.0-native-fb-2e4db334-20250225",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
- reconcilerVersion: "19.1.0-native-fb-22e39ea7-20250225",
+ reconcilerVersion: "19.1.0-native-fb-2e4db334-20250225",
getLaneLabelMap: function () {
for (
var map = new Map(), lane = 1, index$294 = 0;
@@ -16971,7 +16971,7 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
-exports.version = "19.1.0-native-fb-22e39ea7-20250225";
+exports.version = "19.1.0-native-fb-2e4db334-20250225";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-dev.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-dev.js
index 67ca2735d5..c1fc9c9fbb 100644
--- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-dev.js
+++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-dev.js
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
- * @generated SignedSource<<6d3bf5e5a5b4ab9a3b9fd449da95de08>>
+ * @generated SignedSource<>
*/
"use strict";
@@ -4343,7 +4343,11 @@ __DEV__ &&
identifierPrefix = workInProgressRoot.identifierPrefix,
globalClientId = globalClientIdCounter++;
identifierPrefix =
- ":" + identifierPrefix + "r" + globalClientId.toString(32) + ":";
+ "\u00ab" +
+ identifierPrefix +
+ "r" +
+ globalClientId.toString(32) +
+ "\u00bb";
return (hook.memoizedState = identifierPrefix);
}
function mountRefresh() {
@@ -15564,10 +15568,10 @@ __DEV__ &&
(function () {
var internals = {
bundleType: 1,
- version: "19.1.0-native-fb-22e39ea7-20250225",
+ version: "19.1.0-native-fb-2e4db334-20250225",
rendererPackageName: "react-test-renderer",
currentDispatcherRef: ReactSharedInternals,
- reconcilerVersion: "19.1.0-native-fb-22e39ea7-20250225"
+ reconcilerVersion: "19.1.0-native-fb-2e4db334-20250225"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -15712,5 +15716,5 @@ __DEV__ &&
flushSyncWorkAcrossRoots_impl(0, !0));
}
};
- exports.version = "19.1.0-native-fb-22e39ea7-20250225";
+ exports.version = "19.1.0-native-fb-2e4db334-20250225";
})();
diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-prod.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-prod.js
index c45d316740..8822c0c453 100644
--- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-prod.js
+++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-prod.js
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
- * @generated SignedSource<>
+ * @generated SignedSource<<4317f5c289ec27536bbc520af413c528>>
*/
"use strict";
@@ -3125,7 +3125,11 @@ var ContextOnlyDispatcher = {
identifierPrefix = workInProgressRoot.identifierPrefix,
globalClientId = globalClientIdCounter++;
identifierPrefix =
- ":" + identifierPrefix + "r" + globalClientId.toString(32) + ":";
+ "\u00ab" +
+ identifierPrefix +
+ "r" +
+ globalClientId.toString(32) +
+ "\u00bb";
return (hook.memoizedState = identifierPrefix);
},
useHostTransitionStatus: useHostTransitionStatus,
@@ -9784,10 +9788,10 @@ function wrapFiber(fiber) {
}
var internals$jscomp$inline_1389 = {
bundleType: 0,
- version: "19.1.0-native-fb-22e39ea7-20250225",
+ version: "19.1.0-native-fb-2e4db334-20250225",
rendererPackageName: "react-test-renderer",
currentDispatcherRef: ReactSharedInternals,
- reconcilerVersion: "19.1.0-native-fb-22e39ea7-20250225"
+ reconcilerVersion: "19.1.0-native-fb-2e4db334-20250225"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_1390 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -9923,4 +9927,4 @@ exports.unstable_batchedUpdates = function (fn, a) {
flushSyncWorkAcrossRoots_impl(0, !0));
}
};
-exports.version = "19.1.0-native-fb-22e39ea7-20250225";
+exports.version = "19.1.0-native-fb-2e4db334-20250225";
diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-profiling.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-profiling.js
index 83a7826102..e1347ad571 100644
--- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-profiling.js
+++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-profiling.js
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
- * @generated SignedSource<<9dc97db56627eb4b5a0a0f9f9b145607>>
+ * @generated SignedSource<<2877813e9f29218c761b9ff64b63faa9>>
*/
"use strict";
@@ -3233,7 +3233,11 @@ var ContextOnlyDispatcher = {
identifierPrefix = workInProgressRoot.identifierPrefix,
globalClientId = globalClientIdCounter++;
identifierPrefix =
- ":" + identifierPrefix + "r" + globalClientId.toString(32) + ":";
+ "\u00ab" +
+ identifierPrefix +
+ "r" +
+ globalClientId.toString(32) +
+ "\u00bb";
return (hook.memoizedState = identifierPrefix);
},
useHostTransitionStatus: useHostTransitionStatus,
@@ -10355,10 +10359,10 @@ function wrapFiber(fiber) {
}
var internals$jscomp$inline_1207 = {
bundleType: 0,
- version: "19.1.0-native-fb-22e39ea7-20250225",
+ version: "19.1.0-native-fb-2e4db334-20250225",
rendererPackageName: "react-test-renderer",
currentDispatcherRef: ReactSharedInternals,
- reconcilerVersion: "19.1.0-native-fb-22e39ea7-20250225",
+ reconcilerVersion: "19.1.0-native-fb-2e4db334-20250225",
getLaneLabelMap: function () {
for (
var map = new Map(), lane = 1, index$147 = 0;
@@ -10509,4 +10513,4 @@ exports.unstable_batchedUpdates = function (fn, a) {
flushSyncWorkAcrossRoots_impl(0, !0));
}
};
-exports.version = "19.1.0-native-fb-22e39ea7-20250225";
+exports.version = "19.1.0-native-fb-2e4db334-20250225";
diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-dev.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-dev.js
index 5768a19c6c..a7b7ad1584 100644
--- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-dev.js
+++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-dev.js
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
- * @generated SignedSource<<166ce31fdb7d6ed340d2eeed8b691ae0>>
+ * @generated SignedSource<<3321e59eb50e7a97d08912d349e7f16e>>
*/
"use strict";
@@ -1415,7 +1415,7 @@ __DEV__ &&
exports.useTransition = function () {
return resolveDispatcher().useTransition();
};
- exports.version = "19.1.0-native-fb-22e39ea7-20250225";
+ exports.version = "19.1.0-native-fb-2e4db334-20250225";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-prod.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-prod.js
index 8a0bff1634..90bde218b7 100644
--- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-prod.js
+++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-prod.js
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
- * @generated SignedSource<<7363f38d4106ef705ee8d1a0359ce29a>>
+ * @generated SignedSource<>
*/
"use strict";
@@ -603,4 +603,4 @@ exports.useSyncExternalStore = function (
exports.useTransition = function () {
return ReactSharedInternals.H.useTransition();
};
-exports.version = "19.1.0-native-fb-22e39ea7-20250225";
+exports.version = "19.1.0-native-fb-2e4db334-20250225";
diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-profiling.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-profiling.js
index 58f66a5c38..a6e2159dc3 100644
--- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-profiling.js
+++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-profiling.js
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
- * @generated SignedSource<>
+ * @generated SignedSource<<166cd0cdb6a3a7947a196dc5fca13cbe>>
*/
"use strict";
@@ -607,7 +607,7 @@ exports.useSyncExternalStore = function (
exports.useTransition = function () {
return ReactSharedInternals.H.useTransition();
};
-exports.version = "19.1.0-native-fb-22e39ea7-20250225";
+exports.version = "19.1.0-native-fb-2e4db334-20250225";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
diff --git a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/REVISION b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/REVISION
index c47fc8e204..f3e75ff4c9 100644
--- a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/REVISION
+++ b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/REVISION
@@ -1 +1 @@
-22e39ea72e9d10f6634ea580aaba49c2e759ef0e
+403d4fb852384b820a8fe405413891d8c74bbf5d
diff --git a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-dev.fb.js b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-dev.fb.js
index 27ee8245de..4442326902 100644
--- a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-dev.fb.js
+++ b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-dev.fb.js
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
- * @generated SignedSource<<04c44bc7e0ce05a4e7057d322b2ca6a1>>
+ * @generated SignedSource<<7c814ef809342d38a091e704ea24445a>>
*/
"use strict";
@@ -5263,7 +5263,11 @@ __DEV__ &&
identifierPrefix = workInProgressRoot.identifierPrefix,
globalClientId = globalClientIdCounter++;
identifierPrefix =
- ":" + identifierPrefix + "r" + globalClientId.toString(32) + ":";
+ "\u00ab" +
+ identifierPrefix +
+ "r" +
+ globalClientId.toString(32) +
+ "\u00bb";
return (hook.memoizedState = identifierPrefix);
}
function mountRefresh() {
@@ -17388,10 +17392,10 @@ __DEV__ &&
(function () {
var internals = {
bundleType: 1,
- version: "19.1.0-native-fb-22e39ea7-20250225",
+ version: "19.1.0-native-fb-2e4db334-20250225",
rendererPackageName: "react-native-renderer",
currentDispatcherRef: ReactSharedInternals,
- reconcilerVersion: "19.1.0-native-fb-22e39ea7-20250225"
+ reconcilerVersion: "19.1.0-native-fb-2e4db334-20250225"
};
null !== extraDevToolsConfig &&
(internals.rendererConfig = extraDevToolsConfig);
diff --git a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-prod.fb.js b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-prod.fb.js
index 4c20a47c9d..422b9ab522 100644
--- a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-prod.fb.js
+++ b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-prod.fb.js
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
- * @generated SignedSource<>
+ * @generated SignedSource<<082507330045fe67f73e5600fbcb5c52>>
*/
"use strict";
@@ -4393,7 +4393,11 @@ var ContextOnlyDispatcher = {
identifierPrefix = workInProgressRoot.identifierPrefix,
globalClientId = globalClientIdCounter++;
identifierPrefix =
- ":" + identifierPrefix + "r" + globalClientId.toString(32) + ":";
+ "\u00ab" +
+ identifierPrefix +
+ "r" +
+ globalClientId.toString(32) +
+ "\u00bb";
return (hook.memoizedState = identifierPrefix);
},
useHostTransitionStatus: useHostTransitionStatus,
@@ -11038,10 +11042,10 @@ batchedUpdatesImpl = function (fn, a) {
var roots = new Map(),
internals$jscomp$inline_1221 = {
bundleType: 0,
- version: "19.1.0-native-fb-22e39ea7-20250225",
+ version: "19.1.0-native-fb-2e4db334-20250225",
rendererPackageName: "react-native-renderer",
currentDispatcherRef: ReactSharedInternals,
- reconcilerVersion: "19.1.0-native-fb-22e39ea7-20250225"
+ reconcilerVersion: "19.1.0-native-fb-2e4db334-20250225"
};
null !== extraDevToolsConfig &&
(internals$jscomp$inline_1221.rendererConfig = extraDevToolsConfig);
diff --git a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-profiling.fb.js b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-profiling.fb.js
index 43da0f297d..b4f93bc7ce 100644
--- a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-profiling.fb.js
+++ b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-profiling.fb.js
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
- * @generated SignedSource<>
+ * @generated SignedSource<>
*/
"use strict";
@@ -4535,7 +4535,11 @@ var ContextOnlyDispatcher = {
identifierPrefix = workInProgressRoot.identifierPrefix,
globalClientId = globalClientIdCounter++;
identifierPrefix =
- ":" + identifierPrefix + "r" + globalClientId.toString(32) + ":";
+ "\u00ab" +
+ identifierPrefix +
+ "r" +
+ globalClientId.toString(32) +
+ "\u00bb";
return (hook.memoizedState = identifierPrefix);
},
useHostTransitionStatus: useHostTransitionStatus,
@@ -11691,10 +11695,10 @@ batchedUpdatesImpl = function (fn, a) {
var roots = new Map(),
internals$jscomp$inline_1314 = {
bundleType: 0,
- version: "19.1.0-native-fb-22e39ea7-20250225",
+ version: "19.1.0-native-fb-2e4db334-20250225",
rendererPackageName: "react-native-renderer",
currentDispatcherRef: ReactSharedInternals,
- reconcilerVersion: "19.1.0-native-fb-22e39ea7-20250225"
+ reconcilerVersion: "19.1.0-native-fb-2e4db334-20250225"
};
null !== extraDevToolsConfig &&
(internals$jscomp$inline_1314.rendererConfig = extraDevToolsConfig);
diff --git a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-dev.fb.js b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-dev.fb.js
index dcac7d6e86..a74501ab41 100644
--- a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-dev.fb.js
+++ b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-dev.fb.js
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
- * @generated SignedSource<<66f2bb0f926f94469577ed3d9c6ba8ca>>
+ * @generated SignedSource<>
*/
"use strict";
@@ -5387,7 +5387,11 @@ __DEV__ &&
identifierPrefix = workInProgressRoot.identifierPrefix,
globalClientId = globalClientIdCounter++;
identifierPrefix =
- ":" + identifierPrefix + "r" + globalClientId.toString(32) + ":";
+ "\u00ab" +
+ identifierPrefix +
+ "r" +
+ globalClientId.toString(32) +
+ "\u00bb";
return (hook.memoizedState = identifierPrefix);
}
function mountRefresh() {
@@ -17562,11 +17566,11 @@ __DEV__ &&
shouldSuspendImpl = newShouldSuspendImpl;
};
var isomorphicReactPackageVersion = React.version;
- if ("19.1.0-native-fb-22e39ea7-20250225" !== isomorphicReactPackageVersion)
+ if ("19.1.0-native-fb-2e4db334-20250225" !== 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-22e39ea7-20250225\nLearn more: https://react.dev/warnings/version-mismatch")
+ "\n - react-native-renderer: 19.1.0-native-fb-2e4db334-20250225\nLearn more: https://react.dev/warnings/version-mismatch")
);
if (
"function" !==
@@ -17592,10 +17596,10 @@ __DEV__ &&
(function () {
var internals = {
bundleType: 1,
- version: "19.1.0-native-fb-22e39ea7-20250225",
+ version: "19.1.0-native-fb-2e4db334-20250225",
rendererPackageName: "react-native-renderer",
currentDispatcherRef: ReactSharedInternals,
- reconcilerVersion: "19.1.0-native-fb-22e39ea7-20250225"
+ reconcilerVersion: "19.1.0-native-fb-2e4db334-20250225"
};
null !== extraDevToolsConfig &&
(internals.rendererConfig = extraDevToolsConfig);
diff --git a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-prod.fb.js b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-prod.fb.js
index 8495fb14ff..c66714726b 100644
--- a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-prod.fb.js
+++ b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-prod.fb.js
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
- * @generated SignedSource<<7e06d87114fdc46b0019d70f7723008b>>
+ * @generated SignedSource<<86050dccb0f5e103b7081bf2912e567e>>
*/
"use strict";
@@ -4557,7 +4557,11 @@ var ContextOnlyDispatcher = {
identifierPrefix = workInProgressRoot.identifierPrefix,
globalClientId = globalClientIdCounter++;
identifierPrefix =
- ":" + identifierPrefix + "r" + globalClientId.toString(32) + ":";
+ "\u00ab" +
+ identifierPrefix +
+ "r" +
+ globalClientId.toString(32) +
+ "\u00bb";
return (hook.memoizedState = identifierPrefix);
},
useHostTransitionStatus: useHostTransitionStatus,
@@ -11139,11 +11143,11 @@ function updateContainer(element, container, parentComponent, callback) {
return lane;
}
var isomorphicReactPackageVersion = React.version;
-if ("19.1.0-native-fb-22e39ea7-20250225" !== isomorphicReactPackageVersion)
+if ("19.1.0-native-fb-2e4db334-20250225" !== 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-22e39ea7-20250225\nLearn more: https://react.dev/warnings/version-mismatch")
+ "\n - react-native-renderer: 19.1.0-native-fb-2e4db334-20250225\nLearn more: https://react.dev/warnings/version-mismatch")
);
if (
"function" !==
@@ -11192,10 +11196,10 @@ batchedUpdatesImpl = function (fn, a) {
var roots = new Map(),
internals$jscomp$inline_1272 = {
bundleType: 0,
- version: "19.1.0-native-fb-22e39ea7-20250225",
+ version: "19.1.0-native-fb-2e4db334-20250225",
rendererPackageName: "react-native-renderer",
currentDispatcherRef: ReactSharedInternals,
- reconcilerVersion: "19.1.0-native-fb-22e39ea7-20250225"
+ reconcilerVersion: "19.1.0-native-fb-2e4db334-20250225"
};
null !== extraDevToolsConfig &&
(internals$jscomp$inline_1272.rendererConfig = extraDevToolsConfig);
diff --git a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.fb.js b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.fb.js
index b12f364beb..63aaf32a1b 100644
--- a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.fb.js
+++ b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.fb.js
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
- * @generated SignedSource<<6e91baad58e11d1cff3f440e50ca4e1e>>
+ * @generated SignedSource<<8ff32d1b171dbda803578572b7dc91dc>>
*/
"use strict";
@@ -4699,7 +4699,11 @@ var ContextOnlyDispatcher = {
identifierPrefix = workInProgressRoot.identifierPrefix,
globalClientId = globalClientIdCounter++;
identifierPrefix =
- ":" + identifierPrefix + "r" + globalClientId.toString(32) + ":";
+ "\u00ab" +
+ identifierPrefix +
+ "r" +
+ globalClientId.toString(32) +
+ "\u00bb";
return (hook.memoizedState = identifierPrefix);
},
useHostTransitionStatus: useHostTransitionStatus,
@@ -11792,11 +11796,11 @@ function updateContainer(element, container, parentComponent, callback) {
return lane;
}
var isomorphicReactPackageVersion = React.version;
-if ("19.1.0-native-fb-22e39ea7-20250225" !== isomorphicReactPackageVersion)
+if ("19.1.0-native-fb-2e4db334-20250225" !== 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-22e39ea7-20250225\nLearn more: https://react.dev/warnings/version-mismatch")
+ "\n - react-native-renderer: 19.1.0-native-fb-2e4db334-20250225\nLearn more: https://react.dev/warnings/version-mismatch")
);
if (
"function" !==
@@ -11845,10 +11849,10 @@ batchedUpdatesImpl = function (fn, a) {
var roots = new Map(),
internals$jscomp$inline_1365 = {
bundleType: 0,
- version: "19.1.0-native-fb-22e39ea7-20250225",
+ version: "19.1.0-native-fb-2e4db334-20250225",
rendererPackageName: "react-native-renderer",
currentDispatcherRef: ReactSharedInternals,
- reconcilerVersion: "19.1.0-native-fb-22e39ea7-20250225"
+ reconcilerVersion: "19.1.0-native-fb-2e4db334-20250225"
};
null !== extraDevToolsConfig &&
(internals$jscomp$inline_1365.rendererConfig = extraDevToolsConfig);