@ecan-bi/datav 1.1.25 → 1.1.27
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/index.es.js +1047 -1022
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +5 -5
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/container/modal/Modal.vue.d.ts +5 -180
- package/types/container/modal/index.d.ts +5 -180
- package/types/setting/provider-config/ProviderConfig.vue.d.ts +24 -8
- package/types/setting/provider-config/index.d.ts +24 -8
- package/types/setting/provider-config/props.d.ts +15 -5
|
@@ -5,7 +5,9 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
5
5
|
} | {
|
|
6
6
|
type: any;
|
|
7
7
|
default: string | {
|
|
8
|
-
[key: string]:
|
|
8
|
+
[key: string]: {
|
|
9
|
+
[key: string]: string[];
|
|
10
|
+
};
|
|
9
11
|
};
|
|
10
12
|
};
|
|
11
13
|
pageMode: {
|
|
@@ -14,7 +16,9 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
14
16
|
} | {
|
|
15
17
|
type: any;
|
|
16
18
|
default: string | {
|
|
17
|
-
[key: string]:
|
|
19
|
+
[key: string]: {
|
|
20
|
+
[key: string]: string[];
|
|
21
|
+
};
|
|
18
22
|
};
|
|
19
23
|
};
|
|
20
24
|
theme: {
|
|
@@ -23,7 +27,9 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
23
27
|
} | {
|
|
24
28
|
type: any;
|
|
25
29
|
default: string | {
|
|
26
|
-
[key: string]:
|
|
30
|
+
[key: string]: {
|
|
31
|
+
[key: string]: string[];
|
|
32
|
+
};
|
|
27
33
|
};
|
|
28
34
|
};
|
|
29
35
|
containerMap: {
|
|
@@ -32,7 +38,9 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
32
38
|
} | {
|
|
33
39
|
type: any;
|
|
34
40
|
default: string | {
|
|
35
|
-
[key: string]:
|
|
41
|
+
[key: string]: {
|
|
42
|
+
[key: string]: string[];
|
|
43
|
+
};
|
|
36
44
|
};
|
|
37
45
|
};
|
|
38
46
|
}, {
|
|
@@ -44,7 +52,9 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
44
52
|
} | {
|
|
45
53
|
type: any;
|
|
46
54
|
default: string | {
|
|
47
|
-
[key: string]:
|
|
55
|
+
[key: string]: {
|
|
56
|
+
[key: string]: string[];
|
|
57
|
+
};
|
|
48
58
|
};
|
|
49
59
|
};
|
|
50
60
|
pageMode: {
|
|
@@ -53,7 +63,9 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
53
63
|
} | {
|
|
54
64
|
type: any;
|
|
55
65
|
default: string | {
|
|
56
|
-
[key: string]:
|
|
66
|
+
[key: string]: {
|
|
67
|
+
[key: string]: string[];
|
|
68
|
+
};
|
|
57
69
|
};
|
|
58
70
|
};
|
|
59
71
|
theme: {
|
|
@@ -62,7 +74,9 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
62
74
|
} | {
|
|
63
75
|
type: any;
|
|
64
76
|
default: string | {
|
|
65
|
-
[key: string]:
|
|
77
|
+
[key: string]: {
|
|
78
|
+
[key: string]: string[];
|
|
79
|
+
};
|
|
66
80
|
};
|
|
67
81
|
};
|
|
68
82
|
containerMap: {
|
|
@@ -71,7 +85,9 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
71
85
|
} | {
|
|
72
86
|
type: any;
|
|
73
87
|
default: string | {
|
|
74
|
-
[key: string]:
|
|
88
|
+
[key: string]: {
|
|
89
|
+
[key: string]: string[];
|
|
90
|
+
};
|
|
75
91
|
};
|
|
76
92
|
};
|
|
77
93
|
}>>, {}>> & Record<string, any>;
|
|
@@ -3,7 +3,9 @@ export interface ProviderConfig {
|
|
|
3
3
|
pageMode: 'normal' | 'preview' | 'design';
|
|
4
4
|
theme: 'light' | 'darkBlue';
|
|
5
5
|
containerMap: {
|
|
6
|
-
[key: string]:
|
|
6
|
+
[key: string]: {
|
|
7
|
+
[key: string]: string[];
|
|
8
|
+
};
|
|
7
9
|
};
|
|
8
10
|
}
|
|
9
11
|
export declare const providerConfig: ProviderConfig;
|
|
@@ -14,7 +16,9 @@ export declare const providerConfigComponentProps: {
|
|
|
14
16
|
} | {
|
|
15
17
|
type: any;
|
|
16
18
|
default: string | {
|
|
17
|
-
[key: string]:
|
|
19
|
+
[key: string]: {
|
|
20
|
+
[key: string]: string[];
|
|
21
|
+
};
|
|
18
22
|
};
|
|
19
23
|
};
|
|
20
24
|
pageMode: {
|
|
@@ -23,7 +27,9 @@ export declare const providerConfigComponentProps: {
|
|
|
23
27
|
} | {
|
|
24
28
|
type: any;
|
|
25
29
|
default: string | {
|
|
26
|
-
[key: string]:
|
|
30
|
+
[key: string]: {
|
|
31
|
+
[key: string]: string[];
|
|
32
|
+
};
|
|
27
33
|
};
|
|
28
34
|
};
|
|
29
35
|
theme: {
|
|
@@ -32,7 +38,9 @@ export declare const providerConfigComponentProps: {
|
|
|
32
38
|
} | {
|
|
33
39
|
type: any;
|
|
34
40
|
default: string | {
|
|
35
|
-
[key: string]:
|
|
41
|
+
[key: string]: {
|
|
42
|
+
[key: string]: string[];
|
|
43
|
+
};
|
|
36
44
|
};
|
|
37
45
|
};
|
|
38
46
|
containerMap: {
|
|
@@ -41,7 +49,9 @@ export declare const providerConfigComponentProps: {
|
|
|
41
49
|
} | {
|
|
42
50
|
type: any;
|
|
43
51
|
default: string | {
|
|
44
|
-
[key: string]:
|
|
52
|
+
[key: string]: {
|
|
53
|
+
[key: string]: string[];
|
|
54
|
+
};
|
|
45
55
|
};
|
|
46
56
|
};
|
|
47
57
|
};
|