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
16
node_modules/react-dom/cjs/react-dom-server-legacy.browser.development.js
generated
vendored
16
node_modules/react-dom/cjs/react-dom-server-legacy.browser.development.js
generated
vendored
|
|
@ -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";
|
||||
})();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue