mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
[be] Remove unshipped experimental <Cache> element type (#28698)
Removes the `<Cache />` element type since we're going with a simpler caching strategy. DiffTrain build for commit https://github.com/facebook/react/commit/7319c61b18274ee7e7c20bd2e533b93c922d8fe0.
This commit is contained in:
+1
-3
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<2efa0f7ab5ad5e492b13b7c939b8e190>>
|
||||
* @generated SignedSource<<afb777050b34d9327e7a32096f5bb566>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -37,7 +37,6 @@ if (__DEV__) {
|
||||
var REACT_MEMO_TYPE = Symbol.for("react.memo");
|
||||
var REACT_LAZY_TYPE = Symbol.for("react.lazy");
|
||||
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
|
||||
var REACT_CACHE_TYPE = Symbol.for("react.cache");
|
||||
|
||||
// Re-export dynamic flags from the internal module.
|
||||
var dynamicFlags = dynamicFlagsUntyped; // We destructure each value before re-exporting to avoid a dynamic look-up on
|
||||
@@ -66,7 +65,6 @@ if (__DEV__) {
|
||||
enableLegacyHidden ||
|
||||
type === REACT_OFFSCREEN_TYPE ||
|
||||
enableScopeAPI ||
|
||||
type === REACT_CACHE_TYPE ||
|
||||
enableTransitionTracing
|
||||
) {
|
||||
return true;
|
||||
|
||||
+1
-3
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<f71d56737b959dc3ce937d61f1bd9834>>
|
||||
* @generated SignedSource<<8b4e45fcdea67ae633a64f641072fdb0>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -26,7 +26,6 @@ var dynamicFlagsUntyped = require("ReactNativeInternalFeatureFlags"),
|
||||
REACT_MEMO_TYPE = Symbol.for("react.memo"),
|
||||
REACT_LAZY_TYPE = Symbol.for("react.lazy"),
|
||||
REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"),
|
||||
REACT_CACHE_TYPE = Symbol.for("react.cache"),
|
||||
enableRenderableContext = dynamicFlagsUntyped.enableRenderableContext,
|
||||
REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference");
|
||||
function typeOf(object) {
|
||||
@@ -131,7 +130,6 @@ exports.isValidElementType = function (type) {
|
||||
type === REACT_SUSPENSE_TYPE ||
|
||||
type === REACT_SUSPENSE_LIST_TYPE ||
|
||||
type === REACT_OFFSCREEN_TYPE ||
|
||||
type === REACT_CACHE_TYPE ||
|
||||
("object" === typeof type &&
|
||||
null !== type &&
|
||||
(type.$$typeof === REACT_LAZY_TYPE ||
|
||||
|
||||
Vendored
+1
-3
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<f71d56737b959dc3ce937d61f1bd9834>>
|
||||
* @generated SignedSource<<8b4e45fcdea67ae633a64f641072fdb0>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -26,7 +26,6 @@ var dynamicFlagsUntyped = require("ReactNativeInternalFeatureFlags"),
|
||||
REACT_MEMO_TYPE = Symbol.for("react.memo"),
|
||||
REACT_LAZY_TYPE = Symbol.for("react.lazy"),
|
||||
REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"),
|
||||
REACT_CACHE_TYPE = Symbol.for("react.cache"),
|
||||
enableRenderableContext = dynamicFlagsUntyped.enableRenderableContext,
|
||||
REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference");
|
||||
function typeOf(object) {
|
||||
@@ -131,7 +130,6 @@ exports.isValidElementType = function (type) {
|
||||
type === REACT_SUSPENSE_TYPE ||
|
||||
type === REACT_SUSPENSE_LIST_TYPE ||
|
||||
type === REACT_OFFSCREEN_TYPE ||
|
||||
type === REACT_CACHE_TYPE ||
|
||||
("object" === typeof type &&
|
||||
null !== type &&
|
||||
(type.$$typeof === REACT_LAZY_TYPE ||
|
||||
|
||||
+2
-19
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<450ce571f0c96cb1643d074e993d3573>>
|
||||
* @generated SignedSource<<42436c5e972cb03b026adac4f26b9197>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -203,7 +203,6 @@ if (__DEV__) {
|
||||
var REACT_DEBUG_TRACING_MODE_TYPE = Symbol.for("react.debug_trace_mode");
|
||||
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
|
||||
var REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden");
|
||||
var REACT_CACHE_TYPE = Symbol.for("react.cache");
|
||||
var REACT_TRACING_MARKER_TYPE = Symbol.for("react.tracing_marker");
|
||||
var REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel");
|
||||
var MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|
||||
@@ -280,10 +279,6 @@ if (__DEV__) {
|
||||
|
||||
case REACT_SUSPENSE_LIST_TYPE:
|
||||
return "SuspenseList";
|
||||
|
||||
case REACT_CACHE_TYPE: {
|
||||
return "Cache";
|
||||
}
|
||||
}
|
||||
|
||||
if (typeof type === "object") {
|
||||
@@ -26490,12 +26485,6 @@ if (__DEV__) {
|
||||
|
||||
// Fall through
|
||||
|
||||
case REACT_CACHE_TYPE: {
|
||||
return createFiberFromCache(pendingProps, mode, lanes, key);
|
||||
}
|
||||
|
||||
// Fall through
|
||||
|
||||
case REACT_TRACING_MARKER_TYPE:
|
||||
|
||||
// Fall through
|
||||
@@ -26674,12 +26663,6 @@ if (__DEV__) {
|
||||
fiber.stateNode = primaryChildInstance;
|
||||
return fiber;
|
||||
}
|
||||
function createFiberFromCache(pendingProps, mode, lanes, key) {
|
||||
var fiber = createFiber(CacheComponent, pendingProps, key, mode);
|
||||
fiber.elementType = REACT_CACHE_TYPE;
|
||||
fiber.lanes = lanes;
|
||||
return fiber;
|
||||
}
|
||||
function createFiberFromText(content, mode, lanes) {
|
||||
var fiber = createFiber(HostText, content, null, mode);
|
||||
fiber.lanes = lanes;
|
||||
@@ -26826,7 +26809,7 @@ if (__DEV__) {
|
||||
return root;
|
||||
}
|
||||
|
||||
var ReactVersion = "19.0.0-canary-a7826ac0";
|
||||
var ReactVersion = "19.0.0-canary-4a355ff9";
|
||||
|
||||
// Might add PROFILE later.
|
||||
|
||||
|
||||
+20
-32
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<b862b395b4f51e602cf4cf820214c31d>>
|
||||
* @generated SignedSource<<7ac197948521e47e5a2da9b0dae35269>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -43,12 +43,11 @@ var assign = Object.assign,
|
||||
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_LAZY_TYPE = Symbol.for("react.lazy");
|
||||
Symbol.for("react.scope");
|
||||
Symbol.for("react.debug_trace_mode");
|
||||
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"),
|
||||
REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden"),
|
||||
REACT_CACHE_TYPE = Symbol.for("react.cache");
|
||||
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
|
||||
Symbol.for("react.legacy_hidden");
|
||||
Symbol.for("react.tracing_marker");
|
||||
var REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel"),
|
||||
MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|
||||
@@ -80,8 +79,6 @@ function getComponentNameFromType(type) {
|
||||
return "Suspense";
|
||||
case REACT_SUSPENSE_LIST_TYPE:
|
||||
return "SuspenseList";
|
||||
case REACT_CACHE_TYPE:
|
||||
return "Cache";
|
||||
}
|
||||
if ("object" === typeof type)
|
||||
switch (type.$$typeof) {
|
||||
@@ -8655,15 +8652,6 @@ function createFiberFromTypeAndProps(
|
||||
);
|
||||
case REACT_OFFSCREEN_TYPE:
|
||||
return createFiberFromOffscreen(pendingProps, mode, lanes, key);
|
||||
case REACT_LEGACY_HIDDEN_TYPE:
|
||||
case REACT_SCOPE_TYPE:
|
||||
case REACT_CACHE_TYPE:
|
||||
return (
|
||||
(type = createFiber(24, pendingProps, key, mode)),
|
||||
(type.elementType = REACT_CACHE_TYPE),
|
||||
(type.lanes = lanes),
|
||||
type
|
||||
);
|
||||
default:
|
||||
if ("object" === typeof type && null !== type)
|
||||
switch (type.$$typeof) {
|
||||
@@ -9208,19 +9196,19 @@ function wrapFiber(fiber) {
|
||||
fiberToWrapper.set(fiber, wrapper));
|
||||
return wrapper;
|
||||
}
|
||||
var devToolsConfig$jscomp$inline_999 = {
|
||||
var devToolsConfig$jscomp$inline_992 = {
|
||||
findFiberByHostInstance: function () {
|
||||
throw Error("TestRenderer does not support findFiberByHostInstance()");
|
||||
},
|
||||
bundleType: 0,
|
||||
version: "19.0.0-canary-120686d7",
|
||||
version: "19.0.0-canary-b78d8890",
|
||||
rendererPackageName: "react-test-renderer"
|
||||
};
|
||||
var internals$jscomp$inline_1187 = {
|
||||
bundleType: devToolsConfig$jscomp$inline_999.bundleType,
|
||||
version: devToolsConfig$jscomp$inline_999.version,
|
||||
rendererPackageName: devToolsConfig$jscomp$inline_999.rendererPackageName,
|
||||
rendererConfig: devToolsConfig$jscomp$inline_999.rendererConfig,
|
||||
var internals$jscomp$inline_1180 = {
|
||||
bundleType: devToolsConfig$jscomp$inline_992.bundleType,
|
||||
version: devToolsConfig$jscomp$inline_992.version,
|
||||
rendererPackageName: devToolsConfig$jscomp$inline_992.rendererPackageName,
|
||||
rendererConfig: devToolsConfig$jscomp$inline_992.rendererConfig,
|
||||
overrideHookState: null,
|
||||
overrideHookStateDeletePath: null,
|
||||
overrideHookStateRenamePath: null,
|
||||
@@ -9237,26 +9225,26 @@ var internals$jscomp$inline_1187 = {
|
||||
return null === fiber ? null : fiber.stateNode;
|
||||
},
|
||||
findFiberByHostInstance:
|
||||
devToolsConfig$jscomp$inline_999.findFiberByHostInstance ||
|
||||
devToolsConfig$jscomp$inline_992.findFiberByHostInstance ||
|
||||
emptyFindFiberByHostInstance,
|
||||
findHostInstancesForRefresh: null,
|
||||
scheduleRefresh: null,
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-canary-120686d7"
|
||||
reconcilerVersion: "19.0.0-canary-b78d8890"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1188 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_1181 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_1188.isDisabled &&
|
||||
hook$jscomp$inline_1188.supportsFiber
|
||||
!hook$jscomp$inline_1181.isDisabled &&
|
||||
hook$jscomp$inline_1181.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_1188.inject(
|
||||
internals$jscomp$inline_1187
|
||||
(rendererID = hook$jscomp$inline_1181.inject(
|
||||
internals$jscomp$inline_1180
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_1188);
|
||||
(injectedHook = hook$jscomp$inline_1181);
|
||||
} catch (err) {}
|
||||
}
|
||||
exports._Scheduler = Scheduler;
|
||||
|
||||
+13
-25
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<1e162bfd81c2744b7c22ac7c96c87f91>>
|
||||
* @generated SignedSource<<a70ea58db09502275f7ba43d5cdee6ae>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -43,12 +43,11 @@ var assign = Object.assign,
|
||||
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_LAZY_TYPE = Symbol.for("react.lazy");
|
||||
Symbol.for("react.scope");
|
||||
Symbol.for("react.debug_trace_mode");
|
||||
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"),
|
||||
REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden"),
|
||||
REACT_CACHE_TYPE = Symbol.for("react.cache");
|
||||
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
|
||||
Symbol.for("react.legacy_hidden");
|
||||
Symbol.for("react.tracing_marker");
|
||||
var REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel"),
|
||||
MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|
||||
@@ -80,8 +79,6 @@ function getComponentNameFromType(type) {
|
||||
return "Suspense";
|
||||
case REACT_SUSPENSE_LIST_TYPE:
|
||||
return "SuspenseList";
|
||||
case REACT_CACHE_TYPE:
|
||||
return "Cache";
|
||||
}
|
||||
if ("object" === typeof type)
|
||||
switch (type.$$typeof) {
|
||||
@@ -9268,15 +9265,6 @@ function createFiberFromTypeAndProps(
|
||||
);
|
||||
case REACT_OFFSCREEN_TYPE:
|
||||
return createFiberFromOffscreen(pendingProps, mode, lanes, key);
|
||||
case REACT_LEGACY_HIDDEN_TYPE:
|
||||
case REACT_SCOPE_TYPE:
|
||||
case REACT_CACHE_TYPE:
|
||||
return (
|
||||
(type = createFiber(24, pendingProps, key, mode)),
|
||||
(type.elementType = REACT_CACHE_TYPE),
|
||||
(type.lanes = lanes),
|
||||
type
|
||||
);
|
||||
default:
|
||||
if ("object" === typeof type && null !== type)
|
||||
switch (type.$$typeof) {
|
||||
@@ -9826,12 +9814,12 @@ function wrapFiber(fiber) {
|
||||
fiberToWrapper.set(fiber, wrapper));
|
||||
return wrapper;
|
||||
}
|
||||
var devToolsConfig$jscomp$inline_1083 = {
|
||||
var devToolsConfig$jscomp$inline_1076 = {
|
||||
findFiberByHostInstance: function () {
|
||||
throw Error("TestRenderer does not support findFiberByHostInstance()");
|
||||
},
|
||||
bundleType: 0,
|
||||
version: "19.0.0-canary-841877f9",
|
||||
version: "19.0.0-canary-4e13c867",
|
||||
rendererPackageName: "react-test-renderer"
|
||||
};
|
||||
(function (internals) {
|
||||
@@ -9848,10 +9836,10 @@ var devToolsConfig$jscomp$inline_1083 = {
|
||||
} catch (err) {}
|
||||
return hook.checkDCE ? !0 : !1;
|
||||
})({
|
||||
bundleType: devToolsConfig$jscomp$inline_1083.bundleType,
|
||||
version: devToolsConfig$jscomp$inline_1083.version,
|
||||
rendererPackageName: devToolsConfig$jscomp$inline_1083.rendererPackageName,
|
||||
rendererConfig: devToolsConfig$jscomp$inline_1083.rendererConfig,
|
||||
bundleType: devToolsConfig$jscomp$inline_1076.bundleType,
|
||||
version: devToolsConfig$jscomp$inline_1076.version,
|
||||
rendererPackageName: devToolsConfig$jscomp$inline_1076.rendererPackageName,
|
||||
rendererConfig: devToolsConfig$jscomp$inline_1076.rendererConfig,
|
||||
overrideHookState: null,
|
||||
overrideHookStateDeletePath: null,
|
||||
overrideHookStateRenamePath: null,
|
||||
@@ -9868,14 +9856,14 @@ var devToolsConfig$jscomp$inline_1083 = {
|
||||
return null === fiber ? null : fiber.stateNode;
|
||||
},
|
||||
findFiberByHostInstance:
|
||||
devToolsConfig$jscomp$inline_1083.findFiberByHostInstance ||
|
||||
devToolsConfig$jscomp$inline_1076.findFiberByHostInstance ||
|
||||
emptyFindFiberByHostInstance,
|
||||
findHostInstancesForRefresh: null,
|
||||
scheduleRefresh: null,
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-canary-841877f9"
|
||||
reconcilerVersion: "19.0.0-canary-4e13c867"
|
||||
});
|
||||
exports._Scheduler = Scheduler;
|
||||
exports.act = act;
|
||||
|
||||
+1
-7
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<0d9a77506743aad44cc841af6c1c670c>>
|
||||
* @generated SignedSource<<59264a532371cf816058b1cd23998d35>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -38,7 +38,6 @@ if (__DEV__) {
|
||||
var REACT_MEMO_TYPE = Symbol.for("react.memo");
|
||||
var REACT_LAZY_TYPE = Symbol.for("react.lazy");
|
||||
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
|
||||
var REACT_CACHE_TYPE = Symbol.for("react.cache");
|
||||
var MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|
||||
var FAUX_ITERATOR_SYMBOL = "@@iterator";
|
||||
function getIteratorFn(maybeIterable) {
|
||||
@@ -172,10 +171,6 @@ if (__DEV__) {
|
||||
|
||||
case REACT_SUSPENSE_LIST_TYPE:
|
||||
return "SuspenseList";
|
||||
|
||||
case REACT_CACHE_TYPE: {
|
||||
return "Cache";
|
||||
}
|
||||
}
|
||||
|
||||
if (typeof type === "object") {
|
||||
@@ -338,7 +333,6 @@ if (__DEV__) {
|
||||
enableLegacyHidden ||
|
||||
type === REACT_OFFSCREEN_TYPE ||
|
||||
enableScopeAPI ||
|
||||
type === REACT_CACHE_TYPE ||
|
||||
enableTransitionTracing
|
||||
) {
|
||||
return true;
|
||||
|
||||
+1
-7
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<adeaae2f5066d7efda21fb798629deec>>
|
||||
* @generated SignedSource<<b8adb7b0f518a62eeeafe1982920443a>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -38,7 +38,6 @@ if (__DEV__) {
|
||||
var REACT_MEMO_TYPE = Symbol.for("react.memo");
|
||||
var REACT_LAZY_TYPE = Symbol.for("react.lazy");
|
||||
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
|
||||
var REACT_CACHE_TYPE = Symbol.for("react.cache");
|
||||
var MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|
||||
var FAUX_ITERATOR_SYMBOL = "@@iterator";
|
||||
function getIteratorFn(maybeIterable) {
|
||||
@@ -172,10 +171,6 @@ if (__DEV__) {
|
||||
|
||||
case REACT_SUSPENSE_LIST_TYPE:
|
||||
return "SuspenseList";
|
||||
|
||||
case REACT_CACHE_TYPE: {
|
||||
return "Cache";
|
||||
}
|
||||
}
|
||||
|
||||
if (typeof type === "object") {
|
||||
@@ -338,7 +333,6 @@ if (__DEV__) {
|
||||
enableLegacyHidden ||
|
||||
type === REACT_OFFSCREEN_TYPE ||
|
||||
enableScopeAPI ||
|
||||
type === REACT_CACHE_TYPE ||
|
||||
enableTransitionTracing
|
||||
) {
|
||||
return true;
|
||||
|
||||
+2
-9
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<3c9d3cbcbb7690bdd3c319e0ba24e0a8>>
|
||||
* @generated SignedSource<<f6c84bf1921e7e8ae7d4eac966e4e55f>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -26,7 +26,7 @@ if (__DEV__) {
|
||||
}
|
||||
var dynamicFlagsUntyped = require("ReactNativeInternalFeatureFlags");
|
||||
|
||||
var ReactVersion = "19.0.0-canary-d53f813c";
|
||||
var ReactVersion = "19.0.0-canary-c952bafb";
|
||||
|
||||
// ATTENTION
|
||||
// When adding new symbols to this file,
|
||||
@@ -50,7 +50,6 @@ if (__DEV__) {
|
||||
var REACT_DEBUG_TRACING_MODE_TYPE = Symbol.for("react.debug_trace_mode");
|
||||
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
|
||||
var REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden");
|
||||
var REACT_CACHE_TYPE = Symbol.for("react.cache");
|
||||
var REACT_TRACING_MARKER_TYPE = Symbol.for("react.tracing_marker");
|
||||
var MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|
||||
var FAUX_ITERATOR_SYMBOL = "@@iterator";
|
||||
@@ -640,10 +639,6 @@ if (__DEV__) {
|
||||
|
||||
case REACT_SUSPENSE_LIST_TYPE:
|
||||
return "SuspenseList";
|
||||
|
||||
case REACT_CACHE_TYPE: {
|
||||
return "Cache";
|
||||
}
|
||||
}
|
||||
|
||||
if (typeof type === "object") {
|
||||
@@ -730,7 +725,6 @@ if (__DEV__) {
|
||||
enableLegacyHidden ||
|
||||
type === REACT_OFFSCREEN_TYPE ||
|
||||
enableScopeAPI ||
|
||||
type === REACT_CACHE_TYPE ||
|
||||
enableTransitionTracing
|
||||
) {
|
||||
return true;
|
||||
@@ -3640,7 +3634,6 @@ if (__DEV__) {
|
||||
exports.memo = memo;
|
||||
exports.startTransition = startTransition;
|
||||
exports.unstable_Activity = REACT_OFFSCREEN_TYPE;
|
||||
exports.unstable_Cache = REACT_CACHE_TYPE;
|
||||
exports.unstable_DebugTracingMode = REACT_DEBUG_TRACING_MODE_TYPE;
|
||||
exports.unstable_LegacyHidden = REACT_LEGACY_HIDDEN_TYPE;
|
||||
exports.unstable_Scope = REACT_SCOPE_TYPE;
|
||||
|
||||
+2
-4
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<ed4da00dc7705121a507bffa64d7f8bb>>
|
||||
* @generated SignedSource<<4d62414ddfd6f7eb3ca9d918bf686921>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -29,7 +29,6 @@ var dynamicFlagsUntyped = require("ReactNativeInternalFeatureFlags"),
|
||||
REACT_DEBUG_TRACING_MODE_TYPE = Symbol.for("react.debug_trace_mode"),
|
||||
REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"),
|
||||
REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden"),
|
||||
REACT_CACHE_TYPE = Symbol.for("react.cache"),
|
||||
REACT_TRACING_MARKER_TYPE = Symbol.for("react.tracing_marker"),
|
||||
MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|
||||
function getIteratorFn(maybeIterable) {
|
||||
@@ -563,7 +562,6 @@ exports.startTransition = function (scope) {
|
||||
}
|
||||
};
|
||||
exports.unstable_Activity = REACT_OFFSCREEN_TYPE;
|
||||
exports.unstable_Cache = REACT_CACHE_TYPE;
|
||||
exports.unstable_DebugTracingMode = REACT_DEBUG_TRACING_MODE_TYPE;
|
||||
exports.unstable_LegacyHidden = REACT_LEGACY_HIDDEN_TYPE;
|
||||
exports.unstable_Scope = REACT_SCOPE_TYPE;
|
||||
@@ -657,4 +655,4 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactCurrentDispatcher.current.useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-canary-a9f85346";
|
||||
exports.version = "19.0.0-canary-6446e904";
|
||||
|
||||
+2
-4
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<50a5378f60ee29fee7964f02f5243965>>
|
||||
* @generated SignedSource<<849c048328a890d86bad5a8956d27c43>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -33,7 +33,6 @@ var dynamicFlagsUntyped = require("ReactNativeInternalFeatureFlags"),
|
||||
REACT_DEBUG_TRACING_MODE_TYPE = Symbol.for("react.debug_trace_mode"),
|
||||
REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"),
|
||||
REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden"),
|
||||
REACT_CACHE_TYPE = Symbol.for("react.cache"),
|
||||
MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|
||||
function getIteratorFn(maybeIterable) {
|
||||
if (null === maybeIterable || "object" !== typeof maybeIterable) return null;
|
||||
@@ -566,7 +565,6 @@ exports.startTransition = function (scope) {
|
||||
}
|
||||
};
|
||||
exports.unstable_Activity = REACT_OFFSCREEN_TYPE;
|
||||
exports.unstable_Cache = REACT_CACHE_TYPE;
|
||||
exports.unstable_DebugTracingMode = REACT_DEBUG_TRACING_MODE_TYPE;
|
||||
exports.unstable_LegacyHidden = REACT_LEGACY_HIDDEN_TYPE;
|
||||
exports.unstable_Scope = REACT_SCOPE_TYPE;
|
||||
@@ -659,7 +657,7 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactCurrentDispatcher.current.useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-canary-5f0b765f";
|
||||
exports.version = "19.0.0-canary-2f767b28";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
df95577db0d1d7ca383f281bc1d9e6ba5579bef2
|
||||
7319c61b18274ee7e7c20bd2e533b93c922d8fe0
|
||||
|
||||
+2
-19
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<6f1a3674eda8e64a39fec845789b844f>>
|
||||
* @generated SignedSource<<3e3ed9765dda9f3c6023ab53e91bd9f2>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -5134,7 +5134,6 @@ to return true:wantsResponderID| |
|
||||
var REACT_DEBUG_TRACING_MODE_TYPE = Symbol.for("react.debug_trace_mode");
|
||||
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
|
||||
var REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden");
|
||||
var REACT_CACHE_TYPE = Symbol.for("react.cache");
|
||||
var REACT_TRACING_MARKER_TYPE = Symbol.for("react.tracing_marker");
|
||||
var REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel");
|
||||
var MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|
||||
@@ -5211,10 +5210,6 @@ to return true:wantsResponderID| |
|
||||
|
||||
case REACT_SUSPENSE_LIST_TYPE:
|
||||
return "SuspenseList";
|
||||
|
||||
case REACT_CACHE_TYPE: {
|
||||
return "Cache";
|
||||
}
|
||||
}
|
||||
|
||||
if (typeof type === "object") {
|
||||
@@ -30246,12 +30241,6 @@ to return true:wantsResponderID| |
|
||||
|
||||
// Fall through
|
||||
|
||||
case REACT_CACHE_TYPE: {
|
||||
return createFiberFromCache(pendingProps, mode, lanes, key);
|
||||
}
|
||||
|
||||
// Fall through
|
||||
|
||||
case REACT_TRACING_MARKER_TYPE:
|
||||
|
||||
// Fall through
|
||||
@@ -30439,12 +30428,6 @@ to return true:wantsResponderID| |
|
||||
fiber.stateNode = primaryChildInstance;
|
||||
return fiber;
|
||||
}
|
||||
function createFiberFromCache(pendingProps, mode, lanes, key) {
|
||||
var fiber = createFiber(CacheComponent, pendingProps, key, mode);
|
||||
fiber.elementType = REACT_CACHE_TYPE;
|
||||
fiber.lanes = lanes;
|
||||
return fiber;
|
||||
}
|
||||
function createFiberFromText(content, mode, lanes) {
|
||||
var fiber = createFiber(HostText, content, null, mode);
|
||||
fiber.lanes = lanes;
|
||||
@@ -30596,7 +30579,7 @@ to return true:wantsResponderID| |
|
||||
return root;
|
||||
}
|
||||
|
||||
var ReactVersion = "19.0.0-canary-a3fc349c";
|
||||
var ReactVersion = "19.0.0-canary-187f2f09";
|
||||
|
||||
function createPortal$1(
|
||||
children,
|
||||
|
||||
+37
-49
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<24c748cb5ad6fedf32c95c0a70ca3378>>
|
||||
* @generated SignedSource<<53f0c6b6504a10433786b5f29d2fd80a>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -893,7 +893,7 @@ eventPluginOrder = Array.prototype.slice.call([
|
||||
"ReactNativeBridgeEventPlugin"
|
||||
]);
|
||||
recomputePluginOrdering();
|
||||
var injectedNamesToPlugins$jscomp$inline_245 = {
|
||||
var injectedNamesToPlugins$jscomp$inline_244 = {
|
||||
ResponderEventPlugin: ResponderEventPlugin,
|
||||
ReactNativeBridgeEventPlugin: {
|
||||
eventTypes: {},
|
||||
@@ -939,32 +939,32 @@ var injectedNamesToPlugins$jscomp$inline_245 = {
|
||||
}
|
||||
}
|
||||
},
|
||||
isOrderingDirty$jscomp$inline_246 = !1,
|
||||
pluginName$jscomp$inline_247;
|
||||
for (pluginName$jscomp$inline_247 in injectedNamesToPlugins$jscomp$inline_245)
|
||||
isOrderingDirty$jscomp$inline_245 = !1,
|
||||
pluginName$jscomp$inline_246;
|
||||
for (pluginName$jscomp$inline_246 in injectedNamesToPlugins$jscomp$inline_244)
|
||||
if (
|
||||
injectedNamesToPlugins$jscomp$inline_245.hasOwnProperty(
|
||||
pluginName$jscomp$inline_247
|
||||
injectedNamesToPlugins$jscomp$inline_244.hasOwnProperty(
|
||||
pluginName$jscomp$inline_246
|
||||
)
|
||||
) {
|
||||
var pluginModule$jscomp$inline_248 =
|
||||
injectedNamesToPlugins$jscomp$inline_245[pluginName$jscomp$inline_247];
|
||||
var pluginModule$jscomp$inline_247 =
|
||||
injectedNamesToPlugins$jscomp$inline_244[pluginName$jscomp$inline_246];
|
||||
if (
|
||||
!namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_247) ||
|
||||
namesToPlugins[pluginName$jscomp$inline_247] !==
|
||||
pluginModule$jscomp$inline_248
|
||||
!namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_246) ||
|
||||
namesToPlugins[pluginName$jscomp$inline_246] !==
|
||||
pluginModule$jscomp$inline_247
|
||||
) {
|
||||
if (namesToPlugins[pluginName$jscomp$inline_247])
|
||||
if (namesToPlugins[pluginName$jscomp$inline_246])
|
||||
throw Error(
|
||||
"EventPluginRegistry: Cannot inject two different event plugins using the same name, `" +
|
||||
(pluginName$jscomp$inline_247 + "`.")
|
||||
(pluginName$jscomp$inline_246 + "`.")
|
||||
);
|
||||
namesToPlugins[pluginName$jscomp$inline_247] =
|
||||
pluginModule$jscomp$inline_248;
|
||||
isOrderingDirty$jscomp$inline_246 = !0;
|
||||
namesToPlugins[pluginName$jscomp$inline_246] =
|
||||
pluginModule$jscomp$inline_247;
|
||||
isOrderingDirty$jscomp$inline_245 = !0;
|
||||
}
|
||||
}
|
||||
isOrderingDirty$jscomp$inline_246 && recomputePluginOrdering();
|
||||
isOrderingDirty$jscomp$inline_245 && recomputePluginOrdering();
|
||||
var emptyObject$1 = {},
|
||||
removedKeys = null,
|
||||
removedKeyCount = 0,
|
||||
@@ -1650,12 +1650,11 @@ var REACT_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
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_LAZY_TYPE = Symbol.for("react.lazy");
|
||||
Symbol.for("react.scope");
|
||||
Symbol.for("react.debug_trace_mode");
|
||||
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"),
|
||||
REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden"),
|
||||
REACT_CACHE_TYPE = Symbol.for("react.cache");
|
||||
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
|
||||
Symbol.for("react.legacy_hidden");
|
||||
Symbol.for("react.tracing_marker");
|
||||
var REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel"),
|
||||
MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|
||||
@@ -1687,8 +1686,6 @@ function getComponentNameFromType(type) {
|
||||
return "Suspense";
|
||||
case REACT_SUSPENSE_LIST_TYPE:
|
||||
return "SuspenseList";
|
||||
case REACT_CACHE_TYPE:
|
||||
return "Cache";
|
||||
}
|
||||
if ("object" === typeof type)
|
||||
switch (type.$$typeof) {
|
||||
@@ -10226,15 +10223,6 @@ function createFiberFromTypeAndProps(
|
||||
);
|
||||
case REACT_OFFSCREEN_TYPE:
|
||||
return createFiberFromOffscreen(pendingProps, mode, lanes, key);
|
||||
case REACT_LEGACY_HIDDEN_TYPE:
|
||||
case REACT_SCOPE_TYPE:
|
||||
case REACT_CACHE_TYPE:
|
||||
return (
|
||||
(type = createFiber(24, pendingProps, key, mode)),
|
||||
(type.elementType = REACT_CACHE_TYPE),
|
||||
(type.lanes = lanes),
|
||||
type
|
||||
);
|
||||
default:
|
||||
if ("object" === typeof type && null !== type)
|
||||
switch (type.$$typeof) {
|
||||
@@ -10629,10 +10617,10 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
}
|
||||
};
|
||||
var roots = new Map(),
|
||||
devToolsConfig$jscomp$inline_1101 = {
|
||||
devToolsConfig$jscomp$inline_1094 = {
|
||||
findFiberByHostInstance: getInstanceFromNode,
|
||||
bundleType: 0,
|
||||
version: "19.0.0-canary-743ed8be",
|
||||
version: "19.0.0-canary-e039c15e",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
rendererConfig: {
|
||||
getInspectorDataForInstance: getInspectorDataForInstance,
|
||||
@@ -10648,11 +10636,11 @@ var roots = new Map(),
|
||||
}.bind(null, findNodeHandle)
|
||||
}
|
||||
};
|
||||
var internals$jscomp$inline_1338 = {
|
||||
bundleType: devToolsConfig$jscomp$inline_1101.bundleType,
|
||||
version: devToolsConfig$jscomp$inline_1101.version,
|
||||
rendererPackageName: devToolsConfig$jscomp$inline_1101.rendererPackageName,
|
||||
rendererConfig: devToolsConfig$jscomp$inline_1101.rendererConfig,
|
||||
var internals$jscomp$inline_1331 = {
|
||||
bundleType: devToolsConfig$jscomp$inline_1094.bundleType,
|
||||
version: devToolsConfig$jscomp$inline_1094.version,
|
||||
rendererPackageName: devToolsConfig$jscomp$inline_1094.rendererPackageName,
|
||||
rendererConfig: devToolsConfig$jscomp$inline_1094.rendererConfig,
|
||||
overrideHookState: null,
|
||||
overrideHookStateDeletePath: null,
|
||||
overrideHookStateRenamePath: null,
|
||||
@@ -10668,26 +10656,26 @@ var internals$jscomp$inline_1338 = {
|
||||
return null === fiber ? null : fiber.stateNode;
|
||||
},
|
||||
findFiberByHostInstance:
|
||||
devToolsConfig$jscomp$inline_1101.findFiberByHostInstance ||
|
||||
devToolsConfig$jscomp$inline_1094.findFiberByHostInstance ||
|
||||
emptyFindFiberByHostInstance,
|
||||
findHostInstancesForRefresh: null,
|
||||
scheduleRefresh: null,
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-canary-743ed8be"
|
||||
reconcilerVersion: "19.0.0-canary-e039c15e"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1339 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_1332 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_1339.isDisabled &&
|
||||
hook$jscomp$inline_1339.supportsFiber
|
||||
!hook$jscomp$inline_1332.isDisabled &&
|
||||
hook$jscomp$inline_1332.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_1339.inject(
|
||||
internals$jscomp$inline_1338
|
||||
(rendererID = hook$jscomp$inline_1332.inject(
|
||||
internals$jscomp$inline_1331
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_1339);
|
||||
(injectedHook = hook$jscomp$inline_1332);
|
||||
} catch (err) {}
|
||||
}
|
||||
exports.createPortal = function (children, containerTag) {
|
||||
|
||||
+30
-42
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<2c0df7fb4dbca6b68b253a6729ffbfb7>>
|
||||
* @generated SignedSource<<8c624a39a5ea9b24da7b85bd960521b9>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -897,7 +897,7 @@ eventPluginOrder = Array.prototype.slice.call([
|
||||
"ReactNativeBridgeEventPlugin"
|
||||
]);
|
||||
recomputePluginOrdering();
|
||||
var injectedNamesToPlugins$jscomp$inline_261 = {
|
||||
var injectedNamesToPlugins$jscomp$inline_260 = {
|
||||
ResponderEventPlugin: ResponderEventPlugin,
|
||||
ReactNativeBridgeEventPlugin: {
|
||||
eventTypes: {},
|
||||
@@ -943,32 +943,32 @@ var injectedNamesToPlugins$jscomp$inline_261 = {
|
||||
}
|
||||
}
|
||||
},
|
||||
isOrderingDirty$jscomp$inline_262 = !1,
|
||||
pluginName$jscomp$inline_263;
|
||||
for (pluginName$jscomp$inline_263 in injectedNamesToPlugins$jscomp$inline_261)
|
||||
isOrderingDirty$jscomp$inline_261 = !1,
|
||||
pluginName$jscomp$inline_262;
|
||||
for (pluginName$jscomp$inline_262 in injectedNamesToPlugins$jscomp$inline_260)
|
||||
if (
|
||||
injectedNamesToPlugins$jscomp$inline_261.hasOwnProperty(
|
||||
pluginName$jscomp$inline_263
|
||||
injectedNamesToPlugins$jscomp$inline_260.hasOwnProperty(
|
||||
pluginName$jscomp$inline_262
|
||||
)
|
||||
) {
|
||||
var pluginModule$jscomp$inline_264 =
|
||||
injectedNamesToPlugins$jscomp$inline_261[pluginName$jscomp$inline_263];
|
||||
var pluginModule$jscomp$inline_263 =
|
||||
injectedNamesToPlugins$jscomp$inline_260[pluginName$jscomp$inline_262];
|
||||
if (
|
||||
!namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_263) ||
|
||||
namesToPlugins[pluginName$jscomp$inline_263] !==
|
||||
pluginModule$jscomp$inline_264
|
||||
!namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_262) ||
|
||||
namesToPlugins[pluginName$jscomp$inline_262] !==
|
||||
pluginModule$jscomp$inline_263
|
||||
) {
|
||||
if (namesToPlugins[pluginName$jscomp$inline_263])
|
||||
if (namesToPlugins[pluginName$jscomp$inline_262])
|
||||
throw Error(
|
||||
"EventPluginRegistry: Cannot inject two different event plugins using the same name, `" +
|
||||
(pluginName$jscomp$inline_263 + "`.")
|
||||
(pluginName$jscomp$inline_262 + "`.")
|
||||
);
|
||||
namesToPlugins[pluginName$jscomp$inline_263] =
|
||||
pluginModule$jscomp$inline_264;
|
||||
isOrderingDirty$jscomp$inline_262 = !0;
|
||||
namesToPlugins[pluginName$jscomp$inline_262] =
|
||||
pluginModule$jscomp$inline_263;
|
||||
isOrderingDirty$jscomp$inline_261 = !0;
|
||||
}
|
||||
}
|
||||
isOrderingDirty$jscomp$inline_262 && recomputePluginOrdering();
|
||||
isOrderingDirty$jscomp$inline_261 && recomputePluginOrdering();
|
||||
var emptyObject$1 = {},
|
||||
removedKeys = null,
|
||||
removedKeyCount = 0,
|
||||
@@ -1772,12 +1772,11 @@ var REACT_ELEMENT_TYPE = Symbol.for("react.element"),
|
||||
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_LAZY_TYPE = Symbol.for("react.lazy");
|
||||
Symbol.for("react.scope");
|
||||
Symbol.for("react.debug_trace_mode");
|
||||
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"),
|
||||
REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden"),
|
||||
REACT_CACHE_TYPE = Symbol.for("react.cache");
|
||||
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
|
||||
Symbol.for("react.legacy_hidden");
|
||||
Symbol.for("react.tracing_marker");
|
||||
var REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel"),
|
||||
MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|
||||
@@ -1809,8 +1808,6 @@ function getComponentNameFromType(type) {
|
||||
return "Suspense";
|
||||
case REACT_SUSPENSE_LIST_TYPE:
|
||||
return "SuspenseList";
|
||||
case REACT_CACHE_TYPE:
|
||||
return "Cache";
|
||||
}
|
||||
if ("object" === typeof type)
|
||||
switch (type.$$typeof) {
|
||||
@@ -10926,15 +10923,6 @@ function createFiberFromTypeAndProps(
|
||||
);
|
||||
case REACT_OFFSCREEN_TYPE:
|
||||
return createFiberFromOffscreen(pendingProps, mode, lanes, key);
|
||||
case REACT_LEGACY_HIDDEN_TYPE:
|
||||
case REACT_SCOPE_TYPE:
|
||||
case REACT_CACHE_TYPE:
|
||||
return (
|
||||
(type = createFiber(24, pendingProps, key, mode)),
|
||||
(type.elementType = REACT_CACHE_TYPE),
|
||||
(type.lanes = lanes),
|
||||
type
|
||||
);
|
||||
default:
|
||||
if ("object" === typeof type && null !== type)
|
||||
switch (type.$$typeof) {
|
||||
@@ -11336,10 +11324,10 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
}
|
||||
};
|
||||
var roots = new Map(),
|
||||
devToolsConfig$jscomp$inline_1183 = {
|
||||
devToolsConfig$jscomp$inline_1176 = {
|
||||
findFiberByHostInstance: getInstanceFromNode,
|
||||
bundleType: 0,
|
||||
version: "19.0.0-canary-3f7007f5",
|
||||
version: "19.0.0-canary-56dfcbcb",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
rendererConfig: {
|
||||
getInspectorDataForInstance: getInspectorDataForInstance,
|
||||
@@ -11369,10 +11357,10 @@ var roots = new Map(),
|
||||
} catch (err) {}
|
||||
return hook.checkDCE ? !0 : !1;
|
||||
})({
|
||||
bundleType: devToolsConfig$jscomp$inline_1183.bundleType,
|
||||
version: devToolsConfig$jscomp$inline_1183.version,
|
||||
rendererPackageName: devToolsConfig$jscomp$inline_1183.rendererPackageName,
|
||||
rendererConfig: devToolsConfig$jscomp$inline_1183.rendererConfig,
|
||||
bundleType: devToolsConfig$jscomp$inline_1176.bundleType,
|
||||
version: devToolsConfig$jscomp$inline_1176.version,
|
||||
rendererPackageName: devToolsConfig$jscomp$inline_1176.rendererPackageName,
|
||||
rendererConfig: devToolsConfig$jscomp$inline_1176.rendererConfig,
|
||||
overrideHookState: null,
|
||||
overrideHookStateDeletePath: null,
|
||||
overrideHookStateRenamePath: null,
|
||||
@@ -11388,14 +11376,14 @@ var roots = new Map(),
|
||||
return null === fiber ? null : fiber.stateNode;
|
||||
},
|
||||
findFiberByHostInstance:
|
||||
devToolsConfig$jscomp$inline_1183.findFiberByHostInstance ||
|
||||
devToolsConfig$jscomp$inline_1176.findFiberByHostInstance ||
|
||||
emptyFindFiberByHostInstance,
|
||||
findHostInstancesForRefresh: null,
|
||||
scheduleRefresh: null,
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-canary-3f7007f5"
|
||||
reconcilerVersion: "19.0.0-canary-56dfcbcb"
|
||||
});
|
||||
exports.createPortal = function (children, containerTag) {
|
||||
return createPortal$1(
|
||||
|
||||
+2
-19
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<71cd5103b462b5ff4b0edae9a4648373>>
|
||||
* @generated SignedSource<<5e46c43de7b093e049773ab4bc4628fb>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -2730,7 +2730,6 @@ to return true:wantsResponderID| |
|
||||
var REACT_DEBUG_TRACING_MODE_TYPE = Symbol.for("react.debug_trace_mode");
|
||||
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
|
||||
var REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden");
|
||||
var REACT_CACHE_TYPE = Symbol.for("react.cache");
|
||||
var REACT_TRACING_MARKER_TYPE = Symbol.for("react.tracing_marker");
|
||||
var REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel");
|
||||
var MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|
||||
@@ -2807,10 +2806,6 @@ to return true:wantsResponderID| |
|
||||
|
||||
case REACT_SUSPENSE_LIST_TYPE:
|
||||
return "SuspenseList";
|
||||
|
||||
case REACT_CACHE_TYPE: {
|
||||
return "Cache";
|
||||
}
|
||||
}
|
||||
|
||||
if (typeof type === "object") {
|
||||
@@ -30686,12 +30681,6 @@ to return true:wantsResponderID| |
|
||||
|
||||
// Fall through
|
||||
|
||||
case REACT_CACHE_TYPE: {
|
||||
return createFiberFromCache(pendingProps, mode, lanes, key);
|
||||
}
|
||||
|
||||
// Fall through
|
||||
|
||||
case REACT_TRACING_MARKER_TYPE:
|
||||
|
||||
// Fall through
|
||||
@@ -30879,12 +30868,6 @@ to return true:wantsResponderID| |
|
||||
fiber.stateNode = primaryChildInstance;
|
||||
return fiber;
|
||||
}
|
||||
function createFiberFromCache(pendingProps, mode, lanes, key) {
|
||||
var fiber = createFiber(CacheComponent, pendingProps, key, mode);
|
||||
fiber.elementType = REACT_CACHE_TYPE;
|
||||
fiber.lanes = lanes;
|
||||
return fiber;
|
||||
}
|
||||
function createFiberFromText(content, mode, lanes) {
|
||||
var fiber = createFiber(HostText, content, null, mode);
|
||||
fiber.lanes = lanes;
|
||||
@@ -31036,7 +31019,7 @@ to return true:wantsResponderID| |
|
||||
return root;
|
||||
}
|
||||
|
||||
var ReactVersion = "19.0.0-canary-f96bc1cd";
|
||||
var ReactVersion = "19.0.0-canary-e3c7b66e";
|
||||
|
||||
function createPortal$1(
|
||||
children,
|
||||
|
||||
+37
-49
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<9bc0742bde7dd63043c0e405fa0d9531>>
|
||||
* @generated SignedSource<<aa035117e3946b066635699825756386>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -893,7 +893,7 @@ eventPluginOrder = Array.prototype.slice.call([
|
||||
"ReactNativeBridgeEventPlugin"
|
||||
]);
|
||||
recomputePluginOrdering();
|
||||
var injectedNamesToPlugins$jscomp$inline_252 = {
|
||||
var injectedNamesToPlugins$jscomp$inline_251 = {
|
||||
ResponderEventPlugin: ResponderEventPlugin,
|
||||
ReactNativeBridgeEventPlugin: {
|
||||
eventTypes: {},
|
||||
@@ -939,32 +939,32 @@ var injectedNamesToPlugins$jscomp$inline_252 = {
|
||||
}
|
||||
}
|
||||
},
|
||||
isOrderingDirty$jscomp$inline_253 = !1,
|
||||
pluginName$jscomp$inline_254;
|
||||
for (pluginName$jscomp$inline_254 in injectedNamesToPlugins$jscomp$inline_252)
|
||||
isOrderingDirty$jscomp$inline_252 = !1,
|
||||
pluginName$jscomp$inline_253;
|
||||
for (pluginName$jscomp$inline_253 in injectedNamesToPlugins$jscomp$inline_251)
|
||||
if (
|
||||
injectedNamesToPlugins$jscomp$inline_252.hasOwnProperty(
|
||||
pluginName$jscomp$inline_254
|
||||
injectedNamesToPlugins$jscomp$inline_251.hasOwnProperty(
|
||||
pluginName$jscomp$inline_253
|
||||
)
|
||||
) {
|
||||
var pluginModule$jscomp$inline_255 =
|
||||
injectedNamesToPlugins$jscomp$inline_252[pluginName$jscomp$inline_254];
|
||||
var pluginModule$jscomp$inline_254 =
|
||||
injectedNamesToPlugins$jscomp$inline_251[pluginName$jscomp$inline_253];
|
||||
if (
|
||||
!namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_254) ||
|
||||
namesToPlugins[pluginName$jscomp$inline_254] !==
|
||||
pluginModule$jscomp$inline_255
|
||||
!namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_253) ||
|
||||
namesToPlugins[pluginName$jscomp$inline_253] !==
|
||||
pluginModule$jscomp$inline_254
|
||||
) {
|
||||
if (namesToPlugins[pluginName$jscomp$inline_254])
|
||||
if (namesToPlugins[pluginName$jscomp$inline_253])
|
||||
throw Error(
|
||||
"EventPluginRegistry: Cannot inject two different event plugins using the same name, `" +
|
||||
(pluginName$jscomp$inline_254 + "`.")
|
||||
(pluginName$jscomp$inline_253 + "`.")
|
||||
);
|
||||
namesToPlugins[pluginName$jscomp$inline_254] =
|
||||
pluginModule$jscomp$inline_255;
|
||||
isOrderingDirty$jscomp$inline_253 = !0;
|
||||
namesToPlugins[pluginName$jscomp$inline_253] =
|
||||
pluginModule$jscomp$inline_254;
|
||||
isOrderingDirty$jscomp$inline_252 = !0;
|
||||
}
|
||||
}
|
||||
isOrderingDirty$jscomp$inline_253 && recomputePluginOrdering();
|
||||
isOrderingDirty$jscomp$inline_252 && recomputePluginOrdering();
|
||||
var instanceCache = new Map(),
|
||||
instanceProps = new Map();
|
||||
function getInstanceFromTag(tag) {
|
||||
@@ -1138,12 +1138,11 @@ var ReactSharedInternals =
|
||||
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_LAZY_TYPE = Symbol.for("react.lazy");
|
||||
Symbol.for("react.scope");
|
||||
Symbol.for("react.debug_trace_mode");
|
||||
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"),
|
||||
REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden"),
|
||||
REACT_CACHE_TYPE = Symbol.for("react.cache");
|
||||
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
|
||||
Symbol.for("react.legacy_hidden");
|
||||
Symbol.for("react.tracing_marker");
|
||||
var REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel"),
|
||||
MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|
||||
@@ -1175,8 +1174,6 @@ function getComponentNameFromType(type) {
|
||||
return "Suspense";
|
||||
case REACT_SUSPENSE_LIST_TYPE:
|
||||
return "SuspenseList";
|
||||
case REACT_CACHE_TYPE:
|
||||
return "Cache";
|
||||
}
|
||||
if ("object" === typeof type)
|
||||
switch (type.$$typeof) {
|
||||
@@ -10435,15 +10432,6 @@ function createFiberFromTypeAndProps(
|
||||
);
|
||||
case REACT_OFFSCREEN_TYPE:
|
||||
return createFiberFromOffscreen(pendingProps, mode, lanes, key);
|
||||
case REACT_LEGACY_HIDDEN_TYPE:
|
||||
case REACT_SCOPE_TYPE:
|
||||
case REACT_CACHE_TYPE:
|
||||
return (
|
||||
(type = createFiber(24, pendingProps, key, mode)),
|
||||
(type.elementType = REACT_CACHE_TYPE),
|
||||
(type.lanes = lanes),
|
||||
type
|
||||
);
|
||||
default:
|
||||
if ("object" === typeof type && null !== type)
|
||||
switch (type.$$typeof) {
|
||||
@@ -10845,10 +10833,10 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
}
|
||||
};
|
||||
var roots = new Map(),
|
||||
devToolsConfig$jscomp$inline_1168 = {
|
||||
devToolsConfig$jscomp$inline_1161 = {
|
||||
findFiberByHostInstance: getInstanceFromTag,
|
||||
bundleType: 0,
|
||||
version: "19.0.0-canary-18334a6c",
|
||||
version: "19.0.0-canary-2491d680",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
rendererConfig: {
|
||||
getInspectorDataForInstance: getInspectorDataForInstance,
|
||||
@@ -10864,11 +10852,11 @@ var roots = new Map(),
|
||||
}.bind(null, findNodeHandle)
|
||||
}
|
||||
};
|
||||
var internals$jscomp$inline_1419 = {
|
||||
bundleType: devToolsConfig$jscomp$inline_1168.bundleType,
|
||||
version: devToolsConfig$jscomp$inline_1168.version,
|
||||
rendererPackageName: devToolsConfig$jscomp$inline_1168.rendererPackageName,
|
||||
rendererConfig: devToolsConfig$jscomp$inline_1168.rendererConfig,
|
||||
var internals$jscomp$inline_1412 = {
|
||||
bundleType: devToolsConfig$jscomp$inline_1161.bundleType,
|
||||
version: devToolsConfig$jscomp$inline_1161.version,
|
||||
rendererPackageName: devToolsConfig$jscomp$inline_1161.rendererPackageName,
|
||||
rendererConfig: devToolsConfig$jscomp$inline_1161.rendererConfig,
|
||||
overrideHookState: null,
|
||||
overrideHookStateDeletePath: null,
|
||||
overrideHookStateRenamePath: null,
|
||||
@@ -10884,26 +10872,26 @@ var internals$jscomp$inline_1419 = {
|
||||
return null === fiber ? null : fiber.stateNode;
|
||||
},
|
||||
findFiberByHostInstance:
|
||||
devToolsConfig$jscomp$inline_1168.findFiberByHostInstance ||
|
||||
devToolsConfig$jscomp$inline_1161.findFiberByHostInstance ||
|
||||
emptyFindFiberByHostInstance,
|
||||
findHostInstancesForRefresh: null,
|
||||
scheduleRefresh: null,
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-canary-18334a6c"
|
||||
reconcilerVersion: "19.0.0-canary-2491d680"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1420 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_1413 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_1420.isDisabled &&
|
||||
hook$jscomp$inline_1420.supportsFiber
|
||||
!hook$jscomp$inline_1413.isDisabled &&
|
||||
hook$jscomp$inline_1413.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_1420.inject(
|
||||
internals$jscomp$inline_1419
|
||||
(rendererID = hook$jscomp$inline_1413.inject(
|
||||
internals$jscomp$inline_1412
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_1420);
|
||||
(injectedHook = hook$jscomp$inline_1413);
|
||||
} catch (err) {}
|
||||
}
|
||||
exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = {
|
||||
|
||||
+30
-42
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<fc27d724c0f8d7f6a049705a480b49c9>>
|
||||
* @generated SignedSource<<e20efb6f8a0e902b2692d1672db6f725>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -897,7 +897,7 @@ eventPluginOrder = Array.prototype.slice.call([
|
||||
"ReactNativeBridgeEventPlugin"
|
||||
]);
|
||||
recomputePluginOrdering();
|
||||
var injectedNamesToPlugins$jscomp$inline_268 = {
|
||||
var injectedNamesToPlugins$jscomp$inline_267 = {
|
||||
ResponderEventPlugin: ResponderEventPlugin,
|
||||
ReactNativeBridgeEventPlugin: {
|
||||
eventTypes: {},
|
||||
@@ -943,32 +943,32 @@ var injectedNamesToPlugins$jscomp$inline_268 = {
|
||||
}
|
||||
}
|
||||
},
|
||||
isOrderingDirty$jscomp$inline_269 = !1,
|
||||
pluginName$jscomp$inline_270;
|
||||
for (pluginName$jscomp$inline_270 in injectedNamesToPlugins$jscomp$inline_268)
|
||||
isOrderingDirty$jscomp$inline_268 = !1,
|
||||
pluginName$jscomp$inline_269;
|
||||
for (pluginName$jscomp$inline_269 in injectedNamesToPlugins$jscomp$inline_267)
|
||||
if (
|
||||
injectedNamesToPlugins$jscomp$inline_268.hasOwnProperty(
|
||||
pluginName$jscomp$inline_270
|
||||
injectedNamesToPlugins$jscomp$inline_267.hasOwnProperty(
|
||||
pluginName$jscomp$inline_269
|
||||
)
|
||||
) {
|
||||
var pluginModule$jscomp$inline_271 =
|
||||
injectedNamesToPlugins$jscomp$inline_268[pluginName$jscomp$inline_270];
|
||||
var pluginModule$jscomp$inline_270 =
|
||||
injectedNamesToPlugins$jscomp$inline_267[pluginName$jscomp$inline_269];
|
||||
if (
|
||||
!namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_270) ||
|
||||
namesToPlugins[pluginName$jscomp$inline_270] !==
|
||||
pluginModule$jscomp$inline_271
|
||||
!namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_269) ||
|
||||
namesToPlugins[pluginName$jscomp$inline_269] !==
|
||||
pluginModule$jscomp$inline_270
|
||||
) {
|
||||
if (namesToPlugins[pluginName$jscomp$inline_270])
|
||||
if (namesToPlugins[pluginName$jscomp$inline_269])
|
||||
throw Error(
|
||||
"EventPluginRegistry: Cannot inject two different event plugins using the same name, `" +
|
||||
(pluginName$jscomp$inline_270 + "`.")
|
||||
(pluginName$jscomp$inline_269 + "`.")
|
||||
);
|
||||
namesToPlugins[pluginName$jscomp$inline_270] =
|
||||
pluginModule$jscomp$inline_271;
|
||||
isOrderingDirty$jscomp$inline_269 = !0;
|
||||
namesToPlugins[pluginName$jscomp$inline_269] =
|
||||
pluginModule$jscomp$inline_270;
|
||||
isOrderingDirty$jscomp$inline_268 = !0;
|
||||
}
|
||||
}
|
||||
isOrderingDirty$jscomp$inline_269 && recomputePluginOrdering();
|
||||
isOrderingDirty$jscomp$inline_268 && recomputePluginOrdering();
|
||||
var instanceCache = new Map(),
|
||||
instanceProps = new Map();
|
||||
function getInstanceFromTag(tag) {
|
||||
@@ -1142,12 +1142,11 @@ var ReactSharedInternals =
|
||||
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_LAZY_TYPE = Symbol.for("react.lazy");
|
||||
Symbol.for("react.scope");
|
||||
Symbol.for("react.debug_trace_mode");
|
||||
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"),
|
||||
REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden"),
|
||||
REACT_CACHE_TYPE = Symbol.for("react.cache");
|
||||
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
|
||||
Symbol.for("react.legacy_hidden");
|
||||
Symbol.for("react.tracing_marker");
|
||||
var REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel"),
|
||||
MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|
||||
@@ -1179,8 +1178,6 @@ function getComponentNameFromType(type) {
|
||||
return "Suspense";
|
||||
case REACT_SUSPENSE_LIST_TYPE:
|
||||
return "SuspenseList";
|
||||
case REACT_CACHE_TYPE:
|
||||
return "Cache";
|
||||
}
|
||||
if ("object" === typeof type)
|
||||
switch (type.$$typeof) {
|
||||
@@ -11136,15 +11133,6 @@ function createFiberFromTypeAndProps(
|
||||
);
|
||||
case REACT_OFFSCREEN_TYPE:
|
||||
return createFiberFromOffscreen(pendingProps, mode, lanes, key);
|
||||
case REACT_LEGACY_HIDDEN_TYPE:
|
||||
case REACT_SCOPE_TYPE:
|
||||
case REACT_CACHE_TYPE:
|
||||
return (
|
||||
(type = createFiber(24, pendingProps, key, mode)),
|
||||
(type.elementType = REACT_CACHE_TYPE),
|
||||
(type.lanes = lanes),
|
||||
type
|
||||
);
|
||||
default:
|
||||
if ("object" === typeof type && null !== type)
|
||||
switch (type.$$typeof) {
|
||||
@@ -11553,10 +11541,10 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
}
|
||||
};
|
||||
var roots = new Map(),
|
||||
devToolsConfig$jscomp$inline_1250 = {
|
||||
devToolsConfig$jscomp$inline_1243 = {
|
||||
findFiberByHostInstance: getInstanceFromTag,
|
||||
bundleType: 0,
|
||||
version: "19.0.0-canary-694beb7a",
|
||||
version: "19.0.0-canary-f494fd51",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
rendererConfig: {
|
||||
getInspectorDataForInstance: getInspectorDataForInstance,
|
||||
@@ -11586,10 +11574,10 @@ var roots = new Map(),
|
||||
} catch (err) {}
|
||||
return hook.checkDCE ? !0 : !1;
|
||||
})({
|
||||
bundleType: devToolsConfig$jscomp$inline_1250.bundleType,
|
||||
version: devToolsConfig$jscomp$inline_1250.version,
|
||||
rendererPackageName: devToolsConfig$jscomp$inline_1250.rendererPackageName,
|
||||
rendererConfig: devToolsConfig$jscomp$inline_1250.rendererConfig,
|
||||
bundleType: devToolsConfig$jscomp$inline_1243.bundleType,
|
||||
version: devToolsConfig$jscomp$inline_1243.version,
|
||||
rendererPackageName: devToolsConfig$jscomp$inline_1243.rendererPackageName,
|
||||
rendererConfig: devToolsConfig$jscomp$inline_1243.rendererConfig,
|
||||
overrideHookState: null,
|
||||
overrideHookStateDeletePath: null,
|
||||
overrideHookStateRenamePath: null,
|
||||
@@ -11605,14 +11593,14 @@ var roots = new Map(),
|
||||
return null === fiber ? null : fiber.stateNode;
|
||||
},
|
||||
findFiberByHostInstance:
|
||||
devToolsConfig$jscomp$inline_1250.findFiberByHostInstance ||
|
||||
devToolsConfig$jscomp$inline_1243.findFiberByHostInstance ||
|
||||
emptyFindFiberByHostInstance,
|
||||
findHostInstancesForRefresh: null,
|
||||
scheduleRefresh: null,
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-canary-694beb7a"
|
||||
reconcilerVersion: "19.0.0-canary-f494fd51"
|
||||
});
|
||||
exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = {
|
||||
computeComponentStackForErrorReporting: function (reactTag) {
|
||||
|
||||
Reference in New Issue
Block a user