@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.bundle.js
CHANGED
|
@@ -12020,7 +12020,13 @@
|
|
|
12020
12020
|
} = getAuth();
|
|
12021
12021
|
return "".concat(key, ":").concat(org);
|
|
12022
12022
|
};
|
|
12023
|
-
var renderTime = performance.now() - renderStartTime;
|
|
12023
|
+
var renderTime = Math.round(performance.now() - renderStartTime);
|
|
12024
|
+
// For bricks which would take actions with render time.
|
|
12025
|
+
window.dispatchEvent(new CustomEvent("route.render", {
|
|
12026
|
+
detail: {
|
|
12027
|
+
renderTime
|
|
12028
|
+
}
|
|
12029
|
+
}));
|
|
12024
12030
|
var {
|
|
12025
12031
|
loadTime = 0,
|
|
12026
12032
|
loadInfoPage
|