@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,15 +1,11 @@
|
|
|
1
|
-
import { Events } from 'src/_utils/props';
|
|
1
|
+
import { ValueTypeDataFieldNames, Events } from 'src/_utils/props';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<{
|
|
3
3
|
data: {
|
|
4
4
|
type?: undefined;
|
|
5
5
|
default?: undefined;
|
|
6
6
|
} | {
|
|
7
7
|
type: any;
|
|
8
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
9
|
-
name: string;
|
|
10
|
-
value: string;
|
|
11
|
-
type: string;
|
|
12
|
-
} | Events | {
|
|
8
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
13
9
|
[key: string]: any;
|
|
14
10
|
} | import("src/_utils/props").RequestParams;
|
|
15
11
|
};
|
|
@@ -18,11 +14,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
18
14
|
default?: undefined;
|
|
19
15
|
} | {
|
|
20
16
|
type: any;
|
|
21
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
22
|
-
name: string;
|
|
23
|
-
value: string;
|
|
24
|
-
type: string;
|
|
25
|
-
} | Events | {
|
|
17
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
26
18
|
[key: string]: any;
|
|
27
19
|
} | import("src/_utils/props").RequestParams;
|
|
28
20
|
};
|
|
@@ -31,11 +23,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
31
23
|
default?: undefined;
|
|
32
24
|
} | {
|
|
33
25
|
type: any;
|
|
34
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
35
|
-
name: string;
|
|
36
|
-
value: string;
|
|
37
|
-
type: string;
|
|
38
|
-
} | Events | {
|
|
26
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
39
27
|
[key: string]: any;
|
|
40
28
|
} | import("src/_utils/props").RequestParams;
|
|
41
29
|
};
|
|
@@ -44,11 +32,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
44
32
|
default?: undefined;
|
|
45
33
|
} | {
|
|
46
34
|
type: any;
|
|
47
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
48
|
-
name: string;
|
|
49
|
-
value: string;
|
|
50
|
-
type: string;
|
|
51
|
-
} | Events | {
|
|
35
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
52
36
|
[key: string]: any;
|
|
53
37
|
} | import("src/_utils/props").RequestParams;
|
|
54
38
|
};
|
|
@@ -57,11 +41,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
57
41
|
default?: undefined;
|
|
58
42
|
} | {
|
|
59
43
|
type: any;
|
|
60
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
61
|
-
name: string;
|
|
62
|
-
value: string;
|
|
63
|
-
type: string;
|
|
64
|
-
} | Events | {
|
|
44
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
65
45
|
[key: string]: any;
|
|
66
46
|
} | import("src/_utils/props").RequestParams;
|
|
67
47
|
};
|
|
@@ -70,11 +50,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
70
50
|
default?: undefined;
|
|
71
51
|
} | {
|
|
72
52
|
type: any;
|
|
73
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
74
|
-
name: string;
|
|
75
|
-
value: string;
|
|
76
|
-
type: string;
|
|
77
|
-
} | Events | {
|
|
53
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
78
54
|
[key: string]: any;
|
|
79
55
|
} | import("src/_utils/props").RequestParams;
|
|
80
56
|
};
|
|
@@ -83,11 +59,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
83
59
|
default?: undefined;
|
|
84
60
|
} | {
|
|
85
61
|
type: any;
|
|
86
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
87
|
-
name: string;
|
|
88
|
-
value: string;
|
|
89
|
-
type: string;
|
|
90
|
-
} | Events | {
|
|
62
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
91
63
|
[key: string]: any;
|
|
92
64
|
} | import("src/_utils/props").RequestParams;
|
|
93
65
|
};
|
|
@@ -96,11 +68,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
96
68
|
default?: undefined;
|
|
97
69
|
} | {
|
|
98
70
|
type: any;
|
|
99
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
100
|
-
name: string;
|
|
101
|
-
value: string;
|
|
102
|
-
type: string;
|
|
103
|
-
} | Events | {
|
|
71
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
104
72
|
[key: string]: any;
|
|
105
73
|
} | import("src/_utils/props").RequestParams;
|
|
106
74
|
};
|
|
@@ -109,11 +77,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
109
77
|
default?: undefined;
|
|
110
78
|
} | {
|
|
111
79
|
type: any;
|
|
112
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
113
|
-
name: string;
|
|
114
|
-
value: string;
|
|
115
|
-
type: string;
|
|
116
|
-
} | Events | {
|
|
80
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
117
81
|
[key: string]: any;
|
|
118
82
|
} | import("src/_utils/props").RequestParams;
|
|
119
83
|
};
|
|
@@ -122,11 +86,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
122
86
|
default?: undefined;
|
|
123
87
|
} | {
|
|
124
88
|
type: any;
|
|
125
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
126
|
-
name: string;
|
|
127
|
-
value: string;
|
|
128
|
-
type: string;
|
|
129
|
-
} | Events | {
|
|
89
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
130
90
|
[key: string]: any;
|
|
131
91
|
} | import("src/_utils/props").RequestParams;
|
|
132
92
|
};
|
|
@@ -135,11 +95,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
135
95
|
default?: undefined;
|
|
136
96
|
} | {
|
|
137
97
|
type: any;
|
|
138
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
139
|
-
name: string;
|
|
140
|
-
value: string;
|
|
141
|
-
type: string;
|
|
142
|
-
} | Events | {
|
|
98
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
143
99
|
[key: string]: any;
|
|
144
100
|
} | import("src/_utils/props").RequestParams;
|
|
145
101
|
};
|
|
@@ -148,11 +104,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
148
104
|
default?: undefined;
|
|
149
105
|
} | {
|
|
150
106
|
type: any;
|
|
151
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
152
|
-
name: string;
|
|
153
|
-
value: string;
|
|
154
|
-
type: string;
|
|
155
|
-
} | Events | {
|
|
107
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
156
108
|
[key: string]: any;
|
|
157
109
|
} | import("src/_utils/props").RequestParams;
|
|
158
110
|
};
|
|
@@ -161,11 +113,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
161
113
|
default?: undefined;
|
|
162
114
|
} | {
|
|
163
115
|
type: any;
|
|
164
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
165
|
-
name: string;
|
|
166
|
-
value: string;
|
|
167
|
-
type: string;
|
|
168
|
-
} | Events | {
|
|
116
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
169
117
|
[key: string]: any;
|
|
170
118
|
} | import("src/_utils/props").RequestParams;
|
|
171
119
|
};
|
|
@@ -174,11 +122,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
174
122
|
default?: undefined;
|
|
175
123
|
} | {
|
|
176
124
|
type: any;
|
|
177
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
178
|
-
name: string;
|
|
179
|
-
value: string;
|
|
180
|
-
type: string;
|
|
181
|
-
} | Events | {
|
|
125
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
182
126
|
[key: string]: any;
|
|
183
127
|
} | import("src/_utils/props").RequestParams;
|
|
184
128
|
};
|
|
@@ -187,11 +131,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
187
131
|
default?: undefined;
|
|
188
132
|
} | {
|
|
189
133
|
type: any;
|
|
190
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
191
|
-
name: string;
|
|
192
|
-
value: string;
|
|
193
|
-
type: string;
|
|
194
|
-
} | Events | {
|
|
134
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
195
135
|
[key: string]: any;
|
|
196
136
|
} | import("src/_utils/props").RequestParams;
|
|
197
137
|
};
|
|
@@ -200,11 +140,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
200
140
|
default?: undefined;
|
|
201
141
|
} | {
|
|
202
142
|
type: any;
|
|
203
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
204
|
-
name: string;
|
|
205
|
-
value: string;
|
|
206
|
-
type: string;
|
|
207
|
-
} | Events | {
|
|
143
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
208
144
|
[key: string]: any;
|
|
209
145
|
} | import("src/_utils/props").RequestParams;
|
|
210
146
|
};
|
|
@@ -213,11 +149,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
213
149
|
default?: undefined;
|
|
214
150
|
} | {
|
|
215
151
|
type: any;
|
|
216
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
217
|
-
name: string;
|
|
218
|
-
value: string;
|
|
219
|
-
type: string;
|
|
220
|
-
} | Events | {
|
|
152
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
221
153
|
[key: string]: any;
|
|
222
154
|
} | import("src/_utils/props").RequestParams;
|
|
223
155
|
};
|
|
@@ -226,11 +158,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
226
158
|
default?: undefined;
|
|
227
159
|
} | {
|
|
228
160
|
type: any;
|
|
229
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
230
|
-
name: string;
|
|
231
|
-
value: string;
|
|
232
|
-
type: string;
|
|
233
|
-
} | Events | {
|
|
161
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
234
162
|
[key: string]: any;
|
|
235
163
|
} | import("src/_utils/props").RequestParams;
|
|
236
164
|
};
|
|
@@ -239,11 +167,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
239
167
|
default?: undefined;
|
|
240
168
|
} | {
|
|
241
169
|
type: any;
|
|
242
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
243
|
-
name: string;
|
|
244
|
-
value: string;
|
|
245
|
-
type: string;
|
|
246
|
-
} | Events | {
|
|
170
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
247
171
|
[key: string]: any;
|
|
248
172
|
} | import("src/_utils/props").RequestParams;
|
|
249
173
|
};
|
|
@@ -252,11 +176,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
252
176
|
default?: undefined;
|
|
253
177
|
} | {
|
|
254
178
|
type: any;
|
|
255
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
256
|
-
name: string;
|
|
257
|
-
value: string;
|
|
258
|
-
type: string;
|
|
259
|
-
} | Events | {
|
|
179
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
260
180
|
[key: string]: any;
|
|
261
181
|
} | import("src/_utils/props").RequestParams;
|
|
262
182
|
};
|
|
@@ -265,11 +185,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
265
185
|
default?: undefined;
|
|
266
186
|
} | {
|
|
267
187
|
type: any;
|
|
268
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
269
|
-
name: string;
|
|
270
|
-
value: string;
|
|
271
|
-
type: string;
|
|
272
|
-
} | Events | {
|
|
188
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
273
189
|
[key: string]: any;
|
|
274
190
|
} | import("src/_utils/props").RequestParams;
|
|
275
191
|
};
|
|
@@ -278,11 +194,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
278
194
|
default?: undefined;
|
|
279
195
|
} | {
|
|
280
196
|
type: any;
|
|
281
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
282
|
-
name: string;
|
|
283
|
-
value: string;
|
|
284
|
-
type: string;
|
|
285
|
-
} | Events | {
|
|
197
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
286
198
|
[key: string]: any;
|
|
287
199
|
} | import("src/_utils/props").RequestParams;
|
|
288
200
|
};
|
|
@@ -291,11 +203,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
291
203
|
default?: undefined;
|
|
292
204
|
} | {
|
|
293
205
|
type: any;
|
|
294
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
295
|
-
name: string;
|
|
296
|
-
value: string;
|
|
297
|
-
type: string;
|
|
298
|
-
} | Events | {
|
|
206
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
299
207
|
[key: string]: any;
|
|
300
208
|
} | import("src/_utils/props").RequestParams;
|
|
301
209
|
};
|
|
@@ -304,11 +212,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
304
212
|
default?: undefined;
|
|
305
213
|
} | {
|
|
306
214
|
type: any;
|
|
307
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
308
|
-
name: string;
|
|
309
|
-
value: string;
|
|
310
|
-
type: string;
|
|
311
|
-
} | Events | {
|
|
215
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
312
216
|
[key: string]: any;
|
|
313
217
|
} | import("src/_utils/props").RequestParams;
|
|
314
218
|
};
|
|
@@ -317,11 +221,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
317
221
|
default?: undefined;
|
|
318
222
|
} | {
|
|
319
223
|
type: any;
|
|
320
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
321
|
-
name: string;
|
|
322
|
-
value: string;
|
|
323
|
-
type: string;
|
|
324
|
-
} | Events | {
|
|
224
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
325
225
|
[key: string]: any;
|
|
326
226
|
} | import("src/_utils/props").RequestParams;
|
|
327
227
|
};
|
|
@@ -330,11 +230,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
330
230
|
default?: undefined;
|
|
331
231
|
} | {
|
|
332
232
|
type: any;
|
|
333
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
334
|
-
name: string;
|
|
335
|
-
value: string;
|
|
336
|
-
type: string;
|
|
337
|
-
} | Events | {
|
|
233
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
338
234
|
[key: string]: any;
|
|
339
235
|
} | import("src/_utils/props").RequestParams;
|
|
340
236
|
};
|
|
@@ -343,11 +239,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
343
239
|
default?: undefined;
|
|
344
240
|
} | {
|
|
345
241
|
type: any;
|
|
346
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
347
|
-
name: string;
|
|
348
|
-
value: string;
|
|
349
|
-
type: string;
|
|
350
|
-
} | Events | {
|
|
242
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
351
243
|
[key: string]: any;
|
|
352
244
|
} | import("src/_utils/props").RequestParams;
|
|
353
245
|
};
|
|
@@ -356,11 +248,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
356
248
|
default?: undefined;
|
|
357
249
|
} | {
|
|
358
250
|
type: any;
|
|
359
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
360
|
-
name: string;
|
|
361
|
-
value: string;
|
|
362
|
-
type: string;
|
|
363
|
-
} | Events | {
|
|
251
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
364
252
|
[key: string]: any;
|
|
365
253
|
} | import("src/_utils/props").RequestParams;
|
|
366
254
|
};
|
|
@@ -369,24 +257,25 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
369
257
|
default?: undefined;
|
|
370
258
|
} | {
|
|
371
259
|
type: any;
|
|
372
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
373
|
-
name: string;
|
|
374
|
-
value: string;
|
|
375
|
-
type: string;
|
|
376
|
-
} | Events | {
|
|
260
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
377
261
|
[key: string]: any;
|
|
378
262
|
} | import("src/_utils/props").RequestParams;
|
|
379
263
|
};
|
|
380
|
-
|
|
264
|
+
valueTypeDataFieldNames: {
|
|
381
265
|
type?: undefined;
|
|
382
266
|
default?: undefined;
|
|
383
267
|
} | {
|
|
384
268
|
type: any;
|
|
385
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
269
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
270
|
+
[key: string]: any;
|
|
271
|
+
} | import("src/_utils/props").RequestParams;
|
|
272
|
+
};
|
|
273
|
+
dataFieldConfigType: {
|
|
274
|
+
type?: undefined;
|
|
275
|
+
default?: undefined;
|
|
276
|
+
} | {
|
|
277
|
+
type: any;
|
|
278
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
390
279
|
[key: string]: any;
|
|
391
280
|
} | import("src/_utils/props").RequestParams;
|
|
392
281
|
};
|
|
@@ -395,11 +284,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
395
284
|
default?: undefined;
|
|
396
285
|
} | {
|
|
397
286
|
type: any;
|
|
398
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
399
|
-
name: string;
|
|
400
|
-
value: string;
|
|
401
|
-
type: string;
|
|
402
|
-
} | Events | {
|
|
287
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
403
288
|
[key: string]: any;
|
|
404
289
|
} | import("src/_utils/props").RequestParams;
|
|
405
290
|
};
|
|
@@ -408,11 +293,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
408
293
|
default?: undefined;
|
|
409
294
|
} | {
|
|
410
295
|
type: any;
|
|
411
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
412
|
-
name: string;
|
|
413
|
-
value: string;
|
|
414
|
-
type: string;
|
|
415
|
-
} | Events | {
|
|
296
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
416
297
|
[key: string]: any;
|
|
417
298
|
} | import("src/_utils/props").RequestParams;
|
|
418
299
|
};
|
|
@@ -421,11 +302,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
421
302
|
default?: undefined;
|
|
422
303
|
} | {
|
|
423
304
|
type: any;
|
|
424
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
425
|
-
name: string;
|
|
426
|
-
value: string;
|
|
427
|
-
type: string;
|
|
428
|
-
} | Events | {
|
|
305
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
429
306
|
[key: string]: any;
|
|
430
307
|
} | import("src/_utils/props").RequestParams;
|
|
431
308
|
};
|
|
@@ -434,11 +311,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
434
311
|
default?: undefined;
|
|
435
312
|
} | {
|
|
436
313
|
type: any;
|
|
437
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
438
|
-
name: string;
|
|
439
|
-
value: string;
|
|
440
|
-
type: string;
|
|
441
|
-
} | Events | {
|
|
314
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
442
315
|
[key: string]: any;
|
|
443
316
|
} | import("src/_utils/props").RequestParams;
|
|
444
317
|
};
|
|
@@ -447,11 +320,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
447
320
|
default?: undefined;
|
|
448
321
|
} | {
|
|
449
322
|
type: any;
|
|
450
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
451
|
-
name: string;
|
|
452
|
-
value: string;
|
|
453
|
-
type: string;
|
|
454
|
-
} | Events | {
|
|
323
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
455
324
|
[key: string]: any;
|
|
456
325
|
} | import("src/_utils/props").RequestParams;
|
|
457
326
|
};
|
|
@@ -460,11 +329,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
460
329
|
default?: undefined;
|
|
461
330
|
} | {
|
|
462
331
|
type: any;
|
|
463
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
464
|
-
name: string;
|
|
465
|
-
value: string;
|
|
466
|
-
type: string;
|
|
467
|
-
} | Events | {
|
|
332
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
468
333
|
[key: string]: any;
|
|
469
334
|
} | import("src/_utils/props").RequestParams;
|
|
470
335
|
};
|
|
@@ -473,11 +338,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
473
338
|
default?: undefined;
|
|
474
339
|
} | {
|
|
475
340
|
type: any;
|
|
476
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
477
|
-
name: string;
|
|
478
|
-
value: string;
|
|
479
|
-
type: string;
|
|
480
|
-
} | Events | {
|
|
341
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
481
342
|
[key: string]: any;
|
|
482
343
|
} | import("src/_utils/props").RequestParams;
|
|
483
344
|
};
|
|
@@ -486,11 +347,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
486
347
|
default?: undefined;
|
|
487
348
|
} | {
|
|
488
349
|
type: any;
|
|
489
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
490
|
-
name: string;
|
|
491
|
-
value: string;
|
|
492
|
-
type: string;
|
|
493
|
-
} | Events | {
|
|
350
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
494
351
|
[key: string]: any;
|
|
495
352
|
} | import("src/_utils/props").RequestParams;
|
|
496
353
|
};
|
|
@@ -499,11 +356,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
499
356
|
default?: undefined;
|
|
500
357
|
} | {
|
|
501
358
|
type: any;
|
|
502
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
503
|
-
name: string;
|
|
504
|
-
value: string;
|
|
505
|
-
type: string;
|
|
506
|
-
} | Events | {
|
|
359
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
507
360
|
[key: string]: any;
|
|
508
361
|
} | import("src/_utils/props").RequestParams;
|
|
509
362
|
};
|
|
@@ -512,11 +365,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
512
365
|
default?: undefined;
|
|
513
366
|
} | {
|
|
514
367
|
type: any;
|
|
515
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
516
|
-
name: string;
|
|
517
|
-
value: string;
|
|
518
|
-
type: string;
|
|
519
|
-
} | Events | {
|
|
368
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
520
369
|
[key: string]: any;
|
|
521
370
|
} | import("src/_utils/props").RequestParams;
|
|
522
371
|
};
|
|
@@ -525,11 +374,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
525
374
|
default?: undefined;
|
|
526
375
|
} | {
|
|
527
376
|
type: any;
|
|
528
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
529
|
-
name: string;
|
|
530
|
-
value: string;
|
|
531
|
-
type: string;
|
|
532
|
-
} | Events | {
|
|
377
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
533
378
|
[key: string]: any;
|
|
534
379
|
} | import("src/_utils/props").RequestParams;
|
|
535
380
|
};
|
|
@@ -538,11 +383,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
538
383
|
default?: undefined;
|
|
539
384
|
} | {
|
|
540
385
|
type: any;
|
|
541
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
542
|
-
name: string;
|
|
543
|
-
value: string;
|
|
544
|
-
type: string;
|
|
545
|
-
} | Events | {
|
|
386
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
546
387
|
[key: string]: any;
|
|
547
388
|
} | import("src/_utils/props").RequestParams;
|
|
548
389
|
};
|
|
@@ -551,11 +392,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
551
392
|
default?: undefined;
|
|
552
393
|
} | {
|
|
553
394
|
type: any;
|
|
554
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
555
|
-
name: string;
|
|
556
|
-
value: string;
|
|
557
|
-
type: string;
|
|
558
|
-
} | Events | {
|
|
395
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
559
396
|
[key: string]: any;
|
|
560
397
|
} | import("src/_utils/props").RequestParams;
|
|
561
398
|
};
|
|
@@ -564,11 +401,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
564
401
|
default?: undefined;
|
|
565
402
|
} | {
|
|
566
403
|
type: any;
|
|
567
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
568
|
-
name: string;
|
|
569
|
-
value: string;
|
|
570
|
-
type: string;
|
|
571
|
-
} | Events | {
|
|
404
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
572
405
|
[key: string]: any;
|
|
573
406
|
} | import("src/_utils/props").RequestParams;
|
|
574
407
|
};
|
|
@@ -577,11 +410,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
577
410
|
default?: undefined;
|
|
578
411
|
} | {
|
|
579
412
|
type: any;
|
|
580
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
581
|
-
name: string;
|
|
582
|
-
value: string;
|
|
583
|
-
type: string;
|
|
584
|
-
} | Events | {
|
|
413
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
585
414
|
[key: string]: any;
|
|
586
415
|
} | import("src/_utils/props").RequestParams;
|
|
587
416
|
};
|
|
@@ -590,11 +419,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
590
419
|
default?: undefined;
|
|
591
420
|
} | {
|
|
592
421
|
type: any;
|
|
593
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
594
|
-
name: string;
|
|
595
|
-
value: string;
|
|
596
|
-
type: string;
|
|
597
|
-
} | Events | {
|
|
422
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
598
423
|
[key: string]: any;
|
|
599
424
|
} | import("src/_utils/props").RequestParams;
|
|
600
425
|
};
|
|
@@ -603,11 +428,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
603
428
|
default?: undefined;
|
|
604
429
|
} | {
|
|
605
430
|
type: any;
|
|
606
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
607
|
-
name: string;
|
|
608
|
-
value: string;
|
|
609
|
-
type: string;
|
|
610
|
-
} | Events | {
|
|
431
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
611
432
|
[key: string]: any;
|
|
612
433
|
} | import("src/_utils/props").RequestParams;
|
|
613
434
|
};
|
|
@@ -616,11 +437,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
616
437
|
default?: undefined;
|
|
617
438
|
} | {
|
|
618
439
|
type: any;
|
|
619
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
620
|
-
name: string;
|
|
621
|
-
value: string;
|
|
622
|
-
type: string;
|
|
623
|
-
} | Events | {
|
|
440
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
624
441
|
[key: string]: any;
|
|
625
442
|
} | import("src/_utils/props").RequestParams;
|
|
626
443
|
};
|
|
@@ -629,11 +446,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
629
446
|
default?: undefined;
|
|
630
447
|
} | {
|
|
631
448
|
type: any;
|
|
632
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
633
|
-
name: string;
|
|
634
|
-
value: string;
|
|
635
|
-
type: string;
|
|
636
|
-
} | Events | {
|
|
449
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
637
450
|
[key: string]: any;
|
|
638
451
|
} | import("src/_utils/props").RequestParams;
|
|
639
452
|
};
|
|
@@ -642,11 +455,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
642
455
|
default?: undefined;
|
|
643
456
|
} | {
|
|
644
457
|
type: any;
|
|
645
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
646
|
-
name: string;
|
|
647
|
-
value: string;
|
|
648
|
-
type: string;
|
|
649
|
-
} | Events | {
|
|
458
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
650
459
|
[key: string]: any;
|
|
651
460
|
} | import("src/_utils/props").RequestParams;
|
|
652
461
|
};
|
|
@@ -655,11 +464,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
655
464
|
default?: undefined;
|
|
656
465
|
} | {
|
|
657
466
|
type: any;
|
|
658
|
-
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
467
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
468
|
+
[key: string]: any;
|
|
469
|
+
} | import("src/_utils/props").RequestParams;
|
|
470
|
+
};
|
|
471
|
+
requestSort: {
|
|
472
|
+
type?: undefined;
|
|
473
|
+
default?: undefined;
|
|
474
|
+
} | {
|
|
475
|
+
type: any;
|
|
476
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
|
|
663
477
|
[key: string]: any;
|
|
664
478
|
} | import("src/_utils/props").RequestParams;
|
|
665
479
|
};
|
|
@@ -760,6 +574,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
760
574
|
}>;
|
|
761
575
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
762
576
|
click: () => void;
|
|
577
|
+
loading: import("vue").Ref<boolean>;
|
|
763
578
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
764
579
|
data?: unknown;
|
|
765
580
|
titleText?: unknown;
|
|
@@ -790,7 +605,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
790
605
|
labelLineLength?: unknown;
|
|
791
606
|
labelLineLength2?: unknown;
|
|
792
607
|
roseType?: unknown;
|
|
793
|
-
|
|
608
|
+
valueTypeDataFieldNames?: unknown;
|
|
609
|
+
dataFieldConfigType?: unknown;
|
|
794
610
|
id?: unknown;
|
|
795
611
|
name?: unknown;
|
|
796
612
|
keyName?: unknown;
|
|
@@ -812,6 +628,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
812
628
|
isOpenRequestTimer?: unknown;
|
|
813
629
|
requestInterval?: unknown;
|
|
814
630
|
requestParams?: unknown;
|
|
631
|
+
requestSort?: unknown;
|
|
815
632
|
} & {} & {
|
|
816
633
|
type?: string | number | boolean | {
|
|
817
634
|
[key: string]: any;
|
|
@@ -903,7 +720,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
903
720
|
roseType?: string | number | boolean | {
|
|
904
721
|
[key: string]: any;
|
|
905
722
|
};
|
|
906
|
-
|
|
723
|
+
valueTypeDataFieldNames?: string | number | boolean | {
|
|
724
|
+
[key: string]: any;
|
|
725
|
+
};
|
|
726
|
+
dataFieldConfigType?: string | number | boolean | {
|
|
907
727
|
[key: string]: any;
|
|
908
728
|
};
|
|
909
729
|
id?: string | number | boolean | {
|
|
@@ -966,5 +786,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
966
786
|
requestParams?: string | number | boolean | {
|
|
967
787
|
[key: string]: any;
|
|
968
788
|
};
|
|
789
|
+
requestSort?: string | number | boolean | {
|
|
790
|
+
[key: string]: any;
|
|
791
|
+
};
|
|
969
792
|
}>, {}>;
|
|
970
793
|
export default _default;
|