mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
Allow <script> and <template> tags in <select> tag (#31837)
DiffTrain build for [95465dc491](https://github.com/facebook/react/commit/95465dc4913377ab7e2fa98d956c87adb5e38e6c)
This commit is contained in:
@@ -1 +1 @@
|
||||
19.1.0-native-fb-e1d843f4-20241218
|
||||
19.1.0-native-fb-95465dc4-20241218
|
||||
Vendored
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<5e84cee5f3a9eb48d9e2203479344ec1>>
|
||||
* @generated SignedSource<<4309e198b8c1d38899787d07722ff98e>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -420,5 +420,5 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-e1d843f4-20241218";
|
||||
exports.version = "19.1.0-native-fb-95465dc4-20241218";
|
||||
})();
|
||||
|
||||
Vendored
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<2099a269cb90d2ee3ef527f496d776e0>>
|
||||
* @generated SignedSource<<20d9f95468914c57d38cd6f9b609bbfb>>
|
||||
*/
|
||||
|
||||
"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-e1d843f4-20241218";
|
||||
exports.version = "19.1.0-native-fb-95465dc4-20241218";
|
||||
|
||||
Vendored
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<2099a269cb90d2ee3ef527f496d776e0>>
|
||||
* @generated SignedSource<<20d9f95468914c57d38cd6f9b609bbfb>>
|
||||
*/
|
||||
|
||||
"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-e1d843f4-20241218";
|
||||
exports.version = "19.1.0-native-fb-95465dc4-20241218";
|
||||
|
||||
Vendored
+8
-6
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<d7c2be1cf1101ef57265b6a116bcc605>>
|
||||
* @generated SignedSource<<6796925f96c4c66e6f6524543f0e7856>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -2458,6 +2458,8 @@ __DEV__ &&
|
||||
"hr" === tag ||
|
||||
"option" === tag ||
|
||||
"optgroup" === tag ||
|
||||
"script" === tag ||
|
||||
"template" === tag ||
|
||||
"#text" === tag
|
||||
);
|
||||
case "optgroup":
|
||||
@@ -25850,11 +25852,11 @@ __DEV__ &&
|
||||
};
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.1.0-native-fb-e1d843f4-20241218" !== isomorphicReactPackageVersion)
|
||||
if ("19.1.0-native-fb-95465dc4-20241218" !== 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-e1d843f4-20241218\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.1.0-native-fb-95465dc4-20241218\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -25891,10 +25893,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.1.0-native-fb-e1d843f4-20241218",
|
||||
version: "19.1.0-native-fb-95465dc4-20241218",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-e1d843f4-20241218"
|
||||
reconcilerVersion: "19.1.0-native-fb-95465dc4-20241218"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -26040,5 +26042,5 @@ __DEV__ &&
|
||||
listenToAllSupportedEvents(container);
|
||||
return new ReactDOMHydrationRoot(initialChildren);
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-e1d843f4-20241218";
|
||||
exports.version = "19.1.0-native-fb-95465dc4-20241218";
|
||||
})();
|
||||
|
||||
compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-prod.js
Vendored
+6
-6
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<d99aad0a4eda3ded9398383a51d3f54d>>
|
||||
* @generated SignedSource<<1ab988b39e668cc3112f1303507a1f9f>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -15869,14 +15869,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
||||
};
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1724 = React.version;
|
||||
if (
|
||||
"19.1.0-native-fb-e1d843f4-20241218" !==
|
||||
"19.1.0-native-fb-95465dc4-20241218" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1724
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1724,
|
||||
"19.1.0-native-fb-e1d843f4-20241218"
|
||||
"19.1.0-native-fb-95465dc4-20241218"
|
||||
)
|
||||
);
|
||||
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
@@ -15898,10 +15898,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
};
|
||||
var internals$jscomp$inline_2179 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-e1d843f4-20241218",
|
||||
version: "19.1.0-native-fb-95465dc4-20241218",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-e1d843f4-20241218"
|
||||
reconcilerVersion: "19.1.0-native-fb-95465dc4-20241218"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2180 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -16007,4 +16007,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
|
||||
listenToAllSupportedEvents(container);
|
||||
return new ReactDOMHydrationRoot(initialChildren);
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-e1d843f4-20241218";
|
||||
exports.version = "19.1.0-native-fb-95465dc4-20241218";
|
||||
|
||||
+6
-6
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<9e765d6990e281a0d16389eb3df7e5a8>>
|
||||
* @generated SignedSource<<4989c61b64e1e69ca4464399bf4b8a36>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -16522,14 +16522,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
||||
};
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1814 = React.version;
|
||||
if (
|
||||
"19.1.0-native-fb-e1d843f4-20241218" !==
|
||||
"19.1.0-native-fb-95465dc4-20241218" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1814
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1814,
|
||||
"19.1.0-native-fb-e1d843f4-20241218"
|
||||
"19.1.0-native-fb-95465dc4-20241218"
|
||||
)
|
||||
);
|
||||
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
@@ -16551,10 +16551,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
};
|
||||
var internals$jscomp$inline_1821 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-e1d843f4-20241218",
|
||||
version: "19.1.0-native-fb-95465dc4-20241218",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-e1d843f4-20241218",
|
||||
reconcilerVersion: "19.1.0-native-fb-95465dc4-20241218",
|
||||
getLaneLabelMap: function () {
|
||||
for (
|
||||
var map = new Map(), lane = 1, index$292 = 0;
|
||||
@@ -16675,4 +16675,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
|
||||
listenToAllSupportedEvents(container);
|
||||
return new ReactDOMHydrationRoot(initialChildren);
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-e1d843f4-20241218";
|
||||
exports.version = "19.1.0-native-fb-95465dc4-20241218";
|
||||
|
||||
+8
-6
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<6064b21a1512d2b0c0e0fa251bcb047c>>
|
||||
* @generated SignedSource<<56af5f0942d4decc405b0b0600509c8f>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -2466,6 +2466,8 @@ __DEV__ &&
|
||||
"hr" === tag ||
|
||||
"option" === tag ||
|
||||
"optgroup" === tag ||
|
||||
"script" === tag ||
|
||||
"template" === tag ||
|
||||
"#text" === tag
|
||||
);
|
||||
case "optgroup":
|
||||
@@ -25911,11 +25913,11 @@ __DEV__ &&
|
||||
};
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.1.0-native-fb-e1d843f4-20241218" !== isomorphicReactPackageVersion)
|
||||
if ("19.1.0-native-fb-95465dc4-20241218" !== 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-e1d843f4-20241218\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.1.0-native-fb-95465dc4-20241218\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -25952,10 +25954,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.1.0-native-fb-e1d843f4-20241218",
|
||||
version: "19.1.0-native-fb-95465dc4-20241218",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-e1d843f4-20241218"
|
||||
reconcilerVersion: "19.1.0-native-fb-95465dc4-20241218"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -26417,7 +26419,7 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-e1d843f4-20241218";
|
||||
exports.version = "19.1.0-native-fb-95465dc4-20241218";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
+6
-6
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<dab919fd21cedf31b8d29f72bc1d1666>>
|
||||
* @generated SignedSource<<405b68007cfbe76cc8a2773a612e284d>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -15880,14 +15880,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
||||
};
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1725 = React.version;
|
||||
if (
|
||||
"19.1.0-native-fb-e1d843f4-20241218" !==
|
||||
"19.1.0-native-fb-95465dc4-20241218" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1725
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1725,
|
||||
"19.1.0-native-fb-e1d843f4-20241218"
|
||||
"19.1.0-native-fb-95465dc4-20241218"
|
||||
)
|
||||
);
|
||||
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
@@ -15909,10 +15909,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
};
|
||||
var internals$jscomp$inline_2182 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-e1d843f4-20241218",
|
||||
version: "19.1.0-native-fb-95465dc4-20241218",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-e1d843f4-20241218"
|
||||
reconcilerVersion: "19.1.0-native-fb-95465dc4-20241218"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2183 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -16172,4 +16172,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-e1d843f4-20241218";
|
||||
exports.version = "19.1.0-native-fb-95465dc4-20241218";
|
||||
|
||||
+6
-6
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<c945ef2de4b3eb60c010893f2b301dd0>>
|
||||
* @generated SignedSource<<5dcfa2ade81b11e7caafb1974aa6413a>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -16537,14 +16537,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
||||
};
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1815 = React.version;
|
||||
if (
|
||||
"19.1.0-native-fb-e1d843f4-20241218" !==
|
||||
"19.1.0-native-fb-95465dc4-20241218" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1815
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1815,
|
||||
"19.1.0-native-fb-e1d843f4-20241218"
|
||||
"19.1.0-native-fb-95465dc4-20241218"
|
||||
)
|
||||
);
|
||||
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
@@ -16566,10 +16566,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
};
|
||||
var internals$jscomp$inline_1822 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-e1d843f4-20241218",
|
||||
version: "19.1.0-native-fb-95465dc4-20241218",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-e1d843f4-20241218",
|
||||
reconcilerVersion: "19.1.0-native-fb-95465dc4-20241218",
|
||||
getLaneLabelMap: function () {
|
||||
for (
|
||||
var map = new Map(), lane = 1, index$292 = 0;
|
||||
@@ -16844,7 +16844,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-e1d843f4-20241218";
|
||||
exports.version = "19.1.0-native-fb-95465dc4-20241218";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
+4
-4
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<5c896b7f60175bb328724be2fa7f1736>>
|
||||
* @generated SignedSource<<93a07e881cf0cb77f300bc88cefa18b6>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -15513,10 +15513,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.1.0-native-fb-e1d843f4-20241218",
|
||||
version: "19.1.0-native-fb-95465dc4-20241218",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-e1d843f4-20241218"
|
||||
reconcilerVersion: "19.1.0-native-fb-95465dc4-20241218"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -15661,5 +15661,5 @@ __DEV__ &&
|
||||
flushSyncWorkAcrossRoots_impl(0, !0));
|
||||
}
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-e1d843f4-20241218";
|
||||
exports.version = "19.1.0-native-fb-95465dc4-20241218";
|
||||
})();
|
||||
|
||||
+4
-4
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<0a430c692b861184c1891ef94729f71b>>
|
||||
* @generated SignedSource<<248151d35d4e4c62c2845bda59266320>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -9698,10 +9698,10 @@ function wrapFiber(fiber) {
|
||||
}
|
||||
var internals$jscomp$inline_1454 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-e1d843f4-20241218",
|
||||
version: "19.1.0-native-fb-95465dc4-20241218",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-e1d843f4-20241218"
|
||||
reconcilerVersion: "19.1.0-native-fb-95465dc4-20241218"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1455 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -9837,4 +9837,4 @@ exports.unstable_batchedUpdates = function (fn, a) {
|
||||
flushSyncWorkAcrossRoots_impl(0, !0));
|
||||
}
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-e1d843f4-20241218";
|
||||
exports.version = "19.1.0-native-fb-95465dc4-20241218";
|
||||
|
||||
+4
-4
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<a122067d49badb09490719775cc2bb09>>
|
||||
* @generated SignedSource<<3fadc1ec8cf2d87826ba771c5f12f5df>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -10265,10 +10265,10 @@ function wrapFiber(fiber) {
|
||||
}
|
||||
var internals$jscomp$inline_1240 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-e1d843f4-20241218",
|
||||
version: "19.1.0-native-fb-95465dc4-20241218",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-e1d843f4-20241218",
|
||||
reconcilerVersion: "19.1.0-native-fb-95465dc4-20241218",
|
||||
getLaneLabelMap: function () {
|
||||
for (
|
||||
var map = new Map(), lane = 1, index$146 = 0;
|
||||
@@ -10419,4 +10419,4 @@ exports.unstable_batchedUpdates = function (fn, a) {
|
||||
flushSyncWorkAcrossRoots_impl(0, !0));
|
||||
}
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-e1d843f4-20241218";
|
||||
exports.version = "19.1.0-native-fb-95465dc4-20241218";
|
||||
|
||||
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<80846458475e4a035042f2bc834eb929>>
|
||||
* @generated SignedSource<<a699df4baa9ae43f27e1950afa555574>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -1824,7 +1824,7 @@ __DEV__ &&
|
||||
exports.useTransition = function () {
|
||||
return resolveDispatcher().useTransition();
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-e1d843f4-20241218";
|
||||
exports.version = "19.1.0-native-fb-95465dc4-20241218";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<da81bfc05cee493413cabf2f3cb0ebed>>
|
||||
* @generated SignedSource<<b6fa5158b5485d6e1c3019233de558b9>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -592,4 +592,4 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-e1d843f4-20241218";
|
||||
exports.version = "19.1.0-native-fb-95465dc4-20241218";
|
||||
|
||||
Vendored
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<2ddd1beb4eb0faeb82e6ef16f3dcd01d>>
|
||||
* @generated SignedSource<<4fbf4c53927292f8516873fed69c3c8d>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -596,7 +596,7 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-e1d843f4-20241218";
|
||||
exports.version = "19.1.0-native-fb-95465dc4-20241218";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
e1d843f4d8776bbf5d4fbd12a39bcfd2c565f900
|
||||
95465dc4913377ab7e2fa98d956c87adb5e38e6c
|
||||
|
||||
+3
-3
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<968dc5b4abe55f8cd2cc60c0fb6f2a60>>
|
||||
* @generated SignedSource<<25eb9513845ec7ddd5108e747dd78974>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -17436,10 +17436,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.1.0-native-fb-e1d843f4-20241218",
|
||||
version: "19.1.0-native-fb-95465dc4-20241218",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-e1d843f4-20241218"
|
||||
reconcilerVersion: "19.1.0-native-fb-95465dc4-20241218"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
+3
-3
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<922376d2aaeed104b897be880375a775>>
|
||||
* @generated SignedSource<<172eaddbded30231811c2d7e5a6c3099>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -11095,10 +11095,10 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1212 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-e1d843f4-20241218",
|
||||
version: "19.1.0-native-fb-95465dc4-20241218",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-e1d843f4-20241218"
|
||||
reconcilerVersion: "19.1.0-native-fb-95465dc4-20241218"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1212.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
+3
-3
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<257df4dd1ccf2c927528537f6d256c60>>
|
||||
* @generated SignedSource<<712070c5d37d9b275b783a16fc256328>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -11752,10 +11752,10 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1300 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-e1d843f4-20241218",
|
||||
version: "19.1.0-native-fb-95465dc4-20241218",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-e1d843f4-20241218"
|
||||
reconcilerVersion: "19.1.0-native-fb-95465dc4-20241218"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1300.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
+5
-5
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<e1f5104419f62c350d4e2fe8c5e4699c>>
|
||||
* @generated SignedSource<<9fc877cea0452e2ccc1ada618069b81b>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -17659,11 +17659,11 @@ __DEV__ &&
|
||||
shouldSuspendImpl = newShouldSuspendImpl;
|
||||
};
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.1.0-native-fb-e1d843f4-20241218" !== isomorphicReactPackageVersion)
|
||||
if ("19.1.0-native-fb-95465dc4-20241218" !== 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-e1d843f4-20241218\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-native-renderer: 19.1.0-native-fb-95465dc4-20241218\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
if (
|
||||
"function" !==
|
||||
@@ -17689,10 +17689,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.1.0-native-fb-e1d843f4-20241218",
|
||||
version: "19.1.0-native-fb-95465dc4-20241218",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-e1d843f4-20241218"
|
||||
reconcilerVersion: "19.1.0-native-fb-95465dc4-20241218"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
+5
-5
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<fb18909b56ee8e1a3ce1e6e55a22dfc0>>
|
||||
* @generated SignedSource<<097b7ed97570df9e4e684c6aca58b536>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -11227,11 +11227,11 @@ function updateContainer(element, container, parentComponent, callback) {
|
||||
return lane;
|
||||
}
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.1.0-native-fb-e1d843f4-20241218" !== isomorphicReactPackageVersion)
|
||||
if ("19.1.0-native-fb-95465dc4-20241218" !== 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-e1d843f4-20241218\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-native-renderer: 19.1.0-native-fb-95465dc4-20241218\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
if (
|
||||
"function" !==
|
||||
@@ -11280,10 +11280,10 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1278 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-e1d843f4-20241218",
|
||||
version: "19.1.0-native-fb-95465dc4-20241218",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-e1d843f4-20241218"
|
||||
reconcilerVersion: "19.1.0-native-fb-95465dc4-20241218"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1278.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
+5
-5
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<b7d77bf9ab7d9ad5673191cb3a760dde>>
|
||||
* @generated SignedSource<<ea80eba65b718acc062be3931701fd6f>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -11883,11 +11883,11 @@ function updateContainer(element, container, parentComponent, callback) {
|
||||
return lane;
|
||||
}
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.1.0-native-fb-e1d843f4-20241218" !== isomorphicReactPackageVersion)
|
||||
if ("19.1.0-native-fb-95465dc4-20241218" !== 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-e1d843f4-20241218\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-native-renderer: 19.1.0-native-fb-95465dc4-20241218\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
if (
|
||||
"function" !==
|
||||
@@ -11936,10 +11936,10 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1366 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-e1d843f4-20241218",
|
||||
version: "19.1.0-native-fb-95465dc4-20241218",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-e1d843f4-20241218"
|
||||
reconcilerVersion: "19.1.0-native-fb-95465dc4-20241218"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1366.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
Reference in New Issue
Block a user