@ecan-bi/datav 1.2.23 → 1.2.25
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 +4533 -3987
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +30 -30
- 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 +33 -4
- package/types/container/border/index.d.ts +33 -4
- package/types/container/border/props.d.ts +18 -3
- package/types/control/button/Button.vue.d.ts +3 -0
- package/types/control/button/index.d.ts +3 -0
- package/types/control/index.d.ts +1 -0
- package/types/control/radio/Radio.vue.d.ts +224 -0
- package/types/control/radio/index.d.ts +224 -0
- package/types/control/radio/props.d.ts +121 -0
- package/types/graph/bar/Bar.vue.d.ts +56 -6
- package/types/graph/bar/index.d.ts +56 -6
- package/types/graph/bar/props.d.ts +29 -4
- package/types/graph/index.d.ts +1 -0
- package/types/graph/line/Line.vue.d.ts +39 -0
- package/types/graph/line/index.d.ts +39 -0
- package/types/graph/line/props.d.ts +24 -0
- package/types/graph/pie/Pie.vue.d.ts +27 -0
- package/types/graph/pie/index.d.ts +27 -0
- package/types/graph/pie/props.d.ts +15 -0
- package/types/graph/radar/Radar.vue.d.ts +593 -0
- package/types/graph/radar/index.d.ts +594 -0
- package/types/graph/radar/props.d.ts +373 -0
- package/types/setting/page-config/PageConfig.vue.d.ts +2 -2
- package/types/setting/page-config/index.d.ts +2 -2
- package/types/setting/provider-config/ProviderConfig.vue.d.ts +16 -0
- package/types/setting/provider-config/index.d.ts +16 -0
- package/types/setting/provider-config/props.d.ts +10 -0
- package/types/text/text/Text.vue.d.ts +16 -0
- package/types/text/text/index.d.ts +16 -0
- package/types/text/text/props.d.ts +10 -0
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
export declare const EcanRadio: import('../../utils/withInstall').SFCWithInstall<import("vue").DefineComponent<{
|
|
2
|
+
value: {
|
|
3
|
+
type?: import("vue").PropType<string | string[]>;
|
|
4
|
+
default?: string | string[];
|
|
5
|
+
};
|
|
6
|
+
data: {
|
|
7
|
+
type?: import("vue").PropType<import("./props").RadioOptions>;
|
|
8
|
+
default?: import("./props").RadioOptions;
|
|
9
|
+
};
|
|
10
|
+
optionType: {
|
|
11
|
+
type?: import("vue").PropType<"button" | "default">;
|
|
12
|
+
default?: "button" | "default";
|
|
13
|
+
};
|
|
14
|
+
id: {
|
|
15
|
+
type?: import("vue").PropType<string>;
|
|
16
|
+
default?: string;
|
|
17
|
+
};
|
|
18
|
+
name: {
|
|
19
|
+
type?: import("vue").PropType<string>;
|
|
20
|
+
default?: string;
|
|
21
|
+
};
|
|
22
|
+
keyName: {
|
|
23
|
+
type?: import("vue").PropType<string>;
|
|
24
|
+
default?: string;
|
|
25
|
+
};
|
|
26
|
+
type: {
|
|
27
|
+
type?: import("vue").PropType<string>;
|
|
28
|
+
default?: string;
|
|
29
|
+
};
|
|
30
|
+
width: {
|
|
31
|
+
type?: import("vue").PropType<string>;
|
|
32
|
+
default?: string;
|
|
33
|
+
};
|
|
34
|
+
height: {
|
|
35
|
+
type?: import("vue").PropType<string>;
|
|
36
|
+
default?: string;
|
|
37
|
+
};
|
|
38
|
+
position: {
|
|
39
|
+
type?: import("vue").PropType<string>;
|
|
40
|
+
default?: string;
|
|
41
|
+
};
|
|
42
|
+
top: {
|
|
43
|
+
type?: import("vue").PropType<string>;
|
|
44
|
+
default?: string;
|
|
45
|
+
};
|
|
46
|
+
left: {
|
|
47
|
+
type?: import("vue").PropType<string>;
|
|
48
|
+
default?: string;
|
|
49
|
+
};
|
|
50
|
+
zIndex: {
|
|
51
|
+
type?: import("vue").PropType<number>;
|
|
52
|
+
default?: number;
|
|
53
|
+
};
|
|
54
|
+
rotate: {
|
|
55
|
+
type?: import("vue").PropType<string>;
|
|
56
|
+
default?: string;
|
|
57
|
+
};
|
|
58
|
+
isShow: {
|
|
59
|
+
type?: import("vue").PropType<boolean>;
|
|
60
|
+
default?: boolean;
|
|
61
|
+
};
|
|
62
|
+
isRender: {
|
|
63
|
+
type?: import("vue").PropType<boolean>;
|
|
64
|
+
default?: boolean;
|
|
65
|
+
};
|
|
66
|
+
events: {
|
|
67
|
+
type?: import("vue").PropType<import("../../utils/props").Events>;
|
|
68
|
+
default?: import("../../utils/props").Events;
|
|
69
|
+
};
|
|
70
|
+
requestUrl: {
|
|
71
|
+
type?: import("vue").PropType<string>;
|
|
72
|
+
default?: string;
|
|
73
|
+
};
|
|
74
|
+
requestMethod: {
|
|
75
|
+
type?: import("vue").PropType<import("../../utils/props").RequestMethod>;
|
|
76
|
+
default?: import("../../utils/props").RequestMethod;
|
|
77
|
+
};
|
|
78
|
+
requestHeaders: {
|
|
79
|
+
type?: import("vue").PropType<{
|
|
80
|
+
[key: string]: any;
|
|
81
|
+
}>;
|
|
82
|
+
default?: {
|
|
83
|
+
[key: string]: any;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
isOpenRequestTimer: {
|
|
87
|
+
type?: import("vue").PropType<boolean>;
|
|
88
|
+
default?: boolean;
|
|
89
|
+
};
|
|
90
|
+
requestInterval: {
|
|
91
|
+
type?: import("vue").PropType<number>;
|
|
92
|
+
default?: number;
|
|
93
|
+
};
|
|
94
|
+
requestParams: {
|
|
95
|
+
type?: import("vue").PropType<import("../../utils/props").RequestParams>;
|
|
96
|
+
default?: import("../../utils/props").RequestParams;
|
|
97
|
+
};
|
|
98
|
+
requestSort: {
|
|
99
|
+
type?: import("vue").PropType<number>;
|
|
100
|
+
default?: number;
|
|
101
|
+
};
|
|
102
|
+
dataType: {
|
|
103
|
+
type?: import("vue").PropType<"indicator" | "static" | "request">;
|
|
104
|
+
default?: "indicator" | "static" | "request";
|
|
105
|
+
};
|
|
106
|
+
}, {
|
|
107
|
+
myOption: import("vue").Ref<{
|
|
108
|
+
label: string;
|
|
109
|
+
value: string;
|
|
110
|
+
disabled?: boolean;
|
|
111
|
+
checked?: boolean;
|
|
112
|
+
indeterminate?: boolean;
|
|
113
|
+
}[]>;
|
|
114
|
+
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
115
|
+
myValue: import("vue").Ref<string>;
|
|
116
|
+
checkboxChange: () => void;
|
|
117
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
118
|
+
value: {
|
|
119
|
+
type?: import("vue").PropType<string | string[]>;
|
|
120
|
+
default?: string | string[];
|
|
121
|
+
};
|
|
122
|
+
data: {
|
|
123
|
+
type?: import("vue").PropType<import("./props").RadioOptions>;
|
|
124
|
+
default?: import("./props").RadioOptions;
|
|
125
|
+
};
|
|
126
|
+
optionType: {
|
|
127
|
+
type?: import("vue").PropType<"button" | "default">;
|
|
128
|
+
default?: "button" | "default";
|
|
129
|
+
};
|
|
130
|
+
id: {
|
|
131
|
+
type?: import("vue").PropType<string>;
|
|
132
|
+
default?: string;
|
|
133
|
+
};
|
|
134
|
+
name: {
|
|
135
|
+
type?: import("vue").PropType<string>;
|
|
136
|
+
default?: string;
|
|
137
|
+
};
|
|
138
|
+
keyName: {
|
|
139
|
+
type?: import("vue").PropType<string>;
|
|
140
|
+
default?: string;
|
|
141
|
+
};
|
|
142
|
+
type: {
|
|
143
|
+
type?: import("vue").PropType<string>;
|
|
144
|
+
default?: string;
|
|
145
|
+
};
|
|
146
|
+
width: {
|
|
147
|
+
type?: import("vue").PropType<string>;
|
|
148
|
+
default?: string;
|
|
149
|
+
};
|
|
150
|
+
height: {
|
|
151
|
+
type?: import("vue").PropType<string>;
|
|
152
|
+
default?: string;
|
|
153
|
+
};
|
|
154
|
+
position: {
|
|
155
|
+
type?: import("vue").PropType<string>;
|
|
156
|
+
default?: string;
|
|
157
|
+
};
|
|
158
|
+
top: {
|
|
159
|
+
type?: import("vue").PropType<string>;
|
|
160
|
+
default?: string;
|
|
161
|
+
};
|
|
162
|
+
left: {
|
|
163
|
+
type?: import("vue").PropType<string>;
|
|
164
|
+
default?: string;
|
|
165
|
+
};
|
|
166
|
+
zIndex: {
|
|
167
|
+
type?: import("vue").PropType<number>;
|
|
168
|
+
default?: number;
|
|
169
|
+
};
|
|
170
|
+
rotate: {
|
|
171
|
+
type?: import("vue").PropType<string>;
|
|
172
|
+
default?: string;
|
|
173
|
+
};
|
|
174
|
+
isShow: {
|
|
175
|
+
type?: import("vue").PropType<boolean>;
|
|
176
|
+
default?: boolean;
|
|
177
|
+
};
|
|
178
|
+
isRender: {
|
|
179
|
+
type?: import("vue").PropType<boolean>;
|
|
180
|
+
default?: boolean;
|
|
181
|
+
};
|
|
182
|
+
events: {
|
|
183
|
+
type?: import("vue").PropType<import("../../utils/props").Events>;
|
|
184
|
+
default?: import("../../utils/props").Events;
|
|
185
|
+
};
|
|
186
|
+
requestUrl: {
|
|
187
|
+
type?: import("vue").PropType<string>;
|
|
188
|
+
default?: string;
|
|
189
|
+
};
|
|
190
|
+
requestMethod: {
|
|
191
|
+
type?: import("vue").PropType<import("../../utils/props").RequestMethod>;
|
|
192
|
+
default?: import("../../utils/props").RequestMethod;
|
|
193
|
+
};
|
|
194
|
+
requestHeaders: {
|
|
195
|
+
type?: import("vue").PropType<{
|
|
196
|
+
[key: string]: any;
|
|
197
|
+
}>;
|
|
198
|
+
default?: {
|
|
199
|
+
[key: string]: any;
|
|
200
|
+
};
|
|
201
|
+
};
|
|
202
|
+
isOpenRequestTimer: {
|
|
203
|
+
type?: import("vue").PropType<boolean>;
|
|
204
|
+
default?: boolean;
|
|
205
|
+
};
|
|
206
|
+
requestInterval: {
|
|
207
|
+
type?: import("vue").PropType<number>;
|
|
208
|
+
default?: number;
|
|
209
|
+
};
|
|
210
|
+
requestParams: {
|
|
211
|
+
type?: import("vue").PropType<import("../../utils/props").RequestParams>;
|
|
212
|
+
default?: import("../../utils/props").RequestParams;
|
|
213
|
+
};
|
|
214
|
+
requestSort: {
|
|
215
|
+
type?: import("vue").PropType<number>;
|
|
216
|
+
default?: number;
|
|
217
|
+
};
|
|
218
|
+
dataType: {
|
|
219
|
+
type?: import("vue").PropType<"indicator" | "static" | "request">;
|
|
220
|
+
default?: "indicator" | "static" | "request";
|
|
221
|
+
};
|
|
222
|
+
}>>, {}>> & Record<string, any>;
|
|
223
|
+
export default EcanRadio;
|
|
224
|
+
export * from './props';
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
import { Props } from '../../utils/props';
|
|
2
|
+
export declare type RadioOptions = {
|
|
3
|
+
label: string;
|
|
4
|
+
value: string;
|
|
5
|
+
disabled?: boolean;
|
|
6
|
+
checked?: boolean;
|
|
7
|
+
indeterminate?: boolean;
|
|
8
|
+
}[];
|
|
9
|
+
export interface RadioProps extends Props {
|
|
10
|
+
value: string | string[];
|
|
11
|
+
data: RadioOptions;
|
|
12
|
+
optionType: 'default' | 'button';
|
|
13
|
+
}
|
|
14
|
+
export declare const radioProps: RadioProps;
|
|
15
|
+
export declare const radioComponentProps: {
|
|
16
|
+
value: {
|
|
17
|
+
type?: import("vue").PropType<string | string[]>;
|
|
18
|
+
default?: string | string[];
|
|
19
|
+
};
|
|
20
|
+
data: {
|
|
21
|
+
type?: import("vue").PropType<RadioOptions>;
|
|
22
|
+
default?: RadioOptions;
|
|
23
|
+
};
|
|
24
|
+
optionType: {
|
|
25
|
+
type?: import("vue").PropType<"button" | "default">;
|
|
26
|
+
default?: "button" | "default";
|
|
27
|
+
};
|
|
28
|
+
id: {
|
|
29
|
+
type?: import("vue").PropType<string>;
|
|
30
|
+
default?: string;
|
|
31
|
+
};
|
|
32
|
+
name: {
|
|
33
|
+
type?: import("vue").PropType<string>;
|
|
34
|
+
default?: string;
|
|
35
|
+
};
|
|
36
|
+
keyName: {
|
|
37
|
+
type?: import("vue").PropType<string>;
|
|
38
|
+
default?: string;
|
|
39
|
+
};
|
|
40
|
+
type: {
|
|
41
|
+
type?: import("vue").PropType<string>;
|
|
42
|
+
default?: string;
|
|
43
|
+
};
|
|
44
|
+
width: {
|
|
45
|
+
type?: import("vue").PropType<string>;
|
|
46
|
+
default?: string;
|
|
47
|
+
};
|
|
48
|
+
height: {
|
|
49
|
+
type?: import("vue").PropType<string>;
|
|
50
|
+
default?: string;
|
|
51
|
+
};
|
|
52
|
+
position: {
|
|
53
|
+
type?: import("vue").PropType<string>;
|
|
54
|
+
default?: string;
|
|
55
|
+
};
|
|
56
|
+
top: {
|
|
57
|
+
type?: import("vue").PropType<string>;
|
|
58
|
+
default?: string;
|
|
59
|
+
};
|
|
60
|
+
left: {
|
|
61
|
+
type?: import("vue").PropType<string>;
|
|
62
|
+
default?: string;
|
|
63
|
+
};
|
|
64
|
+
zIndex: {
|
|
65
|
+
type?: import("vue").PropType<number>;
|
|
66
|
+
default?: number;
|
|
67
|
+
};
|
|
68
|
+
rotate: {
|
|
69
|
+
type?: import("vue").PropType<string>;
|
|
70
|
+
default?: string;
|
|
71
|
+
};
|
|
72
|
+
isShow: {
|
|
73
|
+
type?: import("vue").PropType<boolean>;
|
|
74
|
+
default?: boolean;
|
|
75
|
+
};
|
|
76
|
+
isRender: {
|
|
77
|
+
type?: import("vue").PropType<boolean>;
|
|
78
|
+
default?: boolean;
|
|
79
|
+
};
|
|
80
|
+
events: {
|
|
81
|
+
type?: import("vue").PropType<import('../../utils/props').Events>;
|
|
82
|
+
default?: import('../../utils/props').Events;
|
|
83
|
+
};
|
|
84
|
+
requestUrl: {
|
|
85
|
+
type?: import("vue").PropType<string>;
|
|
86
|
+
default?: string;
|
|
87
|
+
};
|
|
88
|
+
requestMethod: {
|
|
89
|
+
type?: import("vue").PropType<import('../../utils/props').RequestMethod>;
|
|
90
|
+
default?: import('../../utils/props').RequestMethod;
|
|
91
|
+
};
|
|
92
|
+
requestHeaders: {
|
|
93
|
+
type?: import("vue").PropType<{
|
|
94
|
+
[key: string]: any;
|
|
95
|
+
}>;
|
|
96
|
+
default?: {
|
|
97
|
+
[key: string]: any;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
isOpenRequestTimer: {
|
|
101
|
+
type?: import("vue").PropType<boolean>;
|
|
102
|
+
default?: boolean;
|
|
103
|
+
};
|
|
104
|
+
requestInterval: {
|
|
105
|
+
type?: import("vue").PropType<number>;
|
|
106
|
+
default?: number;
|
|
107
|
+
};
|
|
108
|
+
requestParams: {
|
|
109
|
+
type?: import("vue").PropType<import('../../utils/props').RequestParams>;
|
|
110
|
+
default?: import('../../utils/props').RequestParams;
|
|
111
|
+
};
|
|
112
|
+
requestSort: {
|
|
113
|
+
type?: import("vue").PropType<number>;
|
|
114
|
+
default?: number;
|
|
115
|
+
};
|
|
116
|
+
dataType: {
|
|
117
|
+
type?: import("vue").PropType<"indicator" | "static" | "request">;
|
|
118
|
+
default?: "indicator" | "static" | "request";
|
|
119
|
+
};
|
|
120
|
+
};
|
|
121
|
+
export declare const radioEvents: string[];
|
|
@@ -284,9 +284,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
284
284
|
type?: import("vue").PropType<boolean>;
|
|
285
285
|
default?: boolean;
|
|
286
286
|
};
|
|
287
|
-
|
|
288
|
-
type?: import("vue").PropType<string>;
|
|
289
|
-
default?: string;
|
|
287
|
+
gradientColors: {
|
|
288
|
+
type?: import("vue").PropType<string[]>;
|
|
289
|
+
default?: string[];
|
|
290
290
|
};
|
|
291
291
|
gradientOffset: {
|
|
292
292
|
type?: import("vue").PropType<number>;
|
|
@@ -304,6 +304,26 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
304
304
|
type?: import("vue").PropType<"dashed" | "dotted" | "solid">;
|
|
305
305
|
default?: "dashed" | "dotted" | "solid";
|
|
306
306
|
};
|
|
307
|
+
legendItemGap: {
|
|
308
|
+
type?: import("vue").PropType<number>;
|
|
309
|
+
default?: number;
|
|
310
|
+
};
|
|
311
|
+
legendItemWidth: {
|
|
312
|
+
type?: import("vue").PropType<number>;
|
|
313
|
+
default?: number;
|
|
314
|
+
};
|
|
315
|
+
legendItemHeight: {
|
|
316
|
+
type?: import("vue").PropType<number>;
|
|
317
|
+
default?: number;
|
|
318
|
+
};
|
|
319
|
+
showBarBackground: {
|
|
320
|
+
type?: import("vue").PropType<boolean>;
|
|
321
|
+
default?: boolean;
|
|
322
|
+
};
|
|
323
|
+
legendType: {
|
|
324
|
+
type?: import("vue").PropType<string>;
|
|
325
|
+
default?: string;
|
|
326
|
+
};
|
|
307
327
|
id: {
|
|
308
328
|
type?: import("vue").PropType<string>;
|
|
309
329
|
default?: string;
|
|
@@ -462,6 +482,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
462
482
|
color: string;
|
|
463
483
|
fontSize: number;
|
|
464
484
|
};
|
|
485
|
+
itemHeight: number;
|
|
486
|
+
itemWidth: number;
|
|
487
|
+
itemGap: number;
|
|
488
|
+
data: {
|
|
489
|
+
name: any;
|
|
490
|
+
itemStyle: {
|
|
491
|
+
color: string;
|
|
492
|
+
};
|
|
493
|
+
icon: string;
|
|
494
|
+
}[];
|
|
465
495
|
};
|
|
466
496
|
xAxis: {
|
|
467
497
|
type: string;
|
|
@@ -828,9 +858,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
828
858
|
type?: import("vue").PropType<boolean>;
|
|
829
859
|
default?: boolean;
|
|
830
860
|
};
|
|
831
|
-
|
|
832
|
-
type?: import("vue").PropType<string>;
|
|
833
|
-
default?: string;
|
|
861
|
+
gradientColors: {
|
|
862
|
+
type?: import("vue").PropType<string[]>;
|
|
863
|
+
default?: string[];
|
|
834
864
|
};
|
|
835
865
|
gradientOffset: {
|
|
836
866
|
type?: import("vue").PropType<number>;
|
|
@@ -848,6 +878,26 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
848
878
|
type?: import("vue").PropType<"dashed" | "dotted" | "solid">;
|
|
849
879
|
default?: "dashed" | "dotted" | "solid";
|
|
850
880
|
};
|
|
881
|
+
legendItemGap: {
|
|
882
|
+
type?: import("vue").PropType<number>;
|
|
883
|
+
default?: number;
|
|
884
|
+
};
|
|
885
|
+
legendItemWidth: {
|
|
886
|
+
type?: import("vue").PropType<number>;
|
|
887
|
+
default?: number;
|
|
888
|
+
};
|
|
889
|
+
legendItemHeight: {
|
|
890
|
+
type?: import("vue").PropType<number>;
|
|
891
|
+
default?: number;
|
|
892
|
+
};
|
|
893
|
+
showBarBackground: {
|
|
894
|
+
type?: import("vue").PropType<boolean>;
|
|
895
|
+
default?: boolean;
|
|
896
|
+
};
|
|
897
|
+
legendType: {
|
|
898
|
+
type?: import("vue").PropType<string>;
|
|
899
|
+
default?: string;
|
|
900
|
+
};
|
|
851
901
|
id: {
|
|
852
902
|
type?: import("vue").PropType<string>;
|
|
853
903
|
default?: string;
|
|
@@ -283,9 +283,9 @@ export declare const EcanBar: import('../../utils/withInstall').SFCWithInstall<i
|
|
|
283
283
|
type?: import("vue").PropType<boolean>;
|
|
284
284
|
default?: boolean;
|
|
285
285
|
};
|
|
286
|
-
|
|
287
|
-
type?: import("vue").PropType<string>;
|
|
288
|
-
default?: string;
|
|
286
|
+
gradientColors: {
|
|
287
|
+
type?: import("vue").PropType<string[]>;
|
|
288
|
+
default?: string[];
|
|
289
289
|
};
|
|
290
290
|
gradientOffset: {
|
|
291
291
|
type?: import("vue").PropType<number>;
|
|
@@ -303,6 +303,26 @@ export declare const EcanBar: import('../../utils/withInstall').SFCWithInstall<i
|
|
|
303
303
|
type?: import("vue").PropType<"dashed" | "dotted" | "solid">;
|
|
304
304
|
default?: "dashed" | "dotted" | "solid";
|
|
305
305
|
};
|
|
306
|
+
legendItemGap: {
|
|
307
|
+
type?: import("vue").PropType<number>;
|
|
308
|
+
default?: number;
|
|
309
|
+
};
|
|
310
|
+
legendItemWidth: {
|
|
311
|
+
type?: import("vue").PropType<number>;
|
|
312
|
+
default?: number;
|
|
313
|
+
};
|
|
314
|
+
legendItemHeight: {
|
|
315
|
+
type?: import("vue").PropType<number>;
|
|
316
|
+
default?: number;
|
|
317
|
+
};
|
|
318
|
+
showBarBackground: {
|
|
319
|
+
type?: import("vue").PropType<boolean>;
|
|
320
|
+
default?: boolean;
|
|
321
|
+
};
|
|
322
|
+
legendType: {
|
|
323
|
+
type?: import("vue").PropType<string>;
|
|
324
|
+
default?: string;
|
|
325
|
+
};
|
|
306
326
|
id: {
|
|
307
327
|
type?: import("vue").PropType<string>;
|
|
308
328
|
default?: string;
|
|
@@ -461,6 +481,16 @@ export declare const EcanBar: import('../../utils/withInstall').SFCWithInstall<i
|
|
|
461
481
|
color: string;
|
|
462
482
|
fontSize: number;
|
|
463
483
|
};
|
|
484
|
+
itemHeight: number;
|
|
485
|
+
itemWidth: number;
|
|
486
|
+
itemGap: number;
|
|
487
|
+
data: {
|
|
488
|
+
name: any;
|
|
489
|
+
itemStyle: {
|
|
490
|
+
color: string;
|
|
491
|
+
};
|
|
492
|
+
icon: string;
|
|
493
|
+
}[];
|
|
464
494
|
};
|
|
465
495
|
xAxis: {
|
|
466
496
|
type: string;
|
|
@@ -827,9 +857,9 @@ export declare const EcanBar: import('../../utils/withInstall').SFCWithInstall<i
|
|
|
827
857
|
type?: import("vue").PropType<boolean>;
|
|
828
858
|
default?: boolean;
|
|
829
859
|
};
|
|
830
|
-
|
|
831
|
-
type?: import("vue").PropType<string>;
|
|
832
|
-
default?: string;
|
|
860
|
+
gradientColors: {
|
|
861
|
+
type?: import("vue").PropType<string[]>;
|
|
862
|
+
default?: string[];
|
|
833
863
|
};
|
|
834
864
|
gradientOffset: {
|
|
835
865
|
type?: import("vue").PropType<number>;
|
|
@@ -847,6 +877,26 @@ export declare const EcanBar: import('../../utils/withInstall').SFCWithInstall<i
|
|
|
847
877
|
type?: import("vue").PropType<"dashed" | "dotted" | "solid">;
|
|
848
878
|
default?: "dashed" | "dotted" | "solid";
|
|
849
879
|
};
|
|
880
|
+
legendItemGap: {
|
|
881
|
+
type?: import("vue").PropType<number>;
|
|
882
|
+
default?: number;
|
|
883
|
+
};
|
|
884
|
+
legendItemWidth: {
|
|
885
|
+
type?: import("vue").PropType<number>;
|
|
886
|
+
default?: number;
|
|
887
|
+
};
|
|
888
|
+
legendItemHeight: {
|
|
889
|
+
type?: import("vue").PropType<number>;
|
|
890
|
+
default?: number;
|
|
891
|
+
};
|
|
892
|
+
showBarBackground: {
|
|
893
|
+
type?: import("vue").PropType<boolean>;
|
|
894
|
+
default?: boolean;
|
|
895
|
+
};
|
|
896
|
+
legendType: {
|
|
897
|
+
type?: import("vue").PropType<string>;
|
|
898
|
+
default?: string;
|
|
899
|
+
};
|
|
850
900
|
id: {
|
|
851
901
|
type?: import("vue").PropType<string>;
|
|
852
902
|
default?: string;
|
|
@@ -72,11 +72,16 @@ export interface BarProps extends Props {
|
|
|
72
72
|
labelPosition: 'inside' | 'top' | 'bottom' | 'right' | 'left';
|
|
73
73
|
labelColor: string;
|
|
74
74
|
gradientShow: boolean;
|
|
75
|
-
|
|
75
|
+
gradientColors: string[];
|
|
76
76
|
gradientOffset: number;
|
|
77
77
|
barBorderRadius: string;
|
|
78
78
|
yAxisLabelShow: boolean;
|
|
79
79
|
yAxisSplitLineType: 'solid' | 'dashed' | 'dotted';
|
|
80
|
+
legendItemGap: number;
|
|
81
|
+
legendItemWidth: number;
|
|
82
|
+
legendItemHeight: number;
|
|
83
|
+
showBarBackground: boolean;
|
|
84
|
+
legendType: string;
|
|
80
85
|
}
|
|
81
86
|
export declare const barProps: BarProps;
|
|
82
87
|
export declare const barComponentProps: {
|
|
@@ -364,9 +369,9 @@ export declare const barComponentProps: {
|
|
|
364
369
|
type?: import("vue").PropType<boolean>;
|
|
365
370
|
default?: boolean;
|
|
366
371
|
};
|
|
367
|
-
|
|
368
|
-
type?: import("vue").PropType<string>;
|
|
369
|
-
default?: string;
|
|
372
|
+
gradientColors: {
|
|
373
|
+
type?: import("vue").PropType<string[]>;
|
|
374
|
+
default?: string[];
|
|
370
375
|
};
|
|
371
376
|
gradientOffset: {
|
|
372
377
|
type?: import("vue").PropType<number>;
|
|
@@ -384,6 +389,26 @@ export declare const barComponentProps: {
|
|
|
384
389
|
type?: import("vue").PropType<"dashed" | "dotted" | "solid">;
|
|
385
390
|
default?: "dashed" | "dotted" | "solid";
|
|
386
391
|
};
|
|
392
|
+
legendItemGap: {
|
|
393
|
+
type?: import("vue").PropType<number>;
|
|
394
|
+
default?: number;
|
|
395
|
+
};
|
|
396
|
+
legendItemWidth: {
|
|
397
|
+
type?: import("vue").PropType<number>;
|
|
398
|
+
default?: number;
|
|
399
|
+
};
|
|
400
|
+
legendItemHeight: {
|
|
401
|
+
type?: import("vue").PropType<number>;
|
|
402
|
+
default?: number;
|
|
403
|
+
};
|
|
404
|
+
showBarBackground: {
|
|
405
|
+
type?: import("vue").PropType<boolean>;
|
|
406
|
+
default?: boolean;
|
|
407
|
+
};
|
|
408
|
+
legendType: {
|
|
409
|
+
type?: import("vue").PropType<string>;
|
|
410
|
+
default?: string;
|
|
411
|
+
};
|
|
387
412
|
id: {
|
|
388
413
|
type?: import("vue").PropType<string>;
|
|
389
414
|
default?: string;
|
package/types/graph/index.d.ts
CHANGED
|
@@ -309,6 +309,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
309
309
|
type?: import("vue").PropType<string>;
|
|
310
310
|
default?: string;
|
|
311
311
|
};
|
|
312
|
+
legendItemGap: {
|
|
313
|
+
type?: import("vue").PropType<number>;
|
|
314
|
+
default?: number;
|
|
315
|
+
};
|
|
316
|
+
legendItemWidth: {
|
|
317
|
+
type?: import("vue").PropType<number>;
|
|
318
|
+
default?: number;
|
|
319
|
+
};
|
|
320
|
+
legendItemHeight: {
|
|
321
|
+
type?: import("vue").PropType<number>;
|
|
322
|
+
default?: number;
|
|
323
|
+
};
|
|
324
|
+
legendType: {
|
|
325
|
+
type?: import("vue").PropType<string>;
|
|
326
|
+
default?: string;
|
|
327
|
+
};
|
|
312
328
|
position: {
|
|
313
329
|
type?: import("vue").PropType<string>;
|
|
314
330
|
default?: string;
|
|
@@ -482,6 +498,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
482
498
|
textStyle: {
|
|
483
499
|
fontSize: number;
|
|
484
500
|
};
|
|
501
|
+
itemHeight: number;
|
|
502
|
+
itemWidth: number;
|
|
503
|
+
itemGap: number;
|
|
504
|
+
data: {
|
|
505
|
+
name: any;
|
|
506
|
+
icon: string;
|
|
507
|
+
}[];
|
|
485
508
|
};
|
|
486
509
|
series: {
|
|
487
510
|
[x: string]: any;
|
|
@@ -807,6 +830,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
807
830
|
type?: import("vue").PropType<string>;
|
|
808
831
|
default?: string;
|
|
809
832
|
};
|
|
833
|
+
legendItemGap: {
|
|
834
|
+
type?: import("vue").PropType<number>;
|
|
835
|
+
default?: number;
|
|
836
|
+
};
|
|
837
|
+
legendItemWidth: {
|
|
838
|
+
type?: import("vue").PropType<number>;
|
|
839
|
+
default?: number;
|
|
840
|
+
};
|
|
841
|
+
legendItemHeight: {
|
|
842
|
+
type?: import("vue").PropType<number>;
|
|
843
|
+
default?: number;
|
|
844
|
+
};
|
|
845
|
+
legendType: {
|
|
846
|
+
type?: import("vue").PropType<string>;
|
|
847
|
+
default?: string;
|
|
848
|
+
};
|
|
810
849
|
position: {
|
|
811
850
|
type?: import("vue").PropType<string>;
|
|
812
851
|
default?: string;
|