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