@next-core/brick-kit 2.179.5 → 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
|
@@ -9041,6 +9041,7 @@ class Kernel {
|
|
|
9041
9041
|
_dev_only_updateStoryboard(appId, storyboardPatch) {
|
|
9042
9042
|
var storyboard = this.bootstrapData.storyboards.find(item => item.app.id === appId);
|
|
9043
9043
|
Object.assign(storyboard, _objectSpread(_objectSpread({}, storyboardPatch), {}, {
|
|
9044
|
+
meta: _objectSpread(_objectSpread({}, storyboard.meta), storyboardPatch.meta),
|
|
9044
9045
|
$$fulfilling: null,
|
|
9045
9046
|
$$fulfilled: true,
|
|
9046
9047
|
$$registerCustomTemplateProcessed: false,
|
|
@@ -12021,7 +12022,13 @@ class Router {
|
|
|
12021
12022
|
} = getAuth();
|
|
12022
12023
|
return "".concat(key, ":").concat(org);
|
|
12023
12024
|
};
|
|
12024
|
-
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
|
+
}));
|
|
12025
12032
|
var {
|
|
12026
12033
|
loadTime = 0,
|
|
12027
12034
|
loadInfoPage
|