@ecan-bi/datav 1.0.41 → 1.0.44

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 (62) hide show
  1. package/dist/index.es.js +906 -255
  2. package/dist/index.es.js.map +1 -1
  3. package/dist/index.umd.js +906 -252
  4. package/dist/index.umd.js.map +1 -1
  5. package/dist/style.css +149 -86
  6. package/package.json +1 -1
  7. package/types/_utils/constant.d.ts +3 -1
  8. package/types/_utils/hooks/index.d.ts +2 -0
  9. package/types/_utils/hooks/useHrefParamsToGlobalVariables.d.ts +2 -0
  10. package/types/_utils/hooks/useIndicatorData.d.ts +4 -0
  11. package/types/container/border/Border.vue.d.ts +183 -54
  12. package/types/container/border/index.d.ts +130 -1
  13. package/types/container/border/props.d.ts +115 -55
  14. package/types/container/modal/Modal.vue.d.ts +1 -1
  15. package/types/container/modal/index.d.ts +1 -1
  16. package/types/control/button/Button.vue.d.ts +110 -0
  17. package/types/control/button/index.d.ts +111 -1
  18. package/types/control/button/props.d.ts +104 -44
  19. package/types/control/date-picker/props.d.ts +52 -52
  20. package/types/control/input/props.d.ts +48 -48
  21. package/types/control/range-picker/RangePicker.vue.d.ts +52 -52
  22. package/types/control/range-picker/props.d.ts +52 -52
  23. package/types/control/select/Select.vue.d.ts +50 -50
  24. package/types/control/select/props.d.ts +50 -50
  25. package/types/control/tabs/Tabs.vue.d.ts +42 -0
  26. package/types/control/tabs/index.d.ts +42 -0
  27. package/types/control/tabs/props.d.ts +24 -0
  28. package/types/graph/bar/Bar.vue.d.ts +128 -128
  29. package/types/graph/bar/index.d.ts +128 -128
  30. package/types/graph/bar/props.d.ts +65 -65
  31. package/types/graph/combo-graph/ComboGraph.vue.d.ts +155 -0
  32. package/types/graph/combo-graph/index.d.ts +155 -0
  33. package/types/graph/combo-graph/props.d.ts +72 -0
  34. package/types/graph/custom-graph/props.d.ts +48 -48
  35. package/types/graph/line/Line.vue.d.ts +155 -0
  36. package/types/graph/line/index.d.ts +155 -0
  37. package/types/graph/line/props.d.ts +72 -0
  38. package/types/graph/pie/Pie.vue.d.ts +155 -0
  39. package/types/graph/pie/index.d.ts +155 -0
  40. package/types/graph/pie/props.d.ts +72 -0
  41. package/types/graph/scatter/Scatter.vue.d.ts +155 -0
  42. package/types/graph/scatter/index.d.ts +155 -0
  43. package/types/graph/scatter/props.d.ts +72 -0
  44. package/types/map/map/props.d.ts +112 -112
  45. package/types/media/image/props.d.ts +52 -52
  46. package/types/setting/index.d.ts +1 -0
  47. package/types/setting/provider-config/ProviderConfig.vue.d.ts +36 -6
  48. package/types/setting/provider-config/index.d.ts +37 -7
  49. package/types/setting/provider-config/props.d.ts +21 -3
  50. package/types/setting/renderer/Renderer.vue.d.ts +22 -0
  51. package/types/setting/renderer/index.d.ts +23 -0
  52. package/types/setting/renderer/props.d.ts +17 -0
  53. package/types/table/table/Table.vue.d.ts +900 -79
  54. package/types/table/table/index.d.ts +899 -79
  55. package/types/table/table/props.d.ts +451 -39
  56. package/types/text/list/List.vue.d.ts +64 -64
  57. package/types/text/list/props.d.ts +64 -64
  58. package/types/text/proportion/Proportion.vue.d.ts +68 -68
  59. package/types/text/proportion/props.d.ts +68 -68
  60. package/types/text/text/Text.vue.d.ts +66 -66
  61. package/types/text/text/props.d.ts +66 -66
  62. package/types/text/time-display/props.d.ts +60 -60
@@ -22,9 +22,9 @@ export declare const proportionComponentProps: {
22
22
  default?: undefined;
23
23
  } | {
24
24
  type: any;
25
- default: string | number | boolean | import("../../_utils/props").Events | {
25
+ default: string | number | boolean | import('../../_utils/props').Events | {
26
26
  [key: string]: any;
27
- } | import("../../_utils/props").RequestParams | {
27
+ } | import('../../_utils/props').RequestParams | {
28
28
  [key: string]: any;
29
29
  };
30
30
  };
@@ -33,9 +33,9 @@ export declare const proportionComponentProps: {
33
33
  default?: undefined;
34
34
  } | {
35
35
  type: any;
36
- default: string | number | boolean | import("../../_utils/props").Events | {
36
+ default: string | number | boolean | import('../../_utils/props').Events | {
37
37
  [key: string]: any;
38
- } | import("../../_utils/props").RequestParams | {
38
+ } | import('../../_utils/props').RequestParams | {
39
39
  [key: string]: any;
40
40
  };
41
41
  };
@@ -44,9 +44,9 @@ export declare const proportionComponentProps: {
44
44
  default?: undefined;
45
45
  } | {
46
46
  type: any;
47
- default: string | number | boolean | import("../../_utils/props").Events | {
47
+ default: string | number | boolean | import('../../_utils/props').Events | {
48
48
  [key: string]: any;
49
- } | import("../../_utils/props").RequestParams | {
49
+ } | import('../../_utils/props').RequestParams | {
50
50
  [key: string]: any;
51
51
  };
52
52
  };
@@ -55,9 +55,9 @@ export declare const proportionComponentProps: {
55
55
  default?: undefined;
56
56
  } | {
57
57
  type: any;
58
- default: string | number | boolean | import("../../_utils/props").Events | {
58
+ default: string | number | boolean | import('../../_utils/props').Events | {
59
59
  [key: string]: any;
60
- } | import("../../_utils/props").RequestParams | {
60
+ } | import('../../_utils/props').RequestParams | {
61
61
  [key: string]: any;
62
62
  };
63
63
  };
@@ -66,9 +66,9 @@ export declare const proportionComponentProps: {
66
66
  default?: undefined;
67
67
  } | {
68
68
  type: any;
69
- default: string | number | boolean | import("../../_utils/props").Events | {
69
+ default: string | number | boolean | import('../../_utils/props').Events | {
70
70
  [key: string]: any;
71
- } | import("../../_utils/props").RequestParams | {
71
+ } | import('../../_utils/props').RequestParams | {
72
72
  [key: string]: any;
73
73
  };
74
74
  };
@@ -77,9 +77,9 @@ export declare const proportionComponentProps: {
77
77
  default?: undefined;
78
78
  } | {
79
79
  type: any;
80
- default: string | number | boolean | import("../../_utils/props").Events | {
80
+ default: string | number | boolean | import('../../_utils/props').Events | {
81
81
  [key: string]: any;
82
- } | import("../../_utils/props").RequestParams | {
82
+ } | import('../../_utils/props').RequestParams | {
83
83
  [key: string]: any;
84
84
  };
85
85
  };
@@ -88,9 +88,9 @@ export declare const proportionComponentProps: {
88
88
  default?: undefined;
89
89
  } | {
90
90
  type: any;
91
- default: string | number | boolean | import("../../_utils/props").Events | {
91
+ default: string | number | boolean | import('../../_utils/props').Events | {
92
92
  [key: string]: any;
93
- } | import("../../_utils/props").RequestParams | {
93
+ } | import('../../_utils/props').RequestParams | {
94
94
  [key: string]: any;
95
95
  };
96
96
  };
@@ -99,9 +99,9 @@ export declare const proportionComponentProps: {
99
99
  default?: undefined;
100
100
  } | {
101
101
  type: any;
102
- default: string | number | boolean | import("../../_utils/props").Events | {
102
+ default: string | number | boolean | import('../../_utils/props').Events | {
103
103
  [key: string]: any;
104
- } | import("../../_utils/props").RequestParams | {
104
+ } | import('../../_utils/props').RequestParams | {
105
105
  [key: string]: any;
106
106
  };
107
107
  };
@@ -110,9 +110,9 @@ export declare const proportionComponentProps: {
110
110
  default?: undefined;
111
111
  } | {
112
112
  type: any;
113
- default: string | number | boolean | import("../../_utils/props").Events | {
113
+ default: string | number | boolean | import('../../_utils/props').Events | {
114
114
  [key: string]: any;
115
- } | import("../../_utils/props").RequestParams | {
115
+ } | import('../../_utils/props').RequestParams | {
116
116
  [key: string]: any;
117
117
  };
118
118
  };
@@ -121,9 +121,9 @@ export declare const proportionComponentProps: {
121
121
  default?: undefined;
122
122
  } | {
123
123
  type: any;
124
- default: string | number | boolean | import("../../_utils/props").Events | {
124
+ default: string | number | boolean | import('../../_utils/props').Events | {
125
125
  [key: string]: any;
126
- } | import("../../_utils/props").RequestParams | {
126
+ } | import('../../_utils/props').RequestParams | {
127
127
  [key: string]: any;
128
128
  };
129
129
  };
@@ -132,9 +132,9 @@ export declare const proportionComponentProps: {
132
132
  default?: undefined;
133
133
  } | {
134
134
  type: any;
135
- default: string | number | boolean | import("../../_utils/props").Events | {
135
+ default: string | number | boolean | import('../../_utils/props').Events | {
136
136
  [key: string]: any;
137
- } | import("../../_utils/props").RequestParams | {
137
+ } | import('../../_utils/props').RequestParams | {
138
138
  [key: string]: any;
139
139
  };
140
140
  };
@@ -143,9 +143,9 @@ export declare const proportionComponentProps: {
143
143
  default?: undefined;
144
144
  } | {
145
145
  type: any;
146
- default: string | number | boolean | import("../../_utils/props").Events | {
146
+ default: string | number | boolean | import('../../_utils/props').Events | {
147
147
  [key: string]: any;
148
- } | import("../../_utils/props").RequestParams | {
148
+ } | import('../../_utils/props').RequestParams | {
149
149
  [key: string]: any;
150
150
  };
151
151
  };
@@ -154,9 +154,9 @@ export declare const proportionComponentProps: {
154
154
  default?: undefined;
155
155
  } | {
156
156
  type: any;
157
- default: string | number | boolean | import("../../_utils/props").Events | {
157
+ default: string | number | boolean | import('../../_utils/props').Events | {
158
158
  [key: string]: any;
159
- } | import("../../_utils/props").RequestParams | {
159
+ } | import('../../_utils/props').RequestParams | {
160
160
  [key: string]: any;
161
161
  };
162
162
  };
@@ -165,9 +165,9 @@ export declare const proportionComponentProps: {
165
165
  default?: undefined;
166
166
  } | {
167
167
  type: any;
168
- default: string | number | boolean | import("../../_utils/props").Events | {
168
+ default: string | number | boolean | import('../../_utils/props').Events | {
169
169
  [key: string]: any;
170
- } | import("../../_utils/props").RequestParams | {
170
+ } | import('../../_utils/props').RequestParams | {
171
171
  [key: string]: any;
172
172
  };
173
173
  };
@@ -176,9 +176,9 @@ export declare const proportionComponentProps: {
176
176
  default?: undefined;
177
177
  } | {
178
178
  type: any;
179
- default: string | number | boolean | import("../../_utils/props").Events | {
179
+ default: string | number | boolean | import('../../_utils/props').Events | {
180
180
  [key: string]: any;
181
- } | import("../../_utils/props").RequestParams | {
181
+ } | import('../../_utils/props').RequestParams | {
182
182
  [key: string]: any;
183
183
  };
184
184
  };
@@ -187,9 +187,9 @@ export declare const proportionComponentProps: {
187
187
  default?: undefined;
188
188
  } | {
189
189
  type: any;
190
- default: string | number | boolean | import("../../_utils/props").Events | {
190
+ default: string | number | boolean | import('../../_utils/props').Events | {
191
191
  [key: string]: any;
192
- } | import("../../_utils/props").RequestParams | {
192
+ } | import('../../_utils/props').RequestParams | {
193
193
  [key: string]: any;
194
194
  };
195
195
  };
@@ -198,9 +198,9 @@ export declare const proportionComponentProps: {
198
198
  default?: undefined;
199
199
  } | {
200
200
  type: any;
201
- default: string | number | boolean | import("../../_utils/props").Events | {
201
+ default: string | number | boolean | import('../../_utils/props').Events | {
202
202
  [key: string]: any;
203
- } | import("../../_utils/props").RequestParams | {
203
+ } | import('../../_utils/props').RequestParams | {
204
204
  [key: string]: any;
205
205
  };
206
206
  };
@@ -209,9 +209,9 @@ export declare const proportionComponentProps: {
209
209
  default?: undefined;
210
210
  } | {
211
211
  type: any;
212
- default: string | number | boolean | import("../../_utils/props").Events | {
212
+ default: string | number | boolean | import('../../_utils/props').Events | {
213
213
  [key: string]: any;
214
- } | import("../../_utils/props").RequestParams | {
214
+ } | import('../../_utils/props').RequestParams | {
215
215
  [key: string]: any;
216
216
  };
217
217
  };
@@ -220,9 +220,9 @@ export declare const proportionComponentProps: {
220
220
  default?: undefined;
221
221
  } | {
222
222
  type: any;
223
- default: string | number | boolean | import("../../_utils/props").Events | {
223
+ default: string | number | boolean | import('../../_utils/props').Events | {
224
224
  [key: string]: any;
225
- } | import("../../_utils/props").RequestParams | {
225
+ } | import('../../_utils/props').RequestParams | {
226
226
  [key: string]: any;
227
227
  };
228
228
  };
@@ -231,9 +231,9 @@ export declare const proportionComponentProps: {
231
231
  default?: undefined;
232
232
  } | {
233
233
  type: any;
234
- default: string | number | boolean | import("../../_utils/props").Events | {
234
+ default: string | number | boolean | import('../../_utils/props').Events | {
235
235
  [key: string]: any;
236
- } | import("../../_utils/props").RequestParams | {
236
+ } | import('../../_utils/props').RequestParams | {
237
237
  [key: string]: any;
238
238
  };
239
239
  };
@@ -242,9 +242,9 @@ export declare const proportionComponentProps: {
242
242
  default?: undefined;
243
243
  } | {
244
244
  type: any;
245
- default: string | number | boolean | import("../../_utils/props").Events | {
245
+ default: string | number | boolean | import('../../_utils/props').Events | {
246
246
  [key: string]: any;
247
- } | import("../../_utils/props").RequestParams | {
247
+ } | import('../../_utils/props').RequestParams | {
248
248
  [key: string]: any;
249
249
  };
250
250
  };
@@ -253,9 +253,9 @@ export declare const proportionComponentProps: {
253
253
  default?: undefined;
254
254
  } | {
255
255
  type: any;
256
- default: string | number | boolean | import("../../_utils/props").Events | {
256
+ default: string | number | boolean | import('../../_utils/props').Events | {
257
257
  [key: string]: any;
258
- } | import("../../_utils/props").RequestParams | {
258
+ } | import('../../_utils/props').RequestParams | {
259
259
  [key: string]: any;
260
260
  };
261
261
  };
@@ -264,9 +264,9 @@ export declare const proportionComponentProps: {
264
264
  default?: undefined;
265
265
  } | {
266
266
  type: any;
267
- default: string | number | boolean | import("../../_utils/props").Events | {
267
+ default: string | number | boolean | import('../../_utils/props').Events | {
268
268
  [key: string]: any;
269
- } | import("../../_utils/props").RequestParams | {
269
+ } | import('../../_utils/props').RequestParams | {
270
270
  [key: string]: any;
271
271
  };
272
272
  };
@@ -275,9 +275,9 @@ export declare const proportionComponentProps: {
275
275
  default?: undefined;
276
276
  } | {
277
277
  type: any;
278
- default: string | number | boolean | import("../../_utils/props").Events | {
278
+ default: string | number | boolean | import('../../_utils/props').Events | {
279
279
  [key: string]: any;
280
- } | import("../../_utils/props").RequestParams | {
280
+ } | import('../../_utils/props').RequestParams | {
281
281
  [key: string]: any;
282
282
  };
283
283
  };
@@ -286,9 +286,9 @@ export declare const proportionComponentProps: {
286
286
  default?: undefined;
287
287
  } | {
288
288
  type: any;
289
- default: string | number | boolean | import("../../_utils/props").Events | {
289
+ default: string | number | boolean | import('../../_utils/props').Events | {
290
290
  [key: string]: any;
291
- } | import("../../_utils/props").RequestParams | {
291
+ } | import('../../_utils/props').RequestParams | {
292
292
  [key: string]: any;
293
293
  };
294
294
  };
@@ -297,9 +297,9 @@ export declare const proportionComponentProps: {
297
297
  default?: undefined;
298
298
  } | {
299
299
  type: any;
300
- default: string | number | boolean | import("../../_utils/props").Events | {
300
+ default: string | number | boolean | import('../../_utils/props').Events | {
301
301
  [key: string]: any;
302
- } | import("../../_utils/props").RequestParams | {
302
+ } | import('../../_utils/props').RequestParams | {
303
303
  [key: string]: any;
304
304
  };
305
305
  };
@@ -308,9 +308,9 @@ export declare const proportionComponentProps: {
308
308
  default?: undefined;
309
309
  } | {
310
310
  type: any;
311
- default: string | number | boolean | import("../../_utils/props").Events | {
311
+ default: string | number | boolean | import('../../_utils/props').Events | {
312
312
  [key: string]: any;
313
- } | import("../../_utils/props").RequestParams | {
313
+ } | import('../../_utils/props').RequestParams | {
314
314
  [key: string]: any;
315
315
  };
316
316
  };
@@ -319,9 +319,9 @@ export declare const proportionComponentProps: {
319
319
  default?: undefined;
320
320
  } | {
321
321
  type: any;
322
- default: string | number | boolean | import("../../_utils/props").Events | {
322
+ default: string | number | boolean | import('../../_utils/props').Events | {
323
323
  [key: string]: any;
324
- } | import("../../_utils/props").RequestParams | {
324
+ } | import('../../_utils/props').RequestParams | {
325
325
  [key: string]: any;
326
326
  };
327
327
  };
@@ -330,9 +330,9 @@ export declare const proportionComponentProps: {
330
330
  default?: undefined;
331
331
  } | {
332
332
  type: any;
333
- default: string | number | boolean | import("../../_utils/props").Events | {
333
+ default: string | number | boolean | import('../../_utils/props').Events | {
334
334
  [key: string]: any;
335
- } | import("../../_utils/props").RequestParams | {
335
+ } | import('../../_utils/props').RequestParams | {
336
336
  [key: string]: any;
337
337
  };
338
338
  };
@@ -341,9 +341,9 @@ export declare const proportionComponentProps: {
341
341
  default?: undefined;
342
342
  } | {
343
343
  type: any;
344
- default: string | number | boolean | import("../../_utils/props").Events | {
344
+ default: string | number | boolean | import('../../_utils/props').Events | {
345
345
  [key: string]: any;
346
- } | import("../../_utils/props").RequestParams | {
346
+ } | import('../../_utils/props').RequestParams | {
347
347
  [key: string]: any;
348
348
  };
349
349
  };
@@ -352,9 +352,9 @@ export declare const proportionComponentProps: {
352
352
  default?: undefined;
353
353
  } | {
354
354
  type: any;
355
- default: string | number | boolean | import("../../_utils/props").Events | {
355
+ default: string | number | boolean | import('../../_utils/props').Events | {
356
356
  [key: string]: any;
357
- } | import("../../_utils/props").RequestParams | {
357
+ } | import('../../_utils/props').RequestParams | {
358
358
  [key: string]: any;
359
359
  };
360
360
  };
@@ -363,9 +363,9 @@ export declare const proportionComponentProps: {
363
363
  default?: undefined;
364
364
  } | {
365
365
  type: any;
366
- default: string | number | boolean | import("../../_utils/props").Events | {
366
+ default: string | number | boolean | import('../../_utils/props').Events | {
367
367
  [key: string]: any;
368
- } | import("../../_utils/props").RequestParams | {
368
+ } | import('../../_utils/props').RequestParams | {
369
369
  [key: string]: any;
370
370
  };
371
371
  };
@@ -374,9 +374,9 @@ export declare const proportionComponentProps: {
374
374
  default?: undefined;
375
375
  } | {
376
376
  type: any;
377
- default: string | number | boolean | import("../../_utils/props").Events | {
377
+ default: string | number | boolean | import('../../_utils/props').Events | {
378
378
  [key: string]: any;
379
- } | import("../../_utils/props").RequestParams | {
379
+ } | import('../../_utils/props').RequestParams | {
380
380
  [key: string]: any;
381
381
  };
382
382
  };
@@ -385,9 +385,9 @@ export declare const proportionComponentProps: {
385
385
  default?: undefined;
386
386
  } | {
387
387
  type: any;
388
- default: string | number | boolean | import("../../_utils/props").Events | {
388
+ default: string | number | boolean | import('../../_utils/props').Events | {
389
389
  [key: string]: any;
390
- } | import("../../_utils/props").RequestParams | {
390
+ } | import('../../_utils/props').RequestParams | {
391
391
  [key: string]: any;
392
392
  };
393
393
  };