@ecan-bi/datav 1.0.15 → 1.0.18

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 (57) hide show
  1. package/dist/_utils/constant.d.ts +1 -1
  2. package/dist/_utils/hooks/index.d.ts +1 -1
  3. package/dist/_utils/hooks/usePickEchartsData.d.ts +1 -1
  4. package/dist/_utils/hooks/useRequestData.d.ts +5 -13
  5. package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +12 -3
  6. package/dist/_utils/props.d.ts +1 -1
  7. package/dist/_utils/util.d.ts +14 -0
  8. package/dist/common/echarts/ECharts.d.ts +1 -0
  9. package/dist/container/border/props.d.ts +67 -57
  10. package/dist/container/index.d.ts +1 -0
  11. package/dist/container/modal/Modal.vue.d.ts +47 -31
  12. package/dist/container/modal/props.d.ts +29 -18
  13. package/dist/container/tabs/Tabs.vue.d.ts +271 -0
  14. package/dist/container/tabs/index.d.ts +3 -0
  15. package/dist/container/tabs/props.d.ts +219 -0
  16. package/dist/control/button/Button.vue.d.ts +53 -53
  17. package/dist/control/button/props.d.ts +49 -49
  18. package/dist/control/date-picker/DatePicker.vue.d.ts +61 -61
  19. package/dist/control/date-picker/props.d.ts +7 -7
  20. package/dist/control/input/Input.vue.d.ts +59 -59
  21. package/dist/control/input/props.d.ts +53 -53
  22. package/dist/control/range-picker/RangePicker.vue.d.ts +55 -55
  23. package/dist/control/range-picker/props.d.ts +51 -51
  24. package/dist/control/select/Select.vue.d.ts +65 -61
  25. package/dist/control/select/props.d.ts +53 -53
  26. package/dist/graph/bar/Bar.vue.d.ts +304 -57
  27. package/dist/graph/bar/props.d.ts +277 -49
  28. package/dist/graph/combo-graph/ComboGraph.vue.d.ts +880 -0
  29. package/dist/graph/combo-graph/index.d.ts +3 -0
  30. package/dist/graph/combo-graph/props.d.ts +619 -0
  31. package/dist/graph/custom-graph/CustomGraph.vue.d.ts +57 -57
  32. package/dist/graph/custom-graph/props.d.ts +53 -53
  33. package/dist/graph/index.d.ts +1 -0
  34. package/dist/graph/line/Line.vue.d.ts +286 -109
  35. package/dist/graph/line/props.d.ts +235 -49
  36. package/dist/graph/pie/Pie.vue.d.ts +332 -114
  37. package/dist/graph/pie/props.d.ts +279 -57
  38. package/dist/graph/scatter/Scatter.vue.d.ts +157 -209
  39. package/dist/graph/scatter/props.d.ts +148 -123
  40. package/dist/index.esm.js +3 -2
  41. package/dist/index.umd.js +3 -2
  42. package/dist/media/image/Image.vue.d.ts +55 -55
  43. package/dist/media/image/props.d.ts +51 -51
  44. package/dist/table/table/Table.vue.d.ts +208 -67
  45. package/dist/table/table/props.d.ts +160 -62
  46. package/dist/text/index.d.ts +2 -0
  47. package/dist/text/list/List.vue.d.ts +471 -0
  48. package/dist/text/list/index.d.ts +3 -0
  49. package/dist/text/list/props.d.ts +367 -0
  50. package/dist/text/text/Text.vue.d.ts +132 -43
  51. package/dist/text/text/props.d.ts +122 -38
  52. package/dist/text/time-display/TimeDisplay.vue.d.ts +385 -0
  53. package/dist/text/time-display/index.d.ts +3 -0
  54. package/dist/text/time-display/props.d.ts +275 -0
  55. package/package.json +2 -1
  56. package/dist/_utils/hooks/useRequestParams.d.ts +0 -5
  57. package/dist/_utils/request.d.ts +0 -2
@@ -0,0 +1,471 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ data: {
3
+ type?: undefined;
4
+ default?: undefined;
5
+ } | {
6
+ type: any;
7
+ default: string | number | boolean | {
8
+ [key: string]: any;
9
+ }[] | {
10
+ [key: string]: any;
11
+ }[] | import("../../_utils/props").Events | {
12
+ [key: string]: any;
13
+ } | import("../../_utils/props").RequestParams;
14
+ };
15
+ columns: {
16
+ type?: undefined;
17
+ default?: undefined;
18
+ } | {
19
+ type: any;
20
+ default: string | number | boolean | {
21
+ [key: string]: any;
22
+ }[] | {
23
+ [key: string]: any;
24
+ }[] | import("../../_utils/props").Events | {
25
+ [key: string]: any;
26
+ } | import("../../_utils/props").RequestParams;
27
+ };
28
+ sliceCount: {
29
+ type?: undefined;
30
+ default?: undefined;
31
+ } | {
32
+ type: any;
33
+ default: string | number | boolean | {
34
+ [key: string]: any;
35
+ }[] | {
36
+ [key: string]: any;
37
+ }[] | import("../../_utils/props").Events | {
38
+ [key: string]: any;
39
+ } | import("../../_utils/props").RequestParams;
40
+ };
41
+ backgroundColor: {
42
+ type?: undefined;
43
+ default?: undefined;
44
+ } | {
45
+ type: any;
46
+ default: string | number | boolean | {
47
+ [key: string]: any;
48
+ }[] | {
49
+ [key: string]: any;
50
+ }[] | import("../../_utils/props").Events | {
51
+ [key: string]: any;
52
+ } | import("../../_utils/props").RequestParams;
53
+ };
54
+ useRanking: {
55
+ type?: undefined;
56
+ default?: undefined;
57
+ } | {
58
+ type: any;
59
+ default: string | number | boolean | {
60
+ [key: string]: any;
61
+ }[] | {
62
+ [key: string]: any;
63
+ }[] | import("../../_utils/props").Events | {
64
+ [key: string]: any;
65
+ } | import("../../_utils/props").RequestParams;
66
+ };
67
+ useTitle: {
68
+ type?: undefined;
69
+ default?: undefined;
70
+ } | {
71
+ type: any;
72
+ default: string | number | boolean | {
73
+ [key: string]: any;
74
+ }[] | {
75
+ [key: string]: any;
76
+ }[] | import("../../_utils/props").Events | {
77
+ [key: string]: any;
78
+ } | import("../../_utils/props").RequestParams;
79
+ };
80
+ id: {
81
+ type?: undefined;
82
+ default?: undefined;
83
+ } | {
84
+ type: any;
85
+ default: string | number | boolean | {
86
+ [key: string]: any;
87
+ }[] | {
88
+ [key: string]: any;
89
+ }[] | import("../../_utils/props").Events | {
90
+ [key: string]: any;
91
+ } | import("../../_utils/props").RequestParams;
92
+ };
93
+ name: {
94
+ type?: undefined;
95
+ default?: undefined;
96
+ } | {
97
+ type: any;
98
+ default: string | number | boolean | {
99
+ [key: string]: any;
100
+ }[] | {
101
+ [key: string]: any;
102
+ }[] | import("../../_utils/props").Events | {
103
+ [key: string]: any;
104
+ } | import("../../_utils/props").RequestParams;
105
+ };
106
+ keyName: {
107
+ type?: undefined;
108
+ default?: undefined;
109
+ } | {
110
+ type: any;
111
+ default: string | number | boolean | {
112
+ [key: string]: any;
113
+ }[] | {
114
+ [key: string]: any;
115
+ }[] | import("../../_utils/props").Events | {
116
+ [key: string]: any;
117
+ } | import("../../_utils/props").RequestParams;
118
+ };
119
+ type: {
120
+ type?: undefined;
121
+ default?: undefined;
122
+ } | {
123
+ type: any;
124
+ default: string | number | boolean | {
125
+ [key: string]: any;
126
+ }[] | {
127
+ [key: string]: any;
128
+ }[] | import("../../_utils/props").Events | {
129
+ [key: string]: any;
130
+ } | import("../../_utils/props").RequestParams;
131
+ };
132
+ width: {
133
+ type?: undefined;
134
+ default?: undefined;
135
+ } | {
136
+ type: any;
137
+ default: string | number | boolean | {
138
+ [key: string]: any;
139
+ }[] | {
140
+ [key: string]: any;
141
+ }[] | import("../../_utils/props").Events | {
142
+ [key: string]: any;
143
+ } | import("../../_utils/props").RequestParams;
144
+ };
145
+ height: {
146
+ type?: undefined;
147
+ default?: undefined;
148
+ } | {
149
+ type: any;
150
+ default: string | number | boolean | {
151
+ [key: string]: any;
152
+ }[] | {
153
+ [key: string]: any;
154
+ }[] | import("../../_utils/props").Events | {
155
+ [key: string]: any;
156
+ } | import("../../_utils/props").RequestParams;
157
+ };
158
+ position: {
159
+ type?: undefined;
160
+ default?: undefined;
161
+ } | {
162
+ type: any;
163
+ default: string | number | boolean | {
164
+ [key: string]: any;
165
+ }[] | {
166
+ [key: string]: any;
167
+ }[] | import("../../_utils/props").Events | {
168
+ [key: string]: any;
169
+ } | import("../../_utils/props").RequestParams;
170
+ };
171
+ top: {
172
+ type?: undefined;
173
+ default?: undefined;
174
+ } | {
175
+ type: any;
176
+ default: string | number | boolean | {
177
+ [key: string]: any;
178
+ }[] | {
179
+ [key: string]: any;
180
+ }[] | import("../../_utils/props").Events | {
181
+ [key: string]: any;
182
+ } | import("../../_utils/props").RequestParams;
183
+ };
184
+ left: {
185
+ type?: undefined;
186
+ default?: undefined;
187
+ } | {
188
+ type: any;
189
+ default: string | number | boolean | {
190
+ [key: string]: any;
191
+ }[] | {
192
+ [key: string]: any;
193
+ }[] | import("../../_utils/props").Events | {
194
+ [key: string]: any;
195
+ } | import("../../_utils/props").RequestParams;
196
+ };
197
+ zIndex: {
198
+ type?: undefined;
199
+ default?: undefined;
200
+ } | {
201
+ type: any;
202
+ default: string | number | boolean | {
203
+ [key: string]: any;
204
+ }[] | {
205
+ [key: string]: any;
206
+ }[] | import("../../_utils/props").Events | {
207
+ [key: string]: any;
208
+ } | import("../../_utils/props").RequestParams;
209
+ };
210
+ rotate: {
211
+ type?: undefined;
212
+ default?: undefined;
213
+ } | {
214
+ type: any;
215
+ default: string | number | boolean | {
216
+ [key: string]: any;
217
+ }[] | {
218
+ [key: string]: any;
219
+ }[] | import("../../_utils/props").Events | {
220
+ [key: string]: any;
221
+ } | import("../../_utils/props").RequestParams;
222
+ };
223
+ isShow: {
224
+ type?: undefined;
225
+ default?: undefined;
226
+ } | {
227
+ type: any;
228
+ default: string | number | boolean | {
229
+ [key: string]: any;
230
+ }[] | {
231
+ [key: string]: any;
232
+ }[] | import("../../_utils/props").Events | {
233
+ [key: string]: any;
234
+ } | import("../../_utils/props").RequestParams;
235
+ };
236
+ isRender: {
237
+ type?: undefined;
238
+ default?: undefined;
239
+ } | {
240
+ type: any;
241
+ default: string | number | boolean | {
242
+ [key: string]: any;
243
+ }[] | {
244
+ [key: string]: any;
245
+ }[] | import("../../_utils/props").Events | {
246
+ [key: string]: any;
247
+ } | import("../../_utils/props").RequestParams;
248
+ };
249
+ isRequestData: {
250
+ type?: undefined;
251
+ default?: undefined;
252
+ } | {
253
+ type: any;
254
+ default: string | number | boolean | {
255
+ [key: string]: any;
256
+ }[] | {
257
+ [key: string]: any;
258
+ }[] | import("../../_utils/props").Events | {
259
+ [key: string]: any;
260
+ } | import("../../_utils/props").RequestParams;
261
+ };
262
+ events: {
263
+ type?: undefined;
264
+ default?: undefined;
265
+ } | {
266
+ type: any;
267
+ default: string | number | boolean | {
268
+ [key: string]: any;
269
+ }[] | {
270
+ [key: string]: any;
271
+ }[] | import("../../_utils/props").Events | {
272
+ [key: string]: any;
273
+ } | import("../../_utils/props").RequestParams;
274
+ };
275
+ requestUrl: {
276
+ type?: undefined;
277
+ default?: undefined;
278
+ } | {
279
+ type: any;
280
+ default: string | number | boolean | {
281
+ [key: string]: any;
282
+ }[] | {
283
+ [key: string]: any;
284
+ }[] | import("../../_utils/props").Events | {
285
+ [key: string]: any;
286
+ } | import("../../_utils/props").RequestParams;
287
+ };
288
+ requestMethod: {
289
+ type?: undefined;
290
+ default?: undefined;
291
+ } | {
292
+ type: any;
293
+ default: string | number | boolean | {
294
+ [key: string]: any;
295
+ }[] | {
296
+ [key: string]: any;
297
+ }[] | import("../../_utils/props").Events | {
298
+ [key: string]: any;
299
+ } | import("../../_utils/props").RequestParams;
300
+ };
301
+ requestHeaders: {
302
+ type?: undefined;
303
+ default?: undefined;
304
+ } | {
305
+ type: any;
306
+ default: string | number | boolean | {
307
+ [key: string]: any;
308
+ }[] | {
309
+ [key: string]: any;
310
+ }[] | import("../../_utils/props").Events | {
311
+ [key: string]: any;
312
+ } | import("../../_utils/props").RequestParams;
313
+ };
314
+ isOpenRequestTimer: {
315
+ type?: undefined;
316
+ default?: undefined;
317
+ } | {
318
+ type: any;
319
+ default: string | number | boolean | {
320
+ [key: string]: any;
321
+ }[] | {
322
+ [key: string]: any;
323
+ }[] | import("../../_utils/props").Events | {
324
+ [key: string]: any;
325
+ } | import("../../_utils/props").RequestParams;
326
+ };
327
+ requestInterval: {
328
+ type?: undefined;
329
+ default?: undefined;
330
+ } | {
331
+ type: any;
332
+ default: string | number | boolean | {
333
+ [key: string]: any;
334
+ }[] | {
335
+ [key: string]: any;
336
+ }[] | import("../../_utils/props").Events | {
337
+ [key: string]: any;
338
+ } | import("../../_utils/props").RequestParams;
339
+ };
340
+ requestParams: {
341
+ type?: undefined;
342
+ default?: undefined;
343
+ } | {
344
+ type: any;
345
+ default: string | number | boolean | {
346
+ [key: string]: any;
347
+ }[] | {
348
+ [key: string]: any;
349
+ }[] | import("../../_utils/props").Events | {
350
+ [key: string]: any;
351
+ } | import("../../_utils/props").RequestParams;
352
+ };
353
+ }, {
354
+ style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
355
+ formatFn: (value: string | number, format?: "" | "money" | "percentage" | "contrast") => string | number;
356
+ columnStyle: import("vue").ComputedRef<{
357
+ textAlign: string;
358
+ }>;
359
+ contrastClass: (value: string | number, format: "" | "money" | "percentage" | "contrast") => "" | "goUp" | "goDown";
360
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
361
+ data?: unknown;
362
+ columns?: unknown;
363
+ sliceCount?: unknown;
364
+ backgroundColor?: unknown;
365
+ useRanking?: unknown;
366
+ useTitle?: unknown;
367
+ id?: unknown;
368
+ name?: unknown;
369
+ keyName?: unknown;
370
+ type?: unknown;
371
+ width?: unknown;
372
+ height?: unknown;
373
+ position?: unknown;
374
+ top?: unknown;
375
+ left?: unknown;
376
+ zIndex?: unknown;
377
+ rotate?: unknown;
378
+ isShow?: unknown;
379
+ isRender?: unknown;
380
+ isRequestData?: unknown;
381
+ events?: unknown;
382
+ requestUrl?: unknown;
383
+ requestMethod?: unknown;
384
+ requestHeaders?: unknown;
385
+ isOpenRequestTimer?: unknown;
386
+ requestInterval?: unknown;
387
+ requestParams?: unknown;
388
+ } & {} & {
389
+ type?: string | number | boolean | {
390
+ [key: string]: any;
391
+ };
392
+ data?: string | number | boolean | {
393
+ [key: string]: any;
394
+ };
395
+ columns?: string | number | boolean | {
396
+ [key: string]: any;
397
+ };
398
+ sliceCount?: string | number | boolean | {
399
+ [key: string]: any;
400
+ };
401
+ backgroundColor?: string | number | boolean | {
402
+ [key: string]: any;
403
+ };
404
+ useRanking?: string | number | boolean | {
405
+ [key: string]: any;
406
+ };
407
+ useTitle?: string | number | boolean | {
408
+ [key: string]: any;
409
+ };
410
+ id?: string | number | boolean | {
411
+ [key: string]: any;
412
+ };
413
+ name?: string | number | boolean | {
414
+ [key: string]: any;
415
+ };
416
+ keyName?: string | number | boolean | {
417
+ [key: string]: any;
418
+ };
419
+ width?: string | number | boolean | {
420
+ [key: string]: any;
421
+ };
422
+ height?: string | number | boolean | {
423
+ [key: string]: any;
424
+ };
425
+ position?: string | number | boolean | {
426
+ [key: string]: any;
427
+ };
428
+ top?: string | number | boolean | {
429
+ [key: string]: any;
430
+ };
431
+ left?: string | number | boolean | {
432
+ [key: string]: any;
433
+ };
434
+ zIndex?: string | number | boolean | {
435
+ [key: string]: any;
436
+ };
437
+ rotate?: string | number | boolean | {
438
+ [key: string]: any;
439
+ };
440
+ isShow?: string | number | boolean | {
441
+ [key: string]: any;
442
+ };
443
+ isRender?: string | number | boolean | {
444
+ [key: string]: any;
445
+ };
446
+ isRequestData?: string | number | boolean | {
447
+ [key: string]: any;
448
+ };
449
+ events?: string | number | boolean | {
450
+ [key: string]: any;
451
+ };
452
+ requestUrl?: string | number | boolean | {
453
+ [key: string]: any;
454
+ };
455
+ requestMethod?: string | number | boolean | {
456
+ [key: string]: any;
457
+ };
458
+ requestHeaders?: string | number | boolean | {
459
+ [key: string]: any;
460
+ };
461
+ isOpenRequestTimer?: string | number | boolean | {
462
+ [key: string]: any;
463
+ };
464
+ requestInterval?: string | number | boolean | {
465
+ [key: string]: any;
466
+ };
467
+ requestParams?: string | number | boolean | {
468
+ [key: string]: any;
469
+ };
470
+ }>, {}>;
471
+ export default _default;
@@ -0,0 +1,3 @@
1
+ export declare const EcanList: import("../../_utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{}, {}, any, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>> & Record<string, any>;
2
+ export default EcanList;
3
+ export * from './props';