@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
@@ -1,4 +1,5 @@
1
1
  import { Props } from '../../_utils/props';
2
+ import { Layer, PropsDiagram } from '../../_utils/propsDiagram';
2
3
  export interface TableProps extends Props {
3
4
  columns: {
4
5
  [key: string]: any;
@@ -18,6 +19,7 @@ export interface TableProps extends Props {
18
19
  cellBackgroundColor: string;
19
20
  borderColor: string;
20
21
  paginationPageSize: number;
22
+ diagramParam: PropsDiagram;
21
23
  }
22
24
  export declare const tableProps: TableProps;
23
25
  export declare const tableComponentProps: {
@@ -30,7 +32,43 @@ export declare const tableComponentProps: {
30
32
  [key: string]: any;
31
33
  }[] | {
32
34
  [key: string]: any;
33
- }[] | import("../../_utils/props").Events | {
35
+ }[] | ({
36
+ source?: import("../../_utils/propsDiagram").Source;
37
+ plugin: import("../../_utils/propsDiagram").Plugin;
38
+ layer: Layer;
39
+ chartType: import("../../_utils/propsDiagram").ChartType;
40
+ relatedList: unknown[];
41
+ sqlConditions?: ({
42
+ alias: string;
43
+ fieldName: string;
44
+ rule: string;
45
+ fieldValue: string;
46
+ } & ({
47
+ valueType: "TEXT" | "NUMBER";
48
+ dateFormat?: string;
49
+ } | {
50
+ valueType: "DATE";
51
+ dateFormat: string;
52
+ }))[];
53
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
54
+ source?: import("../../_utils/propsDiagram").Source;
55
+ plugin: import("../../_utils/propsDiagram").Plugin;
56
+ layer: Layer;
57
+ chartType: import("../../_utils/propsDiagram").ChartType;
58
+ relatedList: unknown[];
59
+ sqlConditions?: ({
60
+ alias: string;
61
+ fieldName: string;
62
+ rule: string;
63
+ fieldValue: string;
64
+ } & ({
65
+ valueType: "TEXT" | "NUMBER";
66
+ dateFormat?: string;
67
+ } | {
68
+ valueType: "DATE";
69
+ dateFormat: string;
70
+ }))[];
71
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
34
72
  [key: string]: any;
35
73
  } | import("../../_utils/props").RequestParams;
36
74
  };
@@ -43,7 +81,43 @@ export declare const tableComponentProps: {
43
81
  [key: string]: any;
44
82
  }[] | {
45
83
  [key: string]: any;
46
- }[] | import("../../_utils/props").Events | {
84
+ }[] | ({
85
+ source?: import("../../_utils/propsDiagram").Source;
86
+ plugin: import("../../_utils/propsDiagram").Plugin;
87
+ layer: Layer;
88
+ chartType: import("../../_utils/propsDiagram").ChartType;
89
+ relatedList: unknown[];
90
+ sqlConditions?: ({
91
+ alias: string;
92
+ fieldName: string;
93
+ rule: string;
94
+ fieldValue: string;
95
+ } & ({
96
+ valueType: "TEXT" | "NUMBER";
97
+ dateFormat?: string;
98
+ } | {
99
+ valueType: "DATE";
100
+ dateFormat: string;
101
+ }))[];
102
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
103
+ source?: import("../../_utils/propsDiagram").Source;
104
+ plugin: import("../../_utils/propsDiagram").Plugin;
105
+ layer: Layer;
106
+ chartType: import("../../_utils/propsDiagram").ChartType;
107
+ relatedList: unknown[];
108
+ sqlConditions?: ({
109
+ alias: string;
110
+ fieldName: string;
111
+ rule: string;
112
+ fieldValue: string;
113
+ } & ({
114
+ valueType: "TEXT" | "NUMBER";
115
+ dateFormat?: string;
116
+ } | {
117
+ valueType: "DATE";
118
+ dateFormat: string;
119
+ }))[];
120
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
47
121
  [key: string]: any;
48
122
  } | import("../../_utils/props").RequestParams;
49
123
  };
@@ -56,7 +130,43 @@ export declare const tableComponentProps: {
56
130
  [key: string]: any;
57
131
  }[] | {
58
132
  [key: string]: any;
59
- }[] | import("../../_utils/props").Events | {
133
+ }[] | ({
134
+ source?: import("../../_utils/propsDiagram").Source;
135
+ plugin: import("../../_utils/propsDiagram").Plugin;
136
+ layer: Layer;
137
+ chartType: import("../../_utils/propsDiagram").ChartType;
138
+ relatedList: unknown[];
139
+ sqlConditions?: ({
140
+ alias: string;
141
+ fieldName: string;
142
+ rule: string;
143
+ fieldValue: string;
144
+ } & ({
145
+ valueType: "TEXT" | "NUMBER";
146
+ dateFormat?: string;
147
+ } | {
148
+ valueType: "DATE";
149
+ dateFormat: string;
150
+ }))[];
151
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
152
+ source?: import("../../_utils/propsDiagram").Source;
153
+ plugin: import("../../_utils/propsDiagram").Plugin;
154
+ layer: Layer;
155
+ chartType: import("../../_utils/propsDiagram").ChartType;
156
+ relatedList: unknown[];
157
+ sqlConditions?: ({
158
+ alias: string;
159
+ fieldName: string;
160
+ rule: string;
161
+ fieldValue: string;
162
+ } & ({
163
+ valueType: "TEXT" | "NUMBER";
164
+ dateFormat?: string;
165
+ } | {
166
+ valueType: "DATE";
167
+ dateFormat: string;
168
+ }))[];
169
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
60
170
  [key: string]: any;
61
171
  } | import("../../_utils/props").RequestParams;
62
172
  };
@@ -69,7 +179,43 @@ export declare const tableComponentProps: {
69
179
  [key: string]: any;
70
180
  }[] | {
71
181
  [key: string]: any;
72
- }[] | import("../../_utils/props").Events | {
182
+ }[] | ({
183
+ source?: import("../../_utils/propsDiagram").Source;
184
+ plugin: import("../../_utils/propsDiagram").Plugin;
185
+ layer: Layer;
186
+ chartType: import("../../_utils/propsDiagram").ChartType;
187
+ relatedList: unknown[];
188
+ sqlConditions?: ({
189
+ alias: string;
190
+ fieldName: string;
191
+ rule: string;
192
+ fieldValue: string;
193
+ } & ({
194
+ valueType: "TEXT" | "NUMBER";
195
+ dateFormat?: string;
196
+ } | {
197
+ valueType: "DATE";
198
+ dateFormat: string;
199
+ }))[];
200
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
201
+ source?: import("../../_utils/propsDiagram").Source;
202
+ plugin: import("../../_utils/propsDiagram").Plugin;
203
+ layer: Layer;
204
+ chartType: import("../../_utils/propsDiagram").ChartType;
205
+ relatedList: unknown[];
206
+ sqlConditions?: ({
207
+ alias: string;
208
+ fieldName: string;
209
+ rule: string;
210
+ fieldValue: string;
211
+ } & ({
212
+ valueType: "TEXT" | "NUMBER";
213
+ dateFormat?: string;
214
+ } | {
215
+ valueType: "DATE";
216
+ dateFormat: string;
217
+ }))[];
218
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
73
219
  [key: string]: any;
74
220
  } | import("../../_utils/props").RequestParams;
75
221
  };
@@ -82,7 +228,43 @@ export declare const tableComponentProps: {
82
228
  [key: string]: any;
83
229
  }[] | {
84
230
  [key: string]: any;
85
- }[] | import("../../_utils/props").Events | {
231
+ }[] | ({
232
+ source?: import("../../_utils/propsDiagram").Source;
233
+ plugin: import("../../_utils/propsDiagram").Plugin;
234
+ layer: Layer;
235
+ chartType: import("../../_utils/propsDiagram").ChartType;
236
+ relatedList: unknown[];
237
+ sqlConditions?: ({
238
+ alias: string;
239
+ fieldName: string;
240
+ rule: string;
241
+ fieldValue: string;
242
+ } & ({
243
+ valueType: "TEXT" | "NUMBER";
244
+ dateFormat?: string;
245
+ } | {
246
+ valueType: "DATE";
247
+ dateFormat: string;
248
+ }))[];
249
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
250
+ source?: import("../../_utils/propsDiagram").Source;
251
+ plugin: import("../../_utils/propsDiagram").Plugin;
252
+ layer: Layer;
253
+ chartType: import("../../_utils/propsDiagram").ChartType;
254
+ relatedList: unknown[];
255
+ sqlConditions?: ({
256
+ alias: string;
257
+ fieldName: string;
258
+ rule: string;
259
+ fieldValue: string;
260
+ } & ({
261
+ valueType: "TEXT" | "NUMBER";
262
+ dateFormat?: string;
263
+ } | {
264
+ valueType: "DATE";
265
+ dateFormat: string;
266
+ }))[];
267
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
86
268
  [key: string]: any;
87
269
  } | import("../../_utils/props").RequestParams;
88
270
  };
@@ -95,7 +277,43 @@ export declare const tableComponentProps: {
95
277
  [key: string]: any;
96
278
  }[] | {
97
279
  [key: string]: any;
98
- }[] | import("../../_utils/props").Events | {
280
+ }[] | ({
281
+ source?: import("../../_utils/propsDiagram").Source;
282
+ plugin: import("../../_utils/propsDiagram").Plugin;
283
+ layer: Layer;
284
+ chartType: import("../../_utils/propsDiagram").ChartType;
285
+ relatedList: unknown[];
286
+ sqlConditions?: ({
287
+ alias: string;
288
+ fieldName: string;
289
+ rule: string;
290
+ fieldValue: string;
291
+ } & ({
292
+ valueType: "TEXT" | "NUMBER";
293
+ dateFormat?: string;
294
+ } | {
295
+ valueType: "DATE";
296
+ dateFormat: string;
297
+ }))[];
298
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
299
+ source?: import("../../_utils/propsDiagram").Source;
300
+ plugin: import("../../_utils/propsDiagram").Plugin;
301
+ layer: Layer;
302
+ chartType: import("../../_utils/propsDiagram").ChartType;
303
+ relatedList: unknown[];
304
+ sqlConditions?: ({
305
+ alias: string;
306
+ fieldName: string;
307
+ rule: string;
308
+ fieldValue: string;
309
+ } & ({
310
+ valueType: "TEXT" | "NUMBER";
311
+ dateFormat?: string;
312
+ } | {
313
+ valueType: "DATE";
314
+ dateFormat: string;
315
+ }))[];
316
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
99
317
  [key: string]: any;
100
318
  } | import("../../_utils/props").RequestParams;
101
319
  };
@@ -108,7 +326,43 @@ export declare const tableComponentProps: {
108
326
  [key: string]: any;
109
327
  }[] | {
110
328
  [key: string]: any;
111
- }[] | import("../../_utils/props").Events | {
329
+ }[] | ({
330
+ source?: import("../../_utils/propsDiagram").Source;
331
+ plugin: import("../../_utils/propsDiagram").Plugin;
332
+ layer: Layer;
333
+ chartType: import("../../_utils/propsDiagram").ChartType;
334
+ relatedList: unknown[];
335
+ sqlConditions?: ({
336
+ alias: string;
337
+ fieldName: string;
338
+ rule: string;
339
+ fieldValue: string;
340
+ } & ({
341
+ valueType: "TEXT" | "NUMBER";
342
+ dateFormat?: string;
343
+ } | {
344
+ valueType: "DATE";
345
+ dateFormat: string;
346
+ }))[];
347
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
348
+ source?: import("../../_utils/propsDiagram").Source;
349
+ plugin: import("../../_utils/propsDiagram").Plugin;
350
+ layer: Layer;
351
+ chartType: import("../../_utils/propsDiagram").ChartType;
352
+ relatedList: unknown[];
353
+ sqlConditions?: ({
354
+ alias: string;
355
+ fieldName: string;
356
+ rule: string;
357
+ fieldValue: string;
358
+ } & ({
359
+ valueType: "TEXT" | "NUMBER";
360
+ dateFormat?: string;
361
+ } | {
362
+ valueType: "DATE";
363
+ dateFormat: string;
364
+ }))[];
365
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
112
366
  [key: string]: any;
113
367
  } | import("../../_utils/props").RequestParams;
114
368
  };
@@ -121,7 +375,43 @@ export declare const tableComponentProps: {
121
375
  [key: string]: any;
122
376
  }[] | {
123
377
  [key: string]: any;
124
- }[] | import("../../_utils/props").Events | {
378
+ }[] | ({
379
+ source?: import("../../_utils/propsDiagram").Source;
380
+ plugin: import("../../_utils/propsDiagram").Plugin;
381
+ layer: Layer;
382
+ chartType: import("../../_utils/propsDiagram").ChartType;
383
+ relatedList: unknown[];
384
+ sqlConditions?: ({
385
+ alias: string;
386
+ fieldName: string;
387
+ rule: string;
388
+ fieldValue: string;
389
+ } & ({
390
+ valueType: "TEXT" | "NUMBER";
391
+ dateFormat?: string;
392
+ } | {
393
+ valueType: "DATE";
394
+ dateFormat: string;
395
+ }))[];
396
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
397
+ source?: import("../../_utils/propsDiagram").Source;
398
+ plugin: import("../../_utils/propsDiagram").Plugin;
399
+ layer: Layer;
400
+ chartType: import("../../_utils/propsDiagram").ChartType;
401
+ relatedList: unknown[];
402
+ sqlConditions?: ({
403
+ alias: string;
404
+ fieldName: string;
405
+ rule: string;
406
+ fieldValue: string;
407
+ } & ({
408
+ valueType: "TEXT" | "NUMBER";
409
+ dateFormat?: string;
410
+ } | {
411
+ valueType: "DATE";
412
+ dateFormat: string;
413
+ }))[];
414
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
125
415
  [key: string]: any;
126
416
  } | import("../../_utils/props").RequestParams;
127
417
  };
@@ -134,7 +424,43 @@ export declare const tableComponentProps: {
134
424
  [key: string]: any;
135
425
  }[] | {
136
426
  [key: string]: any;
137
- }[] | import("../../_utils/props").Events | {
427
+ }[] | ({
428
+ source?: import("../../_utils/propsDiagram").Source;
429
+ plugin: import("../../_utils/propsDiagram").Plugin;
430
+ layer: Layer;
431
+ chartType: import("../../_utils/propsDiagram").ChartType;
432
+ relatedList: unknown[];
433
+ sqlConditions?: ({
434
+ alias: string;
435
+ fieldName: string;
436
+ rule: string;
437
+ fieldValue: string;
438
+ } & ({
439
+ valueType: "TEXT" | "NUMBER";
440
+ dateFormat?: string;
441
+ } | {
442
+ valueType: "DATE";
443
+ dateFormat: string;
444
+ }))[];
445
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
446
+ source?: import("../../_utils/propsDiagram").Source;
447
+ plugin: import("../../_utils/propsDiagram").Plugin;
448
+ layer: Layer;
449
+ chartType: import("../../_utils/propsDiagram").ChartType;
450
+ relatedList: unknown[];
451
+ sqlConditions?: ({
452
+ alias: string;
453
+ fieldName: string;
454
+ rule: string;
455
+ fieldValue: string;
456
+ } & ({
457
+ valueType: "TEXT" | "NUMBER";
458
+ dateFormat?: string;
459
+ } | {
460
+ valueType: "DATE";
461
+ dateFormat: string;
462
+ }))[];
463
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
138
464
  [key: string]: any;
139
465
  } | import("../../_utils/props").RequestParams;
140
466
  };
@@ -147,7 +473,43 @@ export declare const tableComponentProps: {
147
473
  [key: string]: any;
148
474
  }[] | {
149
475
  [key: string]: any;
150
- }[] | import("../../_utils/props").Events | {
476
+ }[] | ({
477
+ source?: import("../../_utils/propsDiagram").Source;
478
+ plugin: import("../../_utils/propsDiagram").Plugin;
479
+ layer: Layer;
480
+ chartType: import("../../_utils/propsDiagram").ChartType;
481
+ relatedList: unknown[];
482
+ sqlConditions?: ({
483
+ alias: string;
484
+ fieldName: string;
485
+ rule: string;
486
+ fieldValue: string;
487
+ } & ({
488
+ valueType: "TEXT" | "NUMBER";
489
+ dateFormat?: string;
490
+ } | {
491
+ valueType: "DATE";
492
+ dateFormat: string;
493
+ }))[];
494
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
495
+ source?: import("../../_utils/propsDiagram").Source;
496
+ plugin: import("../../_utils/propsDiagram").Plugin;
497
+ layer: Layer;
498
+ chartType: import("../../_utils/propsDiagram").ChartType;
499
+ relatedList: unknown[];
500
+ sqlConditions?: ({
501
+ alias: string;
502
+ fieldName: string;
503
+ rule: string;
504
+ fieldValue: string;
505
+ } & ({
506
+ valueType: "TEXT" | "NUMBER";
507
+ dateFormat?: string;
508
+ } | {
509
+ valueType: "DATE";
510
+ dateFormat: string;
511
+ }))[];
512
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
151
513
  [key: string]: any;
152
514
  } | import("../../_utils/props").RequestParams;
153
515
  };
@@ -160,7 +522,43 @@ export declare const tableComponentProps: {
160
522
  [key: string]: any;
161
523
  }[] | {
162
524
  [key: string]: any;
163
- }[] | import("../../_utils/props").Events | {
525
+ }[] | ({
526
+ source?: import("../../_utils/propsDiagram").Source;
527
+ plugin: import("../../_utils/propsDiagram").Plugin;
528
+ layer: Layer;
529
+ chartType: import("../../_utils/propsDiagram").ChartType;
530
+ relatedList: unknown[];
531
+ sqlConditions?: ({
532
+ alias: string;
533
+ fieldName: string;
534
+ rule: string;
535
+ fieldValue: string;
536
+ } & ({
537
+ valueType: "TEXT" | "NUMBER";
538
+ dateFormat?: string;
539
+ } | {
540
+ valueType: "DATE";
541
+ dateFormat: string;
542
+ }))[];
543
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
544
+ source?: import("../../_utils/propsDiagram").Source;
545
+ plugin: import("../../_utils/propsDiagram").Plugin;
546
+ layer: Layer;
547
+ chartType: import("../../_utils/propsDiagram").ChartType;
548
+ relatedList: unknown[];
549
+ sqlConditions?: ({
550
+ alias: string;
551
+ fieldName: string;
552
+ rule: string;
553
+ fieldValue: string;
554
+ } & ({
555
+ valueType: "TEXT" | "NUMBER";
556
+ dateFormat?: string;
557
+ } | {
558
+ valueType: "DATE";
559
+ dateFormat: string;
560
+ }))[];
561
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
164
562
  [key: string]: any;
165
563
  } | import("../../_utils/props").RequestParams;
166
564
  };
@@ -173,7 +571,43 @@ export declare const tableComponentProps: {
173
571
  [key: string]: any;
174
572
  }[] | {
175
573
  [key: string]: any;
176
- }[] | import("../../_utils/props").Events | {
574
+ }[] | ({
575
+ source?: import("../../_utils/propsDiagram").Source;
576
+ plugin: import("../../_utils/propsDiagram").Plugin;
577
+ layer: Layer;
578
+ chartType: import("../../_utils/propsDiagram").ChartType;
579
+ relatedList: unknown[];
580
+ sqlConditions?: ({
581
+ alias: string;
582
+ fieldName: string;
583
+ rule: string;
584
+ fieldValue: string;
585
+ } & ({
586
+ valueType: "TEXT" | "NUMBER";
587
+ dateFormat?: string;
588
+ } | {
589
+ valueType: "DATE";
590
+ dateFormat: string;
591
+ }))[];
592
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
593
+ source?: import("../../_utils/propsDiagram").Source;
594
+ plugin: import("../../_utils/propsDiagram").Plugin;
595
+ layer: Layer;
596
+ chartType: import("../../_utils/propsDiagram").ChartType;
597
+ relatedList: unknown[];
598
+ sqlConditions?: ({
599
+ alias: string;
600
+ fieldName: string;
601
+ rule: string;
602
+ fieldValue: string;
603
+ } & ({
604
+ valueType: "TEXT" | "NUMBER";
605
+ dateFormat?: string;
606
+ } | {
607
+ valueType: "DATE";
608
+ dateFormat: string;
609
+ }))[];
610
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
177
611
  [key: string]: any;
178
612
  } | import("../../_utils/props").RequestParams;
179
613
  };
@@ -186,7 +620,43 @@ export declare const tableComponentProps: {
186
620
  [key: string]: any;
187
621
  }[] | {
188
622
  [key: string]: any;
189
- }[] | import("../../_utils/props").Events | {
623
+ }[] | ({
624
+ source?: import("../../_utils/propsDiagram").Source;
625
+ plugin: import("../../_utils/propsDiagram").Plugin;
626
+ layer: Layer;
627
+ chartType: import("../../_utils/propsDiagram").ChartType;
628
+ relatedList: unknown[];
629
+ sqlConditions?: ({
630
+ alias: string;
631
+ fieldName: string;
632
+ rule: string;
633
+ fieldValue: string;
634
+ } & ({
635
+ valueType: "TEXT" | "NUMBER";
636
+ dateFormat?: string;
637
+ } | {
638
+ valueType: "DATE";
639
+ dateFormat: string;
640
+ }))[];
641
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
642
+ source?: import("../../_utils/propsDiagram").Source;
643
+ plugin: import("../../_utils/propsDiagram").Plugin;
644
+ layer: Layer;
645
+ chartType: import("../../_utils/propsDiagram").ChartType;
646
+ relatedList: unknown[];
647
+ sqlConditions?: ({
648
+ alias: string;
649
+ fieldName: string;
650
+ rule: string;
651
+ fieldValue: string;
652
+ } & ({
653
+ valueType: "TEXT" | "NUMBER";
654
+ dateFormat?: string;
655
+ } | {
656
+ valueType: "DATE";
657
+ dateFormat: string;
658
+ }))[];
659
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
190
660
  [key: string]: any;
191
661
  } | import("../../_utils/props").RequestParams;
192
662
  };
@@ -199,7 +669,92 @@ export declare const tableComponentProps: {
199
669
  [key: string]: any;
200
670
  }[] | {
201
671
  [key: string]: any;
202
- }[] | import("../../_utils/props").Events | {
672
+ }[] | ({
673
+ source?: import("../../_utils/propsDiagram").Source;
674
+ plugin: import("../../_utils/propsDiagram").Plugin;
675
+ layer: Layer;
676
+ chartType: import("../../_utils/propsDiagram").ChartType;
677
+ relatedList: unknown[];
678
+ sqlConditions?: ({
679
+ alias: string;
680
+ fieldName: string;
681
+ rule: string;
682
+ fieldValue: string;
683
+ } & ({
684
+ valueType: "TEXT" | "NUMBER";
685
+ dateFormat?: string;
686
+ } | {
687
+ valueType: "DATE";
688
+ dateFormat: string;
689
+ }))[];
690
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
691
+ source?: import("../../_utils/propsDiagram").Source;
692
+ plugin: import("../../_utils/propsDiagram").Plugin;
693
+ layer: Layer;
694
+ chartType: import("../../_utils/propsDiagram").ChartType;
695
+ relatedList: unknown[];
696
+ sqlConditions?: ({
697
+ alias: string;
698
+ fieldName: string;
699
+ rule: string;
700
+ fieldValue: string;
701
+ } & ({
702
+ valueType: "TEXT" | "NUMBER";
703
+ dateFormat?: string;
704
+ } | {
705
+ valueType: "DATE";
706
+ dateFormat: string;
707
+ }))[];
708
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
709
+ [key: string]: any;
710
+ } | import("../../_utils/props").RequestParams;
711
+ };
712
+ diagramParam: {
713
+ type?: undefined;
714
+ default?: undefined;
715
+ } | {
716
+ type: any;
717
+ default: string | number | boolean | {
718
+ [key: string]: any;
719
+ }[] | {
720
+ [key: string]: any;
721
+ }[] | ({
722
+ source?: import("../../_utils/propsDiagram").Source;
723
+ plugin: import("../../_utils/propsDiagram").Plugin;
724
+ layer: Layer;
725
+ chartType: import("../../_utils/propsDiagram").ChartType;
726
+ relatedList: unknown[];
727
+ sqlConditions?: ({
728
+ alias: string;
729
+ fieldName: string;
730
+ rule: string;
731
+ fieldValue: string;
732
+ } & ({
733
+ valueType: "TEXT" | "NUMBER";
734
+ dateFormat?: string;
735
+ } | {
736
+ valueType: "DATE";
737
+ dateFormat: string;
738
+ }))[];
739
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
740
+ source?: import("../../_utils/propsDiagram").Source;
741
+ plugin: import("../../_utils/propsDiagram").Plugin;
742
+ layer: Layer;
743
+ chartType: import("../../_utils/propsDiagram").ChartType;
744
+ relatedList: unknown[];
745
+ sqlConditions?: ({
746
+ alias: string;
747
+ fieldName: string;
748
+ rule: string;
749
+ fieldValue: string;
750
+ } & ({
751
+ valueType: "TEXT" | "NUMBER";
752
+ dateFormat?: string;
753
+ } | {
754
+ valueType: "DATE";
755
+ dateFormat: string;
756
+ }))[];
757
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
203
758
  [key: string]: any;
204
759
  } | import("../../_utils/props").RequestParams;
205
760
  };
@@ -212,7 +767,43 @@ export declare const tableComponentProps: {
212
767
  [key: string]: any;
213
768
  }[] | {
214
769
  [key: string]: any;
215
- }[] | import("../../_utils/props").Events | {
770
+ }[] | ({
771
+ source?: import("../../_utils/propsDiagram").Source;
772
+ plugin: import("../../_utils/propsDiagram").Plugin;
773
+ layer: Layer;
774
+ chartType: import("../../_utils/propsDiagram").ChartType;
775
+ relatedList: unknown[];
776
+ sqlConditions?: ({
777
+ alias: string;
778
+ fieldName: string;
779
+ rule: string;
780
+ fieldValue: string;
781
+ } & ({
782
+ valueType: "TEXT" | "NUMBER";
783
+ dateFormat?: string;
784
+ } | {
785
+ valueType: "DATE";
786
+ dateFormat: string;
787
+ }))[];
788
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
789
+ source?: import("../../_utils/propsDiagram").Source;
790
+ plugin: import("../../_utils/propsDiagram").Plugin;
791
+ layer: Layer;
792
+ chartType: import("../../_utils/propsDiagram").ChartType;
793
+ relatedList: unknown[];
794
+ sqlConditions?: ({
795
+ alias: string;
796
+ fieldName: string;
797
+ rule: string;
798
+ fieldValue: string;
799
+ } & ({
800
+ valueType: "TEXT" | "NUMBER";
801
+ dateFormat?: string;
802
+ } | {
803
+ valueType: "DATE";
804
+ dateFormat: string;
805
+ }))[];
806
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
216
807
  [key: string]: any;
217
808
  } | import("../../_utils/props").RequestParams;
218
809
  };
@@ -225,7 +816,43 @@ export declare const tableComponentProps: {
225
816
  [key: string]: any;
226
817
  }[] | {
227
818
  [key: string]: any;
228
- }[] | import("../../_utils/props").Events | {
819
+ }[] | ({
820
+ source?: import("../../_utils/propsDiagram").Source;
821
+ plugin: import("../../_utils/propsDiagram").Plugin;
822
+ layer: Layer;
823
+ chartType: import("../../_utils/propsDiagram").ChartType;
824
+ relatedList: unknown[];
825
+ sqlConditions?: ({
826
+ alias: string;
827
+ fieldName: string;
828
+ rule: string;
829
+ fieldValue: string;
830
+ } & ({
831
+ valueType: "TEXT" | "NUMBER";
832
+ dateFormat?: string;
833
+ } | {
834
+ valueType: "DATE";
835
+ dateFormat: string;
836
+ }))[];
837
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
838
+ source?: import("../../_utils/propsDiagram").Source;
839
+ plugin: import("../../_utils/propsDiagram").Plugin;
840
+ layer: Layer;
841
+ chartType: import("../../_utils/propsDiagram").ChartType;
842
+ relatedList: unknown[];
843
+ sqlConditions?: ({
844
+ alias: string;
845
+ fieldName: string;
846
+ rule: string;
847
+ fieldValue: string;
848
+ } & ({
849
+ valueType: "TEXT" | "NUMBER";
850
+ dateFormat?: string;
851
+ } | {
852
+ valueType: "DATE";
853
+ dateFormat: string;
854
+ }))[];
855
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
229
856
  [key: string]: any;
230
857
  } | import("../../_utils/props").RequestParams;
231
858
  };
@@ -238,7 +865,43 @@ export declare const tableComponentProps: {
238
865
  [key: string]: any;
239
866
  }[] | {
240
867
  [key: string]: any;
241
- }[] | import("../../_utils/props").Events | {
868
+ }[] | ({
869
+ source?: import("../../_utils/propsDiagram").Source;
870
+ plugin: import("../../_utils/propsDiagram").Plugin;
871
+ layer: Layer;
872
+ chartType: import("../../_utils/propsDiagram").ChartType;
873
+ relatedList: unknown[];
874
+ sqlConditions?: ({
875
+ alias: string;
876
+ fieldName: string;
877
+ rule: string;
878
+ fieldValue: string;
879
+ } & ({
880
+ valueType: "TEXT" | "NUMBER";
881
+ dateFormat?: string;
882
+ } | {
883
+ valueType: "DATE";
884
+ dateFormat: string;
885
+ }))[];
886
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
887
+ source?: import("../../_utils/propsDiagram").Source;
888
+ plugin: import("../../_utils/propsDiagram").Plugin;
889
+ layer: Layer;
890
+ chartType: import("../../_utils/propsDiagram").ChartType;
891
+ relatedList: unknown[];
892
+ sqlConditions?: ({
893
+ alias: string;
894
+ fieldName: string;
895
+ rule: string;
896
+ fieldValue: string;
897
+ } & ({
898
+ valueType: "TEXT" | "NUMBER";
899
+ dateFormat?: string;
900
+ } | {
901
+ valueType: "DATE";
902
+ dateFormat: string;
903
+ }))[];
904
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
242
905
  [key: string]: any;
243
906
  } | import("../../_utils/props").RequestParams;
244
907
  };
@@ -251,7 +914,43 @@ export declare const tableComponentProps: {
251
914
  [key: string]: any;
252
915
  }[] | {
253
916
  [key: string]: any;
254
- }[] | import("../../_utils/props").Events | {
917
+ }[] | ({
918
+ source?: import("../../_utils/propsDiagram").Source;
919
+ plugin: import("../../_utils/propsDiagram").Plugin;
920
+ layer: Layer;
921
+ chartType: import("../../_utils/propsDiagram").ChartType;
922
+ relatedList: unknown[];
923
+ sqlConditions?: ({
924
+ alias: string;
925
+ fieldName: string;
926
+ rule: string;
927
+ fieldValue: string;
928
+ } & ({
929
+ valueType: "TEXT" | "NUMBER";
930
+ dateFormat?: string;
931
+ } | {
932
+ valueType: "DATE";
933
+ dateFormat: string;
934
+ }))[];
935
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
936
+ source?: import("../../_utils/propsDiagram").Source;
937
+ plugin: import("../../_utils/propsDiagram").Plugin;
938
+ layer: Layer;
939
+ chartType: import("../../_utils/propsDiagram").ChartType;
940
+ relatedList: unknown[];
941
+ sqlConditions?: ({
942
+ alias: string;
943
+ fieldName: string;
944
+ rule: string;
945
+ fieldValue: string;
946
+ } & ({
947
+ valueType: "TEXT" | "NUMBER";
948
+ dateFormat?: string;
949
+ } | {
950
+ valueType: "DATE";
951
+ dateFormat: string;
952
+ }))[];
953
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
255
954
  [key: string]: any;
256
955
  } | import("../../_utils/props").RequestParams;
257
956
  };
@@ -264,7 +963,43 @@ export declare const tableComponentProps: {
264
963
  [key: string]: any;
265
964
  }[] | {
266
965
  [key: string]: any;
267
- }[] | import("../../_utils/props").Events | {
966
+ }[] | ({
967
+ source?: import("../../_utils/propsDiagram").Source;
968
+ plugin: import("../../_utils/propsDiagram").Plugin;
969
+ layer: Layer;
970
+ chartType: import("../../_utils/propsDiagram").ChartType;
971
+ relatedList: unknown[];
972
+ sqlConditions?: ({
973
+ alias: string;
974
+ fieldName: string;
975
+ rule: string;
976
+ fieldValue: string;
977
+ } & ({
978
+ valueType: "TEXT" | "NUMBER";
979
+ dateFormat?: string;
980
+ } | {
981
+ valueType: "DATE";
982
+ dateFormat: string;
983
+ }))[];
984
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
985
+ source?: import("../../_utils/propsDiagram").Source;
986
+ plugin: import("../../_utils/propsDiagram").Plugin;
987
+ layer: Layer;
988
+ chartType: import("../../_utils/propsDiagram").ChartType;
989
+ relatedList: unknown[];
990
+ sqlConditions?: ({
991
+ alias: string;
992
+ fieldName: string;
993
+ rule: string;
994
+ fieldValue: string;
995
+ } & ({
996
+ valueType: "TEXT" | "NUMBER";
997
+ dateFormat?: string;
998
+ } | {
999
+ valueType: "DATE";
1000
+ dateFormat: string;
1001
+ }))[];
1002
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
268
1003
  [key: string]: any;
269
1004
  } | import("../../_utils/props").RequestParams;
270
1005
  };
@@ -277,7 +1012,43 @@ export declare const tableComponentProps: {
277
1012
  [key: string]: any;
278
1013
  }[] | {
279
1014
  [key: string]: any;
280
- }[] | import("../../_utils/props").Events | {
1015
+ }[] | ({
1016
+ source?: import("../../_utils/propsDiagram").Source;
1017
+ plugin: import("../../_utils/propsDiagram").Plugin;
1018
+ layer: Layer;
1019
+ chartType: import("../../_utils/propsDiagram").ChartType;
1020
+ relatedList: unknown[];
1021
+ sqlConditions?: ({
1022
+ alias: string;
1023
+ fieldName: string;
1024
+ rule: string;
1025
+ fieldValue: string;
1026
+ } & ({
1027
+ valueType: "TEXT" | "NUMBER";
1028
+ dateFormat?: string;
1029
+ } | {
1030
+ valueType: "DATE";
1031
+ dateFormat: string;
1032
+ }))[];
1033
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1034
+ source?: import("../../_utils/propsDiagram").Source;
1035
+ plugin: import("../../_utils/propsDiagram").Plugin;
1036
+ layer: Layer;
1037
+ chartType: import("../../_utils/propsDiagram").ChartType;
1038
+ relatedList: unknown[];
1039
+ sqlConditions?: ({
1040
+ alias: string;
1041
+ fieldName: string;
1042
+ rule: string;
1043
+ fieldValue: string;
1044
+ } & ({
1045
+ valueType: "TEXT" | "NUMBER";
1046
+ dateFormat?: string;
1047
+ } | {
1048
+ valueType: "DATE";
1049
+ dateFormat: string;
1050
+ }))[];
1051
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
281
1052
  [key: string]: any;
282
1053
  } | import("../../_utils/props").RequestParams;
283
1054
  };
@@ -290,7 +1061,43 @@ export declare const tableComponentProps: {
290
1061
  [key: string]: any;
291
1062
  }[] | {
292
1063
  [key: string]: any;
293
- }[] | import("../../_utils/props").Events | {
1064
+ }[] | ({
1065
+ source?: import("../../_utils/propsDiagram").Source;
1066
+ plugin: import("../../_utils/propsDiagram").Plugin;
1067
+ layer: Layer;
1068
+ chartType: import("../../_utils/propsDiagram").ChartType;
1069
+ relatedList: unknown[];
1070
+ sqlConditions?: ({
1071
+ alias: string;
1072
+ fieldName: string;
1073
+ rule: string;
1074
+ fieldValue: string;
1075
+ } & ({
1076
+ valueType: "TEXT" | "NUMBER";
1077
+ dateFormat?: string;
1078
+ } | {
1079
+ valueType: "DATE";
1080
+ dateFormat: string;
1081
+ }))[];
1082
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1083
+ source?: import("../../_utils/propsDiagram").Source;
1084
+ plugin: import("../../_utils/propsDiagram").Plugin;
1085
+ layer: Layer;
1086
+ chartType: import("../../_utils/propsDiagram").ChartType;
1087
+ relatedList: unknown[];
1088
+ sqlConditions?: ({
1089
+ alias: string;
1090
+ fieldName: string;
1091
+ rule: string;
1092
+ fieldValue: string;
1093
+ } & ({
1094
+ valueType: "TEXT" | "NUMBER";
1095
+ dateFormat?: string;
1096
+ } | {
1097
+ valueType: "DATE";
1098
+ dateFormat: string;
1099
+ }))[];
1100
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
294
1101
  [key: string]: any;
295
1102
  } | import("../../_utils/props").RequestParams;
296
1103
  };
@@ -303,7 +1110,43 @@ export declare const tableComponentProps: {
303
1110
  [key: string]: any;
304
1111
  }[] | {
305
1112
  [key: string]: any;
306
- }[] | import("../../_utils/props").Events | {
1113
+ }[] | ({
1114
+ source?: import("../../_utils/propsDiagram").Source;
1115
+ plugin: import("../../_utils/propsDiagram").Plugin;
1116
+ layer: Layer;
1117
+ chartType: import("../../_utils/propsDiagram").ChartType;
1118
+ relatedList: unknown[];
1119
+ sqlConditions?: ({
1120
+ alias: string;
1121
+ fieldName: string;
1122
+ rule: string;
1123
+ fieldValue: string;
1124
+ } & ({
1125
+ valueType: "TEXT" | "NUMBER";
1126
+ dateFormat?: string;
1127
+ } | {
1128
+ valueType: "DATE";
1129
+ dateFormat: string;
1130
+ }))[];
1131
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1132
+ source?: import("../../_utils/propsDiagram").Source;
1133
+ plugin: import("../../_utils/propsDiagram").Plugin;
1134
+ layer: Layer;
1135
+ chartType: import("../../_utils/propsDiagram").ChartType;
1136
+ relatedList: unknown[];
1137
+ sqlConditions?: ({
1138
+ alias: string;
1139
+ fieldName: string;
1140
+ rule: string;
1141
+ fieldValue: string;
1142
+ } & ({
1143
+ valueType: "TEXT" | "NUMBER";
1144
+ dateFormat?: string;
1145
+ } | {
1146
+ valueType: "DATE";
1147
+ dateFormat: string;
1148
+ }))[];
1149
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
307
1150
  [key: string]: any;
308
1151
  } | import("../../_utils/props").RequestParams;
309
1152
  };
@@ -316,7 +1159,43 @@ export declare const tableComponentProps: {
316
1159
  [key: string]: any;
317
1160
  }[] | {
318
1161
  [key: string]: any;
319
- }[] | import("../../_utils/props").Events | {
1162
+ }[] | ({
1163
+ source?: import("../../_utils/propsDiagram").Source;
1164
+ plugin: import("../../_utils/propsDiagram").Plugin;
1165
+ layer: Layer;
1166
+ chartType: import("../../_utils/propsDiagram").ChartType;
1167
+ relatedList: unknown[];
1168
+ sqlConditions?: ({
1169
+ alias: string;
1170
+ fieldName: string;
1171
+ rule: string;
1172
+ fieldValue: string;
1173
+ } & ({
1174
+ valueType: "TEXT" | "NUMBER";
1175
+ dateFormat?: string;
1176
+ } | {
1177
+ valueType: "DATE";
1178
+ dateFormat: string;
1179
+ }))[];
1180
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1181
+ source?: import("../../_utils/propsDiagram").Source;
1182
+ plugin: import("../../_utils/propsDiagram").Plugin;
1183
+ layer: Layer;
1184
+ chartType: import("../../_utils/propsDiagram").ChartType;
1185
+ relatedList: unknown[];
1186
+ sqlConditions?: ({
1187
+ alias: string;
1188
+ fieldName: string;
1189
+ rule: string;
1190
+ fieldValue: string;
1191
+ } & ({
1192
+ valueType: "TEXT" | "NUMBER";
1193
+ dateFormat?: string;
1194
+ } | {
1195
+ valueType: "DATE";
1196
+ dateFormat: string;
1197
+ }))[];
1198
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
320
1199
  [key: string]: any;
321
1200
  } | import("../../_utils/props").RequestParams;
322
1201
  };
@@ -329,7 +1208,43 @@ export declare const tableComponentProps: {
329
1208
  [key: string]: any;
330
1209
  }[] | {
331
1210
  [key: string]: any;
332
- }[] | import("../../_utils/props").Events | {
1211
+ }[] | ({
1212
+ source?: import("../../_utils/propsDiagram").Source;
1213
+ plugin: import("../../_utils/propsDiagram").Plugin;
1214
+ layer: Layer;
1215
+ chartType: import("../../_utils/propsDiagram").ChartType;
1216
+ relatedList: unknown[];
1217
+ sqlConditions?: ({
1218
+ alias: string;
1219
+ fieldName: string;
1220
+ rule: string;
1221
+ fieldValue: string;
1222
+ } & ({
1223
+ valueType: "TEXT" | "NUMBER";
1224
+ dateFormat?: string;
1225
+ } | {
1226
+ valueType: "DATE";
1227
+ dateFormat: string;
1228
+ }))[];
1229
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1230
+ source?: import("../../_utils/propsDiagram").Source;
1231
+ plugin: import("../../_utils/propsDiagram").Plugin;
1232
+ layer: Layer;
1233
+ chartType: import("../../_utils/propsDiagram").ChartType;
1234
+ relatedList: unknown[];
1235
+ sqlConditions?: ({
1236
+ alias: string;
1237
+ fieldName: string;
1238
+ rule: string;
1239
+ fieldValue: string;
1240
+ } & ({
1241
+ valueType: "TEXT" | "NUMBER";
1242
+ dateFormat?: string;
1243
+ } | {
1244
+ valueType: "DATE";
1245
+ dateFormat: string;
1246
+ }))[];
1247
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
333
1248
  [key: string]: any;
334
1249
  } | import("../../_utils/props").RequestParams;
335
1250
  };
@@ -342,7 +1257,43 @@ export declare const tableComponentProps: {
342
1257
  [key: string]: any;
343
1258
  }[] | {
344
1259
  [key: string]: any;
345
- }[] | import("../../_utils/props").Events | {
1260
+ }[] | ({
1261
+ source?: import("../../_utils/propsDiagram").Source;
1262
+ plugin: import("../../_utils/propsDiagram").Plugin;
1263
+ layer: Layer;
1264
+ chartType: import("../../_utils/propsDiagram").ChartType;
1265
+ relatedList: unknown[];
1266
+ sqlConditions?: ({
1267
+ alias: string;
1268
+ fieldName: string;
1269
+ rule: string;
1270
+ fieldValue: string;
1271
+ } & ({
1272
+ valueType: "TEXT" | "NUMBER";
1273
+ dateFormat?: string;
1274
+ } | {
1275
+ valueType: "DATE";
1276
+ dateFormat: string;
1277
+ }))[];
1278
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1279
+ source?: import("../../_utils/propsDiagram").Source;
1280
+ plugin: import("../../_utils/propsDiagram").Plugin;
1281
+ layer: Layer;
1282
+ chartType: import("../../_utils/propsDiagram").ChartType;
1283
+ relatedList: unknown[];
1284
+ sqlConditions?: ({
1285
+ alias: string;
1286
+ fieldName: string;
1287
+ rule: string;
1288
+ fieldValue: string;
1289
+ } & ({
1290
+ valueType: "TEXT" | "NUMBER";
1291
+ dateFormat?: string;
1292
+ } | {
1293
+ valueType: "DATE";
1294
+ dateFormat: string;
1295
+ }))[];
1296
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
346
1297
  [key: string]: any;
347
1298
  } | import("../../_utils/props").RequestParams;
348
1299
  };
@@ -355,7 +1306,43 @@ export declare const tableComponentProps: {
355
1306
  [key: string]: any;
356
1307
  }[] | {
357
1308
  [key: string]: any;
358
- }[] | import("../../_utils/props").Events | {
1309
+ }[] | ({
1310
+ source?: import("../../_utils/propsDiagram").Source;
1311
+ plugin: import("../../_utils/propsDiagram").Plugin;
1312
+ layer: Layer;
1313
+ chartType: import("../../_utils/propsDiagram").ChartType;
1314
+ relatedList: unknown[];
1315
+ sqlConditions?: ({
1316
+ alias: string;
1317
+ fieldName: string;
1318
+ rule: string;
1319
+ fieldValue: string;
1320
+ } & ({
1321
+ valueType: "TEXT" | "NUMBER";
1322
+ dateFormat?: string;
1323
+ } | {
1324
+ valueType: "DATE";
1325
+ dateFormat: string;
1326
+ }))[];
1327
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1328
+ source?: import("../../_utils/propsDiagram").Source;
1329
+ plugin: import("../../_utils/propsDiagram").Plugin;
1330
+ layer: Layer;
1331
+ chartType: import("../../_utils/propsDiagram").ChartType;
1332
+ relatedList: unknown[];
1333
+ sqlConditions?: ({
1334
+ alias: string;
1335
+ fieldName: string;
1336
+ rule: string;
1337
+ fieldValue: string;
1338
+ } & ({
1339
+ valueType: "TEXT" | "NUMBER";
1340
+ dateFormat?: string;
1341
+ } | {
1342
+ valueType: "DATE";
1343
+ dateFormat: string;
1344
+ }))[];
1345
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
359
1346
  [key: string]: any;
360
1347
  } | import("../../_utils/props").RequestParams;
361
1348
  };
@@ -368,11 +1355,47 @@ export declare const tableComponentProps: {
368
1355
  [key: string]: any;
369
1356
  }[] | {
370
1357
  [key: string]: any;
371
- }[] | import("../../_utils/props").Events | {
1358
+ }[] | ({
1359
+ source?: import("../../_utils/propsDiagram").Source;
1360
+ plugin: import("../../_utils/propsDiagram").Plugin;
1361
+ layer: Layer;
1362
+ chartType: import("../../_utils/propsDiagram").ChartType;
1363
+ relatedList: unknown[];
1364
+ sqlConditions?: ({
1365
+ alias: string;
1366
+ fieldName: string;
1367
+ rule: string;
1368
+ fieldValue: string;
1369
+ } & ({
1370
+ valueType: "TEXT" | "NUMBER";
1371
+ dateFormat?: string;
1372
+ } | {
1373
+ valueType: "DATE";
1374
+ dateFormat: string;
1375
+ }))[];
1376
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1377
+ source?: import("../../_utils/propsDiagram").Source;
1378
+ plugin: import("../../_utils/propsDiagram").Plugin;
1379
+ layer: Layer;
1380
+ chartType: import("../../_utils/propsDiagram").ChartType;
1381
+ relatedList: unknown[];
1382
+ sqlConditions?: ({
1383
+ alias: string;
1384
+ fieldName: string;
1385
+ rule: string;
1386
+ fieldValue: string;
1387
+ } & ({
1388
+ valueType: "TEXT" | "NUMBER";
1389
+ dateFormat?: string;
1390
+ } | {
1391
+ valueType: "DATE";
1392
+ dateFormat: string;
1393
+ }))[];
1394
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
372
1395
  [key: string]: any;
373
1396
  } | import("../../_utils/props").RequestParams;
374
1397
  };
375
- isRequestData: {
1398
+ events: {
376
1399
  type?: undefined;
377
1400
  default?: undefined;
378
1401
  } | {
@@ -381,11 +1404,47 @@ export declare const tableComponentProps: {
381
1404
  [key: string]: any;
382
1405
  }[] | {
383
1406
  [key: string]: any;
384
- }[] | import("../../_utils/props").Events | {
1407
+ }[] | ({
1408
+ source?: import("../../_utils/propsDiagram").Source;
1409
+ plugin: import("../../_utils/propsDiagram").Plugin;
1410
+ layer: Layer;
1411
+ chartType: import("../../_utils/propsDiagram").ChartType;
1412
+ relatedList: unknown[];
1413
+ sqlConditions?: ({
1414
+ alias: string;
1415
+ fieldName: string;
1416
+ rule: string;
1417
+ fieldValue: string;
1418
+ } & ({
1419
+ valueType: "TEXT" | "NUMBER";
1420
+ dateFormat?: string;
1421
+ } | {
1422
+ valueType: "DATE";
1423
+ dateFormat: string;
1424
+ }))[];
1425
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1426
+ source?: import("../../_utils/propsDiagram").Source;
1427
+ plugin: import("../../_utils/propsDiagram").Plugin;
1428
+ layer: Layer;
1429
+ chartType: import("../../_utils/propsDiagram").ChartType;
1430
+ relatedList: unknown[];
1431
+ sqlConditions?: ({
1432
+ alias: string;
1433
+ fieldName: string;
1434
+ rule: string;
1435
+ fieldValue: string;
1436
+ } & ({
1437
+ valueType: "TEXT" | "NUMBER";
1438
+ dateFormat?: string;
1439
+ } | {
1440
+ valueType: "DATE";
1441
+ dateFormat: string;
1442
+ }))[];
1443
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
385
1444
  [key: string]: any;
386
1445
  } | import("../../_utils/props").RequestParams;
387
1446
  };
388
- events: {
1447
+ requestUrl: {
389
1448
  type?: undefined;
390
1449
  default?: undefined;
391
1450
  } | {
@@ -394,11 +1453,47 @@ export declare const tableComponentProps: {
394
1453
  [key: string]: any;
395
1454
  }[] | {
396
1455
  [key: string]: any;
397
- }[] | import("../../_utils/props").Events | {
1456
+ }[] | ({
1457
+ source?: import("../../_utils/propsDiagram").Source;
1458
+ plugin: import("../../_utils/propsDiagram").Plugin;
1459
+ layer: Layer;
1460
+ chartType: import("../../_utils/propsDiagram").ChartType;
1461
+ relatedList: unknown[];
1462
+ sqlConditions?: ({
1463
+ alias: string;
1464
+ fieldName: string;
1465
+ rule: string;
1466
+ fieldValue: string;
1467
+ } & ({
1468
+ valueType: "TEXT" | "NUMBER";
1469
+ dateFormat?: string;
1470
+ } | {
1471
+ valueType: "DATE";
1472
+ dateFormat: string;
1473
+ }))[];
1474
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1475
+ source?: import("../../_utils/propsDiagram").Source;
1476
+ plugin: import("../../_utils/propsDiagram").Plugin;
1477
+ layer: Layer;
1478
+ chartType: import("../../_utils/propsDiagram").ChartType;
1479
+ relatedList: unknown[];
1480
+ sqlConditions?: ({
1481
+ alias: string;
1482
+ fieldName: string;
1483
+ rule: string;
1484
+ fieldValue: string;
1485
+ } & ({
1486
+ valueType: "TEXT" | "NUMBER";
1487
+ dateFormat?: string;
1488
+ } | {
1489
+ valueType: "DATE";
1490
+ dateFormat: string;
1491
+ }))[];
1492
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
398
1493
  [key: string]: any;
399
1494
  } | import("../../_utils/props").RequestParams;
400
1495
  };
401
- requestUrl: {
1496
+ requestMethod: {
402
1497
  type?: undefined;
403
1498
  default?: undefined;
404
1499
  } | {
@@ -407,11 +1502,47 @@ export declare const tableComponentProps: {
407
1502
  [key: string]: any;
408
1503
  }[] | {
409
1504
  [key: string]: any;
410
- }[] | import("../../_utils/props").Events | {
1505
+ }[] | ({
1506
+ source?: import("../../_utils/propsDiagram").Source;
1507
+ plugin: import("../../_utils/propsDiagram").Plugin;
1508
+ layer: Layer;
1509
+ chartType: import("../../_utils/propsDiagram").ChartType;
1510
+ relatedList: unknown[];
1511
+ sqlConditions?: ({
1512
+ alias: string;
1513
+ fieldName: string;
1514
+ rule: string;
1515
+ fieldValue: string;
1516
+ } & ({
1517
+ valueType: "TEXT" | "NUMBER";
1518
+ dateFormat?: string;
1519
+ } | {
1520
+ valueType: "DATE";
1521
+ dateFormat: string;
1522
+ }))[];
1523
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1524
+ source?: import("../../_utils/propsDiagram").Source;
1525
+ plugin: import("../../_utils/propsDiagram").Plugin;
1526
+ layer: Layer;
1527
+ chartType: import("../../_utils/propsDiagram").ChartType;
1528
+ relatedList: unknown[];
1529
+ sqlConditions?: ({
1530
+ alias: string;
1531
+ fieldName: string;
1532
+ rule: string;
1533
+ fieldValue: string;
1534
+ } & ({
1535
+ valueType: "TEXT" | "NUMBER";
1536
+ dateFormat?: string;
1537
+ } | {
1538
+ valueType: "DATE";
1539
+ dateFormat: string;
1540
+ }))[];
1541
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
411
1542
  [key: string]: any;
412
1543
  } | import("../../_utils/props").RequestParams;
413
1544
  };
414
- requestMethod: {
1545
+ requestHeaders: {
415
1546
  type?: undefined;
416
1547
  default?: undefined;
417
1548
  } | {
@@ -420,11 +1551,47 @@ export declare const tableComponentProps: {
420
1551
  [key: string]: any;
421
1552
  }[] | {
422
1553
  [key: string]: any;
423
- }[] | import("../../_utils/props").Events | {
1554
+ }[] | ({
1555
+ source?: import("../../_utils/propsDiagram").Source;
1556
+ plugin: import("../../_utils/propsDiagram").Plugin;
1557
+ layer: Layer;
1558
+ chartType: import("../../_utils/propsDiagram").ChartType;
1559
+ relatedList: unknown[];
1560
+ sqlConditions?: ({
1561
+ alias: string;
1562
+ fieldName: string;
1563
+ rule: string;
1564
+ fieldValue: string;
1565
+ } & ({
1566
+ valueType: "TEXT" | "NUMBER";
1567
+ dateFormat?: string;
1568
+ } | {
1569
+ valueType: "DATE";
1570
+ dateFormat: string;
1571
+ }))[];
1572
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1573
+ source?: import("../../_utils/propsDiagram").Source;
1574
+ plugin: import("../../_utils/propsDiagram").Plugin;
1575
+ layer: Layer;
1576
+ chartType: import("../../_utils/propsDiagram").ChartType;
1577
+ relatedList: unknown[];
1578
+ sqlConditions?: ({
1579
+ alias: string;
1580
+ fieldName: string;
1581
+ rule: string;
1582
+ fieldValue: string;
1583
+ } & ({
1584
+ valueType: "TEXT" | "NUMBER";
1585
+ dateFormat?: string;
1586
+ } | {
1587
+ valueType: "DATE";
1588
+ dateFormat: string;
1589
+ }))[];
1590
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
424
1591
  [key: string]: any;
425
1592
  } | import("../../_utils/props").RequestParams;
426
1593
  };
427
- requestHeaders: {
1594
+ isOpenRequestTimer: {
428
1595
  type?: undefined;
429
1596
  default?: undefined;
430
1597
  } | {
@@ -433,11 +1600,47 @@ export declare const tableComponentProps: {
433
1600
  [key: string]: any;
434
1601
  }[] | {
435
1602
  [key: string]: any;
436
- }[] | import("../../_utils/props").Events | {
1603
+ }[] | ({
1604
+ source?: import("../../_utils/propsDiagram").Source;
1605
+ plugin: import("../../_utils/propsDiagram").Plugin;
1606
+ layer: Layer;
1607
+ chartType: import("../../_utils/propsDiagram").ChartType;
1608
+ relatedList: unknown[];
1609
+ sqlConditions?: ({
1610
+ alias: string;
1611
+ fieldName: string;
1612
+ rule: string;
1613
+ fieldValue: string;
1614
+ } & ({
1615
+ valueType: "TEXT" | "NUMBER";
1616
+ dateFormat?: string;
1617
+ } | {
1618
+ valueType: "DATE";
1619
+ dateFormat: string;
1620
+ }))[];
1621
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1622
+ source?: import("../../_utils/propsDiagram").Source;
1623
+ plugin: import("../../_utils/propsDiagram").Plugin;
1624
+ layer: Layer;
1625
+ chartType: import("../../_utils/propsDiagram").ChartType;
1626
+ relatedList: unknown[];
1627
+ sqlConditions?: ({
1628
+ alias: string;
1629
+ fieldName: string;
1630
+ rule: string;
1631
+ fieldValue: string;
1632
+ } & ({
1633
+ valueType: "TEXT" | "NUMBER";
1634
+ dateFormat?: string;
1635
+ } | {
1636
+ valueType: "DATE";
1637
+ dateFormat: string;
1638
+ }))[];
1639
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
437
1640
  [key: string]: any;
438
1641
  } | import("../../_utils/props").RequestParams;
439
1642
  };
440
- isOpenRequestTimer: {
1643
+ requestInterval: {
441
1644
  type?: undefined;
442
1645
  default?: undefined;
443
1646
  } | {
@@ -446,11 +1649,47 @@ export declare const tableComponentProps: {
446
1649
  [key: string]: any;
447
1650
  }[] | {
448
1651
  [key: string]: any;
449
- }[] | import("../../_utils/props").Events | {
1652
+ }[] | ({
1653
+ source?: import("../../_utils/propsDiagram").Source;
1654
+ plugin: import("../../_utils/propsDiagram").Plugin;
1655
+ layer: Layer;
1656
+ chartType: import("../../_utils/propsDiagram").ChartType;
1657
+ relatedList: unknown[];
1658
+ sqlConditions?: ({
1659
+ alias: string;
1660
+ fieldName: string;
1661
+ rule: string;
1662
+ fieldValue: string;
1663
+ } & ({
1664
+ valueType: "TEXT" | "NUMBER";
1665
+ dateFormat?: string;
1666
+ } | {
1667
+ valueType: "DATE";
1668
+ dateFormat: string;
1669
+ }))[];
1670
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1671
+ source?: import("../../_utils/propsDiagram").Source;
1672
+ plugin: import("../../_utils/propsDiagram").Plugin;
1673
+ layer: Layer;
1674
+ chartType: import("../../_utils/propsDiagram").ChartType;
1675
+ relatedList: unknown[];
1676
+ sqlConditions?: ({
1677
+ alias: string;
1678
+ fieldName: string;
1679
+ rule: string;
1680
+ fieldValue: string;
1681
+ } & ({
1682
+ valueType: "TEXT" | "NUMBER";
1683
+ dateFormat?: string;
1684
+ } | {
1685
+ valueType: "DATE";
1686
+ dateFormat: string;
1687
+ }))[];
1688
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
450
1689
  [key: string]: any;
451
1690
  } | import("../../_utils/props").RequestParams;
452
1691
  };
453
- requestInterval: {
1692
+ requestParams: {
454
1693
  type?: undefined;
455
1694
  default?: undefined;
456
1695
  } | {
@@ -459,11 +1698,47 @@ export declare const tableComponentProps: {
459
1698
  [key: string]: any;
460
1699
  }[] | {
461
1700
  [key: string]: any;
462
- }[] | import("../../_utils/props").Events | {
1701
+ }[] | ({
1702
+ source?: import("../../_utils/propsDiagram").Source;
1703
+ plugin: import("../../_utils/propsDiagram").Plugin;
1704
+ layer: Layer;
1705
+ chartType: import("../../_utils/propsDiagram").ChartType;
1706
+ relatedList: unknown[];
1707
+ sqlConditions?: ({
1708
+ alias: string;
1709
+ fieldName: string;
1710
+ rule: string;
1711
+ fieldValue: string;
1712
+ } & ({
1713
+ valueType: "TEXT" | "NUMBER";
1714
+ dateFormat?: string;
1715
+ } | {
1716
+ valueType: "DATE";
1717
+ dateFormat: string;
1718
+ }))[];
1719
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1720
+ source?: import("../../_utils/propsDiagram").Source;
1721
+ plugin: import("../../_utils/propsDiagram").Plugin;
1722
+ layer: Layer;
1723
+ chartType: import("../../_utils/propsDiagram").ChartType;
1724
+ relatedList: unknown[];
1725
+ sqlConditions?: ({
1726
+ alias: string;
1727
+ fieldName: string;
1728
+ rule: string;
1729
+ fieldValue: string;
1730
+ } & ({
1731
+ valueType: "TEXT" | "NUMBER";
1732
+ dateFormat?: string;
1733
+ } | {
1734
+ valueType: "DATE";
1735
+ dateFormat: string;
1736
+ }))[];
1737
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
463
1738
  [key: string]: any;
464
1739
  } | import("../../_utils/props").RequestParams;
465
1740
  };
466
- requestParams: {
1741
+ requestSort: {
467
1742
  type?: undefined;
468
1743
  default?: undefined;
469
1744
  } | {
@@ -472,11 +1747,47 @@ export declare const tableComponentProps: {
472
1747
  [key: string]: any;
473
1748
  }[] | {
474
1749
  [key: string]: any;
475
- }[] | import("../../_utils/props").Events | {
1750
+ }[] | ({
1751
+ source?: import("../../_utils/propsDiagram").Source;
1752
+ plugin: import("../../_utils/propsDiagram").Plugin;
1753
+ layer: Layer;
1754
+ chartType: import("../../_utils/propsDiagram").ChartType;
1755
+ relatedList: unknown[];
1756
+ sqlConditions?: ({
1757
+ alias: string;
1758
+ fieldName: string;
1759
+ rule: string;
1760
+ fieldValue: string;
1761
+ } & ({
1762
+ valueType: "TEXT" | "NUMBER";
1763
+ dateFormat?: string;
1764
+ } | {
1765
+ valueType: "DATE";
1766
+ dateFormat: string;
1767
+ }))[];
1768
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1769
+ source?: import("../../_utils/propsDiagram").Source;
1770
+ plugin: import("../../_utils/propsDiagram").Plugin;
1771
+ layer: Layer;
1772
+ chartType: import("../../_utils/propsDiagram").ChartType;
1773
+ relatedList: unknown[];
1774
+ sqlConditions?: ({
1775
+ alias: string;
1776
+ fieldName: string;
1777
+ rule: string;
1778
+ fieldValue: string;
1779
+ } & ({
1780
+ valueType: "TEXT" | "NUMBER";
1781
+ dateFormat?: string;
1782
+ } | {
1783
+ valueType: "DATE";
1784
+ dateFormat: string;
1785
+ }))[];
1786
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
476
1787
  [key: string]: any;
477
1788
  } | import("../../_utils/props").RequestParams;
478
1789
  };
479
- requestSort: {
1790
+ dataType: {
480
1791
  type?: undefined;
481
1792
  default?: undefined;
482
1793
  } | {
@@ -485,7 +1796,43 @@ export declare const tableComponentProps: {
485
1796
  [key: string]: any;
486
1797
  }[] | {
487
1798
  [key: string]: any;
488
- }[] | import("../../_utils/props").Events | {
1799
+ }[] | ({
1800
+ source?: import("../../_utils/propsDiagram").Source;
1801
+ plugin: import("../../_utils/propsDiagram").Plugin;
1802
+ layer: Layer;
1803
+ chartType: import("../../_utils/propsDiagram").ChartType;
1804
+ relatedList: unknown[];
1805
+ sqlConditions?: ({
1806
+ alias: string;
1807
+ fieldName: string;
1808
+ rule: string;
1809
+ fieldValue: string;
1810
+ } & ({
1811
+ valueType: "TEXT" | "NUMBER";
1812
+ dateFormat?: string;
1813
+ } | {
1814
+ valueType: "DATE";
1815
+ dateFormat: string;
1816
+ }))[];
1817
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1818
+ source?: import("../../_utils/propsDiagram").Source;
1819
+ plugin: import("../../_utils/propsDiagram").Plugin;
1820
+ layer: Layer;
1821
+ chartType: import("../../_utils/propsDiagram").ChartType;
1822
+ relatedList: unknown[];
1823
+ sqlConditions?: ({
1824
+ alias: string;
1825
+ fieldName: string;
1826
+ rule: string;
1827
+ fieldValue: string;
1828
+ } & ({
1829
+ valueType: "TEXT" | "NUMBER";
1830
+ dateFormat?: string;
1831
+ } | {
1832
+ valueType: "DATE";
1833
+ dateFormat: string;
1834
+ }))[];
1835
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | import("../../_utils/props").Events | {
489
1836
  [key: string]: any;
490
1837
  } | import("../../_utils/props").RequestParams;
491
1838
  };