@ecan-bi/datav 1.1.40 → 1.1.42
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 +1307 -1297
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +6 -6
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/container/border/Border.vue.d.ts +144 -618
- package/types/container/border/index.d.ts +144 -618
- package/types/container/border/props.d.ts +72 -309
- package/types/container/modal/Modal.vue.d.ts +74 -237
- package/types/container/modal/index.d.ts +73 -237
- package/types/container/modal/props.d.ts +36 -117
- package/types/container/tabs/Tabs.vue.d.ts +176 -400
- package/types/container/tabs/index.d.ts +176 -400
- package/types/container/tabs/props.d.ts +88 -200
- package/types/control/button/Button.vue.d.ts +126 -418
- package/types/control/button/index.d.ts +126 -418
- package/types/control/button/props.d.ts +63 -209
- package/types/control/checkbox/Checkbox.vue.d.ts +102 -334
- package/types/control/checkbox/index.d.ts +102 -334
- package/types/control/checkbox/props.d.ts +51 -167
- package/types/control/date-picker/DatePicker.vue.d.ts +119 -391
- package/types/control/date-picker/index.d.ts +119 -391
- package/types/control/date-picker/props.d.ts +59 -195
- package/types/control/input/Input.vue.d.ts +102 -334
- package/types/control/input/index.d.ts +102 -334
- package/types/control/input/props.d.ts +51 -167
- package/types/control/range-picker/RangePicker.vue.d.ts +128 -420
- package/types/control/range-picker/index.d.ts +128 -420
- package/types/control/range-picker/props.d.ts +63 -209
- package/types/control/select/Select.vue.d.ts +125 -531
- package/types/control/select/index.d.ts +125 -531
- package/types/control/select/props.d.ts +59 -265
- package/types/graph/bar/Bar.vue.d.ts +374 -2044
- package/types/graph/bar/index.d.ts +373 -2043
- package/types/graph/bar/props.d.ts +166 -962
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +340 -741
- package/types/graph/combo-graph/index.d.ts +339 -741
- package/types/graph/combo-graph/props.d.ts +154 -355
- package/types/graph/custom-graph/CustomGraph.vue.d.ts +100 -420
- package/types/graph/custom-graph/index.d.ts +100 -420
- package/types/graph/custom-graph/props.d.ts +50 -210
- package/types/graph/line/Line.vue.d.ts +364 -2546
- package/types/graph/line/index.d.ts +364 -2546
- package/types/graph/line/props.d.ts +149 -1211
- package/types/graph/pie/Pie.vue.d.ts +317 -722
- package/types/graph/pie/index.d.ts +316 -722
- package/types/graph/pie/props.d.ts +142 -345
- package/types/graph/scatter/Scatter.vue.d.ts +293 -639
- package/types/graph/scatter/index.d.ts +293 -639
- package/types/graph/scatter/props.d.ts +132 -305
- package/types/map/map/Map.vue.d.ts +269 -1404
- package/types/map/map/index.d.ts +269 -1404
- package/types/map/map/props.d.ts +121 -664
- package/types/media/iframe/Iframe.vue.d.ts +102 -334
- package/types/media/iframe/index.d.ts +102 -334
- package/types/media/iframe/props.d.ts +51 -167
- package/types/media/image/Image.vue.d.ts +110 -362
- package/types/media/image/index.d.ts +110 -362
- package/types/media/image/props.d.ts +55 -181
- package/types/setting/page-config/PageConfig.vue.d.ts +28 -70
- package/types/setting/page-config/index.d.ts +28 -70
- package/types/setting/page-config/props.d.ts +14 -35
- package/types/setting/provider-config/ProviderConfig.vue.d.ts +22 -62
- package/types/setting/provider-config/index.d.ts +22 -62
- package/types/setting/provider-config/props.d.ts +11 -31
- package/types/table/table/Table.vue.d.ts +234 -1660
- package/types/table/table/index.d.ts +234 -1660
- package/types/table/table/props.d.ts +101 -811
- package/types/text/list/List.vue.d.ts +136 -688
- package/types/text/list/index.d.ts +136 -688
- package/types/text/list/props.d.ts +68 -344
- package/types/text/proportion/Proportion.vue.d.ts +148 -636
- package/types/text/proportion/index.d.ts +148 -636
- package/types/text/proportion/props.d.ts +74 -318
- package/types/text/text/Text.vue.d.ts +160 -690
- package/types/text/text/index.d.ts +160 -690
- package/types/text/text/props.d.ts +81 -346
- package/types/text/time-display/TimeDisplay.vue.d.ts +126 -418
- package/types/text/time-display/index.d.ts +126 -418
- package/types/text/time-display/props.d.ts +63 -209
- package/types/utils/props.d.ts +3 -5
- package/types/utils/runCode.d.ts +2 -0
|
@@ -1,43 +1,23 @@
|
|
|
1
1
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
2
|
contextRequestUrl: {
|
|
3
|
-
type?:
|
|
4
|
-
default?:
|
|
5
|
-
} | {
|
|
6
|
-
type: any;
|
|
7
|
-
default: string | {
|
|
8
|
-
[key: string]: {
|
|
9
|
-
[key: string]: string[];
|
|
10
|
-
};
|
|
11
|
-
};
|
|
3
|
+
type?: import("vue").PropType<string>;
|
|
4
|
+
default?: string;
|
|
12
5
|
};
|
|
13
6
|
pageMode: {
|
|
14
|
-
type?:
|
|
15
|
-
default?:
|
|
16
|
-
} | {
|
|
17
|
-
type: any;
|
|
18
|
-
default: string | {
|
|
19
|
-
[key: string]: {
|
|
20
|
-
[key: string]: string[];
|
|
21
|
-
};
|
|
22
|
-
};
|
|
7
|
+
type?: import("vue").PropType<"preview" | "design" | "normal">;
|
|
8
|
+
default?: "preview" | "design" | "normal";
|
|
23
9
|
};
|
|
24
10
|
theme: {
|
|
25
|
-
type?:
|
|
26
|
-
default?:
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
|
|
11
|
+
type?: import("vue").PropType<"light" | "darkBlue">;
|
|
12
|
+
default?: "light" | "darkBlue";
|
|
13
|
+
};
|
|
14
|
+
containerMap: {
|
|
15
|
+
type?: import("vue").PropType<{
|
|
30
16
|
[key: string]: {
|
|
31
17
|
[key: string]: string[];
|
|
32
18
|
};
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
containerMap: {
|
|
36
|
-
type?: undefined;
|
|
37
|
-
default?: undefined;
|
|
38
|
-
} | {
|
|
39
|
-
type: any;
|
|
40
|
-
default: string | {
|
|
19
|
+
}>;
|
|
20
|
+
default?: {
|
|
41
21
|
[key: string]: {
|
|
42
22
|
[key: string]: string[];
|
|
43
23
|
};
|
|
@@ -47,44 +27,24 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
47
27
|
providerConfig: import("vue").Ref<HTMLElement>;
|
|
48
28
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
49
29
|
contextRequestUrl: {
|
|
50
|
-
type?:
|
|
51
|
-
default?:
|
|
52
|
-
} | {
|
|
53
|
-
type: any;
|
|
54
|
-
default: string | {
|
|
55
|
-
[key: string]: {
|
|
56
|
-
[key: string]: string[];
|
|
57
|
-
};
|
|
58
|
-
};
|
|
30
|
+
type?: import("vue").PropType<string>;
|
|
31
|
+
default?: string;
|
|
59
32
|
};
|
|
60
33
|
pageMode: {
|
|
61
|
-
type?:
|
|
62
|
-
default?:
|
|
63
|
-
} | {
|
|
64
|
-
type: any;
|
|
65
|
-
default: string | {
|
|
66
|
-
[key: string]: {
|
|
67
|
-
[key: string]: string[];
|
|
68
|
-
};
|
|
69
|
-
};
|
|
34
|
+
type?: import("vue").PropType<"preview" | "design" | "normal">;
|
|
35
|
+
default?: "preview" | "design" | "normal";
|
|
70
36
|
};
|
|
71
37
|
theme: {
|
|
72
|
-
type?:
|
|
73
|
-
default?:
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
|
|
38
|
+
type?: import("vue").PropType<"light" | "darkBlue">;
|
|
39
|
+
default?: "light" | "darkBlue";
|
|
40
|
+
};
|
|
41
|
+
containerMap: {
|
|
42
|
+
type?: import("vue").PropType<{
|
|
77
43
|
[key: string]: {
|
|
78
44
|
[key: string]: string[];
|
|
79
45
|
};
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
containerMap: {
|
|
83
|
-
type?: undefined;
|
|
84
|
-
default?: undefined;
|
|
85
|
-
} | {
|
|
86
|
-
type: any;
|
|
87
|
-
default: string | {
|
|
46
|
+
}>;
|
|
47
|
+
default?: {
|
|
88
48
|
[key: string]: {
|
|
89
49
|
[key: string]: string[];
|
|
90
50
|
};
|
|
@@ -1,43 +1,23 @@
|
|
|
1
1
|
export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWithInstall<import("vue").DefineComponent<{
|
|
2
2
|
contextRequestUrl: {
|
|
3
|
-
type?:
|
|
4
|
-
default?:
|
|
5
|
-
} | {
|
|
6
|
-
type: any;
|
|
7
|
-
default: string | {
|
|
8
|
-
[key: string]: {
|
|
9
|
-
[key: string]: string[];
|
|
10
|
-
};
|
|
11
|
-
};
|
|
3
|
+
type?: import("vue").PropType<string>;
|
|
4
|
+
default?: string;
|
|
12
5
|
};
|
|
13
6
|
pageMode: {
|
|
14
|
-
type?:
|
|
15
|
-
default?:
|
|
16
|
-
} | {
|
|
17
|
-
type: any;
|
|
18
|
-
default: string | {
|
|
19
|
-
[key: string]: {
|
|
20
|
-
[key: string]: string[];
|
|
21
|
-
};
|
|
22
|
-
};
|
|
7
|
+
type?: import("vue").PropType<"preview" | "design" | "normal">;
|
|
8
|
+
default?: "preview" | "design" | "normal";
|
|
23
9
|
};
|
|
24
10
|
theme: {
|
|
25
|
-
type?:
|
|
26
|
-
default?:
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
|
|
11
|
+
type?: import("vue").PropType<"light" | "darkBlue">;
|
|
12
|
+
default?: "light" | "darkBlue";
|
|
13
|
+
};
|
|
14
|
+
containerMap: {
|
|
15
|
+
type?: import("vue").PropType<{
|
|
30
16
|
[key: string]: {
|
|
31
17
|
[key: string]: string[];
|
|
32
18
|
};
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
containerMap: {
|
|
36
|
-
type?: undefined;
|
|
37
|
-
default?: undefined;
|
|
38
|
-
} | {
|
|
39
|
-
type: any;
|
|
40
|
-
default: string | {
|
|
19
|
+
}>;
|
|
20
|
+
default?: {
|
|
41
21
|
[key: string]: {
|
|
42
22
|
[key: string]: string[];
|
|
43
23
|
};
|
|
@@ -47,44 +27,24 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
47
27
|
providerConfig: import("vue").Ref<HTMLElement>;
|
|
48
28
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
49
29
|
contextRequestUrl: {
|
|
50
|
-
type?:
|
|
51
|
-
default?:
|
|
52
|
-
} | {
|
|
53
|
-
type: any;
|
|
54
|
-
default: string | {
|
|
55
|
-
[key: string]: {
|
|
56
|
-
[key: string]: string[];
|
|
57
|
-
};
|
|
58
|
-
};
|
|
30
|
+
type?: import("vue").PropType<string>;
|
|
31
|
+
default?: string;
|
|
59
32
|
};
|
|
60
33
|
pageMode: {
|
|
61
|
-
type?:
|
|
62
|
-
default?:
|
|
63
|
-
} | {
|
|
64
|
-
type: any;
|
|
65
|
-
default: string | {
|
|
66
|
-
[key: string]: {
|
|
67
|
-
[key: string]: string[];
|
|
68
|
-
};
|
|
69
|
-
};
|
|
34
|
+
type?: import("vue").PropType<"preview" | "design" | "normal">;
|
|
35
|
+
default?: "preview" | "design" | "normal";
|
|
70
36
|
};
|
|
71
37
|
theme: {
|
|
72
|
-
type?:
|
|
73
|
-
default?:
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
|
|
38
|
+
type?: import("vue").PropType<"light" | "darkBlue">;
|
|
39
|
+
default?: "light" | "darkBlue";
|
|
40
|
+
};
|
|
41
|
+
containerMap: {
|
|
42
|
+
type?: import("vue").PropType<{
|
|
77
43
|
[key: string]: {
|
|
78
44
|
[key: string]: string[];
|
|
79
45
|
};
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
containerMap: {
|
|
83
|
-
type?: undefined;
|
|
84
|
-
default?: undefined;
|
|
85
|
-
} | {
|
|
86
|
-
type: any;
|
|
87
|
-
default: string | {
|
|
46
|
+
}>;
|
|
47
|
+
default?: {
|
|
88
48
|
[key: string]: {
|
|
89
49
|
[key: string]: string[];
|
|
90
50
|
};
|
|
@@ -11,44 +11,24 @@ export interface ProviderConfig {
|
|
|
11
11
|
export declare const providerConfig: ProviderConfig;
|
|
12
12
|
export declare const providerConfigComponentProps: {
|
|
13
13
|
contextRequestUrl: {
|
|
14
|
-
type?:
|
|
15
|
-
default?:
|
|
16
|
-
} | {
|
|
17
|
-
type: any;
|
|
18
|
-
default: string | {
|
|
19
|
-
[key: string]: {
|
|
20
|
-
[key: string]: string[];
|
|
21
|
-
};
|
|
22
|
-
};
|
|
14
|
+
type?: import("vue").PropType<string>;
|
|
15
|
+
default?: string;
|
|
23
16
|
};
|
|
24
17
|
pageMode: {
|
|
25
|
-
type?:
|
|
26
|
-
default?:
|
|
27
|
-
} | {
|
|
28
|
-
type: any;
|
|
29
|
-
default: string | {
|
|
30
|
-
[key: string]: {
|
|
31
|
-
[key: string]: string[];
|
|
32
|
-
};
|
|
33
|
-
};
|
|
18
|
+
type?: import("vue").PropType<"preview" | "design" | "normal">;
|
|
19
|
+
default?: "preview" | "design" | "normal";
|
|
34
20
|
};
|
|
35
21
|
theme: {
|
|
36
|
-
type?:
|
|
37
|
-
default?:
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
|
|
22
|
+
type?: import("vue").PropType<"light" | "darkBlue">;
|
|
23
|
+
default?: "light" | "darkBlue";
|
|
24
|
+
};
|
|
25
|
+
containerMap: {
|
|
26
|
+
type?: import("vue").PropType<{
|
|
41
27
|
[key: string]: {
|
|
42
28
|
[key: string]: string[];
|
|
43
29
|
};
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
containerMap: {
|
|
47
|
-
type?: undefined;
|
|
48
|
-
default?: undefined;
|
|
49
|
-
} | {
|
|
50
|
-
type: any;
|
|
51
|
-
default: string | {
|
|
30
|
+
}>;
|
|
31
|
+
default?: {
|
|
52
32
|
[key: string]: {
|
|
53
33
|
[key: string]: string[];
|
|
54
34
|
};
|