@ecan-bi/datav 1.0.50 → 1.0.53

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 (125) hide show
  1. package/dist/index.es.js +125 -76
  2. package/dist/index.es.js.map +1 -1
  3. package/dist/index.umd.js +124 -75
  4. package/dist/index.umd.js.map +1 -1
  5. package/dist/style.css +37 -35
  6. package/package.json +1 -1
  7. package/types/_utils/constant.d.ts +9 -0
  8. package/types/_utils/hooks/index.d.ts +15 -0
  9. package/types/_utils/hooks/useDownloadFile.d.ts +2 -0
  10. package/types/_utils/hooks/useEmitEvent.d.ts +7 -0
  11. package/types/_utils/hooks/useHrefParamsToGlobalVariables.d.ts +2 -0
  12. package/types/_utils/hooks/useImagePath.d.ts +2 -0
  13. package/types/_utils/hooks/useIndicatorData.d.ts +4 -0
  14. package/types/_utils/hooks/useOnEvent.d.ts +6 -0
  15. package/types/_utils/hooks/usePageUrl.d.ts +2 -0
  16. package/types/_utils/hooks/usePickComponentStyle.d.ts +9 -0
  17. package/types/_utils/hooks/usePickEchartsData.d.ts +2 -0
  18. package/types/_utils/hooks/useRequestData.d.ts +6 -0
  19. package/types/_utils/hooks/useRequestDiagramData.d.ts +6 -0
  20. package/types/_utils/hooks/useTooltipFormatter.d.ts +4 -0
  21. package/types/_utils/hooks/useTransformChartDataByAttrKey.d.ts +13 -0
  22. package/types/_utils/hooks/useTransformChartDataByAttrValue.d.ts +13 -0
  23. package/types/_utils/hooks/useValueFormatter.d.ts +2 -0
  24. package/types/_utils/hooks/useVariablesInText.d.ts +4 -0
  25. package/types/_utils/props.d.ts +71 -0
  26. package/types/_utils/request.d.ts +2 -0
  27. package/types/_utils/util.d.ts +20 -0
  28. package/types/_utils/withInstall.d.ts +5 -0
  29. package/types/common/echarts/Echarts.d.ts +418 -0
  30. package/types/common/echarts/composables/api.d.ts +7 -0
  31. package/types/common/echarts/composables/autoresize.d.ts +6 -0
  32. package/types/common/echarts/composables/index.d.ts +3 -0
  33. package/types/common/echarts/composables/loading.d.ts +10 -0
  34. package/types/common/echarts/index.d.ts +2 -0
  35. package/types/common/echarts/types.d.ts +20 -0
  36. package/types/common/echarts/utils.d.ts +6 -0
  37. package/types/common/index.d.ts +3 -0
  38. package/types/common/skeleton/Skeleton.vue.d.ts +14 -0
  39. package/types/common/skeleton/index.d.ts +2 -0
  40. package/types/common/spin/Spin.vue.d.ts +18 -0
  41. package/types/common/spin/index.d.ts +2 -0
  42. package/types/components.d.ts +9 -0
  43. package/types/container/border/Border.vue.d.ts +622 -0
  44. package/types/container/border/index.d.ts +622 -0
  45. package/types/container/border/props.d.ts +315 -0
  46. package/types/container/index.d.ts +3 -0
  47. package/types/container/modal/Modal.vue.d.ts +505 -0
  48. package/types/container/modal/index.d.ts +506 -0
  49. package/types/container/modal/props.d.ts +179 -0
  50. package/types/container/tabs/Tabs.vue.d.ts +475 -0
  51. package/types/container/tabs/index.d.ts +476 -0
  52. package/types/container/tabs/props.d.ts +251 -0
  53. package/types/control/button/Button.vue.d.ts +550 -0
  54. package/types/control/button/index.d.ts +550 -0
  55. package/types/control/button/props.d.ts +285 -0
  56. package/types/control/date-picker/DatePicker.vue.d.ts +480 -0
  57. package/types/control/date-picker/index.d.ts +479 -0
  58. package/types/control/date-picker/props.d.ts +245 -0
  59. package/types/control/index.d.ts +5 -0
  60. package/types/control/input/Input.vue.d.ts +438 -0
  61. package/types/control/input/index.d.ts +439 -0
  62. package/types/control/input/props.d.ts +224 -0
  63. package/types/control/range-picker/RangePicker.vue.d.ts +596 -0
  64. package/types/control/range-picker/index.d.ts +595 -0
  65. package/types/control/range-picker/props.d.ts +245 -0
  66. package/types/control/select/Select.vue.d.ts +613 -0
  67. package/types/control/select/index.d.ts +613 -0
  68. package/types/control/select/props.d.ts +321 -0
  69. package/types/graph/bar/Bar.vue.d.ts +2028 -0
  70. package/types/graph/bar/index.d.ts +2028 -0
  71. package/types/graph/bar/props.d.ts +984 -0
  72. package/types/graph/combo-graph/ComboGraph.vue.d.ts +1008 -0
  73. package/types/graph/combo-graph/index.d.ts +1009 -0
  74. package/types/graph/combo-graph/props.d.ts +501 -0
  75. package/types/graph/custom-graph/CustomGraph.vue.d.ts +537 -0
  76. package/types/graph/custom-graph/index.d.ts +537 -0
  77. package/types/graph/custom-graph/props.d.ts +274 -0
  78. package/types/graph/index.d.ts +6 -0
  79. package/types/graph/line/Line.vue.d.ts +973 -0
  80. package/types/graph/line/index.d.ts +974 -0
  81. package/types/graph/line/props.d.ts +481 -0
  82. package/types/graph/pie/Pie.vue.d.ts +1049 -0
  83. package/types/graph/pie/index.d.ts +1050 -0
  84. package/types/graph/pie/props.d.ts +533 -0
  85. package/types/graph/scatter/Scatter.vue.d.ts +949 -0
  86. package/types/graph/scatter/index.d.ts +950 -0
  87. package/types/graph/scatter/props.d.ts +468 -0
  88. package/types/index.d.ts +6 -0
  89. package/types/map/index.d.ts +1 -0
  90. package/types/map/map/Map.vue.d.ts +1699 -0
  91. package/types/map/map/index.d.ts +1700 -0
  92. package/types/map/map/props.d.ts +829 -0
  93. package/types/media/image/Image.vue.d.ts +476 -0
  94. package/types/media/image/index.d.ts +477 -0
  95. package/types/media/image/props.d.ts +244 -0
  96. package/types/media/index.d.ts +1 -0
  97. package/types/setting/index.d.ts +3 -0
  98. package/types/setting/page-config/PageConfig.vue.d.ts +112 -0
  99. package/types/setting/page-config/index.d.ts +113 -0
  100. package/types/setting/page-config/props.d.ts +61 -0
  101. package/types/setting/provider-config/ProviderConfig.vue.d.ts +78 -0
  102. package/types/setting/provider-config/index.d.ts +79 -0
  103. package/types/setting/provider-config/props.d.ts +47 -0
  104. package/types/setting/renderer/Renderer.vue.d.ts +22 -0
  105. package/types/setting/renderer/index.d.ts +23 -0
  106. package/types/setting/renderer/props.d.ts +17 -0
  107. package/types/table/index.d.ts +1 -0
  108. package/types/table/table/Table.vue.d.ts +1724 -0
  109. package/types/table/table/index.d.ts +1724 -0
  110. package/types/table/table/props.d.ts +878 -0
  111. package/types/text/index.d.ts +5 -0
  112. package/types/text/list/List.vue.d.ts +849 -0
  113. package/types/text/list/index.d.ts +849 -0
  114. package/types/text/list/props.d.ts +441 -0
  115. package/types/text/proportion/Proportion.vue.d.ts +782 -0
  116. package/types/text/proportion/index.d.ts +782 -0
  117. package/types/text/proportion/props.d.ts +407 -0
  118. package/types/text/scroll-text/ScrollText.vue.d.ts +4 -0
  119. package/types/text/scroll-text/index.d.ts +4 -0
  120. package/types/text/text/Text.vue.d.ts +736 -0
  121. package/types/text/text/index.d.ts +736 -0
  122. package/types/text/text/props.d.ts +383 -0
  123. package/types/text/time-display/TimeDisplay.vue.d.ts +547 -0
  124. package/types/text/time-display/index.d.ts +548 -0
  125. package/types/text/time-display/props.d.ts +284 -0
@@ -0,0 +1,782 @@
1
+ export declare const EcanProportion: import('../../_utils/withInstall').SFCWithInstall<import("vue").DefineComponent<{
2
+ strokeColor: {
3
+ type?: undefined;
4
+ default?: undefined;
5
+ } | {
6
+ type: any;
7
+ default: string | number | boolean | import("../../_utils/props").Events | {
8
+ [key: string]: any;
9
+ } | import("../../_utils/props").RequestParams | {
10
+ [key: string]: any;
11
+ };
12
+ };
13
+ strokeLinecap: {
14
+ type?: undefined;
15
+ default?: undefined;
16
+ } | {
17
+ type: any;
18
+ default: string | number | boolean | import("../../_utils/props").Events | {
19
+ [key: string]: any;
20
+ } | import("../../_utils/props").RequestParams | {
21
+ [key: string]: any;
22
+ };
23
+ };
24
+ trailColor: {
25
+ type?: undefined;
26
+ default?: undefined;
27
+ } | {
28
+ type: any;
29
+ default: string | number | boolean | import("../../_utils/props").Events | {
30
+ [key: string]: any;
31
+ } | import("../../_utils/props").RequestParams | {
32
+ [key: string]: any;
33
+ };
34
+ };
35
+ strokeType: {
36
+ type?: undefined;
37
+ default?: undefined;
38
+ } | {
39
+ type: any;
40
+ default: string | number | boolean | import("../../_utils/props").Events | {
41
+ [key: string]: any;
42
+ } | import("../../_utils/props").RequestParams | {
43
+ [key: string]: any;
44
+ };
45
+ };
46
+ data: {
47
+ type?: undefined;
48
+ default?: undefined;
49
+ } | {
50
+ type: any;
51
+ default: string | number | boolean | import("../../_utils/props").Events | {
52
+ [key: string]: any;
53
+ } | import("../../_utils/props").RequestParams | {
54
+ [key: string]: any;
55
+ };
56
+ };
57
+ text: {
58
+ type?: undefined;
59
+ default?: undefined;
60
+ } | {
61
+ type: any;
62
+ default: string | number | boolean | import("../../_utils/props").Events | {
63
+ [key: string]: any;
64
+ } | import("../../_utils/props").RequestParams | {
65
+ [key: string]: any;
66
+ };
67
+ };
68
+ fontSize: {
69
+ type?: undefined;
70
+ default?: undefined;
71
+ } | {
72
+ type: any;
73
+ default: string | number | boolean | import("../../_utils/props").Events | {
74
+ [key: string]: any;
75
+ } | import("../../_utils/props").RequestParams | {
76
+ [key: string]: any;
77
+ };
78
+ };
79
+ color: {
80
+ type?: undefined;
81
+ default?: undefined;
82
+ } | {
83
+ type: any;
84
+ default: string | number | boolean | import("../../_utils/props").Events | {
85
+ [key: string]: any;
86
+ } | import("../../_utils/props").RequestParams | {
87
+ [key: string]: any;
88
+ };
89
+ };
90
+ strokeWidth: {
91
+ type?: undefined;
92
+ default?: undefined;
93
+ } | {
94
+ type: any;
95
+ default: string | number | boolean | import("../../_utils/props").Events | {
96
+ [key: string]: any;
97
+ } | import("../../_utils/props").RequestParams | {
98
+ [key: string]: any;
99
+ };
100
+ };
101
+ fontWeight: {
102
+ type?: undefined;
103
+ default?: undefined;
104
+ } | {
105
+ type: any;
106
+ default: string | number | boolean | import("../../_utils/props").Events | {
107
+ [key: string]: any;
108
+ } | import("../../_utils/props").RequestParams | {
109
+ [key: string]: any;
110
+ };
111
+ };
112
+ strokeTextWidth: {
113
+ type?: undefined;
114
+ default?: undefined;
115
+ } | {
116
+ type: any;
117
+ default: string | number | boolean | import("../../_utils/props").Events | {
118
+ [key: string]: any;
119
+ } | import("../../_utils/props").RequestParams | {
120
+ [key: string]: any;
121
+ };
122
+ };
123
+ lineHeight: {
124
+ type?: undefined;
125
+ default?: undefined;
126
+ } | {
127
+ type: any;
128
+ default: string | number | boolean | import("../../_utils/props").Events | {
129
+ [key: string]: any;
130
+ } | import("../../_utils/props").RequestParams | {
131
+ [key: string]: any;
132
+ };
133
+ };
134
+ decimalFormat: {
135
+ type?: undefined;
136
+ default?: undefined;
137
+ } | {
138
+ type: any;
139
+ default: string | number | boolean | import("../../_utils/props").Events | {
140
+ [key: string]: any;
141
+ } | import("../../_utils/props").RequestParams | {
142
+ [key: string]: any;
143
+ };
144
+ };
145
+ id: {
146
+ type?: undefined;
147
+ default?: undefined;
148
+ } | {
149
+ type: any;
150
+ default: string | number | boolean | import("../../_utils/props").Events | {
151
+ [key: string]: any;
152
+ } | import("../../_utils/props").RequestParams | {
153
+ [key: string]: any;
154
+ };
155
+ };
156
+ name: {
157
+ type?: undefined;
158
+ default?: undefined;
159
+ } | {
160
+ type: any;
161
+ default: string | number | boolean | import("../../_utils/props").Events | {
162
+ [key: string]: any;
163
+ } | import("../../_utils/props").RequestParams | {
164
+ [key: string]: any;
165
+ };
166
+ };
167
+ keyName: {
168
+ type?: undefined;
169
+ default?: undefined;
170
+ } | {
171
+ type: any;
172
+ default: string | number | boolean | import("../../_utils/props").Events | {
173
+ [key: string]: any;
174
+ } | import("../../_utils/props").RequestParams | {
175
+ [key: string]: any;
176
+ };
177
+ };
178
+ type: {
179
+ type?: undefined;
180
+ default?: undefined;
181
+ } | {
182
+ type: any;
183
+ default: string | number | boolean | import("../../_utils/props").Events | {
184
+ [key: string]: any;
185
+ } | import("../../_utils/props").RequestParams | {
186
+ [key: string]: any;
187
+ };
188
+ };
189
+ width: {
190
+ type?: undefined;
191
+ default?: undefined;
192
+ } | {
193
+ type: any;
194
+ default: string | number | boolean | import("../../_utils/props").Events | {
195
+ [key: string]: any;
196
+ } | import("../../_utils/props").RequestParams | {
197
+ [key: string]: any;
198
+ };
199
+ };
200
+ height: {
201
+ type?: undefined;
202
+ default?: undefined;
203
+ } | {
204
+ type: any;
205
+ default: string | number | boolean | import("../../_utils/props").Events | {
206
+ [key: string]: any;
207
+ } | import("../../_utils/props").RequestParams | {
208
+ [key: string]: any;
209
+ };
210
+ };
211
+ position: {
212
+ type?: undefined;
213
+ default?: undefined;
214
+ } | {
215
+ type: any;
216
+ default: string | number | boolean | import("../../_utils/props").Events | {
217
+ [key: string]: any;
218
+ } | import("../../_utils/props").RequestParams | {
219
+ [key: string]: any;
220
+ };
221
+ };
222
+ top: {
223
+ type?: undefined;
224
+ default?: undefined;
225
+ } | {
226
+ type: any;
227
+ default: string | number | boolean | import("../../_utils/props").Events | {
228
+ [key: string]: any;
229
+ } | import("../../_utils/props").RequestParams | {
230
+ [key: string]: any;
231
+ };
232
+ };
233
+ left: {
234
+ type?: undefined;
235
+ default?: undefined;
236
+ } | {
237
+ type: any;
238
+ default: string | number | boolean | import("../../_utils/props").Events | {
239
+ [key: string]: any;
240
+ } | import("../../_utils/props").RequestParams | {
241
+ [key: string]: any;
242
+ };
243
+ };
244
+ zIndex: {
245
+ type?: undefined;
246
+ default?: undefined;
247
+ } | {
248
+ type: any;
249
+ default: string | number | boolean | import("../../_utils/props").Events | {
250
+ [key: string]: any;
251
+ } | import("../../_utils/props").RequestParams | {
252
+ [key: string]: any;
253
+ };
254
+ };
255
+ rotate: {
256
+ type?: undefined;
257
+ default?: undefined;
258
+ } | {
259
+ type: any;
260
+ default: string | number | boolean | import("../../_utils/props").Events | {
261
+ [key: string]: any;
262
+ } | import("../../_utils/props").RequestParams | {
263
+ [key: string]: any;
264
+ };
265
+ };
266
+ isShow: {
267
+ type?: undefined;
268
+ default?: undefined;
269
+ } | {
270
+ type: any;
271
+ default: string | number | boolean | import("../../_utils/props").Events | {
272
+ [key: string]: any;
273
+ } | import("../../_utils/props").RequestParams | {
274
+ [key: string]: any;
275
+ };
276
+ };
277
+ isRender: {
278
+ type?: undefined;
279
+ default?: undefined;
280
+ } | {
281
+ type: any;
282
+ default: string | number | boolean | import("../../_utils/props").Events | {
283
+ [key: string]: any;
284
+ } | import("../../_utils/props").RequestParams | {
285
+ [key: string]: any;
286
+ };
287
+ };
288
+ events: {
289
+ type?: undefined;
290
+ default?: undefined;
291
+ } | {
292
+ type: any;
293
+ default: string | number | boolean | import("../../_utils/props").Events | {
294
+ [key: string]: any;
295
+ } | import("../../_utils/props").RequestParams | {
296
+ [key: string]: any;
297
+ };
298
+ };
299
+ requestUrl: {
300
+ type?: undefined;
301
+ default?: undefined;
302
+ } | {
303
+ type: any;
304
+ default: string | number | boolean | import("../../_utils/props").Events | {
305
+ [key: string]: any;
306
+ } | import("../../_utils/props").RequestParams | {
307
+ [key: string]: any;
308
+ };
309
+ };
310
+ requestMethod: {
311
+ type?: undefined;
312
+ default?: undefined;
313
+ } | {
314
+ type: any;
315
+ default: string | number | boolean | import("../../_utils/props").Events | {
316
+ [key: string]: any;
317
+ } | import("../../_utils/props").RequestParams | {
318
+ [key: string]: any;
319
+ };
320
+ };
321
+ requestHeaders: {
322
+ type?: undefined;
323
+ default?: undefined;
324
+ } | {
325
+ type: any;
326
+ default: string | number | boolean | import("../../_utils/props").Events | {
327
+ [key: string]: any;
328
+ } | import("../../_utils/props").RequestParams | {
329
+ [key: string]: any;
330
+ };
331
+ };
332
+ isOpenRequestTimer: {
333
+ type?: undefined;
334
+ default?: undefined;
335
+ } | {
336
+ type: any;
337
+ default: string | number | boolean | import("../../_utils/props").Events | {
338
+ [key: string]: any;
339
+ } | import("../../_utils/props").RequestParams | {
340
+ [key: string]: any;
341
+ };
342
+ };
343
+ requestInterval: {
344
+ type?: undefined;
345
+ default?: undefined;
346
+ } | {
347
+ type: any;
348
+ default: string | number | boolean | import("../../_utils/props").Events | {
349
+ [key: string]: any;
350
+ } | import("../../_utils/props").RequestParams | {
351
+ [key: string]: any;
352
+ };
353
+ };
354
+ requestParams: {
355
+ type?: undefined;
356
+ default?: undefined;
357
+ } | {
358
+ type: any;
359
+ default: string | number | boolean | import("../../_utils/props").Events | {
360
+ [key: string]: any;
361
+ } | import("../../_utils/props").RequestParams | {
362
+ [key: string]: any;
363
+ };
364
+ };
365
+ requestSort: {
366
+ type?: undefined;
367
+ default?: undefined;
368
+ } | {
369
+ type: any;
370
+ default: string | number | boolean | import("../../_utils/props").Events | {
371
+ [key: string]: any;
372
+ } | import("../../_utils/props").RequestParams | {
373
+ [key: string]: any;
374
+ };
375
+ };
376
+ dataType: {
377
+ type?: undefined;
378
+ default?: undefined;
379
+ } | {
380
+ type: any;
381
+ default: string | number | boolean | import("../../_utils/props").Events | {
382
+ [key: string]: any;
383
+ } | import("../../_utils/props").RequestParams | {
384
+ [key: string]: any;
385
+ };
386
+ };
387
+ }, {
388
+ style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
389
+ myWidth: import("vue").ComputedRef<number>;
390
+ text: import("vue").ComputedRef<string>;
391
+ value: import("vue").ComputedRef<string | number>;
392
+ loading: import("vue").Ref<boolean>;
393
+ click: () => void;
394
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
395
+ strokeColor: {
396
+ type?: undefined;
397
+ default?: undefined;
398
+ } | {
399
+ type: any;
400
+ default: string | number | boolean | import("../../_utils/props").Events | {
401
+ [key: string]: any;
402
+ } | import("../../_utils/props").RequestParams | {
403
+ [key: string]: any;
404
+ };
405
+ };
406
+ strokeLinecap: {
407
+ type?: undefined;
408
+ default?: undefined;
409
+ } | {
410
+ type: any;
411
+ default: string | number | boolean | import("../../_utils/props").Events | {
412
+ [key: string]: any;
413
+ } | import("../../_utils/props").RequestParams | {
414
+ [key: string]: any;
415
+ };
416
+ };
417
+ trailColor: {
418
+ type?: undefined;
419
+ default?: undefined;
420
+ } | {
421
+ type: any;
422
+ default: string | number | boolean | import("../../_utils/props").Events | {
423
+ [key: string]: any;
424
+ } | import("../../_utils/props").RequestParams | {
425
+ [key: string]: any;
426
+ };
427
+ };
428
+ strokeType: {
429
+ type?: undefined;
430
+ default?: undefined;
431
+ } | {
432
+ type: any;
433
+ default: string | number | boolean | import("../../_utils/props").Events | {
434
+ [key: string]: any;
435
+ } | import("../../_utils/props").RequestParams | {
436
+ [key: string]: any;
437
+ };
438
+ };
439
+ data: {
440
+ type?: undefined;
441
+ default?: undefined;
442
+ } | {
443
+ type: any;
444
+ default: string | number | boolean | import("../../_utils/props").Events | {
445
+ [key: string]: any;
446
+ } | import("../../_utils/props").RequestParams | {
447
+ [key: string]: any;
448
+ };
449
+ };
450
+ text: {
451
+ type?: undefined;
452
+ default?: undefined;
453
+ } | {
454
+ type: any;
455
+ default: string | number | boolean | import("../../_utils/props").Events | {
456
+ [key: string]: any;
457
+ } | import("../../_utils/props").RequestParams | {
458
+ [key: string]: any;
459
+ };
460
+ };
461
+ fontSize: {
462
+ type?: undefined;
463
+ default?: undefined;
464
+ } | {
465
+ type: any;
466
+ default: string | number | boolean | import("../../_utils/props").Events | {
467
+ [key: string]: any;
468
+ } | import("../../_utils/props").RequestParams | {
469
+ [key: string]: any;
470
+ };
471
+ };
472
+ color: {
473
+ type?: undefined;
474
+ default?: undefined;
475
+ } | {
476
+ type: any;
477
+ default: string | number | boolean | import("../../_utils/props").Events | {
478
+ [key: string]: any;
479
+ } | import("../../_utils/props").RequestParams | {
480
+ [key: string]: any;
481
+ };
482
+ };
483
+ strokeWidth: {
484
+ type?: undefined;
485
+ default?: undefined;
486
+ } | {
487
+ type: any;
488
+ default: string | number | boolean | import("../../_utils/props").Events | {
489
+ [key: string]: any;
490
+ } | import("../../_utils/props").RequestParams | {
491
+ [key: string]: any;
492
+ };
493
+ };
494
+ fontWeight: {
495
+ type?: undefined;
496
+ default?: undefined;
497
+ } | {
498
+ type: any;
499
+ default: string | number | boolean | import("../../_utils/props").Events | {
500
+ [key: string]: any;
501
+ } | import("../../_utils/props").RequestParams | {
502
+ [key: string]: any;
503
+ };
504
+ };
505
+ strokeTextWidth: {
506
+ type?: undefined;
507
+ default?: undefined;
508
+ } | {
509
+ type: any;
510
+ default: string | number | boolean | import("../../_utils/props").Events | {
511
+ [key: string]: any;
512
+ } | import("../../_utils/props").RequestParams | {
513
+ [key: string]: any;
514
+ };
515
+ };
516
+ lineHeight: {
517
+ type?: undefined;
518
+ default?: undefined;
519
+ } | {
520
+ type: any;
521
+ default: string | number | boolean | import("../../_utils/props").Events | {
522
+ [key: string]: any;
523
+ } | import("../../_utils/props").RequestParams | {
524
+ [key: string]: any;
525
+ };
526
+ };
527
+ decimalFormat: {
528
+ type?: undefined;
529
+ default?: undefined;
530
+ } | {
531
+ type: any;
532
+ default: string | number | boolean | import("../../_utils/props").Events | {
533
+ [key: string]: any;
534
+ } | import("../../_utils/props").RequestParams | {
535
+ [key: string]: any;
536
+ };
537
+ };
538
+ id: {
539
+ type?: undefined;
540
+ default?: undefined;
541
+ } | {
542
+ type: any;
543
+ default: string | number | boolean | import("../../_utils/props").Events | {
544
+ [key: string]: any;
545
+ } | import("../../_utils/props").RequestParams | {
546
+ [key: string]: any;
547
+ };
548
+ };
549
+ name: {
550
+ type?: undefined;
551
+ default?: undefined;
552
+ } | {
553
+ type: any;
554
+ default: string | number | boolean | import("../../_utils/props").Events | {
555
+ [key: string]: any;
556
+ } | import("../../_utils/props").RequestParams | {
557
+ [key: string]: any;
558
+ };
559
+ };
560
+ keyName: {
561
+ type?: undefined;
562
+ default?: undefined;
563
+ } | {
564
+ type: any;
565
+ default: string | number | boolean | import("../../_utils/props").Events | {
566
+ [key: string]: any;
567
+ } | import("../../_utils/props").RequestParams | {
568
+ [key: string]: any;
569
+ };
570
+ };
571
+ type: {
572
+ type?: undefined;
573
+ default?: undefined;
574
+ } | {
575
+ type: any;
576
+ default: string | number | boolean | import("../../_utils/props").Events | {
577
+ [key: string]: any;
578
+ } | import("../../_utils/props").RequestParams | {
579
+ [key: string]: any;
580
+ };
581
+ };
582
+ width: {
583
+ type?: undefined;
584
+ default?: undefined;
585
+ } | {
586
+ type: any;
587
+ default: string | number | boolean | import("../../_utils/props").Events | {
588
+ [key: string]: any;
589
+ } | import("../../_utils/props").RequestParams | {
590
+ [key: string]: any;
591
+ };
592
+ };
593
+ height: {
594
+ type?: undefined;
595
+ default?: undefined;
596
+ } | {
597
+ type: any;
598
+ default: string | number | boolean | import("../../_utils/props").Events | {
599
+ [key: string]: any;
600
+ } | import("../../_utils/props").RequestParams | {
601
+ [key: string]: any;
602
+ };
603
+ };
604
+ position: {
605
+ type?: undefined;
606
+ default?: undefined;
607
+ } | {
608
+ type: any;
609
+ default: string | number | boolean | import("../../_utils/props").Events | {
610
+ [key: string]: any;
611
+ } | import("../../_utils/props").RequestParams | {
612
+ [key: string]: any;
613
+ };
614
+ };
615
+ top: {
616
+ type?: undefined;
617
+ default?: undefined;
618
+ } | {
619
+ type: any;
620
+ default: string | number | boolean | import("../../_utils/props").Events | {
621
+ [key: string]: any;
622
+ } | import("../../_utils/props").RequestParams | {
623
+ [key: string]: any;
624
+ };
625
+ };
626
+ left: {
627
+ type?: undefined;
628
+ default?: undefined;
629
+ } | {
630
+ type: any;
631
+ default: string | number | boolean | import("../../_utils/props").Events | {
632
+ [key: string]: any;
633
+ } | import("../../_utils/props").RequestParams | {
634
+ [key: string]: any;
635
+ };
636
+ };
637
+ zIndex: {
638
+ type?: undefined;
639
+ default?: undefined;
640
+ } | {
641
+ type: any;
642
+ default: string | number | boolean | import("../../_utils/props").Events | {
643
+ [key: string]: any;
644
+ } | import("../../_utils/props").RequestParams | {
645
+ [key: string]: any;
646
+ };
647
+ };
648
+ rotate: {
649
+ type?: undefined;
650
+ default?: undefined;
651
+ } | {
652
+ type: any;
653
+ default: string | number | boolean | import("../../_utils/props").Events | {
654
+ [key: string]: any;
655
+ } | import("../../_utils/props").RequestParams | {
656
+ [key: string]: any;
657
+ };
658
+ };
659
+ isShow: {
660
+ type?: undefined;
661
+ default?: undefined;
662
+ } | {
663
+ type: any;
664
+ default: string | number | boolean | import("../../_utils/props").Events | {
665
+ [key: string]: any;
666
+ } | import("../../_utils/props").RequestParams | {
667
+ [key: string]: any;
668
+ };
669
+ };
670
+ isRender: {
671
+ type?: undefined;
672
+ default?: undefined;
673
+ } | {
674
+ type: any;
675
+ default: string | number | boolean | import("../../_utils/props").Events | {
676
+ [key: string]: any;
677
+ } | import("../../_utils/props").RequestParams | {
678
+ [key: string]: any;
679
+ };
680
+ };
681
+ events: {
682
+ type?: undefined;
683
+ default?: undefined;
684
+ } | {
685
+ type: any;
686
+ default: string | number | boolean | import("../../_utils/props").Events | {
687
+ [key: string]: any;
688
+ } | import("../../_utils/props").RequestParams | {
689
+ [key: string]: any;
690
+ };
691
+ };
692
+ requestUrl: {
693
+ type?: undefined;
694
+ default?: undefined;
695
+ } | {
696
+ type: any;
697
+ default: string | number | boolean | import("../../_utils/props").Events | {
698
+ [key: string]: any;
699
+ } | import("../../_utils/props").RequestParams | {
700
+ [key: string]: any;
701
+ };
702
+ };
703
+ requestMethod: {
704
+ type?: undefined;
705
+ default?: undefined;
706
+ } | {
707
+ type: any;
708
+ default: string | number | boolean | import("../../_utils/props").Events | {
709
+ [key: string]: any;
710
+ } | import("../../_utils/props").RequestParams | {
711
+ [key: string]: any;
712
+ };
713
+ };
714
+ requestHeaders: {
715
+ type?: undefined;
716
+ default?: undefined;
717
+ } | {
718
+ type: any;
719
+ default: string | number | boolean | import("../../_utils/props").Events | {
720
+ [key: string]: any;
721
+ } | import("../../_utils/props").RequestParams | {
722
+ [key: string]: any;
723
+ };
724
+ };
725
+ isOpenRequestTimer: {
726
+ type?: undefined;
727
+ default?: undefined;
728
+ } | {
729
+ type: any;
730
+ default: string | number | boolean | import("../../_utils/props").Events | {
731
+ [key: string]: any;
732
+ } | import("../../_utils/props").RequestParams | {
733
+ [key: string]: any;
734
+ };
735
+ };
736
+ requestInterval: {
737
+ type?: undefined;
738
+ default?: undefined;
739
+ } | {
740
+ type: any;
741
+ default: string | number | boolean | import("../../_utils/props").Events | {
742
+ [key: string]: any;
743
+ } | import("../../_utils/props").RequestParams | {
744
+ [key: string]: any;
745
+ };
746
+ };
747
+ requestParams: {
748
+ type?: undefined;
749
+ default?: undefined;
750
+ } | {
751
+ type: any;
752
+ default: string | number | boolean | import("../../_utils/props").Events | {
753
+ [key: string]: any;
754
+ } | import("../../_utils/props").RequestParams | {
755
+ [key: string]: any;
756
+ };
757
+ };
758
+ requestSort: {
759
+ type?: undefined;
760
+ default?: undefined;
761
+ } | {
762
+ type: any;
763
+ default: string | number | boolean | import("../../_utils/props").Events | {
764
+ [key: string]: any;
765
+ } | import("../../_utils/props").RequestParams | {
766
+ [key: string]: any;
767
+ };
768
+ };
769
+ dataType: {
770
+ type?: undefined;
771
+ default?: undefined;
772
+ } | {
773
+ type: any;
774
+ default: string | number | boolean | import("../../_utils/props").Events | {
775
+ [key: string]: any;
776
+ } | import("../../_utils/props").RequestParams | {
777
+ [key: string]: any;
778
+ };
779
+ };
780
+ }>>, {}>> & Record<string, any>;
781
+ export default EcanProportion;
782
+ export * from './props';