@ecan-bi/datav 1.0.14 → 1.0.17

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