@next-core/brick-kit 2.179.6 → 2.179.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.esm.js
CHANGED
|
@@ -12022,7 +12022,13 @@ class Router {
|
|
|
12022
12022
|
} = getAuth();
|
|
12023
12023
|
return "".concat(key, ":").concat(org);
|
|
12024
12024
|
};
|
|
12025
|
-
var renderTime = performance.now() - renderStartTime;
|
|
12025
|
+
var renderTime = Math.round(performance.now() - renderStartTime);
|
|
12026
|
+
// For bricks which would take actions with render time.
|
|
12027
|
+
window.dispatchEvent(new CustomEvent("route.render", {
|
|
12028
|
+
detail: {
|
|
12029
|
+
renderTime
|
|
12030
|
+
}
|
|
12031
|
+
}));
|
|
12026
12032
|
var {
|
|
12027
12033
|
loadTime = 0,
|
|
12028
12034
|
loadInfoPage
|