@ecan-bi/datav 1.0.15 → 1.0.16

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