1
0
Fork 0

Changed stuff, added filter for statistics module

This commit is contained in:
Techognito 2025-09-02 16:37:06 +02:00
parent 4a91ae2bf9
commit fe87374e47
251 changed files with 3295 additions and 1705 deletions

View file

@ -5430,7 +5430,7 @@ function formatOwnerStack(error) {
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", prevPrepareStackTrace));
if (-1 !== prevPrepareStackTrace)
@ -5478,26 +5478,25 @@ function describeComponentStackByType(type) {
return "";
}
var callComponent = {
"react-stack-bottom-frame": function (Component, props, secondArg) {
react_stack_bottom_frame: function (Component, props, secondArg) {
return Component(props, secondArg);
}
},
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) {
return instance.render();
}
},
callRenderInDEV = callRender["react-stack-bottom-frame"].bind(callRender),
callRenderInDEV = callRender.react_stack_bottom_frame.bind(callRender),
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),
callLazyInitInDEV = callLazyInit.react_stack_bottom_frame.bind(callLazyInit),
lastResetTime = 0,
getCurrentTime;
if ("object" === typeof performance && "function" === typeof performance.now) {
@ -8637,13 +8636,13 @@ function abort(request, reason) {
}
var isomorphicReactPackageVersion$jscomp$inline_743 = React.version;
if (
"19.1.0" !==
"19.1.1" !==
isomorphicReactPackageVersion$jscomp$inline_743
)
throw Error(
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
(isomorphicReactPackageVersion$jscomp$inline_743 +
"\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")
);
exports.renderToReadableStream = function (children, options) {
return new Promise(function (resolve, reject) {
@ -8736,4 +8735,4 @@ exports.renderToReadableStream = function (children, options) {
startWork(request$jscomp$0);
});
};
exports.version = "19.1.0";
exports.version = "19.1.1";