Changed stuff, added filter for statistics module
This commit is contained in:
parent
4a91ae2bf9
commit
fe87374e47
251 changed files with 3295 additions and 1705 deletions
69
node_modules/react-dom/cjs/react-dom-profiling.development.js
generated
vendored
69
node_modules/react-dom/cjs/react-dom-profiling.development.js
generated
vendored
|
|
@ -1387,7 +1387,7 @@
|
|||
prevPrepareStackTrace = error.indexOf("\n");
|
||||
-1 !== prevPrepareStackTrace &&
|
||||
(error = error.slice(prevPrepareStackTrace + 1));
|
||||
prevPrepareStackTrace = error.indexOf("react-stack-bottom-frame");
|
||||
prevPrepareStackTrace = error.indexOf("react_stack_bottom_frame");
|
||||
-1 !== prevPrepareStackTrace &&
|
||||
(prevPrepareStackTrace = error.lastIndexOf(
|
||||
"\n",
|
||||
|
|
@ -23913,7 +23913,7 @@
|
|||
}
|
||||
};
|
||||
var callComponent = {
|
||||
"react-stack-bottom-frame": function (Component, props, secondArg) {
|
||||
react_stack_bottom_frame: function (Component, props, secondArg) {
|
||||
var wasRendering = isRendering;
|
||||
isRendering = !0;
|
||||
try {
|
||||
|
|
@ -23924,9 +23924,9 @@
|
|||
}
|
||||
},
|
||||
callComponentInDEV =
|
||||
callComponent["react-stack-bottom-frame"].bind(callComponent),
|
||||
callComponent.react_stack_bottom_frame.bind(callComponent),
|
||||
callRender = {
|
||||
"react-stack-bottom-frame": function (instance) {
|
||||
react_stack_bottom_frame: function (instance) {
|
||||
var wasRendering = isRendering;
|
||||
isRendering = !0;
|
||||
try {
|
||||
|
|
@ -23936,9 +23936,9 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
callRenderInDEV = callRender["react-stack-bottom-frame"].bind(callRender),
|
||||
callRenderInDEV = callRender.react_stack_bottom_frame.bind(callRender),
|
||||
callComponentDidMount = {
|
||||
"react-stack-bottom-frame": function (finishedWork, instance) {
|
||||
react_stack_bottom_frame: function (finishedWork, instance) {
|
||||
try {
|
||||
instance.componentDidMount();
|
||||
} catch (error) {
|
||||
|
|
@ -23946,11 +23946,12 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
callComponentDidMountInDEV = callComponentDidMount[
|
||||
"react-stack-bottom-frame"
|
||||
].bind(callComponentDidMount),
|
||||
callComponentDidMountInDEV =
|
||||
callComponentDidMount.react_stack_bottom_frame.bind(
|
||||
callComponentDidMount
|
||||
),
|
||||
callComponentDidUpdate = {
|
||||
"react-stack-bottom-frame": function (
|
||||
react_stack_bottom_frame: function (
|
||||
finishedWork,
|
||||
instance,
|
||||
prevProps,
|
||||
|
|
@ -23964,22 +23965,24 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
callComponentDidUpdateInDEV = callComponentDidUpdate[
|
||||
"react-stack-bottom-frame"
|
||||
].bind(callComponentDidUpdate),
|
||||
callComponentDidUpdateInDEV =
|
||||
callComponentDidUpdate.react_stack_bottom_frame.bind(
|
||||
callComponentDidUpdate
|
||||
),
|
||||
callComponentDidCatch = {
|
||||
"react-stack-bottom-frame": function (instance, errorInfo) {
|
||||
react_stack_bottom_frame: function (instance, errorInfo) {
|
||||
var stack = errorInfo.stack;
|
||||
instance.componentDidCatch(errorInfo.value, {
|
||||
componentStack: null !== stack ? stack : ""
|
||||
});
|
||||
}
|
||||
},
|
||||
callComponentDidCatchInDEV = callComponentDidCatch[
|
||||
"react-stack-bottom-frame"
|
||||
].bind(callComponentDidCatch),
|
||||
callComponentDidCatchInDEV =
|
||||
callComponentDidCatch.react_stack_bottom_frame.bind(
|
||||
callComponentDidCatch
|
||||
),
|
||||
callComponentWillUnmount = {
|
||||
"react-stack-bottom-frame": function (
|
||||
react_stack_bottom_frame: function (
|
||||
current,
|
||||
nearestMountedAncestor,
|
||||
instance
|
||||
|
|
@ -23991,11 +23994,12 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
callComponentWillUnmountInDEV = callComponentWillUnmount[
|
||||
"react-stack-bottom-frame"
|
||||
].bind(callComponentWillUnmount),
|
||||
callComponentWillUnmountInDEV =
|
||||
callComponentWillUnmount.react_stack_bottom_frame.bind(
|
||||
callComponentWillUnmount
|
||||
),
|
||||
callCreate = {
|
||||
"react-stack-bottom-frame": function (effect) {
|
||||
react_stack_bottom_frame: function (effect) {
|
||||
null != effect.resourceKind &&
|
||||
console.error(
|
||||
"Expected only SimpleEffects when enableUseEffectCRUDOverload is disabled, got %s",
|
||||
|
|
@ -24007,9 +24011,9 @@
|
|||
return (effect.destroy = create);
|
||||
}
|
||||
},
|
||||
callCreateInDEV = callCreate["react-stack-bottom-frame"].bind(callCreate),
|
||||
callCreateInDEV = callCreate.react_stack_bottom_frame.bind(callCreate),
|
||||
callDestroy = {
|
||||
"react-stack-bottom-frame": function (
|
||||
react_stack_bottom_frame: function (
|
||||
current,
|
||||
nearestMountedAncestor,
|
||||
destroy
|
||||
|
|
@ -24021,16 +24025,15 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
callDestroyInDEV =
|
||||
callDestroy["react-stack-bottom-frame"].bind(callDestroy),
|
||||
callDestroyInDEV = callDestroy.react_stack_bottom_frame.bind(callDestroy),
|
||||
callLazyInit = {
|
||||
"react-stack-bottom-frame": function (lazy) {
|
||||
react_stack_bottom_frame: function (lazy) {
|
||||
var init = lazy._init;
|
||||
return init(lazy._payload);
|
||||
}
|
||||
},
|
||||
callLazyInitInDEV =
|
||||
callLazyInit["react-stack-bottom-frame"].bind(callLazyInit),
|
||||
callLazyInit.react_stack_bottom_frame.bind(callLazyInit),
|
||||
thenableState = null,
|
||||
thenableIndexCounter = 0,
|
||||
currentDebugInfo = null,
|
||||
|
|
@ -24851,11 +24854,11 @@
|
|||
};
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.1.0" !== isomorphicReactPackageVersion)
|
||||
if ("19.1.1" !== 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\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.1.1\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
|
|
@ -24892,10 +24895,10 @@
|
|||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.1.0",
|
||||
version: "19.1.1",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0"
|
||||
reconcilerVersion: "19.1.1"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
|
|
@ -25369,7 +25372,7 @@
|
|||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.1.0";
|
||||
exports.version = "19.1.1";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue