@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
@@ -5,7 +5,43 @@ declare const _default: import("vue").DefineComponent<{
5
5
  default?: undefined;
6
6
  } | {
7
7
  type: any;
8
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
8
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
9
+ source?: import("../../_utils/propsDiagram").Source;
10
+ plugin: import("../../_utils/propsDiagram").Plugin;
11
+ layer: import("../../_utils/propsDiagram").Layer;
12
+ chartType: import("../../_utils/propsDiagram").ChartType;
13
+ relatedList: unknown[];
14
+ sqlConditions?: ({
15
+ alias: string;
16
+ fieldName: string;
17
+ rule: string;
18
+ fieldValue: string;
19
+ } & ({
20
+ valueType: "TEXT" | "NUMBER";
21
+ dateFormat?: string;
22
+ } | {
23
+ valueType: "DATE";
24
+ dateFormat: string;
25
+ }))[];
26
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
27
+ source?: import("../../_utils/propsDiagram").Source;
28
+ plugin: import("../../_utils/propsDiagram").Plugin;
29
+ layer: import("../../_utils/propsDiagram").Layer;
30
+ chartType: import("../../_utils/propsDiagram").ChartType;
31
+ relatedList: unknown[];
32
+ sqlConditions?: ({
33
+ alias: string;
34
+ fieldName: string;
35
+ rule: string;
36
+ fieldValue: string;
37
+ } & ({
38
+ valueType: "TEXT" | "NUMBER";
39
+ dateFormat?: string;
40
+ } | {
41
+ valueType: "DATE";
42
+ dateFormat: string;
43
+ }))[];
44
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
9
45
  [key: string]: any;
10
46
  } | import("src/_utils/props").RequestParams;
11
47
  };
@@ -14,7 +50,43 @@ declare const _default: import("vue").DefineComponent<{
14
50
  default?: undefined;
15
51
  } | {
16
52
  type: any;
17
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
53
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
54
+ source?: import("../../_utils/propsDiagram").Source;
55
+ plugin: import("../../_utils/propsDiagram").Plugin;
56
+ layer: import("../../_utils/propsDiagram").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").SqlViewMode) | ({
72
+ source?: import("../../_utils/propsDiagram").Source;
73
+ plugin: import("../../_utils/propsDiagram").Plugin;
74
+ layer: import("../../_utils/propsDiagram").Layer;
75
+ chartType: import("../../_utils/propsDiagram").ChartType;
76
+ relatedList: unknown[];
77
+ sqlConditions?: ({
78
+ alias: string;
79
+ fieldName: string;
80
+ rule: string;
81
+ fieldValue: string;
82
+ } & ({
83
+ valueType: "TEXT" | "NUMBER";
84
+ dateFormat?: string;
85
+ } | {
86
+ valueType: "DATE";
87
+ dateFormat: string;
88
+ }))[];
89
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
18
90
  [key: string]: any;
19
91
  } | import("src/_utils/props").RequestParams;
20
92
  };
@@ -23,7 +95,43 @@ declare const _default: import("vue").DefineComponent<{
23
95
  default?: undefined;
24
96
  } | {
25
97
  type: any;
26
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
98
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
99
+ source?: import("../../_utils/propsDiagram").Source;
100
+ plugin: import("../../_utils/propsDiagram").Plugin;
101
+ layer: import("../../_utils/propsDiagram").Layer;
102
+ chartType: import("../../_utils/propsDiagram").ChartType;
103
+ relatedList: unknown[];
104
+ sqlConditions?: ({
105
+ alias: string;
106
+ fieldName: string;
107
+ rule: string;
108
+ fieldValue: string;
109
+ } & ({
110
+ valueType: "TEXT" | "NUMBER";
111
+ dateFormat?: string;
112
+ } | {
113
+ valueType: "DATE";
114
+ dateFormat: string;
115
+ }))[];
116
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
117
+ source?: import("../../_utils/propsDiagram").Source;
118
+ plugin: import("../../_utils/propsDiagram").Plugin;
119
+ layer: import("../../_utils/propsDiagram").Layer;
120
+ chartType: import("../../_utils/propsDiagram").ChartType;
121
+ relatedList: unknown[];
122
+ sqlConditions?: ({
123
+ alias: string;
124
+ fieldName: string;
125
+ rule: string;
126
+ fieldValue: string;
127
+ } & ({
128
+ valueType: "TEXT" | "NUMBER";
129
+ dateFormat?: string;
130
+ } | {
131
+ valueType: "DATE";
132
+ dateFormat: string;
133
+ }))[];
134
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
27
135
  [key: string]: any;
28
136
  } | import("src/_utils/props").RequestParams;
29
137
  };
@@ -32,7 +140,43 @@ declare const _default: import("vue").DefineComponent<{
32
140
  default?: undefined;
33
141
  } | {
34
142
  type: any;
35
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
143
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
144
+ source?: import("../../_utils/propsDiagram").Source;
145
+ plugin: import("../../_utils/propsDiagram").Plugin;
146
+ layer: import("../../_utils/propsDiagram").Layer;
147
+ chartType: import("../../_utils/propsDiagram").ChartType;
148
+ relatedList: unknown[];
149
+ sqlConditions?: ({
150
+ alias: string;
151
+ fieldName: string;
152
+ rule: string;
153
+ fieldValue: string;
154
+ } & ({
155
+ valueType: "TEXT" | "NUMBER";
156
+ dateFormat?: string;
157
+ } | {
158
+ valueType: "DATE";
159
+ dateFormat: string;
160
+ }))[];
161
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
162
+ source?: import("../../_utils/propsDiagram").Source;
163
+ plugin: import("../../_utils/propsDiagram").Plugin;
164
+ layer: import("../../_utils/propsDiagram").Layer;
165
+ chartType: import("../../_utils/propsDiagram").ChartType;
166
+ relatedList: unknown[];
167
+ sqlConditions?: ({
168
+ alias: string;
169
+ fieldName: string;
170
+ rule: string;
171
+ fieldValue: string;
172
+ } & ({
173
+ valueType: "TEXT" | "NUMBER";
174
+ dateFormat?: string;
175
+ } | {
176
+ valueType: "DATE";
177
+ dateFormat: string;
178
+ }))[];
179
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
36
180
  [key: string]: any;
37
181
  } | import("src/_utils/props").RequestParams;
38
182
  };
@@ -41,7 +185,43 @@ declare const _default: import("vue").DefineComponent<{
41
185
  default?: undefined;
42
186
  } | {
43
187
  type: any;
44
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
188
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
189
+ source?: import("../../_utils/propsDiagram").Source;
190
+ plugin: import("../../_utils/propsDiagram").Plugin;
191
+ layer: import("../../_utils/propsDiagram").Layer;
192
+ chartType: import("../../_utils/propsDiagram").ChartType;
193
+ relatedList: unknown[];
194
+ sqlConditions?: ({
195
+ alias: string;
196
+ fieldName: string;
197
+ rule: string;
198
+ fieldValue: string;
199
+ } & ({
200
+ valueType: "TEXT" | "NUMBER";
201
+ dateFormat?: string;
202
+ } | {
203
+ valueType: "DATE";
204
+ dateFormat: string;
205
+ }))[];
206
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
207
+ source?: import("../../_utils/propsDiagram").Source;
208
+ plugin: import("../../_utils/propsDiagram").Plugin;
209
+ layer: import("../../_utils/propsDiagram").Layer;
210
+ chartType: import("../../_utils/propsDiagram").ChartType;
211
+ relatedList: unknown[];
212
+ sqlConditions?: ({
213
+ alias: string;
214
+ fieldName: string;
215
+ rule: string;
216
+ fieldValue: string;
217
+ } & ({
218
+ valueType: "TEXT" | "NUMBER";
219
+ dateFormat?: string;
220
+ } | {
221
+ valueType: "DATE";
222
+ dateFormat: string;
223
+ }))[];
224
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
45
225
  [key: string]: any;
46
226
  } | import("src/_utils/props").RequestParams;
47
227
  };
@@ -50,7 +230,43 @@ declare const _default: import("vue").DefineComponent<{
50
230
  default?: undefined;
51
231
  } | {
52
232
  type: any;
53
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
233
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
234
+ source?: import("../../_utils/propsDiagram").Source;
235
+ plugin: import("../../_utils/propsDiagram").Plugin;
236
+ layer: import("../../_utils/propsDiagram").Layer;
237
+ chartType: import("../../_utils/propsDiagram").ChartType;
238
+ relatedList: unknown[];
239
+ sqlConditions?: ({
240
+ alias: string;
241
+ fieldName: string;
242
+ rule: string;
243
+ fieldValue: string;
244
+ } & ({
245
+ valueType: "TEXT" | "NUMBER";
246
+ dateFormat?: string;
247
+ } | {
248
+ valueType: "DATE";
249
+ dateFormat: string;
250
+ }))[];
251
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
252
+ source?: import("../../_utils/propsDiagram").Source;
253
+ plugin: import("../../_utils/propsDiagram").Plugin;
254
+ layer: import("../../_utils/propsDiagram").Layer;
255
+ chartType: import("../../_utils/propsDiagram").ChartType;
256
+ relatedList: unknown[];
257
+ sqlConditions?: ({
258
+ alias: string;
259
+ fieldName: string;
260
+ rule: string;
261
+ fieldValue: string;
262
+ } & ({
263
+ valueType: "TEXT" | "NUMBER";
264
+ dateFormat?: string;
265
+ } | {
266
+ valueType: "DATE";
267
+ dateFormat: string;
268
+ }))[];
269
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
54
270
  [key: string]: any;
55
271
  } | import("src/_utils/props").RequestParams;
56
272
  };
@@ -59,7 +275,43 @@ declare const _default: import("vue").DefineComponent<{
59
275
  default?: undefined;
60
276
  } | {
61
277
  type: any;
62
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
278
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
279
+ source?: import("../../_utils/propsDiagram").Source;
280
+ plugin: import("../../_utils/propsDiagram").Plugin;
281
+ layer: import("../../_utils/propsDiagram").Layer;
282
+ chartType: import("../../_utils/propsDiagram").ChartType;
283
+ relatedList: unknown[];
284
+ sqlConditions?: ({
285
+ alias: string;
286
+ fieldName: string;
287
+ rule: string;
288
+ fieldValue: string;
289
+ } & ({
290
+ valueType: "TEXT" | "NUMBER";
291
+ dateFormat?: string;
292
+ } | {
293
+ valueType: "DATE";
294
+ dateFormat: string;
295
+ }))[];
296
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
297
+ source?: import("../../_utils/propsDiagram").Source;
298
+ plugin: import("../../_utils/propsDiagram").Plugin;
299
+ layer: import("../../_utils/propsDiagram").Layer;
300
+ chartType: import("../../_utils/propsDiagram").ChartType;
301
+ relatedList: unknown[];
302
+ sqlConditions?: ({
303
+ alias: string;
304
+ fieldName: string;
305
+ rule: string;
306
+ fieldValue: string;
307
+ } & ({
308
+ valueType: "TEXT" | "NUMBER";
309
+ dateFormat?: string;
310
+ } | {
311
+ valueType: "DATE";
312
+ dateFormat: string;
313
+ }))[];
314
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
63
315
  [key: string]: any;
64
316
  } | import("src/_utils/props").RequestParams;
65
317
  };
@@ -68,7 +320,43 @@ declare const _default: import("vue").DefineComponent<{
68
320
  default?: undefined;
69
321
  } | {
70
322
  type: any;
71
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
323
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
324
+ source?: import("../../_utils/propsDiagram").Source;
325
+ plugin: import("../../_utils/propsDiagram").Plugin;
326
+ layer: import("../../_utils/propsDiagram").Layer;
327
+ chartType: import("../../_utils/propsDiagram").ChartType;
328
+ relatedList: unknown[];
329
+ sqlConditions?: ({
330
+ alias: string;
331
+ fieldName: string;
332
+ rule: string;
333
+ fieldValue: string;
334
+ } & ({
335
+ valueType: "TEXT" | "NUMBER";
336
+ dateFormat?: string;
337
+ } | {
338
+ valueType: "DATE";
339
+ dateFormat: string;
340
+ }))[];
341
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
342
+ source?: import("../../_utils/propsDiagram").Source;
343
+ plugin: import("../../_utils/propsDiagram").Plugin;
344
+ layer: import("../../_utils/propsDiagram").Layer;
345
+ chartType: import("../../_utils/propsDiagram").ChartType;
346
+ relatedList: unknown[];
347
+ sqlConditions?: ({
348
+ alias: string;
349
+ fieldName: string;
350
+ rule: string;
351
+ fieldValue: string;
352
+ } & ({
353
+ valueType: "TEXT" | "NUMBER";
354
+ dateFormat?: string;
355
+ } | {
356
+ valueType: "DATE";
357
+ dateFormat: string;
358
+ }))[];
359
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
72
360
  [key: string]: any;
73
361
  } | import("src/_utils/props").RequestParams;
74
362
  };
@@ -77,7 +365,43 @@ declare const _default: import("vue").DefineComponent<{
77
365
  default?: undefined;
78
366
  } | {
79
367
  type: any;
80
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
368
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
369
+ source?: import("../../_utils/propsDiagram").Source;
370
+ plugin: import("../../_utils/propsDiagram").Plugin;
371
+ layer: import("../../_utils/propsDiagram").Layer;
372
+ chartType: import("../../_utils/propsDiagram").ChartType;
373
+ relatedList: unknown[];
374
+ sqlConditions?: ({
375
+ alias: string;
376
+ fieldName: string;
377
+ rule: string;
378
+ fieldValue: string;
379
+ } & ({
380
+ valueType: "TEXT" | "NUMBER";
381
+ dateFormat?: string;
382
+ } | {
383
+ valueType: "DATE";
384
+ dateFormat: string;
385
+ }))[];
386
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
387
+ source?: import("../../_utils/propsDiagram").Source;
388
+ plugin: import("../../_utils/propsDiagram").Plugin;
389
+ layer: import("../../_utils/propsDiagram").Layer;
390
+ chartType: import("../../_utils/propsDiagram").ChartType;
391
+ relatedList: unknown[];
392
+ sqlConditions?: ({
393
+ alias: string;
394
+ fieldName: string;
395
+ rule: string;
396
+ fieldValue: string;
397
+ } & ({
398
+ valueType: "TEXT" | "NUMBER";
399
+ dateFormat?: string;
400
+ } | {
401
+ valueType: "DATE";
402
+ dateFormat: string;
403
+ }))[];
404
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
81
405
  [key: string]: any;
82
406
  } | import("src/_utils/props").RequestParams;
83
407
  };
@@ -86,7 +410,43 @@ declare const _default: import("vue").DefineComponent<{
86
410
  default?: undefined;
87
411
  } | {
88
412
  type: any;
89
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
413
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
414
+ source?: import("../../_utils/propsDiagram").Source;
415
+ plugin: import("../../_utils/propsDiagram").Plugin;
416
+ layer: import("../../_utils/propsDiagram").Layer;
417
+ chartType: import("../../_utils/propsDiagram").ChartType;
418
+ relatedList: unknown[];
419
+ sqlConditions?: ({
420
+ alias: string;
421
+ fieldName: string;
422
+ rule: string;
423
+ fieldValue: string;
424
+ } & ({
425
+ valueType: "TEXT" | "NUMBER";
426
+ dateFormat?: string;
427
+ } | {
428
+ valueType: "DATE";
429
+ dateFormat: string;
430
+ }))[];
431
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
432
+ source?: import("../../_utils/propsDiagram").Source;
433
+ plugin: import("../../_utils/propsDiagram").Plugin;
434
+ layer: import("../../_utils/propsDiagram").Layer;
435
+ chartType: import("../../_utils/propsDiagram").ChartType;
436
+ relatedList: unknown[];
437
+ sqlConditions?: ({
438
+ alias: string;
439
+ fieldName: string;
440
+ rule: string;
441
+ fieldValue: string;
442
+ } & ({
443
+ valueType: "TEXT" | "NUMBER";
444
+ dateFormat?: string;
445
+ } | {
446
+ valueType: "DATE";
447
+ dateFormat: string;
448
+ }))[];
449
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
90
450
  [key: string]: any;
91
451
  } | import("src/_utils/props").RequestParams;
92
452
  };
@@ -95,7 +455,43 @@ declare const _default: import("vue").DefineComponent<{
95
455
  default?: undefined;
96
456
  } | {
97
457
  type: any;
98
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
458
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
459
+ source?: import("../../_utils/propsDiagram").Source;
460
+ plugin: import("../../_utils/propsDiagram").Plugin;
461
+ layer: import("../../_utils/propsDiagram").Layer;
462
+ chartType: import("../../_utils/propsDiagram").ChartType;
463
+ relatedList: unknown[];
464
+ sqlConditions?: ({
465
+ alias: string;
466
+ fieldName: string;
467
+ rule: string;
468
+ fieldValue: string;
469
+ } & ({
470
+ valueType: "TEXT" | "NUMBER";
471
+ dateFormat?: string;
472
+ } | {
473
+ valueType: "DATE";
474
+ dateFormat: string;
475
+ }))[];
476
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
477
+ source?: import("../../_utils/propsDiagram").Source;
478
+ plugin: import("../../_utils/propsDiagram").Plugin;
479
+ layer: import("../../_utils/propsDiagram").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").IndicatorLibMode) | Events | {
99
495
  [key: string]: any;
100
496
  } | import("src/_utils/props").RequestParams;
101
497
  };
@@ -104,7 +500,43 @@ declare const _default: import("vue").DefineComponent<{
104
500
  default?: undefined;
105
501
  } | {
106
502
  type: any;
107
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
503
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
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 | {
108
540
  [key: string]: any;
109
541
  } | import("src/_utils/props").RequestParams;
110
542
  };
@@ -113,7 +545,43 @@ declare const _default: import("vue").DefineComponent<{
113
545
  default?: undefined;
114
546
  } | {
115
547
  type: any;
116
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
548
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
549
+ source?: import("../../_utils/propsDiagram").Source;
550
+ plugin: import("../../_utils/propsDiagram").Plugin;
551
+ layer: import("../../_utils/propsDiagram").Layer;
552
+ chartType: import("../../_utils/propsDiagram").ChartType;
553
+ relatedList: unknown[];
554
+ sqlConditions?: ({
555
+ alias: string;
556
+ fieldName: string;
557
+ rule: string;
558
+ fieldValue: string;
559
+ } & ({
560
+ valueType: "TEXT" | "NUMBER";
561
+ dateFormat?: string;
562
+ } | {
563
+ valueType: "DATE";
564
+ dateFormat: string;
565
+ }))[];
566
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
567
+ source?: import("../../_utils/propsDiagram").Source;
568
+ plugin: import("../../_utils/propsDiagram").Plugin;
569
+ layer: import("../../_utils/propsDiagram").Layer;
570
+ chartType: import("../../_utils/propsDiagram").ChartType;
571
+ relatedList: unknown[];
572
+ sqlConditions?: ({
573
+ alias: string;
574
+ fieldName: string;
575
+ rule: string;
576
+ fieldValue: string;
577
+ } & ({
578
+ valueType: "TEXT" | "NUMBER";
579
+ dateFormat?: string;
580
+ } | {
581
+ valueType: "DATE";
582
+ dateFormat: string;
583
+ }))[];
584
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
117
585
  [key: string]: any;
118
586
  } | import("src/_utils/props").RequestParams;
119
587
  };
@@ -122,7 +590,43 @@ declare const _default: import("vue").DefineComponent<{
122
590
  default?: undefined;
123
591
  } | {
124
592
  type: any;
125
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
593
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
594
+ source?: import("../../_utils/propsDiagram").Source;
595
+ plugin: import("../../_utils/propsDiagram").Plugin;
596
+ layer: import("../../_utils/propsDiagram").Layer;
597
+ chartType: import("../../_utils/propsDiagram").ChartType;
598
+ relatedList: unknown[];
599
+ sqlConditions?: ({
600
+ alias: string;
601
+ fieldName: string;
602
+ rule: string;
603
+ fieldValue: string;
604
+ } & ({
605
+ valueType: "TEXT" | "NUMBER";
606
+ dateFormat?: string;
607
+ } | {
608
+ valueType: "DATE";
609
+ dateFormat: string;
610
+ }))[];
611
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
612
+ source?: import("../../_utils/propsDiagram").Source;
613
+ plugin: import("../../_utils/propsDiagram").Plugin;
614
+ layer: import("../../_utils/propsDiagram").Layer;
615
+ chartType: import("../../_utils/propsDiagram").ChartType;
616
+ relatedList: unknown[];
617
+ sqlConditions?: ({
618
+ alias: string;
619
+ fieldName: string;
620
+ rule: string;
621
+ fieldValue: string;
622
+ } & ({
623
+ valueType: "TEXT" | "NUMBER";
624
+ dateFormat?: string;
625
+ } | {
626
+ valueType: "DATE";
627
+ dateFormat: string;
628
+ }))[];
629
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
126
630
  [key: string]: any;
127
631
  } | import("src/_utils/props").RequestParams;
128
632
  };
@@ -131,7 +635,43 @@ declare const _default: import("vue").DefineComponent<{
131
635
  default?: undefined;
132
636
  } | {
133
637
  type: any;
134
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
638
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
639
+ source?: import("../../_utils/propsDiagram").Source;
640
+ plugin: import("../../_utils/propsDiagram").Plugin;
641
+ layer: import("../../_utils/propsDiagram").Layer;
642
+ chartType: import("../../_utils/propsDiagram").ChartType;
643
+ relatedList: unknown[];
644
+ sqlConditions?: ({
645
+ alias: string;
646
+ fieldName: string;
647
+ rule: string;
648
+ fieldValue: string;
649
+ } & ({
650
+ valueType: "TEXT" | "NUMBER";
651
+ dateFormat?: string;
652
+ } | {
653
+ valueType: "DATE";
654
+ dateFormat: string;
655
+ }))[];
656
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
657
+ source?: import("../../_utils/propsDiagram").Source;
658
+ plugin: import("../../_utils/propsDiagram").Plugin;
659
+ layer: import("../../_utils/propsDiagram").Layer;
660
+ chartType: import("../../_utils/propsDiagram").ChartType;
661
+ relatedList: unknown[];
662
+ sqlConditions?: ({
663
+ alias: string;
664
+ fieldName: string;
665
+ rule: string;
666
+ fieldValue: string;
667
+ } & ({
668
+ valueType: "TEXT" | "NUMBER";
669
+ dateFormat?: string;
670
+ } | {
671
+ valueType: "DATE";
672
+ dateFormat: string;
673
+ }))[];
674
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
135
675
  [key: string]: any;
136
676
  } | import("src/_utils/props").RequestParams;
137
677
  };
@@ -140,7 +680,43 @@ declare const _default: import("vue").DefineComponent<{
140
680
  default?: undefined;
141
681
  } | {
142
682
  type: any;
143
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
683
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
684
+ source?: import("../../_utils/propsDiagram").Source;
685
+ plugin: import("../../_utils/propsDiagram").Plugin;
686
+ layer: import("../../_utils/propsDiagram").Layer;
687
+ chartType: import("../../_utils/propsDiagram").ChartType;
688
+ relatedList: unknown[];
689
+ sqlConditions?: ({
690
+ alias: string;
691
+ fieldName: string;
692
+ rule: string;
693
+ fieldValue: string;
694
+ } & ({
695
+ valueType: "TEXT" | "NUMBER";
696
+ dateFormat?: string;
697
+ } | {
698
+ valueType: "DATE";
699
+ dateFormat: string;
700
+ }))[];
701
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
702
+ source?: import("../../_utils/propsDiagram").Source;
703
+ plugin: import("../../_utils/propsDiagram").Plugin;
704
+ layer: import("../../_utils/propsDiagram").Layer;
705
+ chartType: import("../../_utils/propsDiagram").ChartType;
706
+ relatedList: unknown[];
707
+ sqlConditions?: ({
708
+ alias: string;
709
+ fieldName: string;
710
+ rule: string;
711
+ fieldValue: string;
712
+ } & ({
713
+ valueType: "TEXT" | "NUMBER";
714
+ dateFormat?: string;
715
+ } | {
716
+ valueType: "DATE";
717
+ dateFormat: string;
718
+ }))[];
719
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
144
720
  [key: string]: any;
145
721
  } | import("src/_utils/props").RequestParams;
146
722
  };
@@ -149,7 +725,43 @@ declare const _default: import("vue").DefineComponent<{
149
725
  default?: undefined;
150
726
  } | {
151
727
  type: any;
152
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
728
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
729
+ source?: import("../../_utils/propsDiagram").Source;
730
+ plugin: import("../../_utils/propsDiagram").Plugin;
731
+ layer: import("../../_utils/propsDiagram").Layer;
732
+ chartType: import("../../_utils/propsDiagram").ChartType;
733
+ relatedList: unknown[];
734
+ sqlConditions?: ({
735
+ alias: string;
736
+ fieldName: string;
737
+ rule: string;
738
+ fieldValue: string;
739
+ } & ({
740
+ valueType: "TEXT" | "NUMBER";
741
+ dateFormat?: string;
742
+ } | {
743
+ valueType: "DATE";
744
+ dateFormat: string;
745
+ }))[];
746
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
747
+ source?: import("../../_utils/propsDiagram").Source;
748
+ plugin: import("../../_utils/propsDiagram").Plugin;
749
+ layer: import("../../_utils/propsDiagram").Layer;
750
+ chartType: import("../../_utils/propsDiagram").ChartType;
751
+ relatedList: unknown[];
752
+ sqlConditions?: ({
753
+ alias: string;
754
+ fieldName: string;
755
+ rule: string;
756
+ fieldValue: string;
757
+ } & ({
758
+ valueType: "TEXT" | "NUMBER";
759
+ dateFormat?: string;
760
+ } | {
761
+ valueType: "DATE";
762
+ dateFormat: string;
763
+ }))[];
764
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
153
765
  [key: string]: any;
154
766
  } | import("src/_utils/props").RequestParams;
155
767
  };
@@ -158,7 +770,43 @@ declare const _default: import("vue").DefineComponent<{
158
770
  default?: undefined;
159
771
  } | {
160
772
  type: any;
161
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
773
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
774
+ source?: import("../../_utils/propsDiagram").Source;
775
+ plugin: import("../../_utils/propsDiagram").Plugin;
776
+ layer: import("../../_utils/propsDiagram").Layer;
777
+ chartType: import("../../_utils/propsDiagram").ChartType;
778
+ relatedList: unknown[];
779
+ sqlConditions?: ({
780
+ alias: string;
781
+ fieldName: string;
782
+ rule: string;
783
+ fieldValue: string;
784
+ } & ({
785
+ valueType: "TEXT" | "NUMBER";
786
+ dateFormat?: string;
787
+ } | {
788
+ valueType: "DATE";
789
+ dateFormat: string;
790
+ }))[];
791
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
792
+ source?: import("../../_utils/propsDiagram").Source;
793
+ plugin: import("../../_utils/propsDiagram").Plugin;
794
+ layer: import("../../_utils/propsDiagram").Layer;
795
+ chartType: import("../../_utils/propsDiagram").ChartType;
796
+ relatedList: unknown[];
797
+ sqlConditions?: ({
798
+ alias: string;
799
+ fieldName: string;
800
+ rule: string;
801
+ fieldValue: string;
802
+ } & ({
803
+ valueType: "TEXT" | "NUMBER";
804
+ dateFormat?: string;
805
+ } | {
806
+ valueType: "DATE";
807
+ dateFormat: string;
808
+ }))[];
809
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
162
810
  [key: string]: any;
163
811
  } | import("src/_utils/props").RequestParams;
164
812
  };
@@ -167,7 +815,43 @@ declare const _default: import("vue").DefineComponent<{
167
815
  default?: undefined;
168
816
  } | {
169
817
  type: any;
170
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
818
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
819
+ source?: import("../../_utils/propsDiagram").Source;
820
+ plugin: import("../../_utils/propsDiagram").Plugin;
821
+ layer: import("../../_utils/propsDiagram").Layer;
822
+ chartType: import("../../_utils/propsDiagram").ChartType;
823
+ relatedList: unknown[];
824
+ sqlConditions?: ({
825
+ alias: string;
826
+ fieldName: string;
827
+ rule: string;
828
+ fieldValue: string;
829
+ } & ({
830
+ valueType: "TEXT" | "NUMBER";
831
+ dateFormat?: string;
832
+ } | {
833
+ valueType: "DATE";
834
+ dateFormat: string;
835
+ }))[];
836
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
837
+ source?: import("../../_utils/propsDiagram").Source;
838
+ plugin: import("../../_utils/propsDiagram").Plugin;
839
+ layer: import("../../_utils/propsDiagram").Layer;
840
+ chartType: import("../../_utils/propsDiagram").ChartType;
841
+ relatedList: unknown[];
842
+ sqlConditions?: ({
843
+ alias: string;
844
+ fieldName: string;
845
+ rule: string;
846
+ fieldValue: string;
847
+ } & ({
848
+ valueType: "TEXT" | "NUMBER";
849
+ dateFormat?: string;
850
+ } | {
851
+ valueType: "DATE";
852
+ dateFormat: string;
853
+ }))[];
854
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
171
855
  [key: string]: any;
172
856
  } | import("src/_utils/props").RequestParams;
173
857
  };
@@ -176,7 +860,43 @@ declare const _default: import("vue").DefineComponent<{
176
860
  default?: undefined;
177
861
  } | {
178
862
  type: any;
179
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
863
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
864
+ source?: import("../../_utils/propsDiagram").Source;
865
+ plugin: import("../../_utils/propsDiagram").Plugin;
866
+ layer: import("../../_utils/propsDiagram").Layer;
867
+ chartType: import("../../_utils/propsDiagram").ChartType;
868
+ relatedList: unknown[];
869
+ sqlConditions?: ({
870
+ alias: string;
871
+ fieldName: string;
872
+ rule: string;
873
+ fieldValue: string;
874
+ } & ({
875
+ valueType: "TEXT" | "NUMBER";
876
+ dateFormat?: string;
877
+ } | {
878
+ valueType: "DATE";
879
+ dateFormat: string;
880
+ }))[];
881
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
882
+ source?: import("../../_utils/propsDiagram").Source;
883
+ plugin: import("../../_utils/propsDiagram").Plugin;
884
+ layer: import("../../_utils/propsDiagram").Layer;
885
+ chartType: import("../../_utils/propsDiagram").ChartType;
886
+ relatedList: unknown[];
887
+ sqlConditions?: ({
888
+ alias: string;
889
+ fieldName: string;
890
+ rule: string;
891
+ fieldValue: string;
892
+ } & ({
893
+ valueType: "TEXT" | "NUMBER";
894
+ dateFormat?: string;
895
+ } | {
896
+ valueType: "DATE";
897
+ dateFormat: string;
898
+ }))[];
899
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
180
900
  [key: string]: any;
181
901
  } | import("src/_utils/props").RequestParams;
182
902
  };
@@ -185,7 +905,43 @@ declare const _default: import("vue").DefineComponent<{
185
905
  default?: undefined;
186
906
  } | {
187
907
  type: any;
188
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
908
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
909
+ source?: import("../../_utils/propsDiagram").Source;
910
+ plugin: import("../../_utils/propsDiagram").Plugin;
911
+ layer: import("../../_utils/propsDiagram").Layer;
912
+ chartType: import("../../_utils/propsDiagram").ChartType;
913
+ relatedList: unknown[];
914
+ sqlConditions?: ({
915
+ alias: string;
916
+ fieldName: string;
917
+ rule: string;
918
+ fieldValue: string;
919
+ } & ({
920
+ valueType: "TEXT" | "NUMBER";
921
+ dateFormat?: string;
922
+ } | {
923
+ valueType: "DATE";
924
+ dateFormat: string;
925
+ }))[];
926
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
927
+ source?: import("../../_utils/propsDiagram").Source;
928
+ plugin: import("../../_utils/propsDiagram").Plugin;
929
+ layer: import("../../_utils/propsDiagram").Layer;
930
+ chartType: import("../../_utils/propsDiagram").ChartType;
931
+ relatedList: unknown[];
932
+ sqlConditions?: ({
933
+ alias: string;
934
+ fieldName: string;
935
+ rule: string;
936
+ fieldValue: string;
937
+ } & ({
938
+ valueType: "TEXT" | "NUMBER";
939
+ dateFormat?: string;
940
+ } | {
941
+ valueType: "DATE";
942
+ dateFormat: string;
943
+ }))[];
944
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
189
945
  [key: string]: any;
190
946
  } | import("src/_utils/props").RequestParams;
191
947
  };
@@ -194,7 +950,43 @@ declare const _default: import("vue").DefineComponent<{
194
950
  default?: undefined;
195
951
  } | {
196
952
  type: any;
197
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
953
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
954
+ source?: import("../../_utils/propsDiagram").Source;
955
+ plugin: import("../../_utils/propsDiagram").Plugin;
956
+ layer: import("../../_utils/propsDiagram").Layer;
957
+ chartType: import("../../_utils/propsDiagram").ChartType;
958
+ relatedList: unknown[];
959
+ sqlConditions?: ({
960
+ alias: string;
961
+ fieldName: string;
962
+ rule: string;
963
+ fieldValue: string;
964
+ } & ({
965
+ valueType: "TEXT" | "NUMBER";
966
+ dateFormat?: string;
967
+ } | {
968
+ valueType: "DATE";
969
+ dateFormat: string;
970
+ }))[];
971
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
972
+ source?: import("../../_utils/propsDiagram").Source;
973
+ plugin: import("../../_utils/propsDiagram").Plugin;
974
+ layer: import("../../_utils/propsDiagram").Layer;
975
+ chartType: import("../../_utils/propsDiagram").ChartType;
976
+ relatedList: unknown[];
977
+ sqlConditions?: ({
978
+ alias: string;
979
+ fieldName: string;
980
+ rule: string;
981
+ fieldValue: string;
982
+ } & ({
983
+ valueType: "TEXT" | "NUMBER";
984
+ dateFormat?: string;
985
+ } | {
986
+ valueType: "DATE";
987
+ dateFormat: string;
988
+ }))[];
989
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
198
990
  [key: string]: any;
199
991
  } | import("src/_utils/props").RequestParams;
200
992
  };
@@ -203,7 +995,43 @@ declare const _default: import("vue").DefineComponent<{
203
995
  default?: undefined;
204
996
  } | {
205
997
  type: any;
206
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
998
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
999
+ source?: import("../../_utils/propsDiagram").Source;
1000
+ plugin: import("../../_utils/propsDiagram").Plugin;
1001
+ layer: import("../../_utils/propsDiagram").Layer;
1002
+ chartType: import("../../_utils/propsDiagram").ChartType;
1003
+ relatedList: unknown[];
1004
+ sqlConditions?: ({
1005
+ alias: string;
1006
+ fieldName: string;
1007
+ rule: string;
1008
+ fieldValue: string;
1009
+ } & ({
1010
+ valueType: "TEXT" | "NUMBER";
1011
+ dateFormat?: string;
1012
+ } | {
1013
+ valueType: "DATE";
1014
+ dateFormat: string;
1015
+ }))[];
1016
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1017
+ source?: import("../../_utils/propsDiagram").Source;
1018
+ plugin: import("../../_utils/propsDiagram").Plugin;
1019
+ layer: import("../../_utils/propsDiagram").Layer;
1020
+ chartType: import("../../_utils/propsDiagram").ChartType;
1021
+ relatedList: unknown[];
1022
+ sqlConditions?: ({
1023
+ alias: string;
1024
+ fieldName: string;
1025
+ rule: string;
1026
+ fieldValue: string;
1027
+ } & ({
1028
+ valueType: "TEXT" | "NUMBER";
1029
+ dateFormat?: string;
1030
+ } | {
1031
+ valueType: "DATE";
1032
+ dateFormat: string;
1033
+ }))[];
1034
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
207
1035
  [key: string]: any;
208
1036
  } | import("src/_utils/props").RequestParams;
209
1037
  };
@@ -212,7 +1040,43 @@ declare const _default: import("vue").DefineComponent<{
212
1040
  default?: undefined;
213
1041
  } | {
214
1042
  type: any;
215
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
1043
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
1044
+ source?: import("../../_utils/propsDiagram").Source;
1045
+ plugin: import("../../_utils/propsDiagram").Plugin;
1046
+ layer: import("../../_utils/propsDiagram").Layer;
1047
+ chartType: import("../../_utils/propsDiagram").ChartType;
1048
+ relatedList: unknown[];
1049
+ sqlConditions?: ({
1050
+ alias: string;
1051
+ fieldName: string;
1052
+ rule: string;
1053
+ fieldValue: string;
1054
+ } & ({
1055
+ valueType: "TEXT" | "NUMBER";
1056
+ dateFormat?: string;
1057
+ } | {
1058
+ valueType: "DATE";
1059
+ dateFormat: string;
1060
+ }))[];
1061
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1062
+ source?: import("../../_utils/propsDiagram").Source;
1063
+ plugin: import("../../_utils/propsDiagram").Plugin;
1064
+ layer: import("../../_utils/propsDiagram").Layer;
1065
+ chartType: import("../../_utils/propsDiagram").ChartType;
1066
+ relatedList: unknown[];
1067
+ sqlConditions?: ({
1068
+ alias: string;
1069
+ fieldName: string;
1070
+ rule: string;
1071
+ fieldValue: string;
1072
+ } & ({
1073
+ valueType: "TEXT" | "NUMBER";
1074
+ dateFormat?: string;
1075
+ } | {
1076
+ valueType: "DATE";
1077
+ dateFormat: string;
1078
+ }))[];
1079
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
216
1080
  [key: string]: any;
217
1081
  } | import("src/_utils/props").RequestParams;
218
1082
  };
@@ -221,7 +1085,88 @@ declare const _default: import("vue").DefineComponent<{
221
1085
  default?: undefined;
222
1086
  } | {
223
1087
  type: any;
224
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
1088
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
1089
+ source?: import("../../_utils/propsDiagram").Source;
1090
+ plugin: import("../../_utils/propsDiagram").Plugin;
1091
+ layer: import("../../_utils/propsDiagram").Layer;
1092
+ chartType: import("../../_utils/propsDiagram").ChartType;
1093
+ relatedList: unknown[];
1094
+ sqlConditions?: ({
1095
+ alias: string;
1096
+ fieldName: string;
1097
+ rule: string;
1098
+ fieldValue: string;
1099
+ } & ({
1100
+ valueType: "TEXT" | "NUMBER";
1101
+ dateFormat?: string;
1102
+ } | {
1103
+ valueType: "DATE";
1104
+ dateFormat: string;
1105
+ }))[];
1106
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1107
+ source?: import("../../_utils/propsDiagram").Source;
1108
+ plugin: import("../../_utils/propsDiagram").Plugin;
1109
+ layer: import("../../_utils/propsDiagram").Layer;
1110
+ chartType: import("../../_utils/propsDiagram").ChartType;
1111
+ relatedList: unknown[];
1112
+ sqlConditions?: ({
1113
+ alias: string;
1114
+ fieldName: string;
1115
+ rule: string;
1116
+ fieldValue: string;
1117
+ } & ({
1118
+ valueType: "TEXT" | "NUMBER";
1119
+ dateFormat?: string;
1120
+ } | {
1121
+ valueType: "DATE";
1122
+ dateFormat: string;
1123
+ }))[];
1124
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
1125
+ [key: string]: any;
1126
+ } | import("src/_utils/props").RequestParams;
1127
+ };
1128
+ diagramParam: {
1129
+ type?: undefined;
1130
+ default?: undefined;
1131
+ } | {
1132
+ type: any;
1133
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
1134
+ source?: import("../../_utils/propsDiagram").Source;
1135
+ plugin: import("../../_utils/propsDiagram").Plugin;
1136
+ layer: import("../../_utils/propsDiagram").Layer;
1137
+ chartType: import("../../_utils/propsDiagram").ChartType;
1138
+ relatedList: unknown[];
1139
+ sqlConditions?: ({
1140
+ alias: string;
1141
+ fieldName: string;
1142
+ rule: string;
1143
+ fieldValue: string;
1144
+ } & ({
1145
+ valueType: "TEXT" | "NUMBER";
1146
+ dateFormat?: string;
1147
+ } | {
1148
+ valueType: "DATE";
1149
+ dateFormat: string;
1150
+ }))[];
1151
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1152
+ source?: import("../../_utils/propsDiagram").Source;
1153
+ plugin: import("../../_utils/propsDiagram").Plugin;
1154
+ layer: import("../../_utils/propsDiagram").Layer;
1155
+ chartType: import("../../_utils/propsDiagram").ChartType;
1156
+ relatedList: unknown[];
1157
+ sqlConditions?: ({
1158
+ alias: string;
1159
+ fieldName: string;
1160
+ rule: string;
1161
+ fieldValue: string;
1162
+ } & ({
1163
+ valueType: "TEXT" | "NUMBER";
1164
+ dateFormat?: string;
1165
+ } | {
1166
+ valueType: "DATE";
1167
+ dateFormat: string;
1168
+ }))[];
1169
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
225
1170
  [key: string]: any;
226
1171
  } | import("src/_utils/props").RequestParams;
227
1172
  };
@@ -230,7 +1175,43 @@ declare const _default: import("vue").DefineComponent<{
230
1175
  default?: undefined;
231
1176
  } | {
232
1177
  type: any;
233
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
1178
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
1179
+ source?: import("../../_utils/propsDiagram").Source;
1180
+ plugin: import("../../_utils/propsDiagram").Plugin;
1181
+ layer: import("../../_utils/propsDiagram").Layer;
1182
+ chartType: import("../../_utils/propsDiagram").ChartType;
1183
+ relatedList: unknown[];
1184
+ sqlConditions?: ({
1185
+ alias: string;
1186
+ fieldName: string;
1187
+ rule: string;
1188
+ fieldValue: string;
1189
+ } & ({
1190
+ valueType: "TEXT" | "NUMBER";
1191
+ dateFormat?: string;
1192
+ } | {
1193
+ valueType: "DATE";
1194
+ dateFormat: string;
1195
+ }))[];
1196
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1197
+ source?: import("../../_utils/propsDiagram").Source;
1198
+ plugin: import("../../_utils/propsDiagram").Plugin;
1199
+ layer: import("../../_utils/propsDiagram").Layer;
1200
+ chartType: import("../../_utils/propsDiagram").ChartType;
1201
+ relatedList: unknown[];
1202
+ sqlConditions?: ({
1203
+ alias: string;
1204
+ fieldName: string;
1205
+ rule: string;
1206
+ fieldValue: string;
1207
+ } & ({
1208
+ valueType: "TEXT" | "NUMBER";
1209
+ dateFormat?: string;
1210
+ } | {
1211
+ valueType: "DATE";
1212
+ dateFormat: string;
1213
+ }))[];
1214
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
234
1215
  [key: string]: any;
235
1216
  } | import("src/_utils/props").RequestParams;
236
1217
  };
@@ -239,7 +1220,43 @@ declare const _default: import("vue").DefineComponent<{
239
1220
  default?: undefined;
240
1221
  } | {
241
1222
  type: any;
242
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
1223
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
1224
+ source?: import("../../_utils/propsDiagram").Source;
1225
+ plugin: import("../../_utils/propsDiagram").Plugin;
1226
+ layer: import("../../_utils/propsDiagram").Layer;
1227
+ chartType: import("../../_utils/propsDiagram").ChartType;
1228
+ relatedList: unknown[];
1229
+ sqlConditions?: ({
1230
+ alias: string;
1231
+ fieldName: string;
1232
+ rule: string;
1233
+ fieldValue: string;
1234
+ } & ({
1235
+ valueType: "TEXT" | "NUMBER";
1236
+ dateFormat?: string;
1237
+ } | {
1238
+ valueType: "DATE";
1239
+ dateFormat: string;
1240
+ }))[];
1241
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1242
+ source?: import("../../_utils/propsDiagram").Source;
1243
+ plugin: import("../../_utils/propsDiagram").Plugin;
1244
+ layer: import("../../_utils/propsDiagram").Layer;
1245
+ chartType: import("../../_utils/propsDiagram").ChartType;
1246
+ relatedList: unknown[];
1247
+ sqlConditions?: ({
1248
+ alias: string;
1249
+ fieldName: string;
1250
+ rule: string;
1251
+ fieldValue: string;
1252
+ } & ({
1253
+ valueType: "TEXT" | "NUMBER";
1254
+ dateFormat?: string;
1255
+ } | {
1256
+ valueType: "DATE";
1257
+ dateFormat: string;
1258
+ }))[];
1259
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
243
1260
  [key: string]: any;
244
1261
  } | import("src/_utils/props").RequestParams;
245
1262
  };
@@ -248,7 +1265,43 @@ declare const _default: import("vue").DefineComponent<{
248
1265
  default?: undefined;
249
1266
  } | {
250
1267
  type: any;
251
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
1268
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
1269
+ source?: import("../../_utils/propsDiagram").Source;
1270
+ plugin: import("../../_utils/propsDiagram").Plugin;
1271
+ layer: import("../../_utils/propsDiagram").Layer;
1272
+ chartType: import("../../_utils/propsDiagram").ChartType;
1273
+ relatedList: unknown[];
1274
+ sqlConditions?: ({
1275
+ alias: string;
1276
+ fieldName: string;
1277
+ rule: string;
1278
+ fieldValue: string;
1279
+ } & ({
1280
+ valueType: "TEXT" | "NUMBER";
1281
+ dateFormat?: string;
1282
+ } | {
1283
+ valueType: "DATE";
1284
+ dateFormat: string;
1285
+ }))[];
1286
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1287
+ source?: import("../../_utils/propsDiagram").Source;
1288
+ plugin: import("../../_utils/propsDiagram").Plugin;
1289
+ layer: import("../../_utils/propsDiagram").Layer;
1290
+ chartType: import("../../_utils/propsDiagram").ChartType;
1291
+ relatedList: unknown[];
1292
+ sqlConditions?: ({
1293
+ alias: string;
1294
+ fieldName: string;
1295
+ rule: string;
1296
+ fieldValue: string;
1297
+ } & ({
1298
+ valueType: "TEXT" | "NUMBER";
1299
+ dateFormat?: string;
1300
+ } | {
1301
+ valueType: "DATE";
1302
+ dateFormat: string;
1303
+ }))[];
1304
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
252
1305
  [key: string]: any;
253
1306
  } | import("src/_utils/props").RequestParams;
254
1307
  };
@@ -257,7 +1310,43 @@ declare const _default: import("vue").DefineComponent<{
257
1310
  default?: undefined;
258
1311
  } | {
259
1312
  type: any;
260
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
1313
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
1314
+ source?: import("../../_utils/propsDiagram").Source;
1315
+ plugin: import("../../_utils/propsDiagram").Plugin;
1316
+ layer: import("../../_utils/propsDiagram").Layer;
1317
+ chartType: import("../../_utils/propsDiagram").ChartType;
1318
+ relatedList: unknown[];
1319
+ sqlConditions?: ({
1320
+ alias: string;
1321
+ fieldName: string;
1322
+ rule: string;
1323
+ fieldValue: string;
1324
+ } & ({
1325
+ valueType: "TEXT" | "NUMBER";
1326
+ dateFormat?: string;
1327
+ } | {
1328
+ valueType: "DATE";
1329
+ dateFormat: string;
1330
+ }))[];
1331
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1332
+ source?: import("../../_utils/propsDiagram").Source;
1333
+ plugin: import("../../_utils/propsDiagram").Plugin;
1334
+ layer: import("../../_utils/propsDiagram").Layer;
1335
+ chartType: import("../../_utils/propsDiagram").ChartType;
1336
+ relatedList: unknown[];
1337
+ sqlConditions?: ({
1338
+ alias: string;
1339
+ fieldName: string;
1340
+ rule: string;
1341
+ fieldValue: string;
1342
+ } & ({
1343
+ valueType: "TEXT" | "NUMBER";
1344
+ dateFormat?: string;
1345
+ } | {
1346
+ valueType: "DATE";
1347
+ dateFormat: string;
1348
+ }))[];
1349
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
261
1350
  [key: string]: any;
262
1351
  } | import("src/_utils/props").RequestParams;
263
1352
  };
@@ -266,7 +1355,43 @@ declare const _default: import("vue").DefineComponent<{
266
1355
  default?: undefined;
267
1356
  } | {
268
1357
  type: any;
269
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
1358
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
1359
+ source?: import("../../_utils/propsDiagram").Source;
1360
+ plugin: import("../../_utils/propsDiagram").Plugin;
1361
+ layer: import("../../_utils/propsDiagram").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: import("../../_utils/propsDiagram").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) | Events | {
270
1395
  [key: string]: any;
271
1396
  } | import("src/_utils/props").RequestParams;
272
1397
  };
@@ -275,7 +1400,43 @@ declare const _default: import("vue").DefineComponent<{
275
1400
  default?: undefined;
276
1401
  } | {
277
1402
  type: any;
278
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
1403
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
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").SqlViewMode) | ({
1422
+ source?: import("../../_utils/propsDiagram").Source;
1423
+ plugin: import("../../_utils/propsDiagram").Plugin;
1424
+ layer: import("../../_utils/propsDiagram").Layer;
1425
+ chartType: import("../../_utils/propsDiagram").ChartType;
1426
+ relatedList: unknown[];
1427
+ sqlConditions?: ({
1428
+ alias: string;
1429
+ fieldName: string;
1430
+ rule: string;
1431
+ fieldValue: string;
1432
+ } & ({
1433
+ valueType: "TEXT" | "NUMBER";
1434
+ dateFormat?: string;
1435
+ } | {
1436
+ valueType: "DATE";
1437
+ dateFormat: string;
1438
+ }))[];
1439
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
279
1440
  [key: string]: any;
280
1441
  } | import("src/_utils/props").RequestParams;
281
1442
  };
@@ -284,7 +1445,43 @@ declare const _default: import("vue").DefineComponent<{
284
1445
  default?: undefined;
285
1446
  } | {
286
1447
  type: any;
287
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
1448
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
1449
+ source?: import("../../_utils/propsDiagram").Source;
1450
+ plugin: import("../../_utils/propsDiagram").Plugin;
1451
+ layer: import("../../_utils/propsDiagram").Layer;
1452
+ chartType: import("../../_utils/propsDiagram").ChartType;
1453
+ relatedList: unknown[];
1454
+ sqlConditions?: ({
1455
+ alias: string;
1456
+ fieldName: string;
1457
+ rule: string;
1458
+ fieldValue: string;
1459
+ } & ({
1460
+ valueType: "TEXT" | "NUMBER";
1461
+ dateFormat?: string;
1462
+ } | {
1463
+ valueType: "DATE";
1464
+ dateFormat: string;
1465
+ }))[];
1466
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1467
+ source?: import("../../_utils/propsDiagram").Source;
1468
+ plugin: import("../../_utils/propsDiagram").Plugin;
1469
+ layer: import("../../_utils/propsDiagram").Layer;
1470
+ chartType: import("../../_utils/propsDiagram").ChartType;
1471
+ relatedList: unknown[];
1472
+ sqlConditions?: ({
1473
+ alias: string;
1474
+ fieldName: string;
1475
+ rule: string;
1476
+ fieldValue: string;
1477
+ } & ({
1478
+ valueType: "TEXT" | "NUMBER";
1479
+ dateFormat?: string;
1480
+ } | {
1481
+ valueType: "DATE";
1482
+ dateFormat: string;
1483
+ }))[];
1484
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
288
1485
  [key: string]: any;
289
1486
  } | import("src/_utils/props").RequestParams;
290
1487
  };
@@ -293,7 +1490,43 @@ declare const _default: import("vue").DefineComponent<{
293
1490
  default?: undefined;
294
1491
  } | {
295
1492
  type: any;
296
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
1493
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
1494
+ source?: import("../../_utils/propsDiagram").Source;
1495
+ plugin: import("../../_utils/propsDiagram").Plugin;
1496
+ layer: import("../../_utils/propsDiagram").Layer;
1497
+ chartType: import("../../_utils/propsDiagram").ChartType;
1498
+ relatedList: unknown[];
1499
+ sqlConditions?: ({
1500
+ alias: string;
1501
+ fieldName: string;
1502
+ rule: string;
1503
+ fieldValue: string;
1504
+ } & ({
1505
+ valueType: "TEXT" | "NUMBER";
1506
+ dateFormat?: string;
1507
+ } | {
1508
+ valueType: "DATE";
1509
+ dateFormat: string;
1510
+ }))[];
1511
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1512
+ source?: import("../../_utils/propsDiagram").Source;
1513
+ plugin: import("../../_utils/propsDiagram").Plugin;
1514
+ layer: import("../../_utils/propsDiagram").Layer;
1515
+ chartType: import("../../_utils/propsDiagram").ChartType;
1516
+ relatedList: unknown[];
1517
+ sqlConditions?: ({
1518
+ alias: string;
1519
+ fieldName: string;
1520
+ rule: string;
1521
+ fieldValue: string;
1522
+ } & ({
1523
+ valueType: "TEXT" | "NUMBER";
1524
+ dateFormat?: string;
1525
+ } | {
1526
+ valueType: "DATE";
1527
+ dateFormat: string;
1528
+ }))[];
1529
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
297
1530
  [key: string]: any;
298
1531
  } | import("src/_utils/props").RequestParams;
299
1532
  };
@@ -302,7 +1535,43 @@ declare const _default: import("vue").DefineComponent<{
302
1535
  default?: undefined;
303
1536
  } | {
304
1537
  type: any;
305
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
1538
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
1539
+ source?: import("../../_utils/propsDiagram").Source;
1540
+ plugin: import("../../_utils/propsDiagram").Plugin;
1541
+ layer: import("../../_utils/propsDiagram").Layer;
1542
+ chartType: import("../../_utils/propsDiagram").ChartType;
1543
+ relatedList: unknown[];
1544
+ sqlConditions?: ({
1545
+ alias: string;
1546
+ fieldName: string;
1547
+ rule: string;
1548
+ fieldValue: string;
1549
+ } & ({
1550
+ valueType: "TEXT" | "NUMBER";
1551
+ dateFormat?: string;
1552
+ } | {
1553
+ valueType: "DATE";
1554
+ dateFormat: string;
1555
+ }))[];
1556
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1557
+ source?: import("../../_utils/propsDiagram").Source;
1558
+ plugin: import("../../_utils/propsDiagram").Plugin;
1559
+ layer: import("../../_utils/propsDiagram").Layer;
1560
+ chartType: import("../../_utils/propsDiagram").ChartType;
1561
+ relatedList: unknown[];
1562
+ sqlConditions?: ({
1563
+ alias: string;
1564
+ fieldName: string;
1565
+ rule: string;
1566
+ fieldValue: string;
1567
+ } & ({
1568
+ valueType: "TEXT" | "NUMBER";
1569
+ dateFormat?: string;
1570
+ } | {
1571
+ valueType: "DATE";
1572
+ dateFormat: string;
1573
+ }))[];
1574
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
306
1575
  [key: string]: any;
307
1576
  } | import("src/_utils/props").RequestParams;
308
1577
  };
@@ -311,7 +1580,43 @@ declare const _default: import("vue").DefineComponent<{
311
1580
  default?: undefined;
312
1581
  } | {
313
1582
  type: any;
314
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
1583
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
1584
+ source?: import("../../_utils/propsDiagram").Source;
1585
+ plugin: import("../../_utils/propsDiagram").Plugin;
1586
+ layer: import("../../_utils/propsDiagram").Layer;
1587
+ chartType: import("../../_utils/propsDiagram").ChartType;
1588
+ relatedList: unknown[];
1589
+ sqlConditions?: ({
1590
+ alias: string;
1591
+ fieldName: string;
1592
+ rule: string;
1593
+ fieldValue: string;
1594
+ } & ({
1595
+ valueType: "TEXT" | "NUMBER";
1596
+ dateFormat?: string;
1597
+ } | {
1598
+ valueType: "DATE";
1599
+ dateFormat: string;
1600
+ }))[];
1601
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1602
+ source?: import("../../_utils/propsDiagram").Source;
1603
+ plugin: import("../../_utils/propsDiagram").Plugin;
1604
+ layer: import("../../_utils/propsDiagram").Layer;
1605
+ chartType: import("../../_utils/propsDiagram").ChartType;
1606
+ relatedList: unknown[];
1607
+ sqlConditions?: ({
1608
+ alias: string;
1609
+ fieldName: string;
1610
+ rule: string;
1611
+ fieldValue: string;
1612
+ } & ({
1613
+ valueType: "TEXT" | "NUMBER";
1614
+ dateFormat?: string;
1615
+ } | {
1616
+ valueType: "DATE";
1617
+ dateFormat: string;
1618
+ }))[];
1619
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
315
1620
  [key: string]: any;
316
1621
  } | import("src/_utils/props").RequestParams;
317
1622
  };
@@ -320,7 +1625,43 @@ declare const _default: import("vue").DefineComponent<{
320
1625
  default?: undefined;
321
1626
  } | {
322
1627
  type: any;
323
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
1628
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
1629
+ source?: import("../../_utils/propsDiagram").Source;
1630
+ plugin: import("../../_utils/propsDiagram").Plugin;
1631
+ layer: import("../../_utils/propsDiagram").Layer;
1632
+ chartType: import("../../_utils/propsDiagram").ChartType;
1633
+ relatedList: unknown[];
1634
+ sqlConditions?: ({
1635
+ alias: string;
1636
+ fieldName: string;
1637
+ rule: string;
1638
+ fieldValue: string;
1639
+ } & ({
1640
+ valueType: "TEXT" | "NUMBER";
1641
+ dateFormat?: string;
1642
+ } | {
1643
+ valueType: "DATE";
1644
+ dateFormat: string;
1645
+ }))[];
1646
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1647
+ source?: import("../../_utils/propsDiagram").Source;
1648
+ plugin: import("../../_utils/propsDiagram").Plugin;
1649
+ layer: import("../../_utils/propsDiagram").Layer;
1650
+ chartType: import("../../_utils/propsDiagram").ChartType;
1651
+ relatedList: unknown[];
1652
+ sqlConditions?: ({
1653
+ alias: string;
1654
+ fieldName: string;
1655
+ rule: string;
1656
+ fieldValue: string;
1657
+ } & ({
1658
+ valueType: "TEXT" | "NUMBER";
1659
+ dateFormat?: string;
1660
+ } | {
1661
+ valueType: "DATE";
1662
+ dateFormat: string;
1663
+ }))[];
1664
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
324
1665
  [key: string]: any;
325
1666
  } | import("src/_utils/props").RequestParams;
326
1667
  };
@@ -329,7 +1670,43 @@ declare const _default: import("vue").DefineComponent<{
329
1670
  default?: undefined;
330
1671
  } | {
331
1672
  type: any;
332
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
1673
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
1674
+ source?: import("../../_utils/propsDiagram").Source;
1675
+ plugin: import("../../_utils/propsDiagram").Plugin;
1676
+ layer: import("../../_utils/propsDiagram").Layer;
1677
+ chartType: import("../../_utils/propsDiagram").ChartType;
1678
+ relatedList: unknown[];
1679
+ sqlConditions?: ({
1680
+ alias: string;
1681
+ fieldName: string;
1682
+ rule: string;
1683
+ fieldValue: string;
1684
+ } & ({
1685
+ valueType: "TEXT" | "NUMBER";
1686
+ dateFormat?: string;
1687
+ } | {
1688
+ valueType: "DATE";
1689
+ dateFormat: string;
1690
+ }))[];
1691
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1692
+ source?: import("../../_utils/propsDiagram").Source;
1693
+ plugin: import("../../_utils/propsDiagram").Plugin;
1694
+ layer: import("../../_utils/propsDiagram").Layer;
1695
+ chartType: import("../../_utils/propsDiagram").ChartType;
1696
+ relatedList: unknown[];
1697
+ sqlConditions?: ({
1698
+ alias: string;
1699
+ fieldName: string;
1700
+ rule: string;
1701
+ fieldValue: string;
1702
+ } & ({
1703
+ valueType: "TEXT" | "NUMBER";
1704
+ dateFormat?: string;
1705
+ } | {
1706
+ valueType: "DATE";
1707
+ dateFormat: string;
1708
+ }))[];
1709
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
333
1710
  [key: string]: any;
334
1711
  } | import("src/_utils/props").RequestParams;
335
1712
  };
@@ -338,16 +1715,43 @@ declare const _default: import("vue").DefineComponent<{
338
1715
  default?: undefined;
339
1716
  } | {
340
1717
  type: any;
341
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
342
- [key: string]: any;
343
- } | import("src/_utils/props").RequestParams;
344
- };
345
- isRequestData: {
346
- type?: undefined;
347
- default?: undefined;
348
- } | {
349
- type: any;
350
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
1718
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
1719
+ source?: import("../../_utils/propsDiagram").Source;
1720
+ plugin: import("../../_utils/propsDiagram").Plugin;
1721
+ layer: import("../../_utils/propsDiagram").Layer;
1722
+ chartType: import("../../_utils/propsDiagram").ChartType;
1723
+ relatedList: unknown[];
1724
+ sqlConditions?: ({
1725
+ alias: string;
1726
+ fieldName: string;
1727
+ rule: string;
1728
+ fieldValue: string;
1729
+ } & ({
1730
+ valueType: "TEXT" | "NUMBER";
1731
+ dateFormat?: string;
1732
+ } | {
1733
+ valueType: "DATE";
1734
+ dateFormat: string;
1735
+ }))[];
1736
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1737
+ source?: import("../../_utils/propsDiagram").Source;
1738
+ plugin: import("../../_utils/propsDiagram").Plugin;
1739
+ layer: import("../../_utils/propsDiagram").Layer;
1740
+ chartType: import("../../_utils/propsDiagram").ChartType;
1741
+ relatedList: unknown[];
1742
+ sqlConditions?: ({
1743
+ alias: string;
1744
+ fieldName: string;
1745
+ rule: string;
1746
+ fieldValue: string;
1747
+ } & ({
1748
+ valueType: "TEXT" | "NUMBER";
1749
+ dateFormat?: string;
1750
+ } | {
1751
+ valueType: "DATE";
1752
+ dateFormat: string;
1753
+ }))[];
1754
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
351
1755
  [key: string]: any;
352
1756
  } | import("src/_utils/props").RequestParams;
353
1757
  };
@@ -356,7 +1760,43 @@ declare const _default: import("vue").DefineComponent<{
356
1760
  default?: undefined;
357
1761
  } | {
358
1762
  type: any;
359
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
1763
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
1764
+ source?: import("../../_utils/propsDiagram").Source;
1765
+ plugin: import("../../_utils/propsDiagram").Plugin;
1766
+ layer: import("../../_utils/propsDiagram").Layer;
1767
+ chartType: import("../../_utils/propsDiagram").ChartType;
1768
+ relatedList: unknown[];
1769
+ sqlConditions?: ({
1770
+ alias: string;
1771
+ fieldName: string;
1772
+ rule: string;
1773
+ fieldValue: string;
1774
+ } & ({
1775
+ valueType: "TEXT" | "NUMBER";
1776
+ dateFormat?: string;
1777
+ } | {
1778
+ valueType: "DATE";
1779
+ dateFormat: string;
1780
+ }))[];
1781
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1782
+ source?: import("../../_utils/propsDiagram").Source;
1783
+ plugin: import("../../_utils/propsDiagram").Plugin;
1784
+ layer: import("../../_utils/propsDiagram").Layer;
1785
+ chartType: import("../../_utils/propsDiagram").ChartType;
1786
+ relatedList: unknown[];
1787
+ sqlConditions?: ({
1788
+ alias: string;
1789
+ fieldName: string;
1790
+ rule: string;
1791
+ fieldValue: string;
1792
+ } & ({
1793
+ valueType: "TEXT" | "NUMBER";
1794
+ dateFormat?: string;
1795
+ } | {
1796
+ valueType: "DATE";
1797
+ dateFormat: string;
1798
+ }))[];
1799
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
360
1800
  [key: string]: any;
361
1801
  } | import("src/_utils/props").RequestParams;
362
1802
  };
@@ -365,7 +1805,43 @@ declare const _default: import("vue").DefineComponent<{
365
1805
  default?: undefined;
366
1806
  } | {
367
1807
  type: any;
368
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
1808
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
1809
+ source?: import("../../_utils/propsDiagram").Source;
1810
+ plugin: import("../../_utils/propsDiagram").Plugin;
1811
+ layer: import("../../_utils/propsDiagram").Layer;
1812
+ chartType: import("../../_utils/propsDiagram").ChartType;
1813
+ relatedList: unknown[];
1814
+ sqlConditions?: ({
1815
+ alias: string;
1816
+ fieldName: string;
1817
+ rule: string;
1818
+ fieldValue: string;
1819
+ } & ({
1820
+ valueType: "TEXT" | "NUMBER";
1821
+ dateFormat?: string;
1822
+ } | {
1823
+ valueType: "DATE";
1824
+ dateFormat: string;
1825
+ }))[];
1826
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1827
+ source?: import("../../_utils/propsDiagram").Source;
1828
+ plugin: import("../../_utils/propsDiagram").Plugin;
1829
+ layer: import("../../_utils/propsDiagram").Layer;
1830
+ chartType: import("../../_utils/propsDiagram").ChartType;
1831
+ relatedList: unknown[];
1832
+ sqlConditions?: ({
1833
+ alias: string;
1834
+ fieldName: string;
1835
+ rule: string;
1836
+ fieldValue: string;
1837
+ } & ({
1838
+ valueType: "TEXT" | "NUMBER";
1839
+ dateFormat?: string;
1840
+ } | {
1841
+ valueType: "DATE";
1842
+ dateFormat: string;
1843
+ }))[];
1844
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
369
1845
  [key: string]: any;
370
1846
  } | import("src/_utils/props").RequestParams;
371
1847
  };
@@ -374,7 +1850,43 @@ declare const _default: import("vue").DefineComponent<{
374
1850
  default?: undefined;
375
1851
  } | {
376
1852
  type: any;
377
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
1853
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
1854
+ source?: import("../../_utils/propsDiagram").Source;
1855
+ plugin: import("../../_utils/propsDiagram").Plugin;
1856
+ layer: import("../../_utils/propsDiagram").Layer;
1857
+ chartType: import("../../_utils/propsDiagram").ChartType;
1858
+ relatedList: unknown[];
1859
+ sqlConditions?: ({
1860
+ alias: string;
1861
+ fieldName: string;
1862
+ rule: string;
1863
+ fieldValue: string;
1864
+ } & ({
1865
+ valueType: "TEXT" | "NUMBER";
1866
+ dateFormat?: string;
1867
+ } | {
1868
+ valueType: "DATE";
1869
+ dateFormat: string;
1870
+ }))[];
1871
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1872
+ source?: import("../../_utils/propsDiagram").Source;
1873
+ plugin: import("../../_utils/propsDiagram").Plugin;
1874
+ layer: import("../../_utils/propsDiagram").Layer;
1875
+ chartType: import("../../_utils/propsDiagram").ChartType;
1876
+ relatedList: unknown[];
1877
+ sqlConditions?: ({
1878
+ alias: string;
1879
+ fieldName: string;
1880
+ rule: string;
1881
+ fieldValue: string;
1882
+ } & ({
1883
+ valueType: "TEXT" | "NUMBER";
1884
+ dateFormat?: string;
1885
+ } | {
1886
+ valueType: "DATE";
1887
+ dateFormat: string;
1888
+ }))[];
1889
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
378
1890
  [key: string]: any;
379
1891
  } | import("src/_utils/props").RequestParams;
380
1892
  };
@@ -383,7 +1895,43 @@ declare const _default: import("vue").DefineComponent<{
383
1895
  default?: undefined;
384
1896
  } | {
385
1897
  type: any;
386
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
1898
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
1899
+ source?: import("../../_utils/propsDiagram").Source;
1900
+ plugin: import("../../_utils/propsDiagram").Plugin;
1901
+ layer: import("../../_utils/propsDiagram").Layer;
1902
+ chartType: import("../../_utils/propsDiagram").ChartType;
1903
+ relatedList: unknown[];
1904
+ sqlConditions?: ({
1905
+ alias: string;
1906
+ fieldName: string;
1907
+ rule: string;
1908
+ fieldValue: string;
1909
+ } & ({
1910
+ valueType: "TEXT" | "NUMBER";
1911
+ dateFormat?: string;
1912
+ } | {
1913
+ valueType: "DATE";
1914
+ dateFormat: string;
1915
+ }))[];
1916
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1917
+ source?: import("../../_utils/propsDiagram").Source;
1918
+ plugin: import("../../_utils/propsDiagram").Plugin;
1919
+ layer: import("../../_utils/propsDiagram").Layer;
1920
+ chartType: import("../../_utils/propsDiagram").ChartType;
1921
+ relatedList: unknown[];
1922
+ sqlConditions?: ({
1923
+ alias: string;
1924
+ fieldName: string;
1925
+ rule: string;
1926
+ fieldValue: string;
1927
+ } & ({
1928
+ valueType: "TEXT" | "NUMBER";
1929
+ dateFormat?: string;
1930
+ } | {
1931
+ valueType: "DATE";
1932
+ dateFormat: string;
1933
+ }))[];
1934
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
387
1935
  [key: string]: any;
388
1936
  } | import("src/_utils/props").RequestParams;
389
1937
  };
@@ -392,7 +1940,43 @@ declare const _default: import("vue").DefineComponent<{
392
1940
  default?: undefined;
393
1941
  } | {
394
1942
  type: any;
395
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
1943
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
1944
+ source?: import("../../_utils/propsDiagram").Source;
1945
+ plugin: import("../../_utils/propsDiagram").Plugin;
1946
+ layer: import("../../_utils/propsDiagram").Layer;
1947
+ chartType: import("../../_utils/propsDiagram").ChartType;
1948
+ relatedList: unknown[];
1949
+ sqlConditions?: ({
1950
+ alias: string;
1951
+ fieldName: string;
1952
+ rule: string;
1953
+ fieldValue: string;
1954
+ } & ({
1955
+ valueType: "TEXT" | "NUMBER";
1956
+ dateFormat?: string;
1957
+ } | {
1958
+ valueType: "DATE";
1959
+ dateFormat: string;
1960
+ }))[];
1961
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
1962
+ source?: import("../../_utils/propsDiagram").Source;
1963
+ plugin: import("../../_utils/propsDiagram").Plugin;
1964
+ layer: import("../../_utils/propsDiagram").Layer;
1965
+ chartType: import("../../_utils/propsDiagram").ChartType;
1966
+ relatedList: unknown[];
1967
+ sqlConditions?: ({
1968
+ alias: string;
1969
+ fieldName: string;
1970
+ rule: string;
1971
+ fieldValue: string;
1972
+ } & ({
1973
+ valueType: "TEXT" | "NUMBER";
1974
+ dateFormat?: string;
1975
+ } | {
1976
+ valueType: "DATE";
1977
+ dateFormat: string;
1978
+ }))[];
1979
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
396
1980
  [key: string]: any;
397
1981
  } | import("src/_utils/props").RequestParams;
398
1982
  };
@@ -401,7 +1985,43 @@ declare const _default: import("vue").DefineComponent<{
401
1985
  default?: undefined;
402
1986
  } | {
403
1987
  type: any;
404
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
1988
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
1989
+ source?: import("../../_utils/propsDiagram").Source;
1990
+ plugin: import("../../_utils/propsDiagram").Plugin;
1991
+ layer: import("../../_utils/propsDiagram").Layer;
1992
+ chartType: import("../../_utils/propsDiagram").ChartType;
1993
+ relatedList: unknown[];
1994
+ sqlConditions?: ({
1995
+ alias: string;
1996
+ fieldName: string;
1997
+ rule: string;
1998
+ fieldValue: string;
1999
+ } & ({
2000
+ valueType: "TEXT" | "NUMBER";
2001
+ dateFormat?: string;
2002
+ } | {
2003
+ valueType: "DATE";
2004
+ dateFormat: string;
2005
+ }))[];
2006
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
2007
+ source?: import("../../_utils/propsDiagram").Source;
2008
+ plugin: import("../../_utils/propsDiagram").Plugin;
2009
+ layer: import("../../_utils/propsDiagram").Layer;
2010
+ chartType: import("../../_utils/propsDiagram").ChartType;
2011
+ relatedList: unknown[];
2012
+ sqlConditions?: ({
2013
+ alias: string;
2014
+ fieldName: string;
2015
+ rule: string;
2016
+ fieldValue: string;
2017
+ } & ({
2018
+ valueType: "TEXT" | "NUMBER";
2019
+ dateFormat?: string;
2020
+ } | {
2021
+ valueType: "DATE";
2022
+ dateFormat: string;
2023
+ }))[];
2024
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
405
2025
  [key: string]: any;
406
2026
  } | import("src/_utils/props").RequestParams;
407
2027
  };
@@ -410,7 +2030,43 @@ declare const _default: import("vue").DefineComponent<{
410
2030
  default?: undefined;
411
2031
  } | {
412
2032
  type: any;
413
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
2033
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
2034
+ source?: import("../../_utils/propsDiagram").Source;
2035
+ plugin: import("../../_utils/propsDiagram").Plugin;
2036
+ layer: import("../../_utils/propsDiagram").Layer;
2037
+ chartType: import("../../_utils/propsDiagram").ChartType;
2038
+ relatedList: unknown[];
2039
+ sqlConditions?: ({
2040
+ alias: string;
2041
+ fieldName: string;
2042
+ rule: string;
2043
+ fieldValue: string;
2044
+ } & ({
2045
+ valueType: "TEXT" | "NUMBER";
2046
+ dateFormat?: string;
2047
+ } | {
2048
+ valueType: "DATE";
2049
+ dateFormat: string;
2050
+ }))[];
2051
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
2052
+ source?: import("../../_utils/propsDiagram").Source;
2053
+ plugin: import("../../_utils/propsDiagram").Plugin;
2054
+ layer: import("../../_utils/propsDiagram").Layer;
2055
+ chartType: import("../../_utils/propsDiagram").ChartType;
2056
+ relatedList: unknown[];
2057
+ sqlConditions?: ({
2058
+ alias: string;
2059
+ fieldName: string;
2060
+ rule: string;
2061
+ fieldValue: string;
2062
+ } & ({
2063
+ valueType: "TEXT" | "NUMBER";
2064
+ dateFormat?: string;
2065
+ } | {
2066
+ valueType: "DATE";
2067
+ dateFormat: string;
2068
+ }))[];
2069
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
414
2070
  [key: string]: any;
415
2071
  } | import("src/_utils/props").RequestParams;
416
2072
  };
@@ -419,7 +2075,88 @@ declare const _default: import("vue").DefineComponent<{
419
2075
  default?: undefined;
420
2076
  } | {
421
2077
  type: any;
422
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
2078
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
2079
+ source?: import("../../_utils/propsDiagram").Source;
2080
+ plugin: import("../../_utils/propsDiagram").Plugin;
2081
+ layer: import("../../_utils/propsDiagram").Layer;
2082
+ chartType: import("../../_utils/propsDiagram").ChartType;
2083
+ relatedList: unknown[];
2084
+ sqlConditions?: ({
2085
+ alias: string;
2086
+ fieldName: string;
2087
+ rule: string;
2088
+ fieldValue: string;
2089
+ } & ({
2090
+ valueType: "TEXT" | "NUMBER";
2091
+ dateFormat?: string;
2092
+ } | {
2093
+ valueType: "DATE";
2094
+ dateFormat: string;
2095
+ }))[];
2096
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
2097
+ source?: import("../../_utils/propsDiagram").Source;
2098
+ plugin: import("../../_utils/propsDiagram").Plugin;
2099
+ layer: import("../../_utils/propsDiagram").Layer;
2100
+ chartType: import("../../_utils/propsDiagram").ChartType;
2101
+ relatedList: unknown[];
2102
+ sqlConditions?: ({
2103
+ alias: string;
2104
+ fieldName: string;
2105
+ rule: string;
2106
+ fieldValue: string;
2107
+ } & ({
2108
+ valueType: "TEXT" | "NUMBER";
2109
+ dateFormat?: string;
2110
+ } | {
2111
+ valueType: "DATE";
2112
+ dateFormat: string;
2113
+ }))[];
2114
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
2115
+ [key: string]: any;
2116
+ } | import("src/_utils/props").RequestParams;
2117
+ };
2118
+ dataType: {
2119
+ type?: undefined;
2120
+ default?: undefined;
2121
+ } | {
2122
+ type: any;
2123
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | ({
2124
+ source?: import("../../_utils/propsDiagram").Source;
2125
+ plugin: import("../../_utils/propsDiagram").Plugin;
2126
+ layer: import("../../_utils/propsDiagram").Layer;
2127
+ chartType: import("../../_utils/propsDiagram").ChartType;
2128
+ relatedList: unknown[];
2129
+ sqlConditions?: ({
2130
+ alias: string;
2131
+ fieldName: string;
2132
+ rule: string;
2133
+ fieldValue: string;
2134
+ } & ({
2135
+ valueType: "TEXT" | "NUMBER";
2136
+ dateFormat?: string;
2137
+ } | {
2138
+ valueType: "DATE";
2139
+ dateFormat: string;
2140
+ }))[];
2141
+ } & import("../../_utils/propsDiagram").SqlViewMode) | ({
2142
+ source?: import("../../_utils/propsDiagram").Source;
2143
+ plugin: import("../../_utils/propsDiagram").Plugin;
2144
+ layer: import("../../_utils/propsDiagram").Layer;
2145
+ chartType: import("../../_utils/propsDiagram").ChartType;
2146
+ relatedList: unknown[];
2147
+ sqlConditions?: ({
2148
+ alias: string;
2149
+ fieldName: string;
2150
+ rule: string;
2151
+ fieldValue: string;
2152
+ } & ({
2153
+ valueType: "TEXT" | "NUMBER";
2154
+ dateFormat?: string;
2155
+ } | {
2156
+ valueType: "DATE";
2157
+ dateFormat: string;
2158
+ }))[];
2159
+ } & import("../../_utils/propsDiagram").IndicatorLibMode) | Events | {
423
2160
  [key: string]: any;
424
2161
  } | import("src/_utils/props").RequestParams;
425
2162
  };
@@ -560,6 +2297,7 @@ declare const _default: import("vue").DefineComponent<{
560
2297
  tooltipTrigger?: unknown;
561
2298
  tooltipTextStyleColor?: unknown;
562
2299
  tooltipFormatter?: unknown;
2300
+ diagramParam?: unknown;
563
2301
  id?: unknown;
564
2302
  name?: unknown;
565
2303
  keyName?: unknown;
@@ -573,7 +2311,6 @@ declare const _default: import("vue").DefineComponent<{
573
2311
  rotate?: unknown;
574
2312
  isShow?: unknown;
575
2313
  isRender?: unknown;
576
- isRequestData?: unknown;
577
2314
  events?: unknown;
578
2315
  requestUrl?: unknown;
579
2316
  requestMethod?: unknown;
@@ -582,6 +2319,7 @@ declare const _default: import("vue").DefineComponent<{
582
2319
  requestInterval?: unknown;
583
2320
  requestParams?: unknown;
584
2321
  requestSort?: unknown;
2322
+ dataType?: unknown;
585
2323
  } & {} & {
586
2324
  type?: string | number | boolean | {
587
2325
  [key: string]: any;
@@ -661,6 +2399,9 @@ declare const _default: import("vue").DefineComponent<{
661
2399
  tooltipFormatter?: string | number | boolean | {
662
2400
  [key: string]: any;
663
2401
  };
2402
+ diagramParam?: string | number | boolean | {
2403
+ [key: string]: any;
2404
+ };
664
2405
  id?: string | number | boolean | {
665
2406
  [key: string]: any;
666
2407
  };
@@ -697,9 +2438,6 @@ declare const _default: import("vue").DefineComponent<{
697
2438
  isRender?: string | number | boolean | {
698
2439
  [key: string]: any;
699
2440
  };
700
- isRequestData?: string | number | boolean | {
701
- [key: string]: any;
702
- };
703
2441
  events?: string | number | boolean | {
704
2442
  [key: string]: any;
705
2443
  };
@@ -724,5 +2462,8 @@ declare const _default: import("vue").DefineComponent<{
724
2462
  requestSort?: string | number | boolean | {
725
2463
  [key: string]: any;
726
2464
  };
2465
+ dataType?: string | number | boolean | {
2466
+ [key: string]: any;
2467
+ };
727
2468
  }>, {}>;
728
2469
  export default _default;