@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.
Files changed (83) hide show
  1. package/dist/index.es.js +1307 -1297
  2. package/dist/index.es.js.map +1 -1
  3. package/dist/index.umd.js +6 -6
  4. package/dist/index.umd.js.map +1 -1
  5. package/dist/style.css +2 -2
  6. package/package.json +1 -1
  7. package/types/container/border/Border.vue.d.ts +144 -618
  8. package/types/container/border/index.d.ts +144 -618
  9. package/types/container/border/props.d.ts +72 -309
  10. package/types/container/modal/Modal.vue.d.ts +74 -237
  11. package/types/container/modal/index.d.ts +73 -237
  12. package/types/container/modal/props.d.ts +36 -117
  13. package/types/container/tabs/Tabs.vue.d.ts +176 -400
  14. package/types/container/tabs/index.d.ts +176 -400
  15. package/types/container/tabs/props.d.ts +88 -200
  16. package/types/control/button/Button.vue.d.ts +126 -418
  17. package/types/control/button/index.d.ts +126 -418
  18. package/types/control/button/props.d.ts +63 -209
  19. package/types/control/checkbox/Checkbox.vue.d.ts +102 -334
  20. package/types/control/checkbox/index.d.ts +102 -334
  21. package/types/control/checkbox/props.d.ts +51 -167
  22. package/types/control/date-picker/DatePicker.vue.d.ts +119 -391
  23. package/types/control/date-picker/index.d.ts +119 -391
  24. package/types/control/date-picker/props.d.ts +59 -195
  25. package/types/control/input/Input.vue.d.ts +102 -334
  26. package/types/control/input/index.d.ts +102 -334
  27. package/types/control/input/props.d.ts +51 -167
  28. package/types/control/range-picker/RangePicker.vue.d.ts +128 -420
  29. package/types/control/range-picker/index.d.ts +128 -420
  30. package/types/control/range-picker/props.d.ts +63 -209
  31. package/types/control/select/Select.vue.d.ts +125 -531
  32. package/types/control/select/index.d.ts +125 -531
  33. package/types/control/select/props.d.ts +59 -265
  34. package/types/graph/bar/Bar.vue.d.ts +374 -2044
  35. package/types/graph/bar/index.d.ts +373 -2043
  36. package/types/graph/bar/props.d.ts +166 -962
  37. package/types/graph/combo-graph/ComboGraph.vue.d.ts +340 -741
  38. package/types/graph/combo-graph/index.d.ts +339 -741
  39. package/types/graph/combo-graph/props.d.ts +154 -355
  40. package/types/graph/custom-graph/CustomGraph.vue.d.ts +100 -420
  41. package/types/graph/custom-graph/index.d.ts +100 -420
  42. package/types/graph/custom-graph/props.d.ts +50 -210
  43. package/types/graph/line/Line.vue.d.ts +364 -2546
  44. package/types/graph/line/index.d.ts +364 -2546
  45. package/types/graph/line/props.d.ts +149 -1211
  46. package/types/graph/pie/Pie.vue.d.ts +317 -722
  47. package/types/graph/pie/index.d.ts +316 -722
  48. package/types/graph/pie/props.d.ts +142 -345
  49. package/types/graph/scatter/Scatter.vue.d.ts +293 -639
  50. package/types/graph/scatter/index.d.ts +293 -639
  51. package/types/graph/scatter/props.d.ts +132 -305
  52. package/types/map/map/Map.vue.d.ts +269 -1404
  53. package/types/map/map/index.d.ts +269 -1404
  54. package/types/map/map/props.d.ts +121 -664
  55. package/types/media/iframe/Iframe.vue.d.ts +102 -334
  56. package/types/media/iframe/index.d.ts +102 -334
  57. package/types/media/iframe/props.d.ts +51 -167
  58. package/types/media/image/Image.vue.d.ts +110 -362
  59. package/types/media/image/index.d.ts +110 -362
  60. package/types/media/image/props.d.ts +55 -181
  61. package/types/setting/page-config/PageConfig.vue.d.ts +28 -70
  62. package/types/setting/page-config/index.d.ts +28 -70
  63. package/types/setting/page-config/props.d.ts +14 -35
  64. package/types/setting/provider-config/ProviderConfig.vue.d.ts +22 -62
  65. package/types/setting/provider-config/index.d.ts +22 -62
  66. package/types/setting/provider-config/props.d.ts +11 -31
  67. package/types/table/table/Table.vue.d.ts +234 -1660
  68. package/types/table/table/index.d.ts +234 -1660
  69. package/types/table/table/props.d.ts +101 -811
  70. package/types/text/list/List.vue.d.ts +136 -688
  71. package/types/text/list/index.d.ts +136 -688
  72. package/types/text/list/props.d.ts +68 -344
  73. package/types/text/proportion/Proportion.vue.d.ts +148 -636
  74. package/types/text/proportion/index.d.ts +148 -636
  75. package/types/text/proportion/props.d.ts +74 -318
  76. package/types/text/text/Text.vue.d.ts +160 -690
  77. package/types/text/text/index.d.ts +160 -690
  78. package/types/text/text/props.d.ts +81 -346
  79. package/types/text/time-display/TimeDisplay.vue.d.ts +126 -418
  80. package/types/text/time-display/index.d.ts +126 -418
  81. package/types/text/time-display/props.d.ts +63 -209
  82. package/types/utils/props.d.ts +3 -5
  83. package/types/utils/runCode.d.ts +2 -0
@@ -20,400 +20,156 @@ export interface ProportionProps extends Props {
20
20
  export declare const proportionProps: ProportionProps;
21
21
  export declare const proportionComponentProps: {
22
22
  strokeColor: {
23
- type?: undefined;
24
- default?: undefined;
25
- } | {
26
- type: any;
27
- default: string | number | boolean | import('../../utils/props').Events | {
28
- [key: string]: any;
29
- } | import('../../utils/props').RequestParams | {
30
- [key: string]: any;
31
- };
23
+ type?: import("vue").PropType<string>;
24
+ default?: string;
32
25
  };
33
26
  strokeLinecap: {
34
- type?: undefined;
35
- default?: undefined;
36
- } | {
37
- type: any;
38
- default: string | number | boolean | import('../../utils/props').Events | {
39
- [key: string]: any;
40
- } | import('../../utils/props').RequestParams | {
41
- [key: string]: any;
42
- };
27
+ type?: import("vue").PropType<"round" | "square">;
28
+ default?: "round" | "square";
43
29
  };
44
30
  trailColor: {
45
- type?: undefined;
46
- default?: undefined;
47
- } | {
48
- type: any;
49
- default: string | number | boolean | import('../../utils/props').Events | {
50
- [key: string]: any;
51
- } | import('../../utils/props').RequestParams | {
52
- [key: string]: any;
53
- };
31
+ type?: import("vue").PropType<string>;
32
+ default?: string;
54
33
  };
55
34
  strokeType: {
56
- type?: undefined;
57
- default?: undefined;
58
- } | {
59
- type: any;
60
- default: string | number | boolean | import('../../utils/props').Events | {
61
- [key: string]: any;
62
- } | import('../../utils/props').RequestParams | {
63
- [key: string]: any;
64
- };
35
+ type?: import("vue").PropType<"circle" | "dashboard">;
36
+ default?: "circle" | "dashboard";
65
37
  };
66
38
  data: {
67
- type?: undefined;
68
- default?: undefined;
69
- } | {
70
- type: any;
71
- default: string | number | boolean | import('../../utils/props').Events | {
39
+ type?: import("vue").PropType<{
72
40
  [key: string]: any;
73
- } | import('../../utils/props').RequestParams | {
41
+ }>;
42
+ default?: {
74
43
  [key: string]: any;
75
44
  };
76
45
  };
77
46
  text: {
78
- type?: undefined;
79
- default?: undefined;
80
- } | {
81
- type: any;
82
- default: string | number | boolean | import('../../utils/props').Events | {
83
- [key: string]: any;
84
- } | import('../../utils/props').RequestParams | {
85
- [key: string]: any;
86
- };
47
+ type?: import("vue").PropType<string>;
48
+ default?: string;
87
49
  };
88
50
  fontSize: {
89
- type?: undefined;
90
- default?: undefined;
91
- } | {
92
- type: any;
93
- default: string | number | boolean | import('../../utils/props').Events | {
94
- [key: string]: any;
95
- } | import('../../utils/props').RequestParams | {
96
- [key: string]: any;
97
- };
51
+ type?: import("vue").PropType<string>;
52
+ default?: string;
98
53
  };
99
54
  color: {
100
- type?: undefined;
101
- default?: undefined;
102
- } | {
103
- type: any;
104
- default: string | number | boolean | import('../../utils/props').Events | {
105
- [key: string]: any;
106
- } | import('../../utils/props').RequestParams | {
107
- [key: string]: any;
108
- };
55
+ type?: import("vue").PropType<string>;
56
+ default?: string;
109
57
  };
110
58
  strokeWidth: {
111
- type?: undefined;
112
- default?: undefined;
113
- } | {
114
- type: any;
115
- default: string | number | boolean | import('../../utils/props').Events | {
116
- [key: string]: any;
117
- } | import('../../utils/props').RequestParams | {
118
- [key: string]: any;
119
- };
59
+ type?: import("vue").PropType<number>;
60
+ default?: number;
120
61
  };
121
62
  fontWeight: {
122
- type?: undefined;
123
- default?: undefined;
124
- } | {
125
- type: any;
126
- default: string | number | boolean | import('../../utils/props').Events | {
127
- [key: string]: any;
128
- } | import('../../utils/props').RequestParams | {
129
- [key: string]: any;
130
- };
63
+ type?: import("vue").PropType<number>;
64
+ default?: number;
131
65
  };
132
66
  strokeTextWidth: {
133
- type?: undefined;
134
- default?: undefined;
135
- } | {
136
- type: any;
137
- default: string | number | boolean | import('../../utils/props').Events | {
138
- [key: string]: any;
139
- } | import('../../utils/props').RequestParams | {
140
- [key: string]: any;
141
- };
67
+ type?: import("vue").PropType<string>;
68
+ default?: string;
142
69
  };
143
70
  lineHeight: {
144
- type?: undefined;
145
- default?: undefined;
146
- } | {
147
- type: any;
148
- default: string | number | boolean | import('../../utils/props').Events | {
149
- [key: string]: any;
150
- } | import('../../utils/props').RequestParams | {
151
- [key: string]: any;
152
- };
71
+ type?: import("vue").PropType<string>;
72
+ default?: string;
153
73
  };
154
74
  decimalFormat: {
155
- type?: undefined;
156
- default?: undefined;
157
- } | {
158
- type: any;
159
- default: string | number | boolean | import('../../utils/props').Events | {
160
- [key: string]: any;
161
- } | import('../../utils/props').RequestParams | {
162
- [key: string]: any;
163
- };
75
+ type?: import("vue").PropType<boolean>;
76
+ default?: boolean;
164
77
  };
165
78
  variableDefaultValue: {
166
- type?: undefined;
167
- default?: undefined;
168
- } | {
169
- type: any;
170
- default: string | number | boolean | import('../../utils/props').Events | {
171
- [key: string]: any;
172
- } | import('../../utils/props').RequestParams | {
173
- [key: string]: any;
174
- };
79
+ type?: import("vue").PropType<string>;
80
+ default?: string;
175
81
  };
176
82
  id: {
177
- type?: undefined;
178
- default?: undefined;
179
- } | {
180
- type: any;
181
- default: string | number | boolean | import('../../utils/props').Events | {
182
- [key: string]: any;
183
- } | import('../../utils/props').RequestParams | {
184
- [key: string]: any;
185
- };
83
+ type?: import("vue").PropType<string>;
84
+ default?: string;
186
85
  };
187
86
  name: {
188
- type?: undefined;
189
- default?: undefined;
190
- } | {
191
- type: any;
192
- default: string | number | boolean | import('../../utils/props').Events | {
193
- [key: string]: any;
194
- } | import('../../utils/props').RequestParams | {
195
- [key: string]: any;
196
- };
87
+ type?: import("vue").PropType<string>;
88
+ default?: string;
197
89
  };
198
90
  keyName: {
199
- type?: undefined;
200
- default?: undefined;
201
- } | {
202
- type: any;
203
- default: string | number | boolean | import('../../utils/props').Events | {
204
- [key: string]: any;
205
- } | import('../../utils/props').RequestParams | {
206
- [key: string]: any;
207
- };
91
+ type?: import("vue").PropType<string>;
92
+ default?: string;
208
93
  };
209
94
  type: {
210
- type?: undefined;
211
- default?: undefined;
212
- } | {
213
- type: any;
214
- default: string | number | boolean | import('../../utils/props').Events | {
215
- [key: string]: any;
216
- } | import('../../utils/props').RequestParams | {
217
- [key: string]: any;
218
- };
95
+ type?: import("vue").PropType<string>;
96
+ default?: string;
219
97
  };
220
98
  width: {
221
- type?: undefined;
222
- default?: undefined;
223
- } | {
224
- type: any;
225
- default: string | number | boolean | import('../../utils/props').Events | {
226
- [key: string]: any;
227
- } | import('../../utils/props').RequestParams | {
228
- [key: string]: any;
229
- };
99
+ type?: import("vue").PropType<string>;
100
+ default?: string;
230
101
  };
231
102
  height: {
232
- type?: undefined;
233
- default?: undefined;
234
- } | {
235
- type: any;
236
- default: string | number | boolean | import('../../utils/props').Events | {
237
- [key: string]: any;
238
- } | import('../../utils/props').RequestParams | {
239
- [key: string]: any;
240
- };
103
+ type?: import("vue").PropType<string>;
104
+ default?: string;
241
105
  };
242
106
  position: {
243
- type?: undefined;
244
- default?: undefined;
245
- } | {
246
- type: any;
247
- default: string | number | boolean | import('../../utils/props').Events | {
248
- [key: string]: any;
249
- } | import('../../utils/props').RequestParams | {
250
- [key: string]: any;
251
- };
107
+ type?: import("vue").PropType<string>;
108
+ default?: string;
252
109
  };
253
110
  top: {
254
- type?: undefined;
255
- default?: undefined;
256
- } | {
257
- type: any;
258
- default: string | number | boolean | import('../../utils/props').Events | {
259
- [key: string]: any;
260
- } | import('../../utils/props').RequestParams | {
261
- [key: string]: any;
262
- };
111
+ type?: import("vue").PropType<string>;
112
+ default?: string;
263
113
  };
264
114
  left: {
265
- type?: undefined;
266
- default?: undefined;
267
- } | {
268
- type: any;
269
- default: string | number | boolean | import('../../utils/props').Events | {
270
- [key: string]: any;
271
- } | import('../../utils/props').RequestParams | {
272
- [key: string]: any;
273
- };
115
+ type?: import("vue").PropType<string>;
116
+ default?: string;
274
117
  };
275
118
  zIndex: {
276
- type?: undefined;
277
- default?: undefined;
278
- } | {
279
- type: any;
280
- default: string | number | boolean | import('../../utils/props').Events | {
281
- [key: string]: any;
282
- } | import('../../utils/props').RequestParams | {
283
- [key: string]: any;
284
- };
119
+ type?: import("vue").PropType<number>;
120
+ default?: number;
285
121
  };
286
122
  rotate: {
287
- type?: undefined;
288
- default?: undefined;
289
- } | {
290
- type: any;
291
- default: string | number | boolean | import('../../utils/props').Events | {
292
- [key: string]: any;
293
- } | import('../../utils/props').RequestParams | {
294
- [key: string]: any;
295
- };
123
+ type?: import("vue").PropType<string>;
124
+ default?: string;
296
125
  };
297
126
  isShow: {
298
- type?: undefined;
299
- default?: undefined;
300
- } | {
301
- type: any;
302
- default: string | number | boolean | import('../../utils/props').Events | {
303
- [key: string]: any;
304
- } | import('../../utils/props').RequestParams | {
305
- [key: string]: any;
306
- };
127
+ type?: import("vue").PropType<boolean>;
128
+ default?: boolean;
307
129
  };
308
130
  isRender: {
309
- type?: undefined;
310
- default?: undefined;
311
- } | {
312
- type: any;
313
- default: string | number | boolean | import('../../utils/props').Events | {
314
- [key: string]: any;
315
- } | import('../../utils/props').RequestParams | {
316
- [key: string]: any;
317
- };
131
+ type?: import("vue").PropType<boolean>;
132
+ default?: boolean;
318
133
  };
319
134
  events: {
320
- type?: undefined;
321
- default?: undefined;
322
- } | {
323
- type: any;
324
- default: string | number | boolean | import('../../utils/props').Events | {
325
- [key: string]: any;
326
- } | import('../../utils/props').RequestParams | {
327
- [key: string]: any;
328
- };
135
+ type?: import("vue").PropType<import('../../utils/props').Events>;
136
+ default?: import('../../utils/props').Events;
329
137
  };
330
138
  requestUrl: {
331
- type?: undefined;
332
- default?: undefined;
333
- } | {
334
- type: any;
335
- default: string | number | boolean | import('../../utils/props').Events | {
336
- [key: string]: any;
337
- } | import('../../utils/props').RequestParams | {
338
- [key: string]: any;
339
- };
139
+ type?: import("vue").PropType<string>;
140
+ default?: string;
340
141
  };
341
142
  requestMethod: {
342
- type?: undefined;
343
- default?: undefined;
344
- } | {
345
- type: any;
346
- default: string | number | boolean | import('../../utils/props').Events | {
347
- [key: string]: any;
348
- } | import('../../utils/props').RequestParams | {
349
- [key: string]: any;
350
- };
143
+ type?: import("vue").PropType<import('../../utils/props').RequestMethod>;
144
+ default?: import('../../utils/props').RequestMethod;
351
145
  };
352
146
  requestHeaders: {
353
- type?: undefined;
354
- default?: undefined;
355
- } | {
356
- type: any;
357
- default: string | number | boolean | import('../../utils/props').Events | {
147
+ type?: import("vue").PropType<{
358
148
  [key: string]: any;
359
- } | import('../../utils/props').RequestParams | {
149
+ }>;
150
+ default?: {
360
151
  [key: string]: any;
361
152
  };
362
153
  };
363
154
  isOpenRequestTimer: {
364
- type?: undefined;
365
- default?: undefined;
366
- } | {
367
- type: any;
368
- default: string | number | boolean | import('../../utils/props').Events | {
369
- [key: string]: any;
370
- } | import('../../utils/props').RequestParams | {
371
- [key: string]: any;
372
- };
155
+ type?: import("vue").PropType<boolean>;
156
+ default?: boolean;
373
157
  };
374
158
  requestInterval: {
375
- type?: undefined;
376
- default?: undefined;
377
- } | {
378
- type: any;
379
- default: string | number | boolean | import('../../utils/props').Events | {
380
- [key: string]: any;
381
- } | import('../../utils/props').RequestParams | {
382
- [key: string]: any;
383
- };
159
+ type?: import("vue").PropType<number>;
160
+ default?: number;
384
161
  };
385
162
  requestParams: {
386
- type?: undefined;
387
- default?: undefined;
388
- } | {
389
- type: any;
390
- default: string | number | boolean | import('../../utils/props').Events | {
391
- [key: string]: any;
392
- } | import('../../utils/props').RequestParams | {
393
- [key: string]: any;
394
- };
163
+ type?: import("vue").PropType<import('../../utils/props').RequestParams>;
164
+ default?: import('../../utils/props').RequestParams;
395
165
  };
396
166
  requestSort: {
397
- type?: undefined;
398
- default?: undefined;
399
- } | {
400
- type: any;
401
- default: string | number | boolean | import('../../utils/props').Events | {
402
- [key: string]: any;
403
- } | import('../../utils/props').RequestParams | {
404
- [key: string]: any;
405
- };
167
+ type?: import("vue").PropType<number>;
168
+ default?: number;
406
169
  };
407
170
  dataType: {
408
- type?: undefined;
409
- default?: undefined;
410
- } | {
411
- type: any;
412
- default: string | number | boolean | import('../../utils/props').Events | {
413
- [key: string]: any;
414
- } | import('../../utils/props').RequestParams | {
415
- [key: string]: any;
416
- };
171
+ type?: import("vue").PropType<"indicator" | "static" | "request">;
172
+ default?: "indicator" | "static" | "request";
417
173
  };
418
174
  };
419
175
  export declare const proportionEvents: string[];