@next-core/brick-kit 2.155.1 → 2.155.3
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 +13 -2
- package/dist/index.bundle.js.map +1 -1
- package/dist/index.esm.js +13 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/types/internal/evaluate.d.ts +1 -0
- package/dist/types/internal/evaluate.d.ts.map +1 -1
- package/dist/types/transformProperties.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/index.bundle.js
CHANGED
|
@@ -995,7 +995,15 @@
|
|
|
995
995
|
var [k, v] = _ref;
|
|
996
996
|
|
|
997
997
|
if (Array.isArray(options === null || options === void 0 ? void 0 : options.trackingContextList) && (typeof v === "string" ? brickUtils.isEvaluable(v) : isPreEvaluated(v))) {
|
|
998
|
-
var raw
|
|
998
|
+
var raw;
|
|
999
|
+
|
|
1000
|
+
if (typeof v === "string") {
|
|
1001
|
+
raw = v;
|
|
1002
|
+
} else {
|
|
1003
|
+
raw = getPreEvaluatedRaw(v);
|
|
1004
|
+
addDataToPreEvaluated(v, data);
|
|
1005
|
+
}
|
|
1006
|
+
|
|
999
1007
|
var contextNames = brickUtils.trackContext(raw);
|
|
1000
1008
|
var stateNames = brickUtils.trackState(raw);
|
|
1001
1009
|
|
|
@@ -2374,6 +2382,9 @@
|
|
|
2374
2382
|
function getPreEvaluatedRaw(pre) {
|
|
2375
2383
|
return pre[symbolForRaw];
|
|
2376
2384
|
}
|
|
2385
|
+
function addDataToPreEvaluated(pre, data) {
|
|
2386
|
+
pre[symbolForContext].data = data;
|
|
2387
|
+
}
|
|
2377
2388
|
function shouldDismissRecursiveMarkingInjected(raw) {
|
|
2378
2389
|
if (typeof raw === "string") {
|
|
2379
2390
|
return brickUtils.shouldAllowRecursiveEvaluations(raw);
|
|
@@ -9264,8 +9275,8 @@
|
|
|
9264
9275
|
_this2.loadingBar = new BaseBar(_this2, "loadingBar");
|
|
9265
9276
|
_this2.router = new Router(_this2);
|
|
9266
9277
|
initAnalytics();
|
|
9267
|
-
_this2.originFaviconHref = (_document$querySelect = document.querySelector("link[rel='shortcut icon']")) === null || _document$querySelect === void 0 ? void 0 : _document$querySelect.href;
|
|
9268
9278
|
yield _this2.router.bootstrap();
|
|
9279
|
+
_this2.originFaviconHref = (_document$querySelect = document.querySelector("link[rel='shortcut icon']")) === null || _document$querySelect === void 0 ? void 0 : _document$querySelect.href;
|
|
9269
9280
|
|
|
9270
9281
|
if (!window.STANDALONE_MICRO_APPS) {
|
|
9271
9282
|
_this2.legacyAuthGuard();
|