@das-fed/web 6.4.0-hot.8 → 6.4.0-hot.9.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/{packages/main-app-framework/index-E1pACiHI.js → index-2T_H15dv.js} +1 -1
- package/index-2T_H15dv.js.gz +0 -0
- package/{packages/main-app-framework/index-CfM1liO6.js → index-CjVC66ff.js} +14 -14
- package/index-CjVC66ff.js.gz +0 -0
- package/{index-C-ieIBXO.js → index-DPpRTnrf.js} +1 -1
- package/{index-CwfFnT6z.js → index-puk4QfAT.js} +2279 -2275
- package/index-puk4QfAT.js.gz +0 -0
- package/index.js +1 -1
- package/package.json +6 -6
- package/packages/create-das-web-app/index.js.gz +0 -0
- package/packages/i18n/index.js.gz +0 -0
- package/packages/layout/index.js +27 -35
- package/packages/layout/index.js.gz +0 -0
- package/packages/layout/style.css +2 -2
- package/packages/layout/style.css.gz +0 -0
- package/packages/main-app-framework/{index-DRQHVvCk.js → index-A69EQVG4.js} +1927 -1915
- package/packages/main-app-framework/index-A69EQVG4.js.gz +0 -0
- package/{index-C8k4wrGJ.js → packages/main-app-framework/index-B9FQmM02.js} +14 -14
- package/packages/main-app-framework/index-B9FQmM02.js.gz +0 -0
- package/packages/main-app-framework/{index-Bcz8SW2I.js → index-DLw2CpC0.js} +1 -1
- package/{index-CicbdbyR.js → packages/main-app-framework/index-j5ACjIDv.js} +1 -1
- package/packages/main-app-framework/index-j5ACjIDv.js.gz +0 -0
- package/packages/main-app-framework/index.js +1 -1
- package/packages/main-app-framework/style.css +1 -1
- package/packages/main-app-framework/style.css.gz +0 -0
- package/packages/micro-frontend/index.js +16 -24
- package/packages/micro-frontend/index.js.gz +0 -0
- package/packages/micro-frontend/style.css +1 -1
- package/packages/style/style.css +1 -1
- package/packages/style/style.css.gz +0 -0
- package/packages/theme/index.js.gz +0 -0
- package/style.css +2 -2
- package/style.css.gz +0 -0
- package/types/create-das-web-app/index.d.ts +1 -1
- package/types/i18n/index.d.ts +2 -2
- package/types/layout/store/index.d.ts +1 -1
- package/types/main-app-framework/business/alarm/use-alarm.d.ts +4 -4
- package/types/main-app-framework/business/video-link/api.d.ts +2 -0
- package/types/main-app-framework/business/video-link/index.d.ts +3 -3
- package/types/main-app-framework/business/video-link/video-dialog/hooks/PlayerProvider.d.ts +3 -3
- package/types/main-app-framework/components/person-set-dialog/index.d.ts +1 -1
- package/types/main-app-framework/index.d.ts +1 -1
- package/types/main-app-framework/init-config/get-nav-config/index.d.ts +2 -2
- package/types/main-app-framework/init-config/get-system-config/index.d.ts +2 -2
- package/types/main-app-framework/init-layout/hooks/nav-slots/use-change-enterprises.d.ts +3 -3
- package/types/main-app-framework/init-layout/hooks/nav-slots/use-user-command.d.ts +2 -2
- package/types/main-app-framework/init-layout/hooks/use-initialization.d.ts +4 -4
- package/types/main-app-framework/init-layout/hooks/use-tabs.d.ts +3 -3
- package/types/main-app-framework/init-platform/index.d.ts +1 -1
- package/types/micro-frontend/store.d.ts +5 -5
- package/types/theme/index.d.ts +1 -1
- package/index-C8k4wrGJ.js.gz +0 -0
- package/index-CicbdbyR.js.gz +0 -0
- package/index-CwfFnT6z.js.gz +0 -0
- package/packages/main-app-framework/index-CfM1liO6.js.gz +0 -0
- package/packages/main-app-framework/index-DRQHVvCk.js.gz +0 -0
- package/packages/main-app-framework/index-E1pACiHI.js.gz +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
declare const useLayoutInit: (platformInitNextTick: () => Promise<any>) => {
|
|
2
|
-
loading: import('vue').Ref<any>;
|
|
3
|
-
innerPage: import('vue').Ref<any>;
|
|
4
|
-
commandList: import('vue').Ref<any>;
|
|
5
|
-
layoutInited: import('vue').Ref<any>;
|
|
2
|
+
loading: import('vue').Ref<any, any>;
|
|
3
|
+
innerPage: import('vue').Ref<any, any>;
|
|
4
|
+
commandList: import('vue').Ref<any, any>;
|
|
5
|
+
layoutInited: import('vue').Ref<any, any>;
|
|
6
6
|
initNextTick: () => Promise<void>;
|
|
7
7
|
};
|
|
8
8
|
export { useLayoutInit };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const useTabs: () => {
|
|
2
|
-
fontColor: import('vue').Ref<any>;
|
|
3
|
-
backgroudColor: import('vue').Ref<any>;
|
|
4
|
-
borderColor: import('vue').Ref<any>;
|
|
2
|
+
fontColor: import('vue').Ref<any, any>;
|
|
3
|
+
backgroudColor: import('vue').Ref<any, any>;
|
|
4
|
+
borderColor: import('vue').Ref<any, any>;
|
|
5
5
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export declare const microAppRouterPrefix: import('vue').Ref<any>;
|
|
2
|
-
export declare const microApps: import('vue').Ref<any>;
|
|
3
|
-
export declare const microAppVisible: import('vue').Ref<any>;
|
|
4
|
-
export declare const excludeRoutes: import('vue').Ref<any>;
|
|
5
|
-
export declare const routeKeepAliveVisible: import('vue').Ref<any>;
|
|
1
|
+
export declare const microAppRouterPrefix: import('vue').Ref<any, any>;
|
|
2
|
+
export declare const microApps: import('vue').Ref<any, any>;
|
|
3
|
+
export declare const microAppVisible: import('vue').Ref<any, any>;
|
|
4
|
+
export declare const excludeRoutes: import('vue').Ref<any, any>;
|
|
5
|
+
export declare const routeKeepAliveVisible: import('vue').Ref<any, any>;
|
package/types/theme/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const currentTheme: import('vue').Ref<any>;
|
|
1
|
+
declare const currentTheme: import('vue').Ref<any, any>;
|
|
2
2
|
declare const setThemeRule: (data: any, type?: "global" | "custom") => void;
|
|
3
3
|
declare const initTheme: (opt?: any) => any;
|
|
4
4
|
declare const setTheme: (value: string) => void;
|
package/index-C8k4wrGJ.js.gz
DELETED
|
Binary file
|
package/index-CicbdbyR.js.gz
DELETED
|
Binary file
|
package/index-CwfFnT6z.js.gz
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|