@ecan-bi/datav 1.0.16 → 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 +740 -0
- package/dist/graph/combo-graph/index.d.ts +3 -0
- package/dist/graph/combo-graph/props.d.ts +465 -0
- package/dist/graph/custom-graph/CustomGraph.vue.d.ts +15 -0
- package/dist/graph/custom-graph/props.d.ts +11 -0
- package/dist/graph/index.d.ts +1 -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 -2
- package/dist/index.esm.js.map +1 -0
- package/dist/index.umd.js +3 -2
- 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 -1
- package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +0 -17
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import 'ant-design-vue/es/select/style/index';
|
|
2
|
+
import { Events } from '../../_utils/props';
|
|
2
3
|
declare const _default: import("vue").DefineComponent<{
|
|
3
4
|
data: {
|
|
4
5
|
type?: undefined;
|
|
5
6
|
default?: undefined;
|
|
6
7
|
} | {
|
|
7
8
|
type: any;
|
|
8
|
-
default: string | number | boolean | import("./props").SelectOptions |
|
|
9
|
+
default: string | number | boolean | import("./props").SelectOptions | {
|
|
10
|
+
label: string;
|
|
11
|
+
value: string;
|
|
12
|
+
} | Events | {
|
|
9
13
|
[key: string]: any;
|
|
10
14
|
} | import("../../_utils/props").RequestParams;
|
|
11
15
|
};
|
|
@@ -14,7 +18,22 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14
18
|
default?: undefined;
|
|
15
19
|
} | {
|
|
16
20
|
type: any;
|
|
17
|
-
default: string | number | boolean | import("./props").SelectOptions |
|
|
21
|
+
default: string | number | boolean | import("./props").SelectOptions | {
|
|
22
|
+
label: string;
|
|
23
|
+
value: string;
|
|
24
|
+
} | Events | {
|
|
25
|
+
[key: string]: any;
|
|
26
|
+
} | import("../../_utils/props").RequestParams;
|
|
27
|
+
};
|
|
28
|
+
dataFieldNames: {
|
|
29
|
+
type?: undefined;
|
|
30
|
+
default?: undefined;
|
|
31
|
+
} | {
|
|
32
|
+
type: any;
|
|
33
|
+
default: string | number | boolean | import("./props").SelectOptions | {
|
|
34
|
+
label: string;
|
|
35
|
+
value: string;
|
|
36
|
+
} | Events | {
|
|
18
37
|
[key: string]: any;
|
|
19
38
|
} | import("../../_utils/props").RequestParams;
|
|
20
39
|
};
|
|
@@ -23,7 +42,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
23
42
|
default?: undefined;
|
|
24
43
|
} | {
|
|
25
44
|
type: any;
|
|
26
|
-
default: string | number | boolean | import("./props").SelectOptions |
|
|
45
|
+
default: string | number | boolean | import("./props").SelectOptions | {
|
|
46
|
+
label: string;
|
|
47
|
+
value: string;
|
|
48
|
+
} | Events | {
|
|
27
49
|
[key: string]: any;
|
|
28
50
|
} | import("../../_utils/props").RequestParams;
|
|
29
51
|
};
|
|
@@ -32,7 +54,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
32
54
|
default?: undefined;
|
|
33
55
|
} | {
|
|
34
56
|
type: any;
|
|
35
|
-
default: string | number | boolean | import("./props").SelectOptions |
|
|
57
|
+
default: string | number | boolean | import("./props").SelectOptions | {
|
|
58
|
+
label: string;
|
|
59
|
+
value: string;
|
|
60
|
+
} | Events | {
|
|
36
61
|
[key: string]: any;
|
|
37
62
|
} | import("../../_utils/props").RequestParams;
|
|
38
63
|
};
|
|
@@ -41,7 +66,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
41
66
|
default?: undefined;
|
|
42
67
|
} | {
|
|
43
68
|
type: any;
|
|
44
|
-
default: string | number | boolean | import("./props").SelectOptions |
|
|
69
|
+
default: string | number | boolean | import("./props").SelectOptions | {
|
|
70
|
+
label: string;
|
|
71
|
+
value: string;
|
|
72
|
+
} | Events | {
|
|
45
73
|
[key: string]: any;
|
|
46
74
|
} | import("../../_utils/props").RequestParams;
|
|
47
75
|
};
|
|
@@ -50,7 +78,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
50
78
|
default?: undefined;
|
|
51
79
|
} | {
|
|
52
80
|
type: any;
|
|
53
|
-
default: string | number | boolean | import("./props").SelectOptions |
|
|
81
|
+
default: string | number | boolean | import("./props").SelectOptions | {
|
|
82
|
+
label: string;
|
|
83
|
+
value: string;
|
|
84
|
+
} | Events | {
|
|
54
85
|
[key: string]: any;
|
|
55
86
|
} | import("../../_utils/props").RequestParams;
|
|
56
87
|
};
|
|
@@ -59,7 +90,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
59
90
|
default?: undefined;
|
|
60
91
|
} | {
|
|
61
92
|
type: any;
|
|
62
|
-
default: string | number | boolean | import("./props").SelectOptions |
|
|
93
|
+
default: string | number | boolean | import("./props").SelectOptions | {
|
|
94
|
+
label: string;
|
|
95
|
+
value: string;
|
|
96
|
+
} | Events | {
|
|
63
97
|
[key: string]: any;
|
|
64
98
|
} | import("../../_utils/props").RequestParams;
|
|
65
99
|
};
|
|
@@ -68,7 +102,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
68
102
|
default?: undefined;
|
|
69
103
|
} | {
|
|
70
104
|
type: any;
|
|
71
|
-
default: string | number | boolean | import("./props").SelectOptions |
|
|
105
|
+
default: string | number | boolean | import("./props").SelectOptions | {
|
|
106
|
+
label: string;
|
|
107
|
+
value: string;
|
|
108
|
+
} | Events | {
|
|
72
109
|
[key: string]: any;
|
|
73
110
|
} | import("../../_utils/props").RequestParams;
|
|
74
111
|
};
|
|
@@ -77,7 +114,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
77
114
|
default?: undefined;
|
|
78
115
|
} | {
|
|
79
116
|
type: any;
|
|
80
|
-
default: string | number | boolean | import("./props").SelectOptions |
|
|
117
|
+
default: string | number | boolean | import("./props").SelectOptions | {
|
|
118
|
+
label: string;
|
|
119
|
+
value: string;
|
|
120
|
+
} | Events | {
|
|
81
121
|
[key: string]: any;
|
|
82
122
|
} | import("../../_utils/props").RequestParams;
|
|
83
123
|
};
|
|
@@ -86,7 +126,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
86
126
|
default?: undefined;
|
|
87
127
|
} | {
|
|
88
128
|
type: any;
|
|
89
|
-
default: string | number | boolean | import("./props").SelectOptions |
|
|
129
|
+
default: string | number | boolean | import("./props").SelectOptions | {
|
|
130
|
+
label: string;
|
|
131
|
+
value: string;
|
|
132
|
+
} | Events | {
|
|
90
133
|
[key: string]: any;
|
|
91
134
|
} | import("../../_utils/props").RequestParams;
|
|
92
135
|
};
|
|
@@ -95,7 +138,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
95
138
|
default?: undefined;
|
|
96
139
|
} | {
|
|
97
140
|
type: any;
|
|
98
|
-
default: string | number | boolean | import("./props").SelectOptions |
|
|
141
|
+
default: string | number | boolean | import("./props").SelectOptions | {
|
|
142
|
+
label: string;
|
|
143
|
+
value: string;
|
|
144
|
+
} | Events | {
|
|
99
145
|
[key: string]: any;
|
|
100
146
|
} | import("../../_utils/props").RequestParams;
|
|
101
147
|
};
|
|
@@ -104,7 +150,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
104
150
|
default?: undefined;
|
|
105
151
|
} | {
|
|
106
152
|
type: any;
|
|
107
|
-
default: string | number | boolean | import("./props").SelectOptions |
|
|
153
|
+
default: string | number | boolean | import("./props").SelectOptions | {
|
|
154
|
+
label: string;
|
|
155
|
+
value: string;
|
|
156
|
+
} | Events | {
|
|
108
157
|
[key: string]: any;
|
|
109
158
|
} | import("../../_utils/props").RequestParams;
|
|
110
159
|
};
|
|
@@ -113,7 +162,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
113
162
|
default?: undefined;
|
|
114
163
|
} | {
|
|
115
164
|
type: any;
|
|
116
|
-
default: string | number | boolean | import("./props").SelectOptions |
|
|
165
|
+
default: string | number | boolean | import("./props").SelectOptions | {
|
|
166
|
+
label: string;
|
|
167
|
+
value: string;
|
|
168
|
+
} | Events | {
|
|
117
169
|
[key: string]: any;
|
|
118
170
|
} | import("../../_utils/props").RequestParams;
|
|
119
171
|
};
|
|
@@ -122,7 +174,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
122
174
|
default?: undefined;
|
|
123
175
|
} | {
|
|
124
176
|
type: any;
|
|
125
|
-
default: string | number | boolean | import("./props").SelectOptions |
|
|
177
|
+
default: string | number | boolean | import("./props").SelectOptions | {
|
|
178
|
+
label: string;
|
|
179
|
+
value: string;
|
|
180
|
+
} | Events | {
|
|
126
181
|
[key: string]: any;
|
|
127
182
|
} | import("../../_utils/props").RequestParams;
|
|
128
183
|
};
|
|
@@ -131,7 +186,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
131
186
|
default?: undefined;
|
|
132
187
|
} | {
|
|
133
188
|
type: any;
|
|
134
|
-
default: string | number | boolean | import("./props").SelectOptions |
|
|
189
|
+
default: string | number | boolean | import("./props").SelectOptions | {
|
|
190
|
+
label: string;
|
|
191
|
+
value: string;
|
|
192
|
+
} | Events | {
|
|
135
193
|
[key: string]: any;
|
|
136
194
|
} | import("../../_utils/props").RequestParams;
|
|
137
195
|
};
|
|
@@ -140,7 +198,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
140
198
|
default?: undefined;
|
|
141
199
|
} | {
|
|
142
200
|
type: any;
|
|
143
|
-
default: string | number | boolean | import("./props").SelectOptions |
|
|
201
|
+
default: string | number | boolean | import("./props").SelectOptions | {
|
|
202
|
+
label: string;
|
|
203
|
+
value: string;
|
|
204
|
+
} | Events | {
|
|
144
205
|
[key: string]: any;
|
|
145
206
|
} | import("../../_utils/props").RequestParams;
|
|
146
207
|
};
|
|
@@ -149,7 +210,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
149
210
|
default?: undefined;
|
|
150
211
|
} | {
|
|
151
212
|
type: any;
|
|
152
|
-
default: string | number | boolean | import("./props").SelectOptions |
|
|
213
|
+
default: string | number | boolean | import("./props").SelectOptions | {
|
|
214
|
+
label: string;
|
|
215
|
+
value: string;
|
|
216
|
+
} | Events | {
|
|
153
217
|
[key: string]: any;
|
|
154
218
|
} | import("../../_utils/props").RequestParams;
|
|
155
219
|
};
|
|
@@ -158,7 +222,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
158
222
|
default?: undefined;
|
|
159
223
|
} | {
|
|
160
224
|
type: any;
|
|
161
|
-
default: string | number | boolean | import("./props").SelectOptions |
|
|
225
|
+
default: string | number | boolean | import("./props").SelectOptions | {
|
|
226
|
+
label: string;
|
|
227
|
+
value: string;
|
|
228
|
+
} | Events | {
|
|
162
229
|
[key: string]: any;
|
|
163
230
|
} | import("../../_utils/props").RequestParams;
|
|
164
231
|
};
|
|
@@ -167,7 +234,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
167
234
|
default?: undefined;
|
|
168
235
|
} | {
|
|
169
236
|
type: any;
|
|
170
|
-
default: string | number | boolean | import("./props").SelectOptions |
|
|
237
|
+
default: string | number | boolean | import("./props").SelectOptions | {
|
|
238
|
+
label: string;
|
|
239
|
+
value: string;
|
|
240
|
+
} | Events | {
|
|
171
241
|
[key: string]: any;
|
|
172
242
|
} | import("../../_utils/props").RequestParams;
|
|
173
243
|
};
|
|
@@ -176,7 +246,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
176
246
|
default?: undefined;
|
|
177
247
|
} | {
|
|
178
248
|
type: any;
|
|
179
|
-
default: string | number | boolean | import("./props").SelectOptions |
|
|
249
|
+
default: string | number | boolean | import("./props").SelectOptions | {
|
|
250
|
+
label: string;
|
|
251
|
+
value: string;
|
|
252
|
+
} | Events | {
|
|
180
253
|
[key: string]: any;
|
|
181
254
|
} | import("../../_utils/props").RequestParams;
|
|
182
255
|
};
|
|
@@ -185,7 +258,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
185
258
|
default?: undefined;
|
|
186
259
|
} | {
|
|
187
260
|
type: any;
|
|
188
|
-
default: string | number | boolean | import("./props").SelectOptions |
|
|
261
|
+
default: string | number | boolean | import("./props").SelectOptions | {
|
|
262
|
+
label: string;
|
|
263
|
+
value: string;
|
|
264
|
+
} | Events | {
|
|
189
265
|
[key: string]: any;
|
|
190
266
|
} | import("../../_utils/props").RequestParams;
|
|
191
267
|
};
|
|
@@ -194,7 +270,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
194
270
|
default?: undefined;
|
|
195
271
|
} | {
|
|
196
272
|
type: any;
|
|
197
|
-
default: string | number | boolean | import("./props").SelectOptions |
|
|
273
|
+
default: string | number | boolean | import("./props").SelectOptions | {
|
|
274
|
+
label: string;
|
|
275
|
+
value: string;
|
|
276
|
+
} | Events | {
|
|
198
277
|
[key: string]: any;
|
|
199
278
|
} | import("../../_utils/props").RequestParams;
|
|
200
279
|
};
|
|
@@ -203,20 +282,37 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
203
282
|
default?: undefined;
|
|
204
283
|
} | {
|
|
205
284
|
type: any;
|
|
206
|
-
default: string | number | boolean | import("./props").SelectOptions |
|
|
285
|
+
default: string | number | boolean | import("./props").SelectOptions | {
|
|
286
|
+
label: string;
|
|
287
|
+
value: string;
|
|
288
|
+
} | Events | {
|
|
289
|
+
[key: string]: any;
|
|
290
|
+
} | import("../../_utils/props").RequestParams;
|
|
291
|
+
};
|
|
292
|
+
requestSort: {
|
|
293
|
+
type?: undefined;
|
|
294
|
+
default?: undefined;
|
|
295
|
+
} | {
|
|
296
|
+
type: any;
|
|
297
|
+
default: string | number | boolean | import("./props").SelectOptions | {
|
|
298
|
+
label: string;
|
|
299
|
+
value: string;
|
|
300
|
+
} | Events | {
|
|
207
301
|
[key: string]: any;
|
|
208
302
|
} | import("../../_utils/props").RequestParams;
|
|
209
303
|
};
|
|
210
304
|
}, {
|
|
211
305
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
212
306
|
getPopupContainer: () => HTMLElement;
|
|
213
|
-
myValue:
|
|
307
|
+
myValue: any;
|
|
308
|
+
selectChange: () => void;
|
|
309
|
+
options: import("vue").Ref<{
|
|
214
310
|
[x: string]: any;
|
|
215
|
-
}>;
|
|
216
|
-
onSelectChange: (value: any) => void;
|
|
311
|
+
}[]>;
|
|
217
312
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
218
313
|
data?: unknown;
|
|
219
314
|
value?: unknown;
|
|
315
|
+
dataFieldNames?: unknown;
|
|
220
316
|
id?: unknown;
|
|
221
317
|
name?: unknown;
|
|
222
318
|
keyName?: unknown;
|
|
@@ -238,6 +334,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
238
334
|
isOpenRequestTimer?: unknown;
|
|
239
335
|
requestInterval?: unknown;
|
|
240
336
|
requestParams?: unknown;
|
|
337
|
+
requestSort?: unknown;
|
|
241
338
|
} & {} & {
|
|
242
339
|
value?: string | number | boolean | {
|
|
243
340
|
[key: string]: any;
|
|
@@ -251,6 +348,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
251
348
|
data?: string | number | boolean | {
|
|
252
349
|
[key: string]: any;
|
|
253
350
|
};
|
|
351
|
+
dataFieldNames?: string | number | boolean | {
|
|
352
|
+
[key: string]: any;
|
|
353
|
+
};
|
|
254
354
|
name?: string | number | boolean | {
|
|
255
355
|
[key: string]: any;
|
|
256
356
|
};
|
|
@@ -308,5 +408,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
308
408
|
requestParams?: string | number | boolean | {
|
|
309
409
|
[key: string]: any;
|
|
310
410
|
};
|
|
411
|
+
requestSort?: string | number | boolean | {
|
|
412
|
+
[key: string]: any;
|
|
413
|
+
};
|
|
311
414
|
}>, {}>;
|
|
312
415
|
export default _default;
|
|
@@ -10,6 +10,10 @@ export declare type SelectOptions = SelectOption[];
|
|
|
10
10
|
export interface SelectProps extends Props {
|
|
11
11
|
data: SelectOptions;
|
|
12
12
|
value: string;
|
|
13
|
+
dataFieldNames: {
|
|
14
|
+
label: string;
|
|
15
|
+
value: string;
|
|
16
|
+
};
|
|
13
17
|
}
|
|
14
18
|
export declare const selectProps: SelectProps;
|
|
15
19
|
export declare const selectComponentProps: {
|
|
@@ -18,7 +22,10 @@ export declare const selectComponentProps: {
|
|
|
18
22
|
default?: undefined;
|
|
19
23
|
} | {
|
|
20
24
|
type: any;
|
|
21
|
-
default: string | number | boolean | SelectOptions |
|
|
25
|
+
default: string | number | boolean | SelectOptions | {
|
|
26
|
+
label: string;
|
|
27
|
+
value: string;
|
|
28
|
+
} | import("../../_utils/props").Events | {
|
|
22
29
|
[key: string]: any;
|
|
23
30
|
} | import("../../_utils/props").RequestParams;
|
|
24
31
|
};
|
|
@@ -27,7 +34,22 @@ export declare const selectComponentProps: {
|
|
|
27
34
|
default?: undefined;
|
|
28
35
|
} | {
|
|
29
36
|
type: any;
|
|
30
|
-
default: string | number | boolean | SelectOptions |
|
|
37
|
+
default: string | number | boolean | SelectOptions | {
|
|
38
|
+
label: string;
|
|
39
|
+
value: string;
|
|
40
|
+
} | import("../../_utils/props").Events | {
|
|
41
|
+
[key: string]: any;
|
|
42
|
+
} | import("../../_utils/props").RequestParams;
|
|
43
|
+
};
|
|
44
|
+
dataFieldNames: {
|
|
45
|
+
type?: undefined;
|
|
46
|
+
default?: undefined;
|
|
47
|
+
} | {
|
|
48
|
+
type: any;
|
|
49
|
+
default: string | number | boolean | SelectOptions | {
|
|
50
|
+
label: string;
|
|
51
|
+
value: string;
|
|
52
|
+
} | import("../../_utils/props").Events | {
|
|
31
53
|
[key: string]: any;
|
|
32
54
|
} | import("../../_utils/props").RequestParams;
|
|
33
55
|
};
|
|
@@ -36,7 +58,10 @@ export declare const selectComponentProps: {
|
|
|
36
58
|
default?: undefined;
|
|
37
59
|
} | {
|
|
38
60
|
type: any;
|
|
39
|
-
default: string | number | boolean | SelectOptions |
|
|
61
|
+
default: string | number | boolean | SelectOptions | {
|
|
62
|
+
label: string;
|
|
63
|
+
value: string;
|
|
64
|
+
} | import("../../_utils/props").Events | {
|
|
40
65
|
[key: string]: any;
|
|
41
66
|
} | import("../../_utils/props").RequestParams;
|
|
42
67
|
};
|
|
@@ -45,7 +70,10 @@ export declare const selectComponentProps: {
|
|
|
45
70
|
default?: undefined;
|
|
46
71
|
} | {
|
|
47
72
|
type: any;
|
|
48
|
-
default: string | number | boolean | SelectOptions |
|
|
73
|
+
default: string | number | boolean | SelectOptions | {
|
|
74
|
+
label: string;
|
|
75
|
+
value: string;
|
|
76
|
+
} | import("../../_utils/props").Events | {
|
|
49
77
|
[key: string]: any;
|
|
50
78
|
} | import("../../_utils/props").RequestParams;
|
|
51
79
|
};
|
|
@@ -54,7 +82,10 @@ export declare const selectComponentProps: {
|
|
|
54
82
|
default?: undefined;
|
|
55
83
|
} | {
|
|
56
84
|
type: any;
|
|
57
|
-
default: string | number | boolean | SelectOptions |
|
|
85
|
+
default: string | number | boolean | SelectOptions | {
|
|
86
|
+
label: string;
|
|
87
|
+
value: string;
|
|
88
|
+
} | import("../../_utils/props").Events | {
|
|
58
89
|
[key: string]: any;
|
|
59
90
|
} | import("../../_utils/props").RequestParams;
|
|
60
91
|
};
|
|
@@ -63,7 +94,10 @@ export declare const selectComponentProps: {
|
|
|
63
94
|
default?: undefined;
|
|
64
95
|
} | {
|
|
65
96
|
type: any;
|
|
66
|
-
default: string | number | boolean | SelectOptions |
|
|
97
|
+
default: string | number | boolean | SelectOptions | {
|
|
98
|
+
label: string;
|
|
99
|
+
value: string;
|
|
100
|
+
} | import("../../_utils/props").Events | {
|
|
67
101
|
[key: string]: any;
|
|
68
102
|
} | import("../../_utils/props").RequestParams;
|
|
69
103
|
};
|
|
@@ -72,7 +106,10 @@ export declare const selectComponentProps: {
|
|
|
72
106
|
default?: undefined;
|
|
73
107
|
} | {
|
|
74
108
|
type: any;
|
|
75
|
-
default: string | number | boolean | SelectOptions |
|
|
109
|
+
default: string | number | boolean | SelectOptions | {
|
|
110
|
+
label: string;
|
|
111
|
+
value: string;
|
|
112
|
+
} | import("../../_utils/props").Events | {
|
|
76
113
|
[key: string]: any;
|
|
77
114
|
} | import("../../_utils/props").RequestParams;
|
|
78
115
|
};
|
|
@@ -81,7 +118,10 @@ export declare const selectComponentProps: {
|
|
|
81
118
|
default?: undefined;
|
|
82
119
|
} | {
|
|
83
120
|
type: any;
|
|
84
|
-
default: string | number | boolean | SelectOptions |
|
|
121
|
+
default: string | number | boolean | SelectOptions | {
|
|
122
|
+
label: string;
|
|
123
|
+
value: string;
|
|
124
|
+
} | import("../../_utils/props").Events | {
|
|
85
125
|
[key: string]: any;
|
|
86
126
|
} | import("../../_utils/props").RequestParams;
|
|
87
127
|
};
|
|
@@ -90,7 +130,10 @@ export declare const selectComponentProps: {
|
|
|
90
130
|
default?: undefined;
|
|
91
131
|
} | {
|
|
92
132
|
type: any;
|
|
93
|
-
default: string | number | boolean | SelectOptions |
|
|
133
|
+
default: string | number | boolean | SelectOptions | {
|
|
134
|
+
label: string;
|
|
135
|
+
value: string;
|
|
136
|
+
} | import("../../_utils/props").Events | {
|
|
94
137
|
[key: string]: any;
|
|
95
138
|
} | import("../../_utils/props").RequestParams;
|
|
96
139
|
};
|
|
@@ -99,7 +142,10 @@ export declare const selectComponentProps: {
|
|
|
99
142
|
default?: undefined;
|
|
100
143
|
} | {
|
|
101
144
|
type: any;
|
|
102
|
-
default: string | number | boolean | SelectOptions |
|
|
145
|
+
default: string | number | boolean | SelectOptions | {
|
|
146
|
+
label: string;
|
|
147
|
+
value: string;
|
|
148
|
+
} | import("../../_utils/props").Events | {
|
|
103
149
|
[key: string]: any;
|
|
104
150
|
} | import("../../_utils/props").RequestParams;
|
|
105
151
|
};
|
|
@@ -108,7 +154,10 @@ export declare const selectComponentProps: {
|
|
|
108
154
|
default?: undefined;
|
|
109
155
|
} | {
|
|
110
156
|
type: any;
|
|
111
|
-
default: string | number | boolean | SelectOptions |
|
|
157
|
+
default: string | number | boolean | SelectOptions | {
|
|
158
|
+
label: string;
|
|
159
|
+
value: string;
|
|
160
|
+
} | import("../../_utils/props").Events | {
|
|
112
161
|
[key: string]: any;
|
|
113
162
|
} | import("../../_utils/props").RequestParams;
|
|
114
163
|
};
|
|
@@ -117,7 +166,10 @@ export declare const selectComponentProps: {
|
|
|
117
166
|
default?: undefined;
|
|
118
167
|
} | {
|
|
119
168
|
type: any;
|
|
120
|
-
default: string | number | boolean | SelectOptions |
|
|
169
|
+
default: string | number | boolean | SelectOptions | {
|
|
170
|
+
label: string;
|
|
171
|
+
value: string;
|
|
172
|
+
} | import("../../_utils/props").Events | {
|
|
121
173
|
[key: string]: any;
|
|
122
174
|
} | import("../../_utils/props").RequestParams;
|
|
123
175
|
};
|
|
@@ -126,7 +178,10 @@ export declare const selectComponentProps: {
|
|
|
126
178
|
default?: undefined;
|
|
127
179
|
} | {
|
|
128
180
|
type: any;
|
|
129
|
-
default: string | number | boolean | SelectOptions |
|
|
181
|
+
default: string | number | boolean | SelectOptions | {
|
|
182
|
+
label: string;
|
|
183
|
+
value: string;
|
|
184
|
+
} | import("../../_utils/props").Events | {
|
|
130
185
|
[key: string]: any;
|
|
131
186
|
} | import("../../_utils/props").RequestParams;
|
|
132
187
|
};
|
|
@@ -135,7 +190,10 @@ export declare const selectComponentProps: {
|
|
|
135
190
|
default?: undefined;
|
|
136
191
|
} | {
|
|
137
192
|
type: any;
|
|
138
|
-
default: string | number | boolean | SelectOptions |
|
|
193
|
+
default: string | number | boolean | SelectOptions | {
|
|
194
|
+
label: string;
|
|
195
|
+
value: string;
|
|
196
|
+
} | import("../../_utils/props").Events | {
|
|
139
197
|
[key: string]: any;
|
|
140
198
|
} | import("../../_utils/props").RequestParams;
|
|
141
199
|
};
|
|
@@ -144,7 +202,10 @@ export declare const selectComponentProps: {
|
|
|
144
202
|
default?: undefined;
|
|
145
203
|
} | {
|
|
146
204
|
type: any;
|
|
147
|
-
default: string | number | boolean | SelectOptions |
|
|
205
|
+
default: string | number | boolean | SelectOptions | {
|
|
206
|
+
label: string;
|
|
207
|
+
value: string;
|
|
208
|
+
} | import("../../_utils/props").Events | {
|
|
148
209
|
[key: string]: any;
|
|
149
210
|
} | import("../../_utils/props").RequestParams;
|
|
150
211
|
};
|
|
@@ -153,7 +214,10 @@ export declare const selectComponentProps: {
|
|
|
153
214
|
default?: undefined;
|
|
154
215
|
} | {
|
|
155
216
|
type: any;
|
|
156
|
-
default: string | number | boolean | SelectOptions |
|
|
217
|
+
default: string | number | boolean | SelectOptions | {
|
|
218
|
+
label: string;
|
|
219
|
+
value: string;
|
|
220
|
+
} | import("../../_utils/props").Events | {
|
|
157
221
|
[key: string]: any;
|
|
158
222
|
} | import("../../_utils/props").RequestParams;
|
|
159
223
|
};
|
|
@@ -162,7 +226,10 @@ export declare const selectComponentProps: {
|
|
|
162
226
|
default?: undefined;
|
|
163
227
|
} | {
|
|
164
228
|
type: any;
|
|
165
|
-
default: string | number | boolean | SelectOptions |
|
|
229
|
+
default: string | number | boolean | SelectOptions | {
|
|
230
|
+
label: string;
|
|
231
|
+
value: string;
|
|
232
|
+
} | import("../../_utils/props").Events | {
|
|
166
233
|
[key: string]: any;
|
|
167
234
|
} | import("../../_utils/props").RequestParams;
|
|
168
235
|
};
|
|
@@ -171,7 +238,10 @@ export declare const selectComponentProps: {
|
|
|
171
238
|
default?: undefined;
|
|
172
239
|
} | {
|
|
173
240
|
type: any;
|
|
174
|
-
default: string | number | boolean | SelectOptions |
|
|
241
|
+
default: string | number | boolean | SelectOptions | {
|
|
242
|
+
label: string;
|
|
243
|
+
value: string;
|
|
244
|
+
} | import("../../_utils/props").Events | {
|
|
175
245
|
[key: string]: any;
|
|
176
246
|
} | import("../../_utils/props").RequestParams;
|
|
177
247
|
};
|
|
@@ -180,7 +250,10 @@ export declare const selectComponentProps: {
|
|
|
180
250
|
default?: undefined;
|
|
181
251
|
} | {
|
|
182
252
|
type: any;
|
|
183
|
-
default: string | number | boolean | SelectOptions |
|
|
253
|
+
default: string | number | boolean | SelectOptions | {
|
|
254
|
+
label: string;
|
|
255
|
+
value: string;
|
|
256
|
+
} | import("../../_utils/props").Events | {
|
|
184
257
|
[key: string]: any;
|
|
185
258
|
} | import("../../_utils/props").RequestParams;
|
|
186
259
|
};
|
|
@@ -189,7 +262,10 @@ export declare const selectComponentProps: {
|
|
|
189
262
|
default?: undefined;
|
|
190
263
|
} | {
|
|
191
264
|
type: any;
|
|
192
|
-
default: string | number | boolean | SelectOptions |
|
|
265
|
+
default: string | number | boolean | SelectOptions | {
|
|
266
|
+
label: string;
|
|
267
|
+
value: string;
|
|
268
|
+
} | import("../../_utils/props").Events | {
|
|
193
269
|
[key: string]: any;
|
|
194
270
|
} | import("../../_utils/props").RequestParams;
|
|
195
271
|
};
|
|
@@ -198,7 +274,10 @@ export declare const selectComponentProps: {
|
|
|
198
274
|
default?: undefined;
|
|
199
275
|
} | {
|
|
200
276
|
type: any;
|
|
201
|
-
default: string | number | boolean | SelectOptions |
|
|
277
|
+
default: string | number | boolean | SelectOptions | {
|
|
278
|
+
label: string;
|
|
279
|
+
value: string;
|
|
280
|
+
} | import("../../_utils/props").Events | {
|
|
202
281
|
[key: string]: any;
|
|
203
282
|
} | import("../../_utils/props").RequestParams;
|
|
204
283
|
};
|
|
@@ -207,7 +286,10 @@ export declare const selectComponentProps: {
|
|
|
207
286
|
default?: undefined;
|
|
208
287
|
} | {
|
|
209
288
|
type: any;
|
|
210
|
-
default: string | number | boolean | SelectOptions |
|
|
289
|
+
default: string | number | boolean | SelectOptions | {
|
|
290
|
+
label: string;
|
|
291
|
+
value: string;
|
|
292
|
+
} | import("../../_utils/props").Events | {
|
|
211
293
|
[key: string]: any;
|
|
212
294
|
} | import("../../_utils/props").RequestParams;
|
|
213
295
|
};
|
|
@@ -216,8 +298,24 @@ export declare const selectComponentProps: {
|
|
|
216
298
|
default?: undefined;
|
|
217
299
|
} | {
|
|
218
300
|
type: any;
|
|
219
|
-
default: string | number | boolean | SelectOptions |
|
|
301
|
+
default: string | number | boolean | SelectOptions | {
|
|
302
|
+
label: string;
|
|
303
|
+
value: string;
|
|
304
|
+
} | import("../../_utils/props").Events | {
|
|
305
|
+
[key: string]: any;
|
|
306
|
+
} | import("../../_utils/props").RequestParams;
|
|
307
|
+
};
|
|
308
|
+
requestSort: {
|
|
309
|
+
type?: undefined;
|
|
310
|
+
default?: undefined;
|
|
311
|
+
} | {
|
|
312
|
+
type: any;
|
|
313
|
+
default: string | number | boolean | SelectOptions | {
|
|
314
|
+
label: string;
|
|
315
|
+
value: string;
|
|
316
|
+
} | import("../../_utils/props").Events | {
|
|
220
317
|
[key: string]: any;
|
|
221
318
|
} | import("../../_utils/props").RequestParams;
|
|
222
319
|
};
|
|
223
320
|
};
|
|
321
|
+
export declare const selectEvents: string[];
|