@ecan-bi/datav 1.0.21 → 1.0.24

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/common/Skeleton/Skeleton.vue.d.ts +1 -7
  11. package/dist/components.d.ts +1 -0
  12. package/dist/container/border/Border.vue.d.ts +360 -0
  13. package/dist/container/border/props.d.ts +11 -10
  14. package/dist/container/card/props.d.ts +9 -9
  15. package/dist/container/modal/Modal.vue.d.ts +2 -0
  16. package/dist/control/button/Button.vue.d.ts +13 -13
  17. package/dist/control/button/props.d.ts +9 -9
  18. package/dist/control/date-picker/DatePicker.vue.d.ts +13 -13
  19. package/dist/control/date-picker/props.d.ts +9 -9
  20. package/dist/control/input/Input.vue.d.ts +13 -13
  21. package/dist/control/input/props.d.ts +9 -9
  22. package/dist/control/range-picker/RangePicker.vue.d.ts +13 -13
  23. package/dist/control/range-picker/props.d.ts +9 -9
  24. package/dist/control/select/Select.vue.d.ts +13 -13
  25. package/dist/control/select/props.d.ts +9 -9
  26. package/dist/control/tabs/Tabs.vue.d.ts +10 -10
  27. package/dist/control/tabs/props.d.ts +7 -7
  28. package/dist/graph/bar/Bar.vue.d.ts +1800 -59
  29. package/dist/graph/bar/props.d.ts +1794 -55
  30. package/dist/graph/combo-graph/ComboGraph.vue.d.ts +13 -13
  31. package/dist/graph/combo-graph/props.d.ts +9 -9
  32. package/dist/graph/custom-graph/CustomGraph.vue.d.ts +13 -13
  33. package/dist/graph/custom-graph/props.d.ts +9 -9
  34. package/dist/graph/line/Line.vue.d.ts +13 -13
  35. package/dist/graph/line/props.d.ts +9 -9
  36. package/dist/graph/pie/Pie.vue.d.ts +14 -13
  37. package/dist/graph/pie/props.d.ts +9 -9
  38. package/dist/graph/scatter/Scatter.vue.d.ts +213 -17
  39. package/dist/graph/scatter/props.d.ts +126 -9
  40. package/dist/index.esm.js +1 -15
  41. package/dist/index.esm.js.map +1 -1
  42. package/dist/index.umd.js +1 -15
  43. package/dist/index.umd.js.map +1 -1
  44. package/dist/map/index.d.ts +1 -0
  45. package/dist/map/map/Map.vue.d.ts +710 -0
  46. package/dist/map/map/index.d.ts +3 -0
  47. package/dist/map/map/props.d.ts +514 -0
  48. package/dist/media/image/Image.vue.d.ts +53 -13
  49. package/dist/media/image/props.d.ts +39 -9
  50. package/dist/table/table/Table.vue.d.ts +1401 -51
  51. package/dist/table/table/props.d.ts +1392 -45
  52. package/dist/text/index.d.ts +1 -0
  53. package/dist/text/list/List.vue.d.ts +13 -13
  54. package/dist/text/list/props.d.ts +9 -9
  55. package/dist/text/proportion/Proportion.vue.d.ts +524 -0
  56. package/dist/text/proportion/index.d.ts +3 -0
  57. package/dist/text/proportion/props.d.ts +395 -0
  58. package/dist/text/text/Text.vue.d.ts +68 -51
  59. package/dist/text/text/props.d.ts +25 -13
  60. package/dist/text/time-display/TimeDisplay.vue.d.ts +13 -13
  61. package/dist/text/time-display/props.d.ts +9 -9
  62. package/package.json +1 -1
@@ -10,7 +10,43 @@ declare const _default: import("vue").DefineComponent<{
10
10
  [key: string]: any;
11
11
  }[] | {
12
12
  [key: string]: any;
13
- }[] | Events | {
13
+ }[] | ({
14
+ source?: import("../../_utils/propsDiagram").Source;
15
+ plugin: import("../../_utils/propsDiagram").Plugin;
16
+ layer: import("../../_utils/propsDiagram").Layer;
17
+ chartType: import("../../_utils/propsDiagram").ChartType;
18
+ relatedList: unknown[];
19
+ sqlConditions?: ({
20
+ alias: string;
21
+ fieldName: string;
22
+ rule: string;
23
+ fieldValue: string;
24
+ } & ({
25
+ valueType: "TEXT" | "NUMBER";
26
+ dateFormat?: string;
27
+ } | {
28
+ valueType: "DATE";
29
+ dateFormat: string;
30
+ }))[];
31
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
32
+ source?: import("../../_utils/propsDiagram").Source;
33
+ plugin: import("../../_utils/propsDiagram").Plugin;
34
+ layer: import("../../_utils/propsDiagram").Layer;
35
+ chartType: import("../../_utils/propsDiagram").ChartType;
36
+ relatedList: unknown[];
37
+ sqlConditions?: ({
38
+ alias: string;
39
+ fieldName: string;
40
+ rule: string;
41
+ fieldValue: string;
42
+ } & ({
43
+ valueType: "TEXT" | "NUMBER";
44
+ dateFormat?: string;
45
+ } | {
46
+ valueType: "DATE";
47
+ dateFormat: string;
48
+ }))[];
49
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
14
50
  [key: string]: any;
15
51
  } | import("src/_utils/props").RequestParams;
16
52
  };
@@ -23,7 +59,43 @@ declare const _default: import("vue").DefineComponent<{
23
59
  [key: string]: any;
24
60
  }[] | {
25
61
  [key: string]: any;
26
- }[] | Events | {
62
+ }[] | ({
63
+ source?: import("../../_utils/propsDiagram").Source;
64
+ plugin: import("../../_utils/propsDiagram").Plugin;
65
+ layer: import("../../_utils/propsDiagram").Layer;
66
+ chartType: import("../../_utils/propsDiagram").ChartType;
67
+ relatedList: unknown[];
68
+ sqlConditions?: ({
69
+ alias: string;
70
+ fieldName: string;
71
+ rule: string;
72
+ fieldValue: string;
73
+ } & ({
74
+ valueType: "TEXT" | "NUMBER";
75
+ dateFormat?: string;
76
+ } | {
77
+ valueType: "DATE";
78
+ dateFormat: string;
79
+ }))[];
80
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
81
+ source?: import("../../_utils/propsDiagram").Source;
82
+ plugin: import("../../_utils/propsDiagram").Plugin;
83
+ layer: import("../../_utils/propsDiagram").Layer;
84
+ chartType: import("../../_utils/propsDiagram").ChartType;
85
+ relatedList: unknown[];
86
+ sqlConditions?: ({
87
+ alias: string;
88
+ fieldName: string;
89
+ rule: string;
90
+ fieldValue: string;
91
+ } & ({
92
+ valueType: "TEXT" | "NUMBER";
93
+ dateFormat?: string;
94
+ } | {
95
+ valueType: "DATE";
96
+ dateFormat: string;
97
+ }))[];
98
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
27
99
  [key: string]: any;
28
100
  } | import("src/_utils/props").RequestParams;
29
101
  };
@@ -36,7 +108,43 @@ declare const _default: import("vue").DefineComponent<{
36
108
  [key: string]: any;
37
109
  }[] | {
38
110
  [key: string]: any;
39
- }[] | Events | {
111
+ }[] | ({
112
+ source?: import("../../_utils/propsDiagram").Source;
113
+ plugin: import("../../_utils/propsDiagram").Plugin;
114
+ layer: import("../../_utils/propsDiagram").Layer;
115
+ chartType: import("../../_utils/propsDiagram").ChartType;
116
+ relatedList: unknown[];
117
+ sqlConditions?: ({
118
+ alias: string;
119
+ fieldName: string;
120
+ rule: string;
121
+ fieldValue: string;
122
+ } & ({
123
+ valueType: "TEXT" | "NUMBER";
124
+ dateFormat?: string;
125
+ } | {
126
+ valueType: "DATE";
127
+ dateFormat: string;
128
+ }))[];
129
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
130
+ source?: import("../../_utils/propsDiagram").Source;
131
+ plugin: import("../../_utils/propsDiagram").Plugin;
132
+ layer: import("../../_utils/propsDiagram").Layer;
133
+ chartType: import("../../_utils/propsDiagram").ChartType;
134
+ relatedList: unknown[];
135
+ sqlConditions?: ({
136
+ alias: string;
137
+ fieldName: string;
138
+ rule: string;
139
+ fieldValue: string;
140
+ } & ({
141
+ valueType: "TEXT" | "NUMBER";
142
+ dateFormat?: string;
143
+ } | {
144
+ valueType: "DATE";
145
+ dateFormat: string;
146
+ }))[];
147
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
40
148
  [key: string]: any;
41
149
  } | import("src/_utils/props").RequestParams;
42
150
  };
@@ -49,7 +157,43 @@ declare const _default: import("vue").DefineComponent<{
49
157
  [key: string]: any;
50
158
  }[] | {
51
159
  [key: string]: any;
52
- }[] | Events | {
160
+ }[] | ({
161
+ source?: import("../../_utils/propsDiagram").Source;
162
+ plugin: import("../../_utils/propsDiagram").Plugin;
163
+ layer: import("../../_utils/propsDiagram").Layer;
164
+ chartType: import("../../_utils/propsDiagram").ChartType;
165
+ relatedList: unknown[];
166
+ sqlConditions?: ({
167
+ alias: string;
168
+ fieldName: string;
169
+ rule: string;
170
+ fieldValue: string;
171
+ } & ({
172
+ valueType: "TEXT" | "NUMBER";
173
+ dateFormat?: string;
174
+ } | {
175
+ valueType: "DATE";
176
+ dateFormat: string;
177
+ }))[];
178
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
179
+ source?: import("../../_utils/propsDiagram").Source;
180
+ plugin: import("../../_utils/propsDiagram").Plugin;
181
+ layer: import("../../_utils/propsDiagram").Layer;
182
+ chartType: import("../../_utils/propsDiagram").ChartType;
183
+ relatedList: unknown[];
184
+ sqlConditions?: ({
185
+ alias: string;
186
+ fieldName: string;
187
+ rule: string;
188
+ fieldValue: string;
189
+ } & ({
190
+ valueType: "TEXT" | "NUMBER";
191
+ dateFormat?: string;
192
+ } | {
193
+ valueType: "DATE";
194
+ dateFormat: string;
195
+ }))[];
196
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
53
197
  [key: string]: any;
54
198
  } | import("src/_utils/props").RequestParams;
55
199
  };
@@ -62,7 +206,43 @@ declare const _default: import("vue").DefineComponent<{
62
206
  [key: string]: any;
63
207
  }[] | {
64
208
  [key: string]: any;
65
- }[] | Events | {
209
+ }[] | ({
210
+ source?: import("../../_utils/propsDiagram").Source;
211
+ plugin: import("../../_utils/propsDiagram").Plugin;
212
+ layer: import("../../_utils/propsDiagram").Layer;
213
+ chartType: import("../../_utils/propsDiagram").ChartType;
214
+ relatedList: unknown[];
215
+ sqlConditions?: ({
216
+ alias: string;
217
+ fieldName: string;
218
+ rule: string;
219
+ fieldValue: string;
220
+ } & ({
221
+ valueType: "TEXT" | "NUMBER";
222
+ dateFormat?: string;
223
+ } | {
224
+ valueType: "DATE";
225
+ dateFormat: string;
226
+ }))[];
227
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
228
+ source?: import("../../_utils/propsDiagram").Source;
229
+ plugin: import("../../_utils/propsDiagram").Plugin;
230
+ layer: import("../../_utils/propsDiagram").Layer;
231
+ chartType: import("../../_utils/propsDiagram").ChartType;
232
+ relatedList: unknown[];
233
+ sqlConditions?: ({
234
+ alias: string;
235
+ fieldName: string;
236
+ rule: string;
237
+ fieldValue: string;
238
+ } & ({
239
+ valueType: "TEXT" | "NUMBER";
240
+ dateFormat?: string;
241
+ } | {
242
+ valueType: "DATE";
243
+ dateFormat: string;
244
+ }))[];
245
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
66
246
  [key: string]: any;
67
247
  } | import("src/_utils/props").RequestParams;
68
248
  };
@@ -75,7 +255,43 @@ declare const _default: import("vue").DefineComponent<{
75
255
  [key: string]: any;
76
256
  }[] | {
77
257
  [key: string]: any;
78
- }[] | Events | {
258
+ }[] | ({
259
+ source?: import("../../_utils/propsDiagram").Source;
260
+ plugin: import("../../_utils/propsDiagram").Plugin;
261
+ layer: import("../../_utils/propsDiagram").Layer;
262
+ chartType: import("../../_utils/propsDiagram").ChartType;
263
+ relatedList: unknown[];
264
+ sqlConditions?: ({
265
+ alias: string;
266
+ fieldName: string;
267
+ rule: string;
268
+ fieldValue: string;
269
+ } & ({
270
+ valueType: "TEXT" | "NUMBER";
271
+ dateFormat?: string;
272
+ } | {
273
+ valueType: "DATE";
274
+ dateFormat: string;
275
+ }))[];
276
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
277
+ source?: import("../../_utils/propsDiagram").Source;
278
+ plugin: import("../../_utils/propsDiagram").Plugin;
279
+ layer: import("../../_utils/propsDiagram").Layer;
280
+ chartType: import("../../_utils/propsDiagram").ChartType;
281
+ relatedList: unknown[];
282
+ sqlConditions?: ({
283
+ alias: string;
284
+ fieldName: string;
285
+ rule: string;
286
+ fieldValue: string;
287
+ } & ({
288
+ valueType: "TEXT" | "NUMBER";
289
+ dateFormat?: string;
290
+ } | {
291
+ valueType: "DATE";
292
+ dateFormat: string;
293
+ }))[];
294
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
79
295
  [key: string]: any;
80
296
  } | import("src/_utils/props").RequestParams;
81
297
  };
@@ -88,7 +304,43 @@ declare const _default: import("vue").DefineComponent<{
88
304
  [key: string]: any;
89
305
  }[] | {
90
306
  [key: string]: any;
91
- }[] | Events | {
307
+ }[] | ({
308
+ source?: import("../../_utils/propsDiagram").Source;
309
+ plugin: import("../../_utils/propsDiagram").Plugin;
310
+ layer: import("../../_utils/propsDiagram").Layer;
311
+ chartType: import("../../_utils/propsDiagram").ChartType;
312
+ relatedList: unknown[];
313
+ sqlConditions?: ({
314
+ alias: string;
315
+ fieldName: string;
316
+ rule: string;
317
+ fieldValue: string;
318
+ } & ({
319
+ valueType: "TEXT" | "NUMBER";
320
+ dateFormat?: string;
321
+ } | {
322
+ valueType: "DATE";
323
+ dateFormat: string;
324
+ }))[];
325
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
326
+ source?: import("../../_utils/propsDiagram").Source;
327
+ plugin: import("../../_utils/propsDiagram").Plugin;
328
+ layer: import("../../_utils/propsDiagram").Layer;
329
+ chartType: import("../../_utils/propsDiagram").ChartType;
330
+ relatedList: unknown[];
331
+ sqlConditions?: ({
332
+ alias: string;
333
+ fieldName: string;
334
+ rule: string;
335
+ fieldValue: string;
336
+ } & ({
337
+ valueType: "TEXT" | "NUMBER";
338
+ dateFormat?: string;
339
+ } | {
340
+ valueType: "DATE";
341
+ dateFormat: string;
342
+ }))[];
343
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
92
344
  [key: string]: any;
93
345
  } | import("src/_utils/props").RequestParams;
94
346
  };
@@ -101,7 +353,43 @@ declare const _default: import("vue").DefineComponent<{
101
353
  [key: string]: any;
102
354
  }[] | {
103
355
  [key: string]: any;
104
- }[] | Events | {
356
+ }[] | ({
357
+ source?: import("../../_utils/propsDiagram").Source;
358
+ plugin: import("../../_utils/propsDiagram").Plugin;
359
+ layer: import("../../_utils/propsDiagram").Layer;
360
+ chartType: import("../../_utils/propsDiagram").ChartType;
361
+ relatedList: unknown[];
362
+ sqlConditions?: ({
363
+ alias: string;
364
+ fieldName: string;
365
+ rule: string;
366
+ fieldValue: string;
367
+ } & ({
368
+ valueType: "TEXT" | "NUMBER";
369
+ dateFormat?: string;
370
+ } | {
371
+ valueType: "DATE";
372
+ dateFormat: string;
373
+ }))[];
374
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
375
+ source?: import("../../_utils/propsDiagram").Source;
376
+ plugin: import("../../_utils/propsDiagram").Plugin;
377
+ layer: import("../../_utils/propsDiagram").Layer;
378
+ chartType: import("../../_utils/propsDiagram").ChartType;
379
+ relatedList: unknown[];
380
+ sqlConditions?: ({
381
+ alias: string;
382
+ fieldName: string;
383
+ rule: string;
384
+ fieldValue: string;
385
+ } & ({
386
+ valueType: "TEXT" | "NUMBER";
387
+ dateFormat?: string;
388
+ } | {
389
+ valueType: "DATE";
390
+ dateFormat: string;
391
+ }))[];
392
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
105
393
  [key: string]: any;
106
394
  } | import("src/_utils/props").RequestParams;
107
395
  };
@@ -114,7 +402,43 @@ declare const _default: import("vue").DefineComponent<{
114
402
  [key: string]: any;
115
403
  }[] | {
116
404
  [key: string]: any;
117
- }[] | Events | {
405
+ }[] | ({
406
+ source?: import("../../_utils/propsDiagram").Source;
407
+ plugin: import("../../_utils/propsDiagram").Plugin;
408
+ layer: import("../../_utils/propsDiagram").Layer;
409
+ chartType: import("../../_utils/propsDiagram").ChartType;
410
+ relatedList: unknown[];
411
+ sqlConditions?: ({
412
+ alias: string;
413
+ fieldName: string;
414
+ rule: string;
415
+ fieldValue: string;
416
+ } & ({
417
+ valueType: "TEXT" | "NUMBER";
418
+ dateFormat?: string;
419
+ } | {
420
+ valueType: "DATE";
421
+ dateFormat: string;
422
+ }))[];
423
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
424
+ source?: import("../../_utils/propsDiagram").Source;
425
+ plugin: import("../../_utils/propsDiagram").Plugin;
426
+ layer: import("../../_utils/propsDiagram").Layer;
427
+ chartType: import("../../_utils/propsDiagram").ChartType;
428
+ relatedList: unknown[];
429
+ sqlConditions?: ({
430
+ alias: string;
431
+ fieldName: string;
432
+ rule: string;
433
+ fieldValue: string;
434
+ } & ({
435
+ valueType: "TEXT" | "NUMBER";
436
+ dateFormat?: string;
437
+ } | {
438
+ valueType: "DATE";
439
+ dateFormat: string;
440
+ }))[];
441
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
118
442
  [key: string]: any;
119
443
  } | import("src/_utils/props").RequestParams;
120
444
  };
@@ -127,7 +451,43 @@ declare const _default: import("vue").DefineComponent<{
127
451
  [key: string]: any;
128
452
  }[] | {
129
453
  [key: string]: any;
130
- }[] | Events | {
454
+ }[] | ({
455
+ source?: import("../../_utils/propsDiagram").Source;
456
+ plugin: import("../../_utils/propsDiagram").Plugin;
457
+ layer: import("../../_utils/propsDiagram").Layer;
458
+ chartType: import("../../_utils/propsDiagram").ChartType;
459
+ relatedList: unknown[];
460
+ sqlConditions?: ({
461
+ alias: string;
462
+ fieldName: string;
463
+ rule: string;
464
+ fieldValue: string;
465
+ } & ({
466
+ valueType: "TEXT" | "NUMBER";
467
+ dateFormat?: string;
468
+ } | {
469
+ valueType: "DATE";
470
+ dateFormat: string;
471
+ }))[];
472
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
473
+ source?: import("../../_utils/propsDiagram").Source;
474
+ plugin: import("../../_utils/propsDiagram").Plugin;
475
+ layer: import("../../_utils/propsDiagram").Layer;
476
+ chartType: import("../../_utils/propsDiagram").ChartType;
477
+ relatedList: unknown[];
478
+ sqlConditions?: ({
479
+ alias: string;
480
+ fieldName: string;
481
+ rule: string;
482
+ fieldValue: string;
483
+ } & ({
484
+ valueType: "TEXT" | "NUMBER";
485
+ dateFormat?: string;
486
+ } | {
487
+ valueType: "DATE";
488
+ dateFormat: string;
489
+ }))[];
490
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
131
491
  [key: string]: any;
132
492
  } | import("src/_utils/props").RequestParams;
133
493
  };
@@ -140,7 +500,43 @@ declare const _default: import("vue").DefineComponent<{
140
500
  [key: string]: any;
141
501
  }[] | {
142
502
  [key: string]: any;
143
- }[] | Events | {
503
+ }[] | ({
504
+ source?: import("../../_utils/propsDiagram").Source;
505
+ plugin: import("../../_utils/propsDiagram").Plugin;
506
+ layer: import("../../_utils/propsDiagram").Layer;
507
+ chartType: import("../../_utils/propsDiagram").ChartType;
508
+ relatedList: unknown[];
509
+ sqlConditions?: ({
510
+ alias: string;
511
+ fieldName: string;
512
+ rule: string;
513
+ fieldValue: string;
514
+ } & ({
515
+ valueType: "TEXT" | "NUMBER";
516
+ dateFormat?: string;
517
+ } | {
518
+ valueType: "DATE";
519
+ dateFormat: string;
520
+ }))[];
521
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
522
+ source?: import("../../_utils/propsDiagram").Source;
523
+ plugin: import("../../_utils/propsDiagram").Plugin;
524
+ layer: import("../../_utils/propsDiagram").Layer;
525
+ chartType: import("../../_utils/propsDiagram").ChartType;
526
+ relatedList: unknown[];
527
+ sqlConditions?: ({
528
+ alias: string;
529
+ fieldName: string;
530
+ rule: string;
531
+ fieldValue: string;
532
+ } & ({
533
+ valueType: "TEXT" | "NUMBER";
534
+ dateFormat?: string;
535
+ } | {
536
+ valueType: "DATE";
537
+ dateFormat: string;
538
+ }))[];
539
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
144
540
  [key: string]: any;
145
541
  } | import("src/_utils/props").RequestParams;
146
542
  };
@@ -153,7 +549,43 @@ declare const _default: import("vue").DefineComponent<{
153
549
  [key: string]: any;
154
550
  }[] | {
155
551
  [key: string]: any;
156
- }[] | Events | {
552
+ }[] | ({
553
+ source?: import("../../_utils/propsDiagram").Source;
554
+ plugin: import("../../_utils/propsDiagram").Plugin;
555
+ layer: import("../../_utils/propsDiagram").Layer;
556
+ chartType: import("../../_utils/propsDiagram").ChartType;
557
+ relatedList: unknown[];
558
+ sqlConditions?: ({
559
+ alias: string;
560
+ fieldName: string;
561
+ rule: string;
562
+ fieldValue: string;
563
+ } & ({
564
+ valueType: "TEXT" | "NUMBER";
565
+ dateFormat?: string;
566
+ } | {
567
+ valueType: "DATE";
568
+ dateFormat: string;
569
+ }))[];
570
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
571
+ source?: import("../../_utils/propsDiagram").Source;
572
+ plugin: import("../../_utils/propsDiagram").Plugin;
573
+ layer: import("../../_utils/propsDiagram").Layer;
574
+ chartType: import("../../_utils/propsDiagram").ChartType;
575
+ relatedList: unknown[];
576
+ sqlConditions?: ({
577
+ alias: string;
578
+ fieldName: string;
579
+ rule: string;
580
+ fieldValue: string;
581
+ } & ({
582
+ valueType: "TEXT" | "NUMBER";
583
+ dateFormat?: string;
584
+ } | {
585
+ valueType: "DATE";
586
+ dateFormat: string;
587
+ }))[];
588
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
157
589
  [key: string]: any;
158
590
  } | import("src/_utils/props").RequestParams;
159
591
  };
@@ -166,7 +598,43 @@ declare const _default: import("vue").DefineComponent<{
166
598
  [key: string]: any;
167
599
  }[] | {
168
600
  [key: string]: any;
169
- }[] | Events | {
601
+ }[] | ({
602
+ source?: import("../../_utils/propsDiagram").Source;
603
+ plugin: import("../../_utils/propsDiagram").Plugin;
604
+ layer: import("../../_utils/propsDiagram").Layer;
605
+ chartType: import("../../_utils/propsDiagram").ChartType;
606
+ relatedList: unknown[];
607
+ sqlConditions?: ({
608
+ alias: string;
609
+ fieldName: string;
610
+ rule: string;
611
+ fieldValue: string;
612
+ } & ({
613
+ valueType: "TEXT" | "NUMBER";
614
+ dateFormat?: string;
615
+ } | {
616
+ valueType: "DATE";
617
+ dateFormat: string;
618
+ }))[];
619
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
620
+ source?: import("../../_utils/propsDiagram").Source;
621
+ plugin: import("../../_utils/propsDiagram").Plugin;
622
+ layer: import("../../_utils/propsDiagram").Layer;
623
+ chartType: import("../../_utils/propsDiagram").ChartType;
624
+ relatedList: unknown[];
625
+ sqlConditions?: ({
626
+ alias: string;
627
+ fieldName: string;
628
+ rule: string;
629
+ fieldValue: string;
630
+ } & ({
631
+ valueType: "TEXT" | "NUMBER";
632
+ dateFormat?: string;
633
+ } | {
634
+ valueType: "DATE";
635
+ dateFormat: string;
636
+ }))[];
637
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
170
638
  [key: string]: any;
171
639
  } | import("src/_utils/props").RequestParams;
172
640
  };
@@ -179,7 +647,92 @@ declare const _default: import("vue").DefineComponent<{
179
647
  [key: string]: any;
180
648
  }[] | {
181
649
  [key: string]: any;
182
- }[] | Events | {
650
+ }[] | ({
651
+ source?: import("../../_utils/propsDiagram").Source;
652
+ plugin: import("../../_utils/propsDiagram").Plugin;
653
+ layer: import("../../_utils/propsDiagram").Layer;
654
+ chartType: import("../../_utils/propsDiagram").ChartType;
655
+ relatedList: unknown[];
656
+ sqlConditions?: ({
657
+ alias: string;
658
+ fieldName: string;
659
+ rule: string;
660
+ fieldValue: string;
661
+ } & ({
662
+ valueType: "TEXT" | "NUMBER";
663
+ dateFormat?: string;
664
+ } | {
665
+ valueType: "DATE";
666
+ dateFormat: string;
667
+ }))[];
668
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
669
+ source?: import("../../_utils/propsDiagram").Source;
670
+ plugin: import("../../_utils/propsDiagram").Plugin;
671
+ layer: import("../../_utils/propsDiagram").Layer;
672
+ chartType: import("../../_utils/propsDiagram").ChartType;
673
+ relatedList: unknown[];
674
+ sqlConditions?: ({
675
+ alias: string;
676
+ fieldName: string;
677
+ rule: string;
678
+ fieldValue: string;
679
+ } & ({
680
+ valueType: "TEXT" | "NUMBER";
681
+ dateFormat?: string;
682
+ } | {
683
+ valueType: "DATE";
684
+ dateFormat: string;
685
+ }))[];
686
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
687
+ [key: string]: any;
688
+ } | import("src/_utils/props").RequestParams;
689
+ };
690
+ diagramParam: {
691
+ type?: undefined;
692
+ default?: undefined;
693
+ } | {
694
+ type: any;
695
+ default: string | number | boolean | {
696
+ [key: string]: any;
697
+ }[] | {
698
+ [key: string]: any;
699
+ }[] | ({
700
+ source?: import("../../_utils/propsDiagram").Source;
701
+ plugin: import("../../_utils/propsDiagram").Plugin;
702
+ layer: import("../../_utils/propsDiagram").Layer;
703
+ chartType: import("../../_utils/propsDiagram").ChartType;
704
+ relatedList: unknown[];
705
+ sqlConditions?: ({
706
+ alias: string;
707
+ fieldName: string;
708
+ rule: string;
709
+ fieldValue: string;
710
+ } & ({
711
+ valueType: "TEXT" | "NUMBER";
712
+ dateFormat?: string;
713
+ } | {
714
+ valueType: "DATE";
715
+ dateFormat: string;
716
+ }))[];
717
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
718
+ source?: import("../../_utils/propsDiagram").Source;
719
+ plugin: import("../../_utils/propsDiagram").Plugin;
720
+ layer: import("../../_utils/propsDiagram").Layer;
721
+ chartType: import("../../_utils/propsDiagram").ChartType;
722
+ relatedList: unknown[];
723
+ sqlConditions?: ({
724
+ alias: string;
725
+ fieldName: string;
726
+ rule: string;
727
+ fieldValue: string;
728
+ } & ({
729
+ valueType: "TEXT" | "NUMBER";
730
+ dateFormat?: string;
731
+ } | {
732
+ valueType: "DATE";
733
+ dateFormat: string;
734
+ }))[];
735
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
183
736
  [key: string]: any;
184
737
  } | import("src/_utils/props").RequestParams;
185
738
  };
@@ -192,7 +745,43 @@ declare const _default: import("vue").DefineComponent<{
192
745
  [key: string]: any;
193
746
  }[] | {
194
747
  [key: string]: any;
195
- }[] | Events | {
748
+ }[] | ({
749
+ source?: import("../../_utils/propsDiagram").Source;
750
+ plugin: import("../../_utils/propsDiagram").Plugin;
751
+ layer: import("../../_utils/propsDiagram").Layer;
752
+ chartType: import("../../_utils/propsDiagram").ChartType;
753
+ relatedList: unknown[];
754
+ sqlConditions?: ({
755
+ alias: string;
756
+ fieldName: string;
757
+ rule: string;
758
+ fieldValue: string;
759
+ } & ({
760
+ valueType: "TEXT" | "NUMBER";
761
+ dateFormat?: string;
762
+ } | {
763
+ valueType: "DATE";
764
+ dateFormat: string;
765
+ }))[];
766
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
767
+ source?: import("../../_utils/propsDiagram").Source;
768
+ plugin: import("../../_utils/propsDiagram").Plugin;
769
+ layer: import("../../_utils/propsDiagram").Layer;
770
+ chartType: import("../../_utils/propsDiagram").ChartType;
771
+ relatedList: unknown[];
772
+ sqlConditions?: ({
773
+ alias: string;
774
+ fieldName: string;
775
+ rule: string;
776
+ fieldValue: string;
777
+ } & ({
778
+ valueType: "TEXT" | "NUMBER";
779
+ dateFormat?: string;
780
+ } | {
781
+ valueType: "DATE";
782
+ dateFormat: string;
783
+ }))[];
784
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
196
785
  [key: string]: any;
197
786
  } | import("src/_utils/props").RequestParams;
198
787
  };
@@ -205,7 +794,43 @@ declare const _default: import("vue").DefineComponent<{
205
794
  [key: string]: any;
206
795
  }[] | {
207
796
  [key: string]: any;
208
- }[] | Events | {
797
+ }[] | ({
798
+ source?: import("../../_utils/propsDiagram").Source;
799
+ plugin: import("../../_utils/propsDiagram").Plugin;
800
+ layer: import("../../_utils/propsDiagram").Layer;
801
+ chartType: import("../../_utils/propsDiagram").ChartType;
802
+ relatedList: unknown[];
803
+ sqlConditions?: ({
804
+ alias: string;
805
+ fieldName: string;
806
+ rule: string;
807
+ fieldValue: string;
808
+ } & ({
809
+ valueType: "TEXT" | "NUMBER";
810
+ dateFormat?: string;
811
+ } | {
812
+ valueType: "DATE";
813
+ dateFormat: string;
814
+ }))[];
815
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
816
+ source?: import("../../_utils/propsDiagram").Source;
817
+ plugin: import("../../_utils/propsDiagram").Plugin;
818
+ layer: import("../../_utils/propsDiagram").Layer;
819
+ chartType: import("../../_utils/propsDiagram").ChartType;
820
+ relatedList: unknown[];
821
+ sqlConditions?: ({
822
+ alias: string;
823
+ fieldName: string;
824
+ rule: string;
825
+ fieldValue: string;
826
+ } & ({
827
+ valueType: "TEXT" | "NUMBER";
828
+ dateFormat?: string;
829
+ } | {
830
+ valueType: "DATE";
831
+ dateFormat: string;
832
+ }))[];
833
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
209
834
  [key: string]: any;
210
835
  } | import("src/_utils/props").RequestParams;
211
836
  };
@@ -218,7 +843,43 @@ declare const _default: import("vue").DefineComponent<{
218
843
  [key: string]: any;
219
844
  }[] | {
220
845
  [key: string]: any;
221
- }[] | Events | {
846
+ }[] | ({
847
+ source?: import("../../_utils/propsDiagram").Source;
848
+ plugin: import("../../_utils/propsDiagram").Plugin;
849
+ layer: import("../../_utils/propsDiagram").Layer;
850
+ chartType: import("../../_utils/propsDiagram").ChartType;
851
+ relatedList: unknown[];
852
+ sqlConditions?: ({
853
+ alias: string;
854
+ fieldName: string;
855
+ rule: string;
856
+ fieldValue: string;
857
+ } & ({
858
+ valueType: "TEXT" | "NUMBER";
859
+ dateFormat?: string;
860
+ } | {
861
+ valueType: "DATE";
862
+ dateFormat: string;
863
+ }))[];
864
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
865
+ source?: import("../../_utils/propsDiagram").Source;
866
+ plugin: import("../../_utils/propsDiagram").Plugin;
867
+ layer: import("../../_utils/propsDiagram").Layer;
868
+ chartType: import("../../_utils/propsDiagram").ChartType;
869
+ relatedList: unknown[];
870
+ sqlConditions?: ({
871
+ alias: string;
872
+ fieldName: string;
873
+ rule: string;
874
+ fieldValue: string;
875
+ } & ({
876
+ valueType: "TEXT" | "NUMBER";
877
+ dateFormat?: string;
878
+ } | {
879
+ valueType: "DATE";
880
+ dateFormat: string;
881
+ }))[];
882
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
222
883
  [key: string]: any;
223
884
  } | import("src/_utils/props").RequestParams;
224
885
  };
@@ -231,7 +892,43 @@ declare const _default: import("vue").DefineComponent<{
231
892
  [key: string]: any;
232
893
  }[] | {
233
894
  [key: string]: any;
234
- }[] | Events | {
895
+ }[] | ({
896
+ source?: import("../../_utils/propsDiagram").Source;
897
+ plugin: import("../../_utils/propsDiagram").Plugin;
898
+ layer: import("../../_utils/propsDiagram").Layer;
899
+ chartType: import("../../_utils/propsDiagram").ChartType;
900
+ relatedList: unknown[];
901
+ sqlConditions?: ({
902
+ alias: string;
903
+ fieldName: string;
904
+ rule: string;
905
+ fieldValue: string;
906
+ } & ({
907
+ valueType: "TEXT" | "NUMBER";
908
+ dateFormat?: string;
909
+ } | {
910
+ valueType: "DATE";
911
+ dateFormat: string;
912
+ }))[];
913
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
914
+ source?: import("../../_utils/propsDiagram").Source;
915
+ plugin: import("../../_utils/propsDiagram").Plugin;
916
+ layer: import("../../_utils/propsDiagram").Layer;
917
+ chartType: import("../../_utils/propsDiagram").ChartType;
918
+ relatedList: unknown[];
919
+ sqlConditions?: ({
920
+ alias: string;
921
+ fieldName: string;
922
+ rule: string;
923
+ fieldValue: string;
924
+ } & ({
925
+ valueType: "TEXT" | "NUMBER";
926
+ dateFormat?: string;
927
+ } | {
928
+ valueType: "DATE";
929
+ dateFormat: string;
930
+ }))[];
931
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
235
932
  [key: string]: any;
236
933
  } | import("src/_utils/props").RequestParams;
237
934
  };
@@ -244,7 +941,43 @@ declare const _default: import("vue").DefineComponent<{
244
941
  [key: string]: any;
245
942
  }[] | {
246
943
  [key: string]: any;
247
- }[] | Events | {
944
+ }[] | ({
945
+ source?: import("../../_utils/propsDiagram").Source;
946
+ plugin: import("../../_utils/propsDiagram").Plugin;
947
+ layer: import("../../_utils/propsDiagram").Layer;
948
+ chartType: import("../../_utils/propsDiagram").ChartType;
949
+ relatedList: unknown[];
950
+ sqlConditions?: ({
951
+ alias: string;
952
+ fieldName: string;
953
+ rule: string;
954
+ fieldValue: string;
955
+ } & ({
956
+ valueType: "TEXT" | "NUMBER";
957
+ dateFormat?: string;
958
+ } | {
959
+ valueType: "DATE";
960
+ dateFormat: string;
961
+ }))[];
962
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
963
+ source?: import("../../_utils/propsDiagram").Source;
964
+ plugin: import("../../_utils/propsDiagram").Plugin;
965
+ layer: import("../../_utils/propsDiagram").Layer;
966
+ chartType: import("../../_utils/propsDiagram").ChartType;
967
+ relatedList: unknown[];
968
+ sqlConditions?: ({
969
+ alias: string;
970
+ fieldName: string;
971
+ rule: string;
972
+ fieldValue: string;
973
+ } & ({
974
+ valueType: "TEXT" | "NUMBER";
975
+ dateFormat?: string;
976
+ } | {
977
+ valueType: "DATE";
978
+ dateFormat: string;
979
+ }))[];
980
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
248
981
  [key: string]: any;
249
982
  } | import("src/_utils/props").RequestParams;
250
983
  };
@@ -257,7 +990,43 @@ declare const _default: import("vue").DefineComponent<{
257
990
  [key: string]: any;
258
991
  }[] | {
259
992
  [key: string]: any;
260
- }[] | Events | {
993
+ }[] | ({
994
+ source?: import("../../_utils/propsDiagram").Source;
995
+ plugin: import("../../_utils/propsDiagram").Plugin;
996
+ layer: import("../../_utils/propsDiagram").Layer;
997
+ chartType: import("../../_utils/propsDiagram").ChartType;
998
+ relatedList: unknown[];
999
+ sqlConditions?: ({
1000
+ alias: string;
1001
+ fieldName: string;
1002
+ rule: string;
1003
+ fieldValue: string;
1004
+ } & ({
1005
+ valueType: "TEXT" | "NUMBER";
1006
+ dateFormat?: string;
1007
+ } | {
1008
+ valueType: "DATE";
1009
+ dateFormat: string;
1010
+ }))[];
1011
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1012
+ source?: import("../../_utils/propsDiagram").Source;
1013
+ plugin: import("../../_utils/propsDiagram").Plugin;
1014
+ layer: import("../../_utils/propsDiagram").Layer;
1015
+ chartType: import("../../_utils/propsDiagram").ChartType;
1016
+ relatedList: unknown[];
1017
+ sqlConditions?: ({
1018
+ alias: string;
1019
+ fieldName: string;
1020
+ rule: string;
1021
+ fieldValue: string;
1022
+ } & ({
1023
+ valueType: "TEXT" | "NUMBER";
1024
+ dateFormat?: string;
1025
+ } | {
1026
+ valueType: "DATE";
1027
+ dateFormat: string;
1028
+ }))[];
1029
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
261
1030
  [key: string]: any;
262
1031
  } | import("src/_utils/props").RequestParams;
263
1032
  };
@@ -270,7 +1039,43 @@ declare const _default: import("vue").DefineComponent<{
270
1039
  [key: string]: any;
271
1040
  }[] | {
272
1041
  [key: string]: any;
273
- }[] | Events | {
1042
+ }[] | ({
1043
+ source?: import("../../_utils/propsDiagram").Source;
1044
+ plugin: import("../../_utils/propsDiagram").Plugin;
1045
+ layer: import("../../_utils/propsDiagram").Layer;
1046
+ chartType: import("../../_utils/propsDiagram").ChartType;
1047
+ relatedList: unknown[];
1048
+ sqlConditions?: ({
1049
+ alias: string;
1050
+ fieldName: string;
1051
+ rule: string;
1052
+ fieldValue: string;
1053
+ } & ({
1054
+ valueType: "TEXT" | "NUMBER";
1055
+ dateFormat?: string;
1056
+ } | {
1057
+ valueType: "DATE";
1058
+ dateFormat: string;
1059
+ }))[];
1060
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1061
+ source?: import("../../_utils/propsDiagram").Source;
1062
+ plugin: import("../../_utils/propsDiagram").Plugin;
1063
+ layer: import("../../_utils/propsDiagram").Layer;
1064
+ chartType: import("../../_utils/propsDiagram").ChartType;
1065
+ relatedList: unknown[];
1066
+ sqlConditions?: ({
1067
+ alias: string;
1068
+ fieldName: string;
1069
+ rule: string;
1070
+ fieldValue: string;
1071
+ } & ({
1072
+ valueType: "TEXT" | "NUMBER";
1073
+ dateFormat?: string;
1074
+ } | {
1075
+ valueType: "DATE";
1076
+ dateFormat: string;
1077
+ }))[];
1078
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
274
1079
  [key: string]: any;
275
1080
  } | import("src/_utils/props").RequestParams;
276
1081
  };
@@ -283,7 +1088,43 @@ declare const _default: import("vue").DefineComponent<{
283
1088
  [key: string]: any;
284
1089
  }[] | {
285
1090
  [key: string]: any;
286
- }[] | Events | {
1091
+ }[] | ({
1092
+ source?: import("../../_utils/propsDiagram").Source;
1093
+ plugin: import("../../_utils/propsDiagram").Plugin;
1094
+ layer: import("../../_utils/propsDiagram").Layer;
1095
+ chartType: import("../../_utils/propsDiagram").ChartType;
1096
+ relatedList: unknown[];
1097
+ sqlConditions?: ({
1098
+ alias: string;
1099
+ fieldName: string;
1100
+ rule: string;
1101
+ fieldValue: string;
1102
+ } & ({
1103
+ valueType: "TEXT" | "NUMBER";
1104
+ dateFormat?: string;
1105
+ } | {
1106
+ valueType: "DATE";
1107
+ dateFormat: string;
1108
+ }))[];
1109
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1110
+ source?: import("../../_utils/propsDiagram").Source;
1111
+ plugin: import("../../_utils/propsDiagram").Plugin;
1112
+ layer: import("../../_utils/propsDiagram").Layer;
1113
+ chartType: import("../../_utils/propsDiagram").ChartType;
1114
+ relatedList: unknown[];
1115
+ sqlConditions?: ({
1116
+ alias: string;
1117
+ fieldName: string;
1118
+ rule: string;
1119
+ fieldValue: string;
1120
+ } & ({
1121
+ valueType: "TEXT" | "NUMBER";
1122
+ dateFormat?: string;
1123
+ } | {
1124
+ valueType: "DATE";
1125
+ dateFormat: string;
1126
+ }))[];
1127
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
287
1128
  [key: string]: any;
288
1129
  } | import("src/_utils/props").RequestParams;
289
1130
  };
@@ -296,7 +1137,43 @@ declare const _default: import("vue").DefineComponent<{
296
1137
  [key: string]: any;
297
1138
  }[] | {
298
1139
  [key: string]: any;
299
- }[] | Events | {
1140
+ }[] | ({
1141
+ source?: import("../../_utils/propsDiagram").Source;
1142
+ plugin: import("../../_utils/propsDiagram").Plugin;
1143
+ layer: import("../../_utils/propsDiagram").Layer;
1144
+ chartType: import("../../_utils/propsDiagram").ChartType;
1145
+ relatedList: unknown[];
1146
+ sqlConditions?: ({
1147
+ alias: string;
1148
+ fieldName: string;
1149
+ rule: string;
1150
+ fieldValue: string;
1151
+ } & ({
1152
+ valueType: "TEXT" | "NUMBER";
1153
+ dateFormat?: string;
1154
+ } | {
1155
+ valueType: "DATE";
1156
+ dateFormat: string;
1157
+ }))[];
1158
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1159
+ source?: import("../../_utils/propsDiagram").Source;
1160
+ plugin: import("../../_utils/propsDiagram").Plugin;
1161
+ layer: import("../../_utils/propsDiagram").Layer;
1162
+ chartType: import("../../_utils/propsDiagram").ChartType;
1163
+ relatedList: unknown[];
1164
+ sqlConditions?: ({
1165
+ alias: string;
1166
+ fieldName: string;
1167
+ rule: string;
1168
+ fieldValue: string;
1169
+ } & ({
1170
+ valueType: "TEXT" | "NUMBER";
1171
+ dateFormat?: string;
1172
+ } | {
1173
+ valueType: "DATE";
1174
+ dateFormat: string;
1175
+ }))[];
1176
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
300
1177
  [key: string]: any;
301
1178
  } | import("src/_utils/props").RequestParams;
302
1179
  };
@@ -309,7 +1186,43 @@ declare const _default: import("vue").DefineComponent<{
309
1186
  [key: string]: any;
310
1187
  }[] | {
311
1188
  [key: string]: any;
312
- }[] | Events | {
1189
+ }[] | ({
1190
+ source?: import("../../_utils/propsDiagram").Source;
1191
+ plugin: import("../../_utils/propsDiagram").Plugin;
1192
+ layer: import("../../_utils/propsDiagram").Layer;
1193
+ chartType: import("../../_utils/propsDiagram").ChartType;
1194
+ relatedList: unknown[];
1195
+ sqlConditions?: ({
1196
+ alias: string;
1197
+ fieldName: string;
1198
+ rule: string;
1199
+ fieldValue: string;
1200
+ } & ({
1201
+ valueType: "TEXT" | "NUMBER";
1202
+ dateFormat?: string;
1203
+ } | {
1204
+ valueType: "DATE";
1205
+ dateFormat: string;
1206
+ }))[];
1207
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1208
+ source?: import("../../_utils/propsDiagram").Source;
1209
+ plugin: import("../../_utils/propsDiagram").Plugin;
1210
+ layer: import("../../_utils/propsDiagram").Layer;
1211
+ chartType: import("../../_utils/propsDiagram").ChartType;
1212
+ relatedList: unknown[];
1213
+ sqlConditions?: ({
1214
+ alias: string;
1215
+ fieldName: string;
1216
+ rule: string;
1217
+ fieldValue: string;
1218
+ } & ({
1219
+ valueType: "TEXT" | "NUMBER";
1220
+ dateFormat?: string;
1221
+ } | {
1222
+ valueType: "DATE";
1223
+ dateFormat: string;
1224
+ }))[];
1225
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
313
1226
  [key: string]: any;
314
1227
  } | import("src/_utils/props").RequestParams;
315
1228
  };
@@ -322,7 +1235,43 @@ declare const _default: import("vue").DefineComponent<{
322
1235
  [key: string]: any;
323
1236
  }[] | {
324
1237
  [key: string]: any;
325
- }[] | Events | {
1238
+ }[] | ({
1239
+ source?: import("../../_utils/propsDiagram").Source;
1240
+ plugin: import("../../_utils/propsDiagram").Plugin;
1241
+ layer: import("../../_utils/propsDiagram").Layer;
1242
+ chartType: import("../../_utils/propsDiagram").ChartType;
1243
+ relatedList: unknown[];
1244
+ sqlConditions?: ({
1245
+ alias: string;
1246
+ fieldName: string;
1247
+ rule: string;
1248
+ fieldValue: string;
1249
+ } & ({
1250
+ valueType: "TEXT" | "NUMBER";
1251
+ dateFormat?: string;
1252
+ } | {
1253
+ valueType: "DATE";
1254
+ dateFormat: string;
1255
+ }))[];
1256
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1257
+ source?: import("../../_utils/propsDiagram").Source;
1258
+ plugin: import("../../_utils/propsDiagram").Plugin;
1259
+ layer: import("../../_utils/propsDiagram").Layer;
1260
+ chartType: import("../../_utils/propsDiagram").ChartType;
1261
+ relatedList: unknown[];
1262
+ sqlConditions?: ({
1263
+ alias: string;
1264
+ fieldName: string;
1265
+ rule: string;
1266
+ fieldValue: string;
1267
+ } & ({
1268
+ valueType: "TEXT" | "NUMBER";
1269
+ dateFormat?: string;
1270
+ } | {
1271
+ valueType: "DATE";
1272
+ dateFormat: string;
1273
+ }))[];
1274
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
326
1275
  [key: string]: any;
327
1276
  } | import("src/_utils/props").RequestParams;
328
1277
  };
@@ -335,7 +1284,43 @@ declare const _default: import("vue").DefineComponent<{
335
1284
  [key: string]: any;
336
1285
  }[] | {
337
1286
  [key: string]: any;
338
- }[] | Events | {
1287
+ }[] | ({
1288
+ source?: import("../../_utils/propsDiagram").Source;
1289
+ plugin: import("../../_utils/propsDiagram").Plugin;
1290
+ layer: import("../../_utils/propsDiagram").Layer;
1291
+ chartType: import("../../_utils/propsDiagram").ChartType;
1292
+ relatedList: unknown[];
1293
+ sqlConditions?: ({
1294
+ alias: string;
1295
+ fieldName: string;
1296
+ rule: string;
1297
+ fieldValue: string;
1298
+ } & ({
1299
+ valueType: "TEXT" | "NUMBER";
1300
+ dateFormat?: string;
1301
+ } | {
1302
+ valueType: "DATE";
1303
+ dateFormat: string;
1304
+ }))[];
1305
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1306
+ source?: import("../../_utils/propsDiagram").Source;
1307
+ plugin: import("../../_utils/propsDiagram").Plugin;
1308
+ layer: import("../../_utils/propsDiagram").Layer;
1309
+ chartType: import("../../_utils/propsDiagram").ChartType;
1310
+ relatedList: unknown[];
1311
+ sqlConditions?: ({
1312
+ alias: string;
1313
+ fieldName: string;
1314
+ rule: string;
1315
+ fieldValue: string;
1316
+ } & ({
1317
+ valueType: "TEXT" | "NUMBER";
1318
+ dateFormat?: string;
1319
+ } | {
1320
+ valueType: "DATE";
1321
+ dateFormat: string;
1322
+ }))[];
1323
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
339
1324
  [key: string]: any;
340
1325
  } | import("src/_utils/props").RequestParams;
341
1326
  };
@@ -348,11 +1333,47 @@ declare const _default: import("vue").DefineComponent<{
348
1333
  [key: string]: any;
349
1334
  }[] | {
350
1335
  [key: string]: any;
351
- }[] | Events | {
1336
+ }[] | ({
1337
+ source?: import("../../_utils/propsDiagram").Source;
1338
+ plugin: import("../../_utils/propsDiagram").Plugin;
1339
+ layer: import("../../_utils/propsDiagram").Layer;
1340
+ chartType: import("../../_utils/propsDiagram").ChartType;
1341
+ relatedList: unknown[];
1342
+ sqlConditions?: ({
1343
+ alias: string;
1344
+ fieldName: string;
1345
+ rule: string;
1346
+ fieldValue: string;
1347
+ } & ({
1348
+ valueType: "TEXT" | "NUMBER";
1349
+ dateFormat?: string;
1350
+ } | {
1351
+ valueType: "DATE";
1352
+ dateFormat: string;
1353
+ }))[];
1354
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1355
+ source?: import("../../_utils/propsDiagram").Source;
1356
+ plugin: import("../../_utils/propsDiagram").Plugin;
1357
+ layer: import("../../_utils/propsDiagram").Layer;
1358
+ chartType: import("../../_utils/propsDiagram").ChartType;
1359
+ relatedList: unknown[];
1360
+ sqlConditions?: ({
1361
+ alias: string;
1362
+ fieldName: string;
1363
+ rule: string;
1364
+ fieldValue: string;
1365
+ } & ({
1366
+ valueType: "TEXT" | "NUMBER";
1367
+ dateFormat?: string;
1368
+ } | {
1369
+ valueType: "DATE";
1370
+ dateFormat: string;
1371
+ }))[];
1372
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
352
1373
  [key: string]: any;
353
1374
  } | import("src/_utils/props").RequestParams;
354
1375
  };
355
- isRequestData: {
1376
+ events: {
356
1377
  type?: undefined;
357
1378
  default?: undefined;
358
1379
  } | {
@@ -361,11 +1382,47 @@ declare const _default: import("vue").DefineComponent<{
361
1382
  [key: string]: any;
362
1383
  }[] | {
363
1384
  [key: string]: any;
364
- }[] | Events | {
1385
+ }[] | ({
1386
+ source?: import("../../_utils/propsDiagram").Source;
1387
+ plugin: import("../../_utils/propsDiagram").Plugin;
1388
+ layer: import("../../_utils/propsDiagram").Layer;
1389
+ chartType: import("../../_utils/propsDiagram").ChartType;
1390
+ relatedList: unknown[];
1391
+ sqlConditions?: ({
1392
+ alias: string;
1393
+ fieldName: string;
1394
+ rule: string;
1395
+ fieldValue: string;
1396
+ } & ({
1397
+ valueType: "TEXT" | "NUMBER";
1398
+ dateFormat?: string;
1399
+ } | {
1400
+ valueType: "DATE";
1401
+ dateFormat: string;
1402
+ }))[];
1403
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1404
+ source?: import("../../_utils/propsDiagram").Source;
1405
+ plugin: import("../../_utils/propsDiagram").Plugin;
1406
+ layer: import("../../_utils/propsDiagram").Layer;
1407
+ chartType: import("../../_utils/propsDiagram").ChartType;
1408
+ relatedList: unknown[];
1409
+ sqlConditions?: ({
1410
+ alias: string;
1411
+ fieldName: string;
1412
+ rule: string;
1413
+ fieldValue: string;
1414
+ } & ({
1415
+ valueType: "TEXT" | "NUMBER";
1416
+ dateFormat?: string;
1417
+ } | {
1418
+ valueType: "DATE";
1419
+ dateFormat: string;
1420
+ }))[];
1421
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
365
1422
  [key: string]: any;
366
1423
  } | import("src/_utils/props").RequestParams;
367
1424
  };
368
- events: {
1425
+ requestUrl: {
369
1426
  type?: undefined;
370
1427
  default?: undefined;
371
1428
  } | {
@@ -374,11 +1431,47 @@ declare const _default: import("vue").DefineComponent<{
374
1431
  [key: string]: any;
375
1432
  }[] | {
376
1433
  [key: string]: any;
377
- }[] | Events | {
1434
+ }[] | ({
1435
+ source?: import("../../_utils/propsDiagram").Source;
1436
+ plugin: import("../../_utils/propsDiagram").Plugin;
1437
+ layer: import("../../_utils/propsDiagram").Layer;
1438
+ chartType: import("../../_utils/propsDiagram").ChartType;
1439
+ relatedList: unknown[];
1440
+ sqlConditions?: ({
1441
+ alias: string;
1442
+ fieldName: string;
1443
+ rule: string;
1444
+ fieldValue: string;
1445
+ } & ({
1446
+ valueType: "TEXT" | "NUMBER";
1447
+ dateFormat?: string;
1448
+ } | {
1449
+ valueType: "DATE";
1450
+ dateFormat: string;
1451
+ }))[];
1452
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1453
+ source?: import("../../_utils/propsDiagram").Source;
1454
+ plugin: import("../../_utils/propsDiagram").Plugin;
1455
+ layer: import("../../_utils/propsDiagram").Layer;
1456
+ chartType: import("../../_utils/propsDiagram").ChartType;
1457
+ relatedList: unknown[];
1458
+ sqlConditions?: ({
1459
+ alias: string;
1460
+ fieldName: string;
1461
+ rule: string;
1462
+ fieldValue: string;
1463
+ } & ({
1464
+ valueType: "TEXT" | "NUMBER";
1465
+ dateFormat?: string;
1466
+ } | {
1467
+ valueType: "DATE";
1468
+ dateFormat: string;
1469
+ }))[];
1470
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
378
1471
  [key: string]: any;
379
1472
  } | import("src/_utils/props").RequestParams;
380
1473
  };
381
- requestUrl: {
1474
+ requestMethod: {
382
1475
  type?: undefined;
383
1476
  default?: undefined;
384
1477
  } | {
@@ -387,11 +1480,47 @@ declare const _default: import("vue").DefineComponent<{
387
1480
  [key: string]: any;
388
1481
  }[] | {
389
1482
  [key: string]: any;
390
- }[] | Events | {
1483
+ }[] | ({
1484
+ source?: import("../../_utils/propsDiagram").Source;
1485
+ plugin: import("../../_utils/propsDiagram").Plugin;
1486
+ layer: import("../../_utils/propsDiagram").Layer;
1487
+ chartType: import("../../_utils/propsDiagram").ChartType;
1488
+ relatedList: unknown[];
1489
+ sqlConditions?: ({
1490
+ alias: string;
1491
+ fieldName: string;
1492
+ rule: string;
1493
+ fieldValue: string;
1494
+ } & ({
1495
+ valueType: "TEXT" | "NUMBER";
1496
+ dateFormat?: string;
1497
+ } | {
1498
+ valueType: "DATE";
1499
+ dateFormat: string;
1500
+ }))[];
1501
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1502
+ source?: import("../../_utils/propsDiagram").Source;
1503
+ plugin: import("../../_utils/propsDiagram").Plugin;
1504
+ layer: import("../../_utils/propsDiagram").Layer;
1505
+ chartType: import("../../_utils/propsDiagram").ChartType;
1506
+ relatedList: unknown[];
1507
+ sqlConditions?: ({
1508
+ alias: string;
1509
+ fieldName: string;
1510
+ rule: string;
1511
+ fieldValue: string;
1512
+ } & ({
1513
+ valueType: "TEXT" | "NUMBER";
1514
+ dateFormat?: string;
1515
+ } | {
1516
+ valueType: "DATE";
1517
+ dateFormat: string;
1518
+ }))[];
1519
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
391
1520
  [key: string]: any;
392
1521
  } | import("src/_utils/props").RequestParams;
393
1522
  };
394
- requestMethod: {
1523
+ requestHeaders: {
395
1524
  type?: undefined;
396
1525
  default?: undefined;
397
1526
  } | {
@@ -400,11 +1529,47 @@ declare const _default: import("vue").DefineComponent<{
400
1529
  [key: string]: any;
401
1530
  }[] | {
402
1531
  [key: string]: any;
403
- }[] | Events | {
1532
+ }[] | ({
1533
+ source?: import("../../_utils/propsDiagram").Source;
1534
+ plugin: import("../../_utils/propsDiagram").Plugin;
1535
+ layer: import("../../_utils/propsDiagram").Layer;
1536
+ chartType: import("../../_utils/propsDiagram").ChartType;
1537
+ relatedList: unknown[];
1538
+ sqlConditions?: ({
1539
+ alias: string;
1540
+ fieldName: string;
1541
+ rule: string;
1542
+ fieldValue: string;
1543
+ } & ({
1544
+ valueType: "TEXT" | "NUMBER";
1545
+ dateFormat?: string;
1546
+ } | {
1547
+ valueType: "DATE";
1548
+ dateFormat: string;
1549
+ }))[];
1550
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1551
+ source?: import("../../_utils/propsDiagram").Source;
1552
+ plugin: import("../../_utils/propsDiagram").Plugin;
1553
+ layer: import("../../_utils/propsDiagram").Layer;
1554
+ chartType: import("../../_utils/propsDiagram").ChartType;
1555
+ relatedList: unknown[];
1556
+ sqlConditions?: ({
1557
+ alias: string;
1558
+ fieldName: string;
1559
+ rule: string;
1560
+ fieldValue: string;
1561
+ } & ({
1562
+ valueType: "TEXT" | "NUMBER";
1563
+ dateFormat?: string;
1564
+ } | {
1565
+ valueType: "DATE";
1566
+ dateFormat: string;
1567
+ }))[];
1568
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
404
1569
  [key: string]: any;
405
1570
  } | import("src/_utils/props").RequestParams;
406
1571
  };
407
- requestHeaders: {
1572
+ isOpenRequestTimer: {
408
1573
  type?: undefined;
409
1574
  default?: undefined;
410
1575
  } | {
@@ -413,11 +1578,47 @@ declare const _default: import("vue").DefineComponent<{
413
1578
  [key: string]: any;
414
1579
  }[] | {
415
1580
  [key: string]: any;
416
- }[] | Events | {
1581
+ }[] | ({
1582
+ source?: import("../../_utils/propsDiagram").Source;
1583
+ plugin: import("../../_utils/propsDiagram").Plugin;
1584
+ layer: import("../../_utils/propsDiagram").Layer;
1585
+ chartType: import("../../_utils/propsDiagram").ChartType;
1586
+ relatedList: unknown[];
1587
+ sqlConditions?: ({
1588
+ alias: string;
1589
+ fieldName: string;
1590
+ rule: string;
1591
+ fieldValue: string;
1592
+ } & ({
1593
+ valueType: "TEXT" | "NUMBER";
1594
+ dateFormat?: string;
1595
+ } | {
1596
+ valueType: "DATE";
1597
+ dateFormat: string;
1598
+ }))[];
1599
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1600
+ source?: import("../../_utils/propsDiagram").Source;
1601
+ plugin: import("../../_utils/propsDiagram").Plugin;
1602
+ layer: import("../../_utils/propsDiagram").Layer;
1603
+ chartType: import("../../_utils/propsDiagram").ChartType;
1604
+ relatedList: unknown[];
1605
+ sqlConditions?: ({
1606
+ alias: string;
1607
+ fieldName: string;
1608
+ rule: string;
1609
+ fieldValue: string;
1610
+ } & ({
1611
+ valueType: "TEXT" | "NUMBER";
1612
+ dateFormat?: string;
1613
+ } | {
1614
+ valueType: "DATE";
1615
+ dateFormat: string;
1616
+ }))[];
1617
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
417
1618
  [key: string]: any;
418
1619
  } | import("src/_utils/props").RequestParams;
419
1620
  };
420
- isOpenRequestTimer: {
1621
+ requestInterval: {
421
1622
  type?: undefined;
422
1623
  default?: undefined;
423
1624
  } | {
@@ -426,11 +1627,47 @@ declare const _default: import("vue").DefineComponent<{
426
1627
  [key: string]: any;
427
1628
  }[] | {
428
1629
  [key: string]: any;
429
- }[] | Events | {
1630
+ }[] | ({
1631
+ source?: import("../../_utils/propsDiagram").Source;
1632
+ plugin: import("../../_utils/propsDiagram").Plugin;
1633
+ layer: import("../../_utils/propsDiagram").Layer;
1634
+ chartType: import("../../_utils/propsDiagram").ChartType;
1635
+ relatedList: unknown[];
1636
+ sqlConditions?: ({
1637
+ alias: string;
1638
+ fieldName: string;
1639
+ rule: string;
1640
+ fieldValue: string;
1641
+ } & ({
1642
+ valueType: "TEXT" | "NUMBER";
1643
+ dateFormat?: string;
1644
+ } | {
1645
+ valueType: "DATE";
1646
+ dateFormat: string;
1647
+ }))[];
1648
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1649
+ source?: import("../../_utils/propsDiagram").Source;
1650
+ plugin: import("../../_utils/propsDiagram").Plugin;
1651
+ layer: import("../../_utils/propsDiagram").Layer;
1652
+ chartType: import("../../_utils/propsDiagram").ChartType;
1653
+ relatedList: unknown[];
1654
+ sqlConditions?: ({
1655
+ alias: string;
1656
+ fieldName: string;
1657
+ rule: string;
1658
+ fieldValue: string;
1659
+ } & ({
1660
+ valueType: "TEXT" | "NUMBER";
1661
+ dateFormat?: string;
1662
+ } | {
1663
+ valueType: "DATE";
1664
+ dateFormat: string;
1665
+ }))[];
1666
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
430
1667
  [key: string]: any;
431
1668
  } | import("src/_utils/props").RequestParams;
432
1669
  };
433
- requestInterval: {
1670
+ requestParams: {
434
1671
  type?: undefined;
435
1672
  default?: undefined;
436
1673
  } | {
@@ -439,11 +1676,47 @@ declare const _default: import("vue").DefineComponent<{
439
1676
  [key: string]: any;
440
1677
  }[] | {
441
1678
  [key: string]: any;
442
- }[] | Events | {
1679
+ }[] | ({
1680
+ source?: import("../../_utils/propsDiagram").Source;
1681
+ plugin: import("../../_utils/propsDiagram").Plugin;
1682
+ layer: import("../../_utils/propsDiagram").Layer;
1683
+ chartType: import("../../_utils/propsDiagram").ChartType;
1684
+ relatedList: unknown[];
1685
+ sqlConditions?: ({
1686
+ alias: string;
1687
+ fieldName: string;
1688
+ rule: string;
1689
+ fieldValue: string;
1690
+ } & ({
1691
+ valueType: "TEXT" | "NUMBER";
1692
+ dateFormat?: string;
1693
+ } | {
1694
+ valueType: "DATE";
1695
+ dateFormat: string;
1696
+ }))[];
1697
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1698
+ source?: import("../../_utils/propsDiagram").Source;
1699
+ plugin: import("../../_utils/propsDiagram").Plugin;
1700
+ layer: import("../../_utils/propsDiagram").Layer;
1701
+ chartType: import("../../_utils/propsDiagram").ChartType;
1702
+ relatedList: unknown[];
1703
+ sqlConditions?: ({
1704
+ alias: string;
1705
+ fieldName: string;
1706
+ rule: string;
1707
+ fieldValue: string;
1708
+ } & ({
1709
+ valueType: "TEXT" | "NUMBER";
1710
+ dateFormat?: string;
1711
+ } | {
1712
+ valueType: "DATE";
1713
+ dateFormat: string;
1714
+ }))[];
1715
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
443
1716
  [key: string]: any;
444
1717
  } | import("src/_utils/props").RequestParams;
445
1718
  };
446
- requestParams: {
1719
+ requestSort: {
447
1720
  type?: undefined;
448
1721
  default?: undefined;
449
1722
  } | {
@@ -452,11 +1725,47 @@ declare const _default: import("vue").DefineComponent<{
452
1725
  [key: string]: any;
453
1726
  }[] | {
454
1727
  [key: string]: any;
455
- }[] | Events | {
1728
+ }[] | ({
1729
+ source?: import("../../_utils/propsDiagram").Source;
1730
+ plugin: import("../../_utils/propsDiagram").Plugin;
1731
+ layer: import("../../_utils/propsDiagram").Layer;
1732
+ chartType: import("../../_utils/propsDiagram").ChartType;
1733
+ relatedList: unknown[];
1734
+ sqlConditions?: ({
1735
+ alias: string;
1736
+ fieldName: string;
1737
+ rule: string;
1738
+ fieldValue: string;
1739
+ } & ({
1740
+ valueType: "TEXT" | "NUMBER";
1741
+ dateFormat?: string;
1742
+ } | {
1743
+ valueType: "DATE";
1744
+ dateFormat: string;
1745
+ }))[];
1746
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1747
+ source?: import("../../_utils/propsDiagram").Source;
1748
+ plugin: import("../../_utils/propsDiagram").Plugin;
1749
+ layer: import("../../_utils/propsDiagram").Layer;
1750
+ chartType: import("../../_utils/propsDiagram").ChartType;
1751
+ relatedList: unknown[];
1752
+ sqlConditions?: ({
1753
+ alias: string;
1754
+ fieldName: string;
1755
+ rule: string;
1756
+ fieldValue: string;
1757
+ } & ({
1758
+ valueType: "TEXT" | "NUMBER";
1759
+ dateFormat?: string;
1760
+ } | {
1761
+ valueType: "DATE";
1762
+ dateFormat: string;
1763
+ }))[];
1764
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
456
1765
  [key: string]: any;
457
1766
  } | import("src/_utils/props").RequestParams;
458
1767
  };
459
- requestSort: {
1768
+ dataType: {
460
1769
  type?: undefined;
461
1770
  default?: undefined;
462
1771
  } | {
@@ -465,7 +1774,43 @@ declare const _default: import("vue").DefineComponent<{
465
1774
  [key: string]: any;
466
1775
  }[] | {
467
1776
  [key: string]: any;
468
- }[] | Events | {
1777
+ }[] | ({
1778
+ source?: import("../../_utils/propsDiagram").Source;
1779
+ plugin: import("../../_utils/propsDiagram").Plugin;
1780
+ layer: import("../../_utils/propsDiagram").Layer;
1781
+ chartType: import("../../_utils/propsDiagram").ChartType;
1782
+ relatedList: unknown[];
1783
+ sqlConditions?: ({
1784
+ alias: string;
1785
+ fieldName: string;
1786
+ rule: string;
1787
+ fieldValue: string;
1788
+ } & ({
1789
+ valueType: "TEXT" | "NUMBER";
1790
+ dateFormat?: string;
1791
+ } | {
1792
+ valueType: "DATE";
1793
+ dateFormat: string;
1794
+ }))[];
1795
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1796
+ source?: import("../../_utils/propsDiagram").Source;
1797
+ plugin: import("../../_utils/propsDiagram").Plugin;
1798
+ layer: import("../../_utils/propsDiagram").Layer;
1799
+ chartType: import("../../_utils/propsDiagram").ChartType;
1800
+ relatedList: unknown[];
1801
+ sqlConditions?: ({
1802
+ alias: string;
1803
+ fieldName: string;
1804
+ rule: string;
1805
+ fieldValue: string;
1806
+ } & ({
1807
+ valueType: "TEXT" | "NUMBER";
1808
+ dateFormat?: string;
1809
+ } | {
1810
+ valueType: "DATE";
1811
+ dateFormat: string;
1812
+ }))[];
1813
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
469
1814
  [key: string]: any;
470
1815
  } | import("src/_utils/props").RequestParams;
471
1816
  };
@@ -492,11 +1837,12 @@ declare const _default: import("vue").DefineComponent<{
492
1837
  current: number;
493
1838
  pageSize: number;
494
1839
  }>;
495
- formatFn: (value: string | number, format?: "" | "money" | "percentage" | "contrast") => string | number;
496
- contrastClass: (value: string | number, format: "" | "money" | "percentage" | "contrast") => "" | "goUp" | "goDown";
1840
+ formatFn: (value: string | number, format?: "" | "boolean" | "money" | "percentage" | "contrast") => string | number;
1841
+ contrastClass: (value: string | number, format: "" | "boolean" | "money" | "percentage" | "contrast") => "" | "goUp" | "goDown";
497
1842
  tableChange: ({ current }: {
498
1843
  current: number;
499
1844
  }, _filters: any, _sorter: any) => void;
1845
+ dataColumns: import("vue").Ref<any[]>;
500
1846
  dataSource: import("vue").Ref<{
501
1847
  [x: string]: any;
502
1848
  }[]>;
@@ -519,6 +1865,7 @@ declare const _default: import("vue").DefineComponent<{
519
1865
  cellBackgroundColor?: unknown;
520
1866
  borderColor?: unknown;
521
1867
  paginationPageSize?: unknown;
1868
+ diagramParam?: unknown;
522
1869
  id?: unknown;
523
1870
  name?: unknown;
524
1871
  keyName?: unknown;
@@ -532,7 +1879,6 @@ declare const _default: import("vue").DefineComponent<{
532
1879
  rotate?: unknown;
533
1880
  isShow?: unknown;
534
1881
  isRender?: unknown;
535
- isRequestData?: unknown;
536
1882
  events?: unknown;
537
1883
  requestUrl?: unknown;
538
1884
  requestMethod?: unknown;
@@ -541,6 +1887,7 @@ declare const _default: import("vue").DefineComponent<{
541
1887
  requestInterval?: unknown;
542
1888
  requestParams?: unknown;
543
1889
  requestSort?: unknown;
1890
+ dataType?: unknown;
544
1891
  } & {} & {
545
1892
  type?: string | number | boolean | {
546
1893
  [key: string]: any;
@@ -587,6 +1934,9 @@ declare const _default: import("vue").DefineComponent<{
587
1934
  paginationPageSize?: string | number | boolean | {
588
1935
  [key: string]: any;
589
1936
  };
1937
+ diagramParam?: string | number | boolean | {
1938
+ [key: string]: any;
1939
+ };
590
1940
  id?: string | number | boolean | {
591
1941
  [key: string]: any;
592
1942
  };
@@ -623,9 +1973,6 @@ declare const _default: import("vue").DefineComponent<{
623
1973
  isRender?: string | number | boolean | {
624
1974
  [key: string]: any;
625
1975
  };
626
- isRequestData?: string | number | boolean | {
627
- [key: string]: any;
628
- };
629
1976
  events?: string | number | boolean | {
630
1977
  [key: string]: any;
631
1978
  };
@@ -650,5 +1997,8 @@ declare const _default: import("vue").DefineComponent<{
650
1997
  requestSort?: string | number | boolean | {
651
1998
  [key: string]: any;
652
1999
  };
2000
+ dataType?: string | number | boolean | {
2001
+ [key: string]: any;
2002
+ };
653
2003
  }>, {}>;
654
2004
  export default _default;