@next-core/brick-kit 2.85.0 → 2.88.0
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/CHANGELOG.md +41 -0
- package/dist/index.bundle.js +5 -2
- package/dist/index.bundle.js.map +1 -1
- package/dist/index.esm.js +5 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/types/core/LocationContext.d.ts +1 -0
- package/dist/types/core/LocationContext.d.ts.map +1 -1
- package/dist/types/core/Router.d.ts.map +1 -1
- package/package.json +5 -5
package/dist/index.esm.js
CHANGED
|
@@ -5968,7 +5968,7 @@ function standaloneBootstrap() {
|
|
|
5968
5968
|
|
|
5969
5969
|
function _standaloneBootstrap() {
|
|
5970
5970
|
_standaloneBootstrap = _asyncToGenerator$4(function* () {
|
|
5971
|
-
var [bootstrapResult, confString] = yield Promise.all([http.get(window.BOOTSTRAP_FILE), http.get("conf.yaml", {
|
|
5971
|
+
var [bootstrapResult, confString] = yield Promise.all([http.get(window.BOOTSTRAP_FILE), http.get("".concat(window.APP_ROOT, "conf.yaml"), {
|
|
5972
5972
|
responseType: "text"
|
|
5973
5973
|
})]);
|
|
5974
5974
|
var conf;
|
|
@@ -8168,6 +8168,8 @@ class LocationContext {
|
|
|
8168
8168
|
} else {
|
|
8169
8169
|
mountRoutesResult.appBar.breadcrumb = [...mountRoutesResult.appBar.breadcrumb, ...breadcrumb.items];
|
|
8170
8170
|
}
|
|
8171
|
+
|
|
8172
|
+
if (hasOwnProperty(breadcrumb, "noCurrentApp")) mountRoutesResult.appBar.noCurrentApp = breadcrumb.noCurrentApp;
|
|
8171
8173
|
}
|
|
8172
8174
|
})();
|
|
8173
8175
|
}
|
|
@@ -9272,7 +9274,8 @@ class Router {
|
|
|
9272
9274
|
portal: [],
|
|
9273
9275
|
appBar: {
|
|
9274
9276
|
breadcrumb: [],
|
|
9275
|
-
documentId: null
|
|
9277
|
+
documentId: null,
|
|
9278
|
+
noCurrentApp: false
|
|
9276
9279
|
},
|
|
9277
9280
|
flags: {
|
|
9278
9281
|
redirect: undefined,
|