@ecan-bi/datav 1.0.16 → 1.0.19

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 (64) hide show
  1. package/dist/_utils/constant.d.ts +8 -0
  2. package/dist/_utils/hooks/index.d.ts +3 -1
  3. package/dist/_utils/hooks/useImagePath.d.ts +2 -0
  4. package/dist/_utils/hooks/useRequestParams.d.ts +5 -0
  5. package/dist/_utils/hooks/useTransformChartDataByAttrKey.d.ts +13 -0
  6. package/dist/_utils/hooks/useTransformChartDataByAttrValue.d.ts +13 -0
  7. package/dist/_utils/props.d.ts +13 -0
  8. package/dist/_utils/request.d.ts +2 -0
  9. package/dist/common/Skeleton/Skeleton.vue.d.ts +20 -0
  10. package/dist/common/Skeleton/index.d.ts +2 -0
  11. package/dist/common/echarts/ECharts.d.ts +2 -2
  12. package/dist/common/index.d.ts +2 -0
  13. package/dist/common/spin/Spin.vue.d.ts +17 -0
  14. package/dist/common/spin/index.d.ts +2 -0
  15. package/dist/container/border/props.d.ts +9 -0
  16. package/dist/container/card/index.d.ts +3 -0
  17. package/dist/container/card/props.d.ts +244 -0
  18. package/dist/container/index.d.ts +0 -1
  19. package/dist/container/modal/Modal.vue.d.ts +1 -0
  20. package/dist/control/button/Button.vue.d.ts +13 -0
  21. package/dist/control/button/props.d.ts +9 -0
  22. package/dist/control/date-picker/DatePicker.vue.d.ts +14 -1
  23. package/dist/control/date-picker/props.d.ts +9 -0
  24. package/dist/control/index.d.ts +1 -0
  25. package/dist/control/input/Input.vue.d.ts +13 -0
  26. package/dist/control/input/props.d.ts +9 -0
  27. package/dist/control/range-picker/RangePicker.vue.d.ts +194 -22
  28. package/dist/control/range-picker/props.d.ts +40 -0
  29. package/dist/control/select/Select.vue.d.ts +129 -26
  30. package/dist/control/select/props.d.ts +121 -23
  31. package/dist/{container → control}/tabs/Tabs.vue.d.ts +23 -1
  32. package/dist/{container → control}/tabs/index.d.ts +0 -0
  33. package/dist/{container → control}/tabs/props.d.ts +16 -0
  34. package/dist/graph/bar/Bar.vue.d.ts +88 -224
  35. package/dist/graph/bar/props.d.ts +76 -227
  36. package/dist/graph/combo-graph/ComboGraph.vue.d.ts +740 -0
  37. package/dist/graph/combo-graph/index.d.ts +3 -0
  38. package/dist/graph/combo-graph/props.d.ts +465 -0
  39. package/dist/graph/custom-graph/CustomGraph.vue.d.ts +15 -0
  40. package/dist/graph/custom-graph/props.d.ts +11 -0
  41. package/dist/graph/index.d.ts +1 -0
  42. package/dist/graph/line/Line.vue.d.ts +87 -219
  43. package/dist/graph/line/props.d.ts +76 -222
  44. package/dist/graph/pie/Pie.vue.d.ts +82 -259
  45. package/dist/graph/pie/props.d.ts +74 -262
  46. package/dist/graph/scatter/Scatter.vue.d.ts +17 -0
  47. package/dist/graph/scatter/props.d.ts +13 -0
  48. package/dist/index.esm.js +3 -2
  49. package/dist/index.esm.js.map +1 -0
  50. package/dist/index.umd.js +3 -2
  51. package/dist/index.umd.js.map +1 -0
  52. package/dist/media/image/Image.vue.d.ts +14 -0
  53. package/dist/media/image/props.d.ts +9 -0
  54. package/dist/setting/event-config/index.d.ts +2 -0
  55. package/dist/table/table/Table.vue.d.ts +19 -1
  56. package/dist/table/table/props.d.ts +13 -0
  57. package/dist/text/list/List.vue.d.ts +21 -0
  58. package/dist/text/list/props.d.ts +18 -0
  59. package/dist/text/text/Text.vue.d.ts +16 -0
  60. package/dist/text/text/props.d.ts +12 -0
  61. package/dist/text/time-display/TimeDisplay.vue.d.ts +13 -0
  62. package/dist/text/time-display/props.d.ts +9 -0
  63. package/package.json +1 -1
  64. package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +0 -17
@@ -1,4 +1,4 @@
1
- import { Props, Data } from '../../_utils/props';
1
+ import { Props, Data, KeyTypeDataFieldNames, ValueTypeDataFieldNames } from '../../_utils/props';
2
2
  export interface BarProps extends Props {
3
3
  data: Data;
4
4
  titleText: string;
@@ -18,11 +18,9 @@ export interface BarProps extends Props {
18
18
  yAxisSplitLineStyleColor: string;
19
19
  yAxisLabelColor: string;
20
20
  yAxisLineStyleColor: string;
21
- dataFieldNames: {
22
- name: string;
23
- value: string;
24
- type: string;
25
- };
21
+ valueTypeDataFieldNames: ValueTypeDataFieldNames;
22
+ keyTypeDataFieldNames: KeyTypeDataFieldNames;
23
+ dataFieldConfigType: 'key' | 'value';
26
24
  tooltipShow: boolean;
27
25
  tooltipTrigger: 'item' | 'axis' | 'none';
28
26
  tooltipTextStyleColor: string;
@@ -35,11 +33,7 @@ export declare const barComponentProps: {
35
33
  default?: undefined;
36
34
  } | {
37
35
  type: any;
38
- default: string | number | boolean | Data | string[] | {
39
- name: string;
40
- value: string;
41
- type: string;
42
- } | import("../../_utils/props").Events | {
36
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
43
37
  [key: string]: any;
44
38
  } | import("../../_utils/props").RequestParams;
45
39
  };
@@ -48,11 +42,7 @@ export declare const barComponentProps: {
48
42
  default?: undefined;
49
43
  } | {
50
44
  type: any;
51
- default: string | number | boolean | Data | string[] | {
52
- name: string;
53
- value: string;
54
- type: string;
55
- } | import("../../_utils/props").Events | {
45
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
56
46
  [key: string]: any;
57
47
  } | import("../../_utils/props").RequestParams;
58
48
  };
@@ -61,11 +51,7 @@ export declare const barComponentProps: {
61
51
  default?: undefined;
62
52
  } | {
63
53
  type: any;
64
- default: string | number | boolean | Data | string[] | {
65
- name: string;
66
- value: string;
67
- type: string;
68
- } | import("../../_utils/props").Events | {
54
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
69
55
  [key: string]: any;
70
56
  } | import("../../_utils/props").RequestParams;
71
57
  };
@@ -74,11 +60,7 @@ export declare const barComponentProps: {
74
60
  default?: undefined;
75
61
  } | {
76
62
  type: any;
77
- default: string | number | boolean | Data | string[] | {
78
- name: string;
79
- value: string;
80
- type: string;
81
- } | import("../../_utils/props").Events | {
63
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
82
64
  [key: string]: any;
83
65
  } | import("../../_utils/props").RequestParams;
84
66
  };
@@ -87,11 +69,7 @@ export declare const barComponentProps: {
87
69
  default?: undefined;
88
70
  } | {
89
71
  type: any;
90
- default: string | number | boolean | Data | string[] | {
91
- name: string;
92
- value: string;
93
- type: string;
94
- } | import("../../_utils/props").Events | {
72
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
95
73
  [key: string]: any;
96
74
  } | import("../../_utils/props").RequestParams;
97
75
  };
@@ -100,11 +78,7 @@ export declare const barComponentProps: {
100
78
  default?: undefined;
101
79
  } | {
102
80
  type: any;
103
- default: string | number | boolean | Data | string[] | {
104
- name: string;
105
- value: string;
106
- type: string;
107
- } | import("../../_utils/props").Events | {
81
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
108
82
  [key: string]: any;
109
83
  } | import("../../_utils/props").RequestParams;
110
84
  };
@@ -113,11 +87,7 @@ export declare const barComponentProps: {
113
87
  default?: undefined;
114
88
  } | {
115
89
  type: any;
116
- default: string | number | boolean | Data | string[] | {
117
- name: string;
118
- value: string;
119
- type: string;
120
- } | import("../../_utils/props").Events | {
90
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
121
91
  [key: string]: any;
122
92
  } | import("../../_utils/props").RequestParams;
123
93
  };
@@ -126,11 +96,7 @@ export declare const barComponentProps: {
126
96
  default?: undefined;
127
97
  } | {
128
98
  type: any;
129
- default: string | number | boolean | Data | string[] | {
130
- name: string;
131
- value: string;
132
- type: string;
133
- } | import("../../_utils/props").Events | {
99
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
134
100
  [key: string]: any;
135
101
  } | import("../../_utils/props").RequestParams;
136
102
  };
@@ -139,11 +105,7 @@ export declare const barComponentProps: {
139
105
  default?: undefined;
140
106
  } | {
141
107
  type: any;
142
- default: string | number | boolean | Data | string[] | {
143
- name: string;
144
- value: string;
145
- type: string;
146
- } | import("../../_utils/props").Events | {
108
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
147
109
  [key: string]: any;
148
110
  } | import("../../_utils/props").RequestParams;
149
111
  };
@@ -152,11 +114,7 @@ export declare const barComponentProps: {
152
114
  default?: undefined;
153
115
  } | {
154
116
  type: any;
155
- default: string | number | boolean | Data | string[] | {
156
- name: string;
157
- value: string;
158
- type: string;
159
- } | import("../../_utils/props").Events | {
117
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
160
118
  [key: string]: any;
161
119
  } | import("../../_utils/props").RequestParams;
162
120
  };
@@ -165,11 +123,7 @@ export declare const barComponentProps: {
165
123
  default?: undefined;
166
124
  } | {
167
125
  type: any;
168
- default: string | number | boolean | Data | string[] | {
169
- name: string;
170
- value: string;
171
- type: string;
172
- } | import("../../_utils/props").Events | {
126
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
173
127
  [key: string]: any;
174
128
  } | import("../../_utils/props").RequestParams;
175
129
  };
@@ -178,11 +132,7 @@ export declare const barComponentProps: {
178
132
  default?: undefined;
179
133
  } | {
180
134
  type: any;
181
- default: string | number | boolean | Data | string[] | {
182
- name: string;
183
- value: string;
184
- type: string;
185
- } | import("../../_utils/props").Events | {
135
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
186
136
  [key: string]: any;
187
137
  } | import("../../_utils/props").RequestParams;
188
138
  };
@@ -191,11 +141,7 @@ export declare const barComponentProps: {
191
141
  default?: undefined;
192
142
  } | {
193
143
  type: any;
194
- default: string | number | boolean | Data | string[] | {
195
- name: string;
196
- value: string;
197
- type: string;
198
- } | import("../../_utils/props").Events | {
144
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
199
145
  [key: string]: any;
200
146
  } | import("../../_utils/props").RequestParams;
201
147
  };
@@ -204,11 +150,7 @@ export declare const barComponentProps: {
204
150
  default?: undefined;
205
151
  } | {
206
152
  type: any;
207
- default: string | number | boolean | Data | string[] | {
208
- name: string;
209
- value: string;
210
- type: string;
211
- } | import("../../_utils/props").Events | {
153
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
212
154
  [key: string]: any;
213
155
  } | import("../../_utils/props").RequestParams;
214
156
  };
@@ -217,11 +159,7 @@ export declare const barComponentProps: {
217
159
  default?: undefined;
218
160
  } | {
219
161
  type: any;
220
- default: string | number | boolean | Data | string[] | {
221
- name: string;
222
- value: string;
223
- type: string;
224
- } | import("../../_utils/props").Events | {
162
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
225
163
  [key: string]: any;
226
164
  } | import("../../_utils/props").RequestParams;
227
165
  };
@@ -230,11 +168,7 @@ export declare const barComponentProps: {
230
168
  default?: undefined;
231
169
  } | {
232
170
  type: any;
233
- default: string | number | boolean | Data | string[] | {
234
- name: string;
235
- value: string;
236
- type: string;
237
- } | import("../../_utils/props").Events | {
171
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
238
172
  [key: string]: any;
239
173
  } | import("../../_utils/props").RequestParams;
240
174
  };
@@ -243,11 +177,7 @@ export declare const barComponentProps: {
243
177
  default?: undefined;
244
178
  } | {
245
179
  type: any;
246
- default: string | number | boolean | Data | string[] | {
247
- name: string;
248
- value: string;
249
- type: string;
250
- } | import("../../_utils/props").Events | {
180
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
251
181
  [key: string]: any;
252
182
  } | import("../../_utils/props").RequestParams;
253
183
  };
@@ -256,24 +186,34 @@ export declare const barComponentProps: {
256
186
  default?: undefined;
257
187
  } | {
258
188
  type: any;
259
- default: string | number | boolean | Data | string[] | {
260
- name: string;
261
- value: string;
262
- type: string;
263
- } | import("../../_utils/props").Events | {
189
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
190
+ [key: string]: any;
191
+ } | import("../../_utils/props").RequestParams;
192
+ };
193
+ valueTypeDataFieldNames: {
194
+ type?: undefined;
195
+ default?: undefined;
196
+ } | {
197
+ type: any;
198
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
199
+ [key: string]: any;
200
+ } | import("../../_utils/props").RequestParams;
201
+ };
202
+ keyTypeDataFieldNames: {
203
+ type?: undefined;
204
+ default?: undefined;
205
+ } | {
206
+ type: any;
207
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
264
208
  [key: string]: any;
265
209
  } | import("../../_utils/props").RequestParams;
266
210
  };
267
- dataFieldNames: {
211
+ dataFieldConfigType: {
268
212
  type?: undefined;
269
213
  default?: undefined;
270
214
  } | {
271
215
  type: any;
272
- default: string | number | boolean | Data | string[] | {
273
- name: string;
274
- value: string;
275
- type: string;
276
- } | import("../../_utils/props").Events | {
216
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
277
217
  [key: string]: any;
278
218
  } | import("../../_utils/props").RequestParams;
279
219
  };
@@ -282,11 +222,7 @@ export declare const barComponentProps: {
282
222
  default?: undefined;
283
223
  } | {
284
224
  type: any;
285
- default: string | number | boolean | Data | string[] | {
286
- name: string;
287
- value: string;
288
- type: string;
289
- } | import("../../_utils/props").Events | {
225
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
290
226
  [key: string]: any;
291
227
  } | import("../../_utils/props").RequestParams;
292
228
  };
@@ -295,11 +231,7 @@ export declare const barComponentProps: {
295
231
  default?: undefined;
296
232
  } | {
297
233
  type: any;
298
- default: string | number | boolean | Data | string[] | {
299
- name: string;
300
- value: string;
301
- type: string;
302
- } | import("../../_utils/props").Events | {
234
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
303
235
  [key: string]: any;
304
236
  } | import("../../_utils/props").RequestParams;
305
237
  };
@@ -308,11 +240,7 @@ export declare const barComponentProps: {
308
240
  default?: undefined;
309
241
  } | {
310
242
  type: any;
311
- default: string | number | boolean | Data | string[] | {
312
- name: string;
313
- value: string;
314
- type: string;
315
- } | import("../../_utils/props").Events | {
243
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
316
244
  [key: string]: any;
317
245
  } | import("../../_utils/props").RequestParams;
318
246
  };
@@ -321,11 +249,7 @@ export declare const barComponentProps: {
321
249
  default?: undefined;
322
250
  } | {
323
251
  type: any;
324
- default: string | number | boolean | Data | string[] | {
325
- name: string;
326
- value: string;
327
- type: string;
328
- } | import("../../_utils/props").Events | {
252
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
329
253
  [key: string]: any;
330
254
  } | import("../../_utils/props").RequestParams;
331
255
  };
@@ -334,11 +258,7 @@ export declare const barComponentProps: {
334
258
  default?: undefined;
335
259
  } | {
336
260
  type: any;
337
- default: string | number | boolean | Data | string[] | {
338
- name: string;
339
- value: string;
340
- type: string;
341
- } | import("../../_utils/props").Events | {
261
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
342
262
  [key: string]: any;
343
263
  } | import("../../_utils/props").RequestParams;
344
264
  };
@@ -347,11 +267,7 @@ export declare const barComponentProps: {
347
267
  default?: undefined;
348
268
  } | {
349
269
  type: any;
350
- default: string | number | boolean | Data | string[] | {
351
- name: string;
352
- value: string;
353
- type: string;
354
- } | import("../../_utils/props").Events | {
270
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
355
271
  [key: string]: any;
356
272
  } | import("../../_utils/props").RequestParams;
357
273
  };
@@ -360,11 +276,7 @@ export declare const barComponentProps: {
360
276
  default?: undefined;
361
277
  } | {
362
278
  type: any;
363
- default: string | number | boolean | Data | string[] | {
364
- name: string;
365
- value: string;
366
- type: string;
367
- } | import("../../_utils/props").Events | {
279
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
368
280
  [key: string]: any;
369
281
  } | import("../../_utils/props").RequestParams;
370
282
  };
@@ -373,11 +285,7 @@ export declare const barComponentProps: {
373
285
  default?: undefined;
374
286
  } | {
375
287
  type: any;
376
- default: string | number | boolean | Data | string[] | {
377
- name: string;
378
- value: string;
379
- type: string;
380
- } | import("../../_utils/props").Events | {
288
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
381
289
  [key: string]: any;
382
290
  } | import("../../_utils/props").RequestParams;
383
291
  };
@@ -386,11 +294,7 @@ export declare const barComponentProps: {
386
294
  default?: undefined;
387
295
  } | {
388
296
  type: any;
389
- default: string | number | boolean | Data | string[] | {
390
- name: string;
391
- value: string;
392
- type: string;
393
- } | import("../../_utils/props").Events | {
297
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
394
298
  [key: string]: any;
395
299
  } | import("../../_utils/props").RequestParams;
396
300
  };
@@ -399,11 +303,7 @@ export declare const barComponentProps: {
399
303
  default?: undefined;
400
304
  } | {
401
305
  type: any;
402
- default: string | number | boolean | Data | string[] | {
403
- name: string;
404
- value: string;
405
- type: string;
406
- } | import("../../_utils/props").Events | {
306
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
407
307
  [key: string]: any;
408
308
  } | import("../../_utils/props").RequestParams;
409
309
  };
@@ -412,11 +312,7 @@ export declare const barComponentProps: {
412
312
  default?: undefined;
413
313
  } | {
414
314
  type: any;
415
- default: string | number | boolean | Data | string[] | {
416
- name: string;
417
- value: string;
418
- type: string;
419
- } | import("../../_utils/props").Events | {
315
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
420
316
  [key: string]: any;
421
317
  } | import("../../_utils/props").RequestParams;
422
318
  };
@@ -425,11 +321,7 @@ export declare const barComponentProps: {
425
321
  default?: undefined;
426
322
  } | {
427
323
  type: any;
428
- default: string | number | boolean | Data | string[] | {
429
- name: string;
430
- value: string;
431
- type: string;
432
- } | import("../../_utils/props").Events | {
324
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
433
325
  [key: string]: any;
434
326
  } | import("../../_utils/props").RequestParams;
435
327
  };
@@ -438,11 +330,7 @@ export declare const barComponentProps: {
438
330
  default?: undefined;
439
331
  } | {
440
332
  type: any;
441
- default: string | number | boolean | Data | string[] | {
442
- name: string;
443
- value: string;
444
- type: string;
445
- } | import("../../_utils/props").Events | {
333
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
446
334
  [key: string]: any;
447
335
  } | import("../../_utils/props").RequestParams;
448
336
  };
@@ -451,11 +339,7 @@ export declare const barComponentProps: {
451
339
  default?: undefined;
452
340
  } | {
453
341
  type: any;
454
- default: string | number | boolean | Data | string[] | {
455
- name: string;
456
- value: string;
457
- type: string;
458
- } | import("../../_utils/props").Events | {
342
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
459
343
  [key: string]: any;
460
344
  } | import("../../_utils/props").RequestParams;
461
345
  };
@@ -464,11 +348,7 @@ export declare const barComponentProps: {
464
348
  default?: undefined;
465
349
  } | {
466
350
  type: any;
467
- default: string | number | boolean | Data | string[] | {
468
- name: string;
469
- value: string;
470
- type: string;
471
- } | import("../../_utils/props").Events | {
351
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
472
352
  [key: string]: any;
473
353
  } | import("../../_utils/props").RequestParams;
474
354
  };
@@ -477,11 +357,7 @@ export declare const barComponentProps: {
477
357
  default?: undefined;
478
358
  } | {
479
359
  type: any;
480
- default: string | number | boolean | Data | string[] | {
481
- name: string;
482
- value: string;
483
- type: string;
484
- } | import("../../_utils/props").Events | {
360
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
485
361
  [key: string]: any;
486
362
  } | import("../../_utils/props").RequestParams;
487
363
  };
@@ -490,11 +366,7 @@ export declare const barComponentProps: {
490
366
  default?: undefined;
491
367
  } | {
492
368
  type: any;
493
- default: string | number | boolean | Data | string[] | {
494
- name: string;
495
- value: string;
496
- type: string;
497
- } | import("../../_utils/props").Events | {
369
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
498
370
  [key: string]: any;
499
371
  } | import("../../_utils/props").RequestParams;
500
372
  };
@@ -503,11 +375,7 @@ export declare const barComponentProps: {
503
375
  default?: undefined;
504
376
  } | {
505
377
  type: any;
506
- default: string | number | boolean | Data | string[] | {
507
- name: string;
508
- value: string;
509
- type: string;
510
- } | import("../../_utils/props").Events | {
378
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
511
379
  [key: string]: any;
512
380
  } | import("../../_utils/props").RequestParams;
513
381
  };
@@ -516,11 +384,7 @@ export declare const barComponentProps: {
516
384
  default?: undefined;
517
385
  } | {
518
386
  type: any;
519
- default: string | number | boolean | Data | string[] | {
520
- name: string;
521
- value: string;
522
- type: string;
523
- } | import("../../_utils/props").Events | {
387
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
524
388
  [key: string]: any;
525
389
  } | import("../../_utils/props").RequestParams;
526
390
  };
@@ -529,11 +393,7 @@ export declare const barComponentProps: {
529
393
  default?: undefined;
530
394
  } | {
531
395
  type: any;
532
- default: string | number | boolean | Data | string[] | {
533
- name: string;
534
- value: string;
535
- type: string;
536
- } | import("../../_utils/props").Events | {
396
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
537
397
  [key: string]: any;
538
398
  } | import("../../_utils/props").RequestParams;
539
399
  };
@@ -542,11 +402,7 @@ export declare const barComponentProps: {
542
402
  default?: undefined;
543
403
  } | {
544
404
  type: any;
545
- default: string | number | boolean | Data | string[] | {
546
- name: string;
547
- value: string;
548
- type: string;
549
- } | import("../../_utils/props").Events | {
405
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
550
406
  [key: string]: any;
551
407
  } | import("../../_utils/props").RequestParams;
552
408
  };
@@ -555,11 +411,7 @@ export declare const barComponentProps: {
555
411
  default?: undefined;
556
412
  } | {
557
413
  type: any;
558
- default: string | number | boolean | Data | string[] | {
559
- name: string;
560
- value: string;
561
- type: string;
562
- } | import("../../_utils/props").Events | {
414
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
563
415
  [key: string]: any;
564
416
  } | import("../../_utils/props").RequestParams;
565
417
  };
@@ -568,11 +420,7 @@ export declare const barComponentProps: {
568
420
  default?: undefined;
569
421
  } | {
570
422
  type: any;
571
- default: string | number | boolean | Data | string[] | {
572
- name: string;
573
- value: string;
574
- type: string;
575
- } | import("../../_utils/props").Events | {
423
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
576
424
  [key: string]: any;
577
425
  } | import("../../_utils/props").RequestParams;
578
426
  };
@@ -581,11 +429,7 @@ export declare const barComponentProps: {
581
429
  default?: undefined;
582
430
  } | {
583
431
  type: any;
584
- default: string | number | boolean | Data | string[] | {
585
- name: string;
586
- value: string;
587
- type: string;
588
- } | import("../../_utils/props").Events | {
432
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
589
433
  [key: string]: any;
590
434
  } | import("../../_utils/props").RequestParams;
591
435
  };
@@ -594,11 +438,16 @@ export declare const barComponentProps: {
594
438
  default?: undefined;
595
439
  } | {
596
440
  type: any;
597
- default: string | number | boolean | Data | string[] | {
598
- name: string;
599
- value: string;
600
- type: string;
601
- } | import("../../_utils/props").Events | {
441
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
442
+ [key: string]: any;
443
+ } | import("../../_utils/props").RequestParams;
444
+ };
445
+ requestSort: {
446
+ type?: undefined;
447
+ default?: undefined;
448
+ } | {
449
+ type: any;
450
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
602
451
  [key: string]: any;
603
452
  } | import("../../_utils/props").RequestParams;
604
453
  };