@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.bundle.js
CHANGED
|
@@ -9039,6 +9039,7 @@
|
|
|
9039
9039
|
_dev_only_updateStoryboard(appId, storyboardPatch) {
|
|
9040
9040
|
var storyboard = this.bootstrapData.storyboards.find(item => item.app.id === appId);
|
|
9041
9041
|
Object.assign(storyboard, _objectSpread__default["default"](_objectSpread__default["default"]({}, storyboardPatch), {}, {
|
|
9042
|
+
meta: _objectSpread__default["default"](_objectSpread__default["default"]({}, storyboard.meta), storyboardPatch.meta),
|
|
9042
9043
|
$$fulfilling: null,
|
|
9043
9044
|
$$fulfilled: true,
|
|
9044
9045
|
$$registerCustomTemplateProcessed: false,
|
|
@@ -12019,7 +12020,13 @@
|
|
|
12019
12020
|
} = getAuth();
|
|
12020
12021
|
return "".concat(key, ":").concat(org);
|
|
12021
12022
|
};
|
|
12022
|
-
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
|
+
}));
|
|
12023
12030
|
var {
|
|
12024
12031
|
loadTime = 0,
|
|
12025
12032
|
loadInfoPage
|