@quickbi/bi-types 3.1.0 → 3.1.1-beta.1

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/cjs/index.d.ts CHANGED
@@ -2602,6 +2602,8 @@ declare module '@quickbi/bi-types/router/route-key' {
2602
2602
  homeRoot = "homeRoot",
2603
2603
  /** 404 */
2604
2604
  notFound = "notFound",
2605
+ /** 兜底路由:* */
2606
+ fallback = "fallback",
2605
2607
  /** 组织管理 */
2606
2608
  orgAdmin = "orgAdmin",
2607
2609
  /** 组织管理-组织信息 */
@@ -4193,6 +4195,9 @@ declare module '@quickbi/bi-types/router/route-tree' {
4193
4195
  readonly key: RouteKey.loginMicro;
4194
4196
  readonly path: "/auth_sso/login/microLogin.htm";
4195
4197
  }];
4198
+ }, {
4199
+ readonly key: RouteKey.fallback;
4200
+ readonly path: "*";
4196
4201
  }, {
4197
4202
  readonly key: RouteKey.dashboardScreenRoot;
4198
4203
  readonly path: "/dashboard/screen";
package/cjs/index.js CHANGED
@@ -2061,6 +2061,7 @@ var RouteKey;
2061
2061
  RouteKey2["root"] = "root";
2062
2062
  RouteKey2["homeRoot"] = "homeRoot";
2063
2063
  RouteKey2["notFound"] = "notFound";
2064
+ RouteKey2["fallback"] = "fallback";
2064
2065
  RouteKey2["orgAdmin"] = "orgAdmin";
2065
2066
  RouteKey2["orgAdminInfo"] = "orgAdminInfo";
2066
2067
  RouteKey2["orgAdminOrgInfo"] = "orgAdminOrgInfo";
@@ -3838,6 +3839,10 @@ var ROUTE_TREE_CONFIG = {
3838
3839
  }
3839
3840
  ]
3840
3841
  },
3842
+ {
3843
+ key: RouteKey.fallback,
3844
+ path: "*"
3845
+ },
3841
3846
  /** 老大屏逻辑,下线后可删除 */
3842
3847
  {
3843
3848
  key: RouteKey.dashboardScreenRoot,
package/esm/index.d.ts CHANGED
@@ -2602,6 +2602,8 @@ declare module '@quickbi/bi-types/router/route-key' {
2602
2602
  homeRoot = "homeRoot",
2603
2603
  /** 404 */
2604
2604
  notFound = "notFound",
2605
+ /** 兜底路由:* */
2606
+ fallback = "fallback",
2605
2607
  /** 组织管理 */
2606
2608
  orgAdmin = "orgAdmin",
2607
2609
  /** 组织管理-组织信息 */
@@ -4193,6 +4195,9 @@ declare module '@quickbi/bi-types/router/route-tree' {
4193
4195
  readonly key: RouteKey.loginMicro;
4194
4196
  readonly path: "/auth_sso/login/microLogin.htm";
4195
4197
  }];
4198
+ }, {
4199
+ readonly key: RouteKey.fallback;
4200
+ readonly path: "*";
4196
4201
  }, {
4197
4202
  readonly key: RouteKey.dashboardScreenRoot;
4198
4203
  readonly path: "/dashboard/screen";
package/esm/index.mjs CHANGED
@@ -1909,6 +1909,7 @@ var RouteKey;
1909
1909
  RouteKey2["root"] = "root";
1910
1910
  RouteKey2["homeRoot"] = "homeRoot";
1911
1911
  RouteKey2["notFound"] = "notFound";
1912
+ RouteKey2["fallback"] = "fallback";
1912
1913
  RouteKey2["orgAdmin"] = "orgAdmin";
1913
1914
  RouteKey2["orgAdminInfo"] = "orgAdminInfo";
1914
1915
  RouteKey2["orgAdminOrgInfo"] = "orgAdminOrgInfo";
@@ -3686,6 +3687,10 @@ var ROUTE_TREE_CONFIG = {
3686
3687
  }
3687
3688
  ]
3688
3689
  },
3690
+ {
3691
+ key: RouteKey.fallback,
3692
+ path: "*"
3693
+ },
3689
3694
  /** 老大屏逻辑,下线后可删除 */
3690
3695
  {
3691
3696
  key: RouteKey.dashboardScreenRoot,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quickbi/bi-types",
3
- "version": "3.1.0",
3
+ "version": "3.1.1-beta.1",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org",
6
6
  "access": "public"