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

@ -1379,7 +1379,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",
@ -23856,7 +23856,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 {
@ -23867,9 +23867,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 {
@ -23879,9 +23879,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) {
@ -23889,11 +23889,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,
@ -23907,22 +23908,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
@ -23934,11 +23937,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",
@ -23950,9 +23954,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
@ -23964,16 +23968,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,
@ -24794,11 +24797,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 &&
@ -24835,10 +24838,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;
@ -24982,7 +24985,7 @@
listenToAllSupportedEvents(container);
return new ReactDOMHydrationRoot(initialChildren);
};
exports.version = "19.1.0";
exports.version = "19.1.1";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

View file

@ -15254,14 +15254,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
};
var isomorphicReactPackageVersion$jscomp$inline_1785 = React.version;
if (
"19.1.0" !==
"19.1.1" !==
isomorphicReactPackageVersion$jscomp$inline_1785
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_1785,
"19.1.0"
"19.1.1"
)
);
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@ -15283,10 +15283,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
};
var internals$jscomp$inline_2256 = {
bundleType: 0,
version: "19.1.0",
version: "19.1.1",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.1.0"
reconcilerVersion: "19.1.1"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_2257 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@ -15390,4 +15390,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
listenToAllSupportedEvents(container);
return new ReactDOMHydrationRoot(initialChildren);
};
exports.version = "19.1.0";
exports.version = "19.1.1";

View file

@ -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 &&

View file

@ -15899,14 +15899,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
};
var isomorphicReactPackageVersion$jscomp$inline_1881 = React.version;
if (
"19.1.0" !==
"19.1.1" !==
isomorphicReactPackageVersion$jscomp$inline_1881
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_1881,
"19.1.0"
"19.1.1"
)
);
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@ -15928,10 +15928,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
};
var internals$jscomp$inline_1888 = {
bundleType: 0,
version: "19.1.0",
version: "19.1.1",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.1.0",
reconcilerVersion: "19.1.1",
getLaneLabelMap: function () {
for (
var map = new Map(), lane = 1, index$282 = 0;
@ -16211,7 +16211,7 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
exports.version = "19.1.0";
exports.version = "19.1.1";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

View file

@ -4196,7 +4196,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",
@ -8966,26 +8966,26 @@
"function" === typeof WeakMap ? WeakMap : Map
)();
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),
callLazyInit.react_stack_bottom_frame.bind(callLazyInit),
lastResetTime = 0;
if (
"object" === typeof performance &&
@ -9031,5 +9031,5 @@
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
);
};
exports.version = "19.1.0";
exports.version = "19.1.1";
})();

View file

@ -5889,4 +5889,4 @@ exports.renderToString = function (children, options) {
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
);
};
exports.version = "19.1.0";
exports.version = "19.1.1";

View file

@ -4196,7 +4196,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",
@ -8966,26 +8966,26 @@
"function" === typeof WeakMap ? WeakMap : Map
)();
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),
callLazyInit.react_stack_bottom_frame.bind(callLazyInit),
lastResetTime = 0;
if (
"object" === typeof performance &&
@ -9031,5 +9031,5 @@
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToPipeableStream" which supports Suspense on the server'
);
};
exports.version = "19.1.0";
exports.version = "19.1.1";
})();

View file

@ -5969,4 +5969,4 @@ exports.renderToString = function (children, options) {
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToPipeableStream" which supports Suspense on the server'
);
};
exports.version = "19.1.0";
exports.version = "19.1.1";

View file

@ -4335,7 +4335,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",
@ -7746,11 +7746,11 @@
}
function ensureCorrectIsomorphicReactVersion() {
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")
);
}
var React = require("react"),
@ -9228,26 +9228,26 @@
"function" === typeof WeakMap ? WeakMap : Map
)();
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),
callLazyInit.react_stack_bottom_frame.bind(callLazyInit),
lastResetTime = 0;
if (
"object" === typeof performance &&
@ -9420,5 +9420,5 @@
startWork(request);
});
};
exports.version = "19.1.0";
exports.version = "19.1.1";
})();

View file

@ -6229,12 +6229,12 @@ function abort(request, reason) {
}
function ensureCorrectIsomorphicReactVersion() {
var isomorphicReactPackageVersion = React.version;
if ("19.1.0" !== isomorphicReactPackageVersion)
if ("19.1.1" !== isomorphicReactPackageVersion)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion,
"19.1.0"
"19.1.1"
)
);
}
@ -6381,4 +6381,4 @@ exports.renderToReadableStream = function (children, options) {
startWork(request);
});
};
exports.version = "19.1.0";
exports.version = "19.1.1";

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";

View file

@ -5867,13 +5867,13 @@ function abort(request, reason) {
}
var isomorphicReactPackageVersion$jscomp$inline_761 = React.version;
if (
"19.1.0" !==
"19.1.1" !==
isomorphicReactPackageVersion$jscomp$inline_761
)
throw Error(
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
(isomorphicReactPackageVersion$jscomp$inline_761 +
"\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) {
@ -5964,4 +5964,4 @@ exports.renderToReadableStream = function (children, options) {
startWork(request);
});
};
exports.version = "19.1.0";
exports.version = "19.1.1";

View file

@ -4337,7 +4337,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",
@ -7769,11 +7769,11 @@
}
function ensureCorrectIsomorphicReactVersion() {
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")
);
}
var React = require("react"),
@ -9247,26 +9247,26 @@
"function" === typeof WeakMap ? WeakMap : Map
)();
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),
callLazyInit.react_stack_bottom_frame.bind(callLazyInit),
lastResetTime = 0;
if (
"object" === typeof performance &&
@ -9439,5 +9439,5 @@
startWork(request);
});
};
exports.version = "19.1.0";
exports.version = "19.1.1";
})();

View file

@ -6324,11 +6324,11 @@ function abort(request, reason) {
}
function ensureCorrectIsomorphicReactVersion() {
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")
);
}
ensureCorrectIsomorphicReactVersion();
@ -6474,4 +6474,4 @@ exports.renderToReadableStream = function (children, options) {
startWork(request);
});
};
exports.version = "19.1.0";
exports.version = "19.1.1";

View file

@ -4240,7 +4240,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",
@ -7644,11 +7644,11 @@
}
function ensureCorrectIsomorphicReactVersion() {
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 createDrainHandler(destination, request) {
@ -9172,26 +9172,26 @@
"function" === typeof WeakMap ? WeakMap : Map
)();
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),
callLazyInit.react_stack_bottom_frame.bind(callLazyInit),
lastResetTime = 0;
if (
"object" === typeof performance &&
@ -9313,5 +9313,5 @@
}
};
};
exports.version = "19.1.0";
exports.version = "19.1.1";
})();

View file

@ -6216,11 +6216,11 @@ function abort(request, reason) {
}
function ensureCorrectIsomorphicReactVersion() {
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")
);
}
ensureCorrectIsomorphicReactVersion();
@ -6369,4 +6369,4 @@ exports.renderToPipeableStream = function (children, options) {
}
};
};
exports.version = "19.1.0";
exports.version = "19.1.1";

View file

@ -416,7 +416,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 &&

View file

@ -207,4 +207,4 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
exports.version = "19.1.0";
exports.version = "19.1.1";

View file

@ -336,5 +336,5 @@
}))
: Internals.d.m(href));
};
exports.version = "19.1.0";
exports.version = "19.1.1";
})();

View file

@ -149,4 +149,4 @@ exports.preloadModule = function (href, options) {
});
} else Internals.d.m(href);
};
exports.version = "19.1.0";
exports.version = "19.1.1";

View file

@ -1,6 +1,6 @@
{
"name": "react-dom",
"version": "19.1.0",
"version": "19.1.1",
"description": "React package for working with the DOM.",
"main": "index.js",
"repository": {
@ -20,7 +20,7 @@
"scheduler": "^0.26.0"
},
"peerDependencies": {
"react": "^19.1.0"
"react": "^19.1.1"
},
"files": [
"LICENSE",