@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 CHANGED
@@ -3,6 +3,47 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [2.88.0](https://github.com/easyops-cn/next-core/compare/@next-core/brick-kit@2.87.0...@next-core/brick-kit@2.88.0) (2021-11-23)
7
+
8
+
9
+ ### Features
10
+
11
+ * **Router:** set noCurrentApp default value ([8d5efe1](https://github.com/easyops-cn/next-core/commit/8d5efe14230b72ede0a87eeacf8881433b1e4829))
12
+
13
+
14
+
15
+
16
+
17
+ # [2.87.0](https://github.com/easyops-cn/next-core/compare/@next-core/brick-kit@2.86.1...@next-core/brick-kit@2.87.0) (2021-11-23)
18
+
19
+
20
+ ### Features
21
+
22
+ * **locationContext:** add noCurrentApp ([8efc245](https://github.com/easyops-cn/next-core/commit/8efc245513f8e9ebf0aadcabfedd15647333d318))
23
+
24
+
25
+
26
+
27
+
28
+ ## [2.86.1](https://github.com/easyops-cn/next-core/compare/@next-core/brick-kit@2.86.0...@next-core/brick-kit@2.86.1) (2021-11-23)
29
+
30
+ **Note:** Version bump only for package @next-core/brick-kit
31
+
32
+
33
+
34
+
35
+
36
+ # [2.86.0](https://github.com/easyops-cn/next-core/compare/@next-core/brick-kit@2.85.0...@next-core/brick-kit@2.86.0) (2021-11-18)
37
+
38
+
39
+ ### Features
40
+
41
+ * use a single build for standalone apps ([cb5db11](https://github.com/easyops-cn/next-core/commit/cb5db11829952fedfa9cf3898de3e62cfe647a16))
42
+
43
+
44
+
45
+
46
+
6
47
  # [2.85.0](https://github.com/easyops-cn/next-core/compare/@next-core/brick-kit@2.84.2...@next-core/brick-kit@2.85.0) (2021-11-18)
7
48
 
8
49
 
@@ -5985,7 +5985,7 @@
5985
5985
 
5986
5986
  function _standaloneBootstrap() {
5987
5987
  _standaloneBootstrap = _asyncToGenerator__default["default"](function* () {
5988
- var [bootstrapResult, confString] = yield Promise.all([brickHttp.http.get(window.BOOTSTRAP_FILE), brickHttp.http.get("conf.yaml", {
5988
+ var [bootstrapResult, confString] = yield Promise.all([brickHttp.http.get(window.BOOTSTRAP_FILE), brickHttp.http.get("".concat(window.APP_ROOT, "conf.yaml"), {
5989
5989
  responseType: "text"
5990
5990
  })]);
5991
5991
  var conf;
@@ -8185,6 +8185,8 @@
8185
8185
  } else {
8186
8186
  mountRoutesResult.appBar.breadcrumb = [...mountRoutesResult.appBar.breadcrumb, ...breadcrumb.items];
8187
8187
  }
8188
+
8189
+ if (brickUtils.hasOwnProperty(breadcrumb, "noCurrentApp")) mountRoutesResult.appBar.noCurrentApp = breadcrumb.noCurrentApp;
8188
8190
  }
8189
8191
  })();
8190
8192
  }
@@ -9289,7 +9291,8 @@
9289
9291
  portal: [],
9290
9292
  appBar: {
9291
9293
  breadcrumb: [],
9292
- documentId: null
9294
+ documentId: null,
9295
+ noCurrentApp: false
9293
9296
  },
9294
9297
  flags: {
9295
9298
  redirect: undefined,