@ecan-bi/datav 1.0.17 → 1.0.20

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