@maxtropy/v-components 0.1.17-beta.16 → 0.1.17-beta.18
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/mx-vcomponents.es.js +3701 -3621
- package/dist/types/utils/micro.d.ts +27 -0
- package/package.json +1 -1
|
@@ -1,4 +1,31 @@
|
|
|
1
1
|
import type { Router } from 'vue-router';
|
|
2
|
+
declare enum MicroAppNameEnum {
|
|
3
|
+
CC = "ms-cc",
|
|
4
|
+
DC = "ms-dc",
|
|
5
|
+
DS = "ms-ds",
|
|
6
|
+
IDS = "ms-ids"
|
|
7
|
+
}
|
|
8
|
+
declare enum IsvAppNameEnum {
|
|
9
|
+
WO = "ms-wo",
|
|
10
|
+
JI = "ms-ji",
|
|
11
|
+
AI = "ms-ai",
|
|
12
|
+
ZM = "ms-zm",
|
|
13
|
+
PA = "ms-pa",
|
|
14
|
+
RT = "ms-rt",
|
|
15
|
+
BA = "ms-ba",
|
|
16
|
+
EC = "ms-ec",
|
|
17
|
+
CA = "ms-ca",
|
|
18
|
+
EN = "ms-en",
|
|
19
|
+
GP = "ms-gp",
|
|
20
|
+
PR = "ms-pr"
|
|
21
|
+
}
|
|
22
|
+
export declare const MicroAppList: ({
|
|
23
|
+
appName: MicroAppNameEnum;
|
|
24
|
+
rawWindowName: string;
|
|
25
|
+
} | {
|
|
26
|
+
appName: IsvAppNameEnum;
|
|
27
|
+
rawWindowName: string;
|
|
28
|
+
})[];
|
|
2
29
|
export declare function getBase(): string;
|
|
3
30
|
export declare function getMicroAppBaseRoute(): string;
|
|
4
31
|
export declare function microAppRewrite(): void;
|