@ecan-bi/datav 1.0.23 → 1.0.26

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