@ecan-bi/datav 1.1.40 → 1.1.41
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 +995 -987
- 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
|
@@ -20,328 +20,122 @@ export interface SelectProps extends Props {
|
|
|
20
20
|
export declare const selectProps: SelectProps;
|
|
21
21
|
export declare const selectComponentProps: {
|
|
22
22
|
data: {
|
|
23
|
-
type?:
|
|
24
|
-
default?:
|
|
25
|
-
} | {
|
|
26
|
-
type: any;
|
|
27
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
28
|
-
[key: string]: any;
|
|
29
|
-
} | import('../../utils/props').RequestParams | SelectOptions | {
|
|
30
|
-
label: string;
|
|
31
|
-
value: string;
|
|
32
|
-
};
|
|
23
|
+
type?: import("vue").PropType<SelectOptions>;
|
|
24
|
+
default?: SelectOptions;
|
|
33
25
|
};
|
|
34
26
|
value: {
|
|
35
|
-
type?:
|
|
36
|
-
default?:
|
|
37
|
-
} | {
|
|
38
|
-
type: any;
|
|
39
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
40
|
-
[key: string]: any;
|
|
41
|
-
} | import('../../utils/props').RequestParams | SelectOptions | {
|
|
42
|
-
label: string;
|
|
43
|
-
value: string;
|
|
44
|
-
};
|
|
27
|
+
type?: import("vue").PropType<string>;
|
|
28
|
+
default?: string;
|
|
45
29
|
};
|
|
46
30
|
dataFieldNames: {
|
|
47
|
-
type?:
|
|
48
|
-
default?: undefined;
|
|
49
|
-
} | {
|
|
50
|
-
type: any;
|
|
51
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
52
|
-
[key: string]: any;
|
|
53
|
-
} | import('../../utils/props').RequestParams | SelectOptions | {
|
|
31
|
+
type?: import("vue").PropType<{
|
|
54
32
|
label: string;
|
|
55
33
|
value: string;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
mode: {
|
|
59
|
-
type?: undefined;
|
|
60
|
-
default?: undefined;
|
|
61
|
-
} | {
|
|
62
|
-
type: any;
|
|
63
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
64
|
-
[key: string]: any;
|
|
65
|
-
} | import('../../utils/props').RequestParams | SelectOptions | {
|
|
34
|
+
}>;
|
|
35
|
+
default?: {
|
|
66
36
|
label: string;
|
|
67
37
|
value: string;
|
|
68
38
|
};
|
|
69
39
|
};
|
|
40
|
+
mode: {
|
|
41
|
+
type?: import("vue").PropType<"multiple" | "tags" | "combobox">;
|
|
42
|
+
default?: "multiple" | "tags" | "combobox";
|
|
43
|
+
};
|
|
70
44
|
maxTagCount: {
|
|
71
|
-
type?:
|
|
72
|
-
default?:
|
|
73
|
-
} | {
|
|
74
|
-
type: any;
|
|
75
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
76
|
-
[key: string]: any;
|
|
77
|
-
} | import('../../utils/props').RequestParams | SelectOptions | {
|
|
78
|
-
label: string;
|
|
79
|
-
value: string;
|
|
80
|
-
};
|
|
45
|
+
type?: import("vue").PropType<number>;
|
|
46
|
+
default?: number;
|
|
81
47
|
};
|
|
82
48
|
id: {
|
|
83
|
-
type?:
|
|
84
|
-
default?:
|
|
85
|
-
} | {
|
|
86
|
-
type: any;
|
|
87
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
88
|
-
[key: string]: any;
|
|
89
|
-
} | import('../../utils/props').RequestParams | SelectOptions | {
|
|
90
|
-
label: string;
|
|
91
|
-
value: string;
|
|
92
|
-
};
|
|
49
|
+
type?: import("vue").PropType<string>;
|
|
50
|
+
default?: string;
|
|
93
51
|
};
|
|
94
52
|
name: {
|
|
95
|
-
type?:
|
|
96
|
-
default?:
|
|
97
|
-
} | {
|
|
98
|
-
type: any;
|
|
99
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
100
|
-
[key: string]: any;
|
|
101
|
-
} | import('../../utils/props').RequestParams | SelectOptions | {
|
|
102
|
-
label: string;
|
|
103
|
-
value: string;
|
|
104
|
-
};
|
|
53
|
+
type?: import("vue").PropType<string>;
|
|
54
|
+
default?: string;
|
|
105
55
|
};
|
|
106
56
|
keyName: {
|
|
107
|
-
type?:
|
|
108
|
-
default?:
|
|
109
|
-
} | {
|
|
110
|
-
type: any;
|
|
111
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
112
|
-
[key: string]: any;
|
|
113
|
-
} | import('../../utils/props').RequestParams | SelectOptions | {
|
|
114
|
-
label: string;
|
|
115
|
-
value: string;
|
|
116
|
-
};
|
|
57
|
+
type?: import("vue").PropType<string>;
|
|
58
|
+
default?: string;
|
|
117
59
|
};
|
|
118
60
|
type: {
|
|
119
|
-
type?:
|
|
120
|
-
default?:
|
|
121
|
-
} | {
|
|
122
|
-
type: any;
|
|
123
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
124
|
-
[key: string]: any;
|
|
125
|
-
} | import('../../utils/props').RequestParams | SelectOptions | {
|
|
126
|
-
label: string;
|
|
127
|
-
value: string;
|
|
128
|
-
};
|
|
61
|
+
type?: import("vue").PropType<string>;
|
|
62
|
+
default?: string;
|
|
129
63
|
};
|
|
130
64
|
width: {
|
|
131
|
-
type?:
|
|
132
|
-
default?:
|
|
133
|
-
} | {
|
|
134
|
-
type: any;
|
|
135
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
136
|
-
[key: string]: any;
|
|
137
|
-
} | import('../../utils/props').RequestParams | SelectOptions | {
|
|
138
|
-
label: string;
|
|
139
|
-
value: string;
|
|
140
|
-
};
|
|
65
|
+
type?: import("vue").PropType<string>;
|
|
66
|
+
default?: string;
|
|
141
67
|
};
|
|
142
68
|
height: {
|
|
143
|
-
type?:
|
|
144
|
-
default?:
|
|
145
|
-
} | {
|
|
146
|
-
type: any;
|
|
147
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
148
|
-
[key: string]: any;
|
|
149
|
-
} | import('../../utils/props').RequestParams | SelectOptions | {
|
|
150
|
-
label: string;
|
|
151
|
-
value: string;
|
|
152
|
-
};
|
|
69
|
+
type?: import("vue").PropType<string>;
|
|
70
|
+
default?: string;
|
|
153
71
|
};
|
|
154
72
|
position: {
|
|
155
|
-
type?:
|
|
156
|
-
default?:
|
|
157
|
-
} | {
|
|
158
|
-
type: any;
|
|
159
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
160
|
-
[key: string]: any;
|
|
161
|
-
} | import('../../utils/props').RequestParams | SelectOptions | {
|
|
162
|
-
label: string;
|
|
163
|
-
value: string;
|
|
164
|
-
};
|
|
73
|
+
type?: import("vue").PropType<string>;
|
|
74
|
+
default?: string;
|
|
165
75
|
};
|
|
166
76
|
top: {
|
|
167
|
-
type?:
|
|
168
|
-
default?:
|
|
169
|
-
} | {
|
|
170
|
-
type: any;
|
|
171
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
172
|
-
[key: string]: any;
|
|
173
|
-
} | import('../../utils/props').RequestParams | SelectOptions | {
|
|
174
|
-
label: string;
|
|
175
|
-
value: string;
|
|
176
|
-
};
|
|
77
|
+
type?: import("vue").PropType<string>;
|
|
78
|
+
default?: string;
|
|
177
79
|
};
|
|
178
80
|
left: {
|
|
179
|
-
type?:
|
|
180
|
-
default?:
|
|
181
|
-
} | {
|
|
182
|
-
type: any;
|
|
183
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
184
|
-
[key: string]: any;
|
|
185
|
-
} | import('../../utils/props').RequestParams | SelectOptions | {
|
|
186
|
-
label: string;
|
|
187
|
-
value: string;
|
|
188
|
-
};
|
|
81
|
+
type?: import("vue").PropType<string>;
|
|
82
|
+
default?: string;
|
|
189
83
|
};
|
|
190
84
|
zIndex: {
|
|
191
|
-
type?:
|
|
192
|
-
default?:
|
|
193
|
-
} | {
|
|
194
|
-
type: any;
|
|
195
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
196
|
-
[key: string]: any;
|
|
197
|
-
} | import('../../utils/props').RequestParams | SelectOptions | {
|
|
198
|
-
label: string;
|
|
199
|
-
value: string;
|
|
200
|
-
};
|
|
85
|
+
type?: import("vue").PropType<number>;
|
|
86
|
+
default?: number;
|
|
201
87
|
};
|
|
202
88
|
rotate: {
|
|
203
|
-
type?:
|
|
204
|
-
default?:
|
|
205
|
-
} | {
|
|
206
|
-
type: any;
|
|
207
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
208
|
-
[key: string]: any;
|
|
209
|
-
} | import('../../utils/props').RequestParams | SelectOptions | {
|
|
210
|
-
label: string;
|
|
211
|
-
value: string;
|
|
212
|
-
};
|
|
89
|
+
type?: import("vue").PropType<string>;
|
|
90
|
+
default?: string;
|
|
213
91
|
};
|
|
214
92
|
isShow: {
|
|
215
|
-
type?:
|
|
216
|
-
default?:
|
|
217
|
-
} | {
|
|
218
|
-
type: any;
|
|
219
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
220
|
-
[key: string]: any;
|
|
221
|
-
} | import('../../utils/props').RequestParams | SelectOptions | {
|
|
222
|
-
label: string;
|
|
223
|
-
value: string;
|
|
224
|
-
};
|
|
93
|
+
type?: import("vue").PropType<boolean>;
|
|
94
|
+
default?: boolean;
|
|
225
95
|
};
|
|
226
96
|
isRender: {
|
|
227
|
-
type?:
|
|
228
|
-
default?:
|
|
229
|
-
} | {
|
|
230
|
-
type: any;
|
|
231
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
232
|
-
[key: string]: any;
|
|
233
|
-
} | import('../../utils/props').RequestParams | SelectOptions | {
|
|
234
|
-
label: string;
|
|
235
|
-
value: string;
|
|
236
|
-
};
|
|
97
|
+
type?: import("vue").PropType<boolean>;
|
|
98
|
+
default?: boolean;
|
|
237
99
|
};
|
|
238
100
|
events: {
|
|
239
|
-
type?:
|
|
240
|
-
default?:
|
|
241
|
-
} | {
|
|
242
|
-
type: any;
|
|
243
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
244
|
-
[key: string]: any;
|
|
245
|
-
} | import('../../utils/props').RequestParams | SelectOptions | {
|
|
246
|
-
label: string;
|
|
247
|
-
value: string;
|
|
248
|
-
};
|
|
101
|
+
type?: import("vue").PropType<import('../../utils/props').Events>;
|
|
102
|
+
default?: import('../../utils/props').Events;
|
|
249
103
|
};
|
|
250
104
|
requestUrl: {
|
|
251
|
-
type?:
|
|
252
|
-
default?:
|
|
253
|
-
} | {
|
|
254
|
-
type: any;
|
|
255
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
256
|
-
[key: string]: any;
|
|
257
|
-
} | import('../../utils/props').RequestParams | SelectOptions | {
|
|
258
|
-
label: string;
|
|
259
|
-
value: string;
|
|
260
|
-
};
|
|
105
|
+
type?: import("vue").PropType<string>;
|
|
106
|
+
default?: string;
|
|
261
107
|
};
|
|
262
108
|
requestMethod: {
|
|
263
|
-
type?:
|
|
264
|
-
default?:
|
|
265
|
-
} | {
|
|
266
|
-
type: any;
|
|
267
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
268
|
-
[key: string]: any;
|
|
269
|
-
} | import('../../utils/props').RequestParams | SelectOptions | {
|
|
270
|
-
label: string;
|
|
271
|
-
value: string;
|
|
272
|
-
};
|
|
109
|
+
type?: import("vue").PropType<import('../../utils/props').RequestMethod>;
|
|
110
|
+
default?: import('../../utils/props').RequestMethod;
|
|
273
111
|
};
|
|
274
112
|
requestHeaders: {
|
|
275
|
-
type?:
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
113
|
+
type?: import("vue").PropType<{
|
|
114
|
+
[key: string]: any;
|
|
115
|
+
}>;
|
|
116
|
+
default?: {
|
|
280
117
|
[key: string]: any;
|
|
281
|
-
} | import('../../utils/props').RequestParams | SelectOptions | {
|
|
282
|
-
label: string;
|
|
283
|
-
value: string;
|
|
284
118
|
};
|
|
285
119
|
};
|
|
286
120
|
isOpenRequestTimer: {
|
|
287
|
-
type?:
|
|
288
|
-
default?:
|
|
289
|
-
} | {
|
|
290
|
-
type: any;
|
|
291
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
292
|
-
[key: string]: any;
|
|
293
|
-
} | import('../../utils/props').RequestParams | SelectOptions | {
|
|
294
|
-
label: string;
|
|
295
|
-
value: string;
|
|
296
|
-
};
|
|
121
|
+
type?: import("vue").PropType<boolean>;
|
|
122
|
+
default?: boolean;
|
|
297
123
|
};
|
|
298
124
|
requestInterval: {
|
|
299
|
-
type?:
|
|
300
|
-
default?:
|
|
301
|
-
} | {
|
|
302
|
-
type: any;
|
|
303
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
304
|
-
[key: string]: any;
|
|
305
|
-
} | import('../../utils/props').RequestParams | SelectOptions | {
|
|
306
|
-
label: string;
|
|
307
|
-
value: string;
|
|
308
|
-
};
|
|
125
|
+
type?: import("vue").PropType<number>;
|
|
126
|
+
default?: number;
|
|
309
127
|
};
|
|
310
128
|
requestParams: {
|
|
311
|
-
type?:
|
|
312
|
-
default?:
|
|
313
|
-
} | {
|
|
314
|
-
type: any;
|
|
315
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
316
|
-
[key: string]: any;
|
|
317
|
-
} | import('../../utils/props').RequestParams | SelectOptions | {
|
|
318
|
-
label: string;
|
|
319
|
-
value: string;
|
|
320
|
-
};
|
|
129
|
+
type?: import("vue").PropType<import('../../utils/props').RequestParams>;
|
|
130
|
+
default?: import('../../utils/props').RequestParams;
|
|
321
131
|
};
|
|
322
132
|
requestSort: {
|
|
323
|
-
type?:
|
|
324
|
-
default?:
|
|
325
|
-
} | {
|
|
326
|
-
type: any;
|
|
327
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
328
|
-
[key: string]: any;
|
|
329
|
-
} | import('../../utils/props').RequestParams | SelectOptions | {
|
|
330
|
-
label: string;
|
|
331
|
-
value: string;
|
|
332
|
-
};
|
|
133
|
+
type?: import("vue").PropType<number>;
|
|
134
|
+
default?: number;
|
|
333
135
|
};
|
|
334
136
|
dataType: {
|
|
335
|
-
type?:
|
|
336
|
-
default?:
|
|
337
|
-
} | {
|
|
338
|
-
type: any;
|
|
339
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
340
|
-
[key: string]: any;
|
|
341
|
-
} | import('../../utils/props').RequestParams | SelectOptions | {
|
|
342
|
-
label: string;
|
|
343
|
-
value: string;
|
|
344
|
-
};
|
|
137
|
+
type?: import("vue").PropType<"indicator" | "static" | "request">;
|
|
138
|
+
default?: "indicator" | "static" | "request";
|
|
345
139
|
};
|
|
346
140
|
};
|
|
347
141
|
export declare const selectEvents: string[];
|