@ecan-bi/datav 1.0.67 → 1.0.69
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/index.es.js +12 -4
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +12 -4
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/types/_utils/hooks/useEmitEvent.d.ts +4 -3
- package/types/container/border/Border.vue.d.ts +294 -137
- package/types/container/border/index.d.ts +226 -68
- package/types/container/border/props.d.ts +116 -34
- package/types/container/tabs/Tabs.vue.d.ts +14 -0
- package/types/container/tabs/index.d.ts +14 -0
- package/types/container/tabs/props.d.ts +8 -0
- package/types/control/button/Button.vue.d.ts +120 -121
- package/types/control/date-picker/DatePicker.vue.d.ts +104 -105
- package/types/control/range-picker/RangePicker.vue.d.ts +104 -105
- package/types/control/select/Select.vue.d.ts +100 -101
- package/types/graph/bar/Bar.vue.d.ts +227 -133
- package/types/graph/bar/index.d.ts +94 -0
- package/types/graph/bar/props.d.ts +45 -0
- package/types/table/table/Table.vue.d.ts +168 -169
- package/types/text/list/List.vue.d.ts +128 -129
- package/types/text/proportion/Proportion.vue.d.ts +146 -147
- package/types/text/proportion/index.d.ts +2 -2
- package/types/text/text/Text.vue.d.ts +140 -141
|
@@ -1,310 +1,388 @@
|
|
|
1
|
-
import { Events } from '../../_utils/props';
|
|
2
1
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
2
|
fontSize: {
|
|
4
3
|
type?: undefined;
|
|
5
4
|
default?: undefined;
|
|
6
5
|
} | {
|
|
7
6
|
type: any;
|
|
8
|
-
default: string | number | boolean | Events | {
|
|
7
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
9
8
|
[key: string]: any;
|
|
10
|
-
} | import(
|
|
9
|
+
} | import("../../_utils/props").RequestParams | {
|
|
10
|
+
[key: string]: any;
|
|
11
|
+
};
|
|
11
12
|
};
|
|
12
13
|
fontFamily: {
|
|
13
14
|
type?: undefined;
|
|
14
15
|
default?: undefined;
|
|
15
16
|
} | {
|
|
16
17
|
type: any;
|
|
17
|
-
default: string | number | boolean | Events | {
|
|
18
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
19
|
+
[key: string]: any;
|
|
20
|
+
} | import("../../_utils/props").RequestParams | {
|
|
18
21
|
[key: string]: any;
|
|
19
|
-
}
|
|
22
|
+
};
|
|
20
23
|
};
|
|
21
24
|
fontWeight: {
|
|
22
25
|
type?: undefined;
|
|
23
26
|
default?: undefined;
|
|
24
27
|
} | {
|
|
25
28
|
type: any;
|
|
26
|
-
default: string | number | boolean | Events | {
|
|
29
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
30
|
+
[key: string]: any;
|
|
31
|
+
} | import("../../_utils/props").RequestParams | {
|
|
27
32
|
[key: string]: any;
|
|
28
|
-
}
|
|
33
|
+
};
|
|
29
34
|
};
|
|
30
35
|
title: {
|
|
31
36
|
type?: undefined;
|
|
32
37
|
default?: undefined;
|
|
33
38
|
} | {
|
|
34
39
|
type: any;
|
|
35
|
-
default: string | number | boolean | Events | {
|
|
40
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
36
41
|
[key: string]: any;
|
|
37
|
-
} | import(
|
|
42
|
+
} | import("../../_utils/props").RequestParams | {
|
|
43
|
+
[key: string]: any;
|
|
44
|
+
};
|
|
38
45
|
};
|
|
39
46
|
mode: {
|
|
40
47
|
type?: undefined;
|
|
41
48
|
default?: undefined;
|
|
42
49
|
} | {
|
|
43
50
|
type: any;
|
|
44
|
-
default: string | number | boolean | Events | {
|
|
51
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
52
|
+
[key: string]: any;
|
|
53
|
+
} | import("../../_utils/props").RequestParams | {
|
|
45
54
|
[key: string]: any;
|
|
46
|
-
}
|
|
55
|
+
};
|
|
47
56
|
};
|
|
48
57
|
borderColor: {
|
|
49
58
|
type?: undefined;
|
|
50
59
|
default?: undefined;
|
|
51
60
|
} | {
|
|
52
61
|
type: any;
|
|
53
|
-
default: string | number | boolean | Events | {
|
|
62
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
63
|
+
[key: string]: any;
|
|
64
|
+
} | import("../../_utils/props").RequestParams | {
|
|
54
65
|
[key: string]: any;
|
|
55
|
-
}
|
|
66
|
+
};
|
|
56
67
|
};
|
|
57
68
|
borderRadius: {
|
|
58
69
|
type?: undefined;
|
|
59
70
|
default?: undefined;
|
|
60
71
|
} | {
|
|
61
72
|
type: any;
|
|
62
|
-
default: string | number | boolean | Events | {
|
|
73
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
63
74
|
[key: string]: any;
|
|
64
|
-
} | import(
|
|
75
|
+
} | import("../../_utils/props").RequestParams | {
|
|
76
|
+
[key: string]: any;
|
|
77
|
+
};
|
|
65
78
|
};
|
|
66
79
|
borderStyle: {
|
|
67
80
|
type?: undefined;
|
|
68
81
|
default?: undefined;
|
|
69
82
|
} | {
|
|
70
83
|
type: any;
|
|
71
|
-
default: string | number | boolean | Events | {
|
|
84
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
85
|
+
[key: string]: any;
|
|
86
|
+
} | import("../../_utils/props").RequestParams | {
|
|
72
87
|
[key: string]: any;
|
|
73
|
-
}
|
|
88
|
+
};
|
|
74
89
|
};
|
|
75
90
|
borderWidth: {
|
|
76
91
|
type?: undefined;
|
|
77
92
|
default?: undefined;
|
|
78
93
|
} | {
|
|
79
94
|
type: any;
|
|
80
|
-
default: string | number | boolean | Events | {
|
|
95
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
96
|
+
[key: string]: any;
|
|
97
|
+
} | import("../../_utils/props").RequestParams | {
|
|
81
98
|
[key: string]: any;
|
|
82
|
-
}
|
|
99
|
+
};
|
|
83
100
|
};
|
|
84
101
|
backgroundColor: {
|
|
85
102
|
type?: undefined;
|
|
86
103
|
default?: undefined;
|
|
87
104
|
} | {
|
|
88
105
|
type: any;
|
|
89
|
-
default: string | number | boolean | Events | {
|
|
106
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
90
107
|
[key: string]: any;
|
|
91
|
-
} | import(
|
|
108
|
+
} | import("../../_utils/props").RequestParams | {
|
|
109
|
+
[key: string]: any;
|
|
110
|
+
};
|
|
92
111
|
};
|
|
93
112
|
useBorderModify: {
|
|
94
113
|
type?: undefined;
|
|
95
114
|
default?: undefined;
|
|
96
115
|
} | {
|
|
97
116
|
type: any;
|
|
98
|
-
default: string | number | boolean | Events | {
|
|
117
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
118
|
+
[key: string]: any;
|
|
119
|
+
} | import("../../_utils/props").RequestParams | {
|
|
99
120
|
[key: string]: any;
|
|
100
|
-
}
|
|
121
|
+
};
|
|
101
122
|
};
|
|
102
123
|
textShadow: {
|
|
103
124
|
type?: undefined;
|
|
104
125
|
default?: undefined;
|
|
105
126
|
} | {
|
|
106
127
|
type: any;
|
|
107
|
-
default: string | number | boolean | Events | {
|
|
128
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
108
129
|
[key: string]: any;
|
|
109
|
-
} | import(
|
|
130
|
+
} | import("../../_utils/props").RequestParams | {
|
|
131
|
+
[key: string]: any;
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
data: {
|
|
135
|
+
type?: undefined;
|
|
136
|
+
default?: undefined;
|
|
137
|
+
} | {
|
|
138
|
+
type: any;
|
|
139
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
140
|
+
[key: string]: any;
|
|
141
|
+
} | import("../../_utils/props").RequestParams | {
|
|
142
|
+
[key: string]: any;
|
|
143
|
+
};
|
|
110
144
|
};
|
|
111
145
|
id: {
|
|
112
146
|
type?: undefined;
|
|
113
147
|
default?: undefined;
|
|
114
148
|
} | {
|
|
115
149
|
type: any;
|
|
116
|
-
default: string | number | boolean | Events | {
|
|
150
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
117
151
|
[key: string]: any;
|
|
118
|
-
} | import(
|
|
152
|
+
} | import("../../_utils/props").RequestParams | {
|
|
153
|
+
[key: string]: any;
|
|
154
|
+
};
|
|
119
155
|
};
|
|
120
156
|
name: {
|
|
121
157
|
type?: undefined;
|
|
122
158
|
default?: undefined;
|
|
123
159
|
} | {
|
|
124
160
|
type: any;
|
|
125
|
-
default: string | number | boolean | Events | {
|
|
161
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
162
|
+
[key: string]: any;
|
|
163
|
+
} | import("../../_utils/props").RequestParams | {
|
|
126
164
|
[key: string]: any;
|
|
127
|
-
}
|
|
165
|
+
};
|
|
128
166
|
};
|
|
129
167
|
keyName: {
|
|
130
168
|
type?: undefined;
|
|
131
169
|
default?: undefined;
|
|
132
170
|
} | {
|
|
133
171
|
type: any;
|
|
134
|
-
default: string | number | boolean | Events | {
|
|
172
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
135
173
|
[key: string]: any;
|
|
136
|
-
} | import(
|
|
174
|
+
} | import("../../_utils/props").RequestParams | {
|
|
175
|
+
[key: string]: any;
|
|
176
|
+
};
|
|
137
177
|
};
|
|
138
178
|
type: {
|
|
139
179
|
type?: undefined;
|
|
140
180
|
default?: undefined;
|
|
141
181
|
} | {
|
|
142
182
|
type: any;
|
|
143
|
-
default: string | number | boolean | Events | {
|
|
183
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
184
|
+
[key: string]: any;
|
|
185
|
+
} | import("../../_utils/props").RequestParams | {
|
|
144
186
|
[key: string]: any;
|
|
145
|
-
}
|
|
187
|
+
};
|
|
146
188
|
};
|
|
147
189
|
width: {
|
|
148
190
|
type?: undefined;
|
|
149
191
|
default?: undefined;
|
|
150
192
|
} | {
|
|
151
193
|
type: any;
|
|
152
|
-
default: string | number | boolean | Events | {
|
|
194
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
195
|
+
[key: string]: any;
|
|
196
|
+
} | import("../../_utils/props").RequestParams | {
|
|
153
197
|
[key: string]: any;
|
|
154
|
-
}
|
|
198
|
+
};
|
|
155
199
|
};
|
|
156
200
|
height: {
|
|
157
201
|
type?: undefined;
|
|
158
202
|
default?: undefined;
|
|
159
203
|
} | {
|
|
160
204
|
type: any;
|
|
161
|
-
default: string | number | boolean | Events | {
|
|
205
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
162
206
|
[key: string]: any;
|
|
163
|
-
} | import(
|
|
207
|
+
} | import("../../_utils/props").RequestParams | {
|
|
208
|
+
[key: string]: any;
|
|
209
|
+
};
|
|
164
210
|
};
|
|
165
211
|
position: {
|
|
166
212
|
type?: undefined;
|
|
167
213
|
default?: undefined;
|
|
168
214
|
} | {
|
|
169
215
|
type: any;
|
|
170
|
-
default: string | number | boolean | Events | {
|
|
216
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
217
|
+
[key: string]: any;
|
|
218
|
+
} | import("../../_utils/props").RequestParams | {
|
|
171
219
|
[key: string]: any;
|
|
172
|
-
}
|
|
220
|
+
};
|
|
173
221
|
};
|
|
174
222
|
top: {
|
|
175
223
|
type?: undefined;
|
|
176
224
|
default?: undefined;
|
|
177
225
|
} | {
|
|
178
226
|
type: any;
|
|
179
|
-
default: string | number | boolean | Events | {
|
|
227
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
180
228
|
[key: string]: any;
|
|
181
|
-
} | import(
|
|
229
|
+
} | import("../../_utils/props").RequestParams | {
|
|
230
|
+
[key: string]: any;
|
|
231
|
+
};
|
|
182
232
|
};
|
|
183
233
|
left: {
|
|
184
234
|
type?: undefined;
|
|
185
235
|
default?: undefined;
|
|
186
236
|
} | {
|
|
187
237
|
type: any;
|
|
188
|
-
default: string | number | boolean | Events | {
|
|
238
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
239
|
+
[key: string]: any;
|
|
240
|
+
} | import("../../_utils/props").RequestParams | {
|
|
189
241
|
[key: string]: any;
|
|
190
|
-
}
|
|
242
|
+
};
|
|
191
243
|
};
|
|
192
244
|
zIndex: {
|
|
193
245
|
type?: undefined;
|
|
194
246
|
default?: undefined;
|
|
195
247
|
} | {
|
|
196
248
|
type: any;
|
|
197
|
-
default: string | number | boolean | Events | {
|
|
249
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
250
|
+
[key: string]: any;
|
|
251
|
+
} | import("../../_utils/props").RequestParams | {
|
|
198
252
|
[key: string]: any;
|
|
199
|
-
}
|
|
253
|
+
};
|
|
200
254
|
};
|
|
201
255
|
rotate: {
|
|
202
256
|
type?: undefined;
|
|
203
257
|
default?: undefined;
|
|
204
258
|
} | {
|
|
205
259
|
type: any;
|
|
206
|
-
default: string | number | boolean | Events | {
|
|
260
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
207
261
|
[key: string]: any;
|
|
208
|
-
} | import(
|
|
262
|
+
} | import("../../_utils/props").RequestParams | {
|
|
263
|
+
[key: string]: any;
|
|
264
|
+
};
|
|
209
265
|
};
|
|
210
266
|
isShow: {
|
|
211
267
|
type?: undefined;
|
|
212
268
|
default?: undefined;
|
|
213
269
|
} | {
|
|
214
270
|
type: any;
|
|
215
|
-
default: string | number | boolean | Events | {
|
|
271
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
272
|
+
[key: string]: any;
|
|
273
|
+
} | import("../../_utils/props").RequestParams | {
|
|
216
274
|
[key: string]: any;
|
|
217
|
-
}
|
|
275
|
+
};
|
|
218
276
|
};
|
|
219
277
|
isRender: {
|
|
220
278
|
type?: undefined;
|
|
221
279
|
default?: undefined;
|
|
222
280
|
} | {
|
|
223
281
|
type: any;
|
|
224
|
-
default: string | number | boolean | Events | {
|
|
282
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
225
283
|
[key: string]: any;
|
|
226
|
-
} | import(
|
|
284
|
+
} | import("../../_utils/props").RequestParams | {
|
|
285
|
+
[key: string]: any;
|
|
286
|
+
};
|
|
227
287
|
};
|
|
228
288
|
events: {
|
|
229
289
|
type?: undefined;
|
|
230
290
|
default?: undefined;
|
|
231
291
|
} | {
|
|
232
292
|
type: any;
|
|
233
|
-
default: string | number | boolean | Events | {
|
|
293
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
294
|
+
[key: string]: any;
|
|
295
|
+
} | import("../../_utils/props").RequestParams | {
|
|
234
296
|
[key: string]: any;
|
|
235
|
-
}
|
|
297
|
+
};
|
|
236
298
|
};
|
|
237
299
|
requestUrl: {
|
|
238
300
|
type?: undefined;
|
|
239
301
|
default?: undefined;
|
|
240
302
|
} | {
|
|
241
303
|
type: any;
|
|
242
|
-
default: string | number | boolean | Events | {
|
|
304
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
305
|
+
[key: string]: any;
|
|
306
|
+
} | import("../../_utils/props").RequestParams | {
|
|
243
307
|
[key: string]: any;
|
|
244
|
-
}
|
|
308
|
+
};
|
|
245
309
|
};
|
|
246
310
|
requestMethod: {
|
|
247
311
|
type?: undefined;
|
|
248
312
|
default?: undefined;
|
|
249
313
|
} | {
|
|
250
314
|
type: any;
|
|
251
|
-
default: string | number | boolean | Events | {
|
|
315
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
252
316
|
[key: string]: any;
|
|
253
|
-
} | import(
|
|
317
|
+
} | import("../../_utils/props").RequestParams | {
|
|
318
|
+
[key: string]: any;
|
|
319
|
+
};
|
|
254
320
|
};
|
|
255
321
|
requestHeaders: {
|
|
256
322
|
type?: undefined;
|
|
257
323
|
default?: undefined;
|
|
258
324
|
} | {
|
|
259
325
|
type: any;
|
|
260
|
-
default: string | number | boolean | Events | {
|
|
326
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
327
|
+
[key: string]: any;
|
|
328
|
+
} | import("../../_utils/props").RequestParams | {
|
|
261
329
|
[key: string]: any;
|
|
262
|
-
}
|
|
330
|
+
};
|
|
263
331
|
};
|
|
264
332
|
isOpenRequestTimer: {
|
|
265
333
|
type?: undefined;
|
|
266
334
|
default?: undefined;
|
|
267
335
|
} | {
|
|
268
336
|
type: any;
|
|
269
|
-
default: string | number | boolean | Events | {
|
|
337
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
270
338
|
[key: string]: any;
|
|
271
|
-
} | import(
|
|
339
|
+
} | import("../../_utils/props").RequestParams | {
|
|
340
|
+
[key: string]: any;
|
|
341
|
+
};
|
|
272
342
|
};
|
|
273
343
|
requestInterval: {
|
|
274
344
|
type?: undefined;
|
|
275
345
|
default?: undefined;
|
|
276
346
|
} | {
|
|
277
347
|
type: any;
|
|
278
|
-
default: string | number | boolean | Events | {
|
|
348
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
349
|
+
[key: string]: any;
|
|
350
|
+
} | import("../../_utils/props").RequestParams | {
|
|
279
351
|
[key: string]: any;
|
|
280
|
-
}
|
|
352
|
+
};
|
|
281
353
|
};
|
|
282
354
|
requestParams: {
|
|
283
355
|
type?: undefined;
|
|
284
356
|
default?: undefined;
|
|
285
357
|
} | {
|
|
286
358
|
type: any;
|
|
287
|
-
default: string | number | boolean | Events | {
|
|
359
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
360
|
+
[key: string]: any;
|
|
361
|
+
} | import("../../_utils/props").RequestParams | {
|
|
288
362
|
[key: string]: any;
|
|
289
|
-
}
|
|
363
|
+
};
|
|
290
364
|
};
|
|
291
365
|
requestSort: {
|
|
292
366
|
type?: undefined;
|
|
293
367
|
default?: undefined;
|
|
294
368
|
} | {
|
|
295
369
|
type: any;
|
|
296
|
-
default: string | number | boolean | Events | {
|
|
370
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
297
371
|
[key: string]: any;
|
|
298
|
-
} | import(
|
|
372
|
+
} | import("../../_utils/props").RequestParams | {
|
|
373
|
+
[key: string]: any;
|
|
374
|
+
};
|
|
299
375
|
};
|
|
300
376
|
dataType: {
|
|
301
377
|
type?: undefined;
|
|
302
378
|
default?: undefined;
|
|
303
379
|
} | {
|
|
304
380
|
type: any;
|
|
305
|
-
default: string | number | boolean | Events | {
|
|
381
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
382
|
+
[key: string]: any;
|
|
383
|
+
} | import("../../_utils/props").RequestParams | {
|
|
306
384
|
[key: string]: any;
|
|
307
|
-
}
|
|
385
|
+
};
|
|
308
386
|
};
|
|
309
387
|
}, {
|
|
310
388
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
@@ -320,306 +398,385 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
320
398
|
default?: undefined;
|
|
321
399
|
} | {
|
|
322
400
|
type: any;
|
|
323
|
-
default: string | number | boolean | Events | {
|
|
401
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
324
402
|
[key: string]: any;
|
|
325
|
-
} | import(
|
|
403
|
+
} | import("../../_utils/props").RequestParams | {
|
|
404
|
+
[key: string]: any;
|
|
405
|
+
};
|
|
326
406
|
};
|
|
327
407
|
fontFamily: {
|
|
328
408
|
type?: undefined;
|
|
329
409
|
default?: undefined;
|
|
330
410
|
} | {
|
|
331
411
|
type: any;
|
|
332
|
-
default: string | number | boolean | Events | {
|
|
412
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
413
|
+
[key: string]: any;
|
|
414
|
+
} | import("../../_utils/props").RequestParams | {
|
|
333
415
|
[key: string]: any;
|
|
334
|
-
}
|
|
416
|
+
};
|
|
335
417
|
};
|
|
336
418
|
fontWeight: {
|
|
337
419
|
type?: undefined;
|
|
338
420
|
default?: undefined;
|
|
339
421
|
} | {
|
|
340
422
|
type: any;
|
|
341
|
-
default: string | number | boolean | Events | {
|
|
423
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
424
|
+
[key: string]: any;
|
|
425
|
+
} | import("../../_utils/props").RequestParams | {
|
|
342
426
|
[key: string]: any;
|
|
343
|
-
}
|
|
427
|
+
};
|
|
344
428
|
};
|
|
345
429
|
title: {
|
|
346
430
|
type?: undefined;
|
|
347
431
|
default?: undefined;
|
|
348
432
|
} | {
|
|
349
433
|
type: any;
|
|
350
|
-
default: string | number | boolean | Events | {
|
|
434
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
351
435
|
[key: string]: any;
|
|
352
|
-
} | import(
|
|
436
|
+
} | import("../../_utils/props").RequestParams | {
|
|
437
|
+
[key: string]: any;
|
|
438
|
+
};
|
|
353
439
|
};
|
|
354
440
|
mode: {
|
|
355
441
|
type?: undefined;
|
|
356
442
|
default?: undefined;
|
|
357
443
|
} | {
|
|
358
444
|
type: any;
|
|
359
|
-
default: string | number | boolean | Events | {
|
|
445
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
446
|
+
[key: string]: any;
|
|
447
|
+
} | import("../../_utils/props").RequestParams | {
|
|
360
448
|
[key: string]: any;
|
|
361
|
-
}
|
|
449
|
+
};
|
|
362
450
|
};
|
|
363
451
|
borderColor: {
|
|
364
452
|
type?: undefined;
|
|
365
453
|
default?: undefined;
|
|
366
454
|
} | {
|
|
367
455
|
type: any;
|
|
368
|
-
default: string | number | boolean | Events | {
|
|
456
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
457
|
+
[key: string]: any;
|
|
458
|
+
} | import("../../_utils/props").RequestParams | {
|
|
369
459
|
[key: string]: any;
|
|
370
|
-
}
|
|
460
|
+
};
|
|
371
461
|
};
|
|
372
462
|
borderRadius: {
|
|
373
463
|
type?: undefined;
|
|
374
464
|
default?: undefined;
|
|
375
465
|
} | {
|
|
376
466
|
type: any;
|
|
377
|
-
default: string | number | boolean | Events | {
|
|
467
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
378
468
|
[key: string]: any;
|
|
379
|
-
} | import(
|
|
469
|
+
} | import("../../_utils/props").RequestParams | {
|
|
470
|
+
[key: string]: any;
|
|
471
|
+
};
|
|
380
472
|
};
|
|
381
473
|
borderStyle: {
|
|
382
474
|
type?: undefined;
|
|
383
475
|
default?: undefined;
|
|
384
476
|
} | {
|
|
385
477
|
type: any;
|
|
386
|
-
default: string | number | boolean | Events | {
|
|
478
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
479
|
+
[key: string]: any;
|
|
480
|
+
} | import("../../_utils/props").RequestParams | {
|
|
387
481
|
[key: string]: any;
|
|
388
|
-
}
|
|
482
|
+
};
|
|
389
483
|
};
|
|
390
484
|
borderWidth: {
|
|
391
485
|
type?: undefined;
|
|
392
486
|
default?: undefined;
|
|
393
487
|
} | {
|
|
394
488
|
type: any;
|
|
395
|
-
default: string | number | boolean | Events | {
|
|
489
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
490
|
+
[key: string]: any;
|
|
491
|
+
} | import("../../_utils/props").RequestParams | {
|
|
396
492
|
[key: string]: any;
|
|
397
|
-
}
|
|
493
|
+
};
|
|
398
494
|
};
|
|
399
495
|
backgroundColor: {
|
|
400
496
|
type?: undefined;
|
|
401
497
|
default?: undefined;
|
|
402
498
|
} | {
|
|
403
499
|
type: any;
|
|
404
|
-
default: string | number | boolean | Events | {
|
|
500
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
405
501
|
[key: string]: any;
|
|
406
|
-
} | import(
|
|
502
|
+
} | import("../../_utils/props").RequestParams | {
|
|
503
|
+
[key: string]: any;
|
|
504
|
+
};
|
|
407
505
|
};
|
|
408
506
|
useBorderModify: {
|
|
409
507
|
type?: undefined;
|
|
410
508
|
default?: undefined;
|
|
411
509
|
} | {
|
|
412
510
|
type: any;
|
|
413
|
-
default: string | number | boolean | Events | {
|
|
511
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
512
|
+
[key: string]: any;
|
|
513
|
+
} | import("../../_utils/props").RequestParams | {
|
|
414
514
|
[key: string]: any;
|
|
415
|
-
}
|
|
515
|
+
};
|
|
416
516
|
};
|
|
417
517
|
textShadow: {
|
|
418
518
|
type?: undefined;
|
|
419
519
|
default?: undefined;
|
|
420
520
|
} | {
|
|
421
521
|
type: any;
|
|
422
|
-
default: string | number | boolean | Events | {
|
|
522
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
423
523
|
[key: string]: any;
|
|
424
|
-
} | import(
|
|
524
|
+
} | import("../../_utils/props").RequestParams | {
|
|
525
|
+
[key: string]: any;
|
|
526
|
+
};
|
|
527
|
+
};
|
|
528
|
+
data: {
|
|
529
|
+
type?: undefined;
|
|
530
|
+
default?: undefined;
|
|
531
|
+
} | {
|
|
532
|
+
type: any;
|
|
533
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
534
|
+
[key: string]: any;
|
|
535
|
+
} | import("../../_utils/props").RequestParams | {
|
|
536
|
+
[key: string]: any;
|
|
537
|
+
};
|
|
425
538
|
};
|
|
426
539
|
id: {
|
|
427
540
|
type?: undefined;
|
|
428
541
|
default?: undefined;
|
|
429
542
|
} | {
|
|
430
543
|
type: any;
|
|
431
|
-
default: string | number | boolean | Events | {
|
|
544
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
432
545
|
[key: string]: any;
|
|
433
|
-
} | import(
|
|
546
|
+
} | import("../../_utils/props").RequestParams | {
|
|
547
|
+
[key: string]: any;
|
|
548
|
+
};
|
|
434
549
|
};
|
|
435
550
|
name: {
|
|
436
551
|
type?: undefined;
|
|
437
552
|
default?: undefined;
|
|
438
553
|
} | {
|
|
439
554
|
type: any;
|
|
440
|
-
default: string | number | boolean | Events | {
|
|
555
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
556
|
+
[key: string]: any;
|
|
557
|
+
} | import("../../_utils/props").RequestParams | {
|
|
441
558
|
[key: string]: any;
|
|
442
|
-
}
|
|
559
|
+
};
|
|
443
560
|
};
|
|
444
561
|
keyName: {
|
|
445
562
|
type?: undefined;
|
|
446
563
|
default?: undefined;
|
|
447
564
|
} | {
|
|
448
565
|
type: any;
|
|
449
|
-
default: string | number | boolean | Events | {
|
|
566
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
450
567
|
[key: string]: any;
|
|
451
|
-
} | import(
|
|
568
|
+
} | import("../../_utils/props").RequestParams | {
|
|
569
|
+
[key: string]: any;
|
|
570
|
+
};
|
|
452
571
|
};
|
|
453
572
|
type: {
|
|
454
573
|
type?: undefined;
|
|
455
574
|
default?: undefined;
|
|
456
575
|
} | {
|
|
457
576
|
type: any;
|
|
458
|
-
default: string | number | boolean | Events | {
|
|
577
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
578
|
+
[key: string]: any;
|
|
579
|
+
} | import("../../_utils/props").RequestParams | {
|
|
459
580
|
[key: string]: any;
|
|
460
|
-
}
|
|
581
|
+
};
|
|
461
582
|
};
|
|
462
583
|
width: {
|
|
463
584
|
type?: undefined;
|
|
464
585
|
default?: undefined;
|
|
465
586
|
} | {
|
|
466
587
|
type: any;
|
|
467
|
-
default: string | number | boolean | Events | {
|
|
588
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
589
|
+
[key: string]: any;
|
|
590
|
+
} | import("../../_utils/props").RequestParams | {
|
|
468
591
|
[key: string]: any;
|
|
469
|
-
}
|
|
592
|
+
};
|
|
470
593
|
};
|
|
471
594
|
height: {
|
|
472
595
|
type?: undefined;
|
|
473
596
|
default?: undefined;
|
|
474
597
|
} | {
|
|
475
598
|
type: any;
|
|
476
|
-
default: string | number | boolean | Events | {
|
|
599
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
477
600
|
[key: string]: any;
|
|
478
|
-
} | import(
|
|
601
|
+
} | import("../../_utils/props").RequestParams | {
|
|
602
|
+
[key: string]: any;
|
|
603
|
+
};
|
|
479
604
|
};
|
|
480
605
|
position: {
|
|
481
606
|
type?: undefined;
|
|
482
607
|
default?: undefined;
|
|
483
608
|
} | {
|
|
484
609
|
type: any;
|
|
485
|
-
default: string | number | boolean | Events | {
|
|
610
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
611
|
+
[key: string]: any;
|
|
612
|
+
} | import("../../_utils/props").RequestParams | {
|
|
486
613
|
[key: string]: any;
|
|
487
|
-
}
|
|
614
|
+
};
|
|
488
615
|
};
|
|
489
616
|
top: {
|
|
490
617
|
type?: undefined;
|
|
491
618
|
default?: undefined;
|
|
492
619
|
} | {
|
|
493
620
|
type: any;
|
|
494
|
-
default: string | number | boolean | Events | {
|
|
621
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
495
622
|
[key: string]: any;
|
|
496
|
-
} | import(
|
|
623
|
+
} | import("../../_utils/props").RequestParams | {
|
|
624
|
+
[key: string]: any;
|
|
625
|
+
};
|
|
497
626
|
};
|
|
498
627
|
left: {
|
|
499
628
|
type?: undefined;
|
|
500
629
|
default?: undefined;
|
|
501
630
|
} | {
|
|
502
631
|
type: any;
|
|
503
|
-
default: string | number | boolean | Events | {
|
|
632
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
633
|
+
[key: string]: any;
|
|
634
|
+
} | import("../../_utils/props").RequestParams | {
|
|
504
635
|
[key: string]: any;
|
|
505
|
-
}
|
|
636
|
+
};
|
|
506
637
|
};
|
|
507
638
|
zIndex: {
|
|
508
639
|
type?: undefined;
|
|
509
640
|
default?: undefined;
|
|
510
641
|
} | {
|
|
511
642
|
type: any;
|
|
512
|
-
default: string | number | boolean | Events | {
|
|
643
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
644
|
+
[key: string]: any;
|
|
645
|
+
} | import("../../_utils/props").RequestParams | {
|
|
513
646
|
[key: string]: any;
|
|
514
|
-
}
|
|
647
|
+
};
|
|
515
648
|
};
|
|
516
649
|
rotate: {
|
|
517
650
|
type?: undefined;
|
|
518
651
|
default?: undefined;
|
|
519
652
|
} | {
|
|
520
653
|
type: any;
|
|
521
|
-
default: string | number | boolean | Events | {
|
|
654
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
522
655
|
[key: string]: any;
|
|
523
|
-
} | import(
|
|
656
|
+
} | import("../../_utils/props").RequestParams | {
|
|
657
|
+
[key: string]: any;
|
|
658
|
+
};
|
|
524
659
|
};
|
|
525
660
|
isShow: {
|
|
526
661
|
type?: undefined;
|
|
527
662
|
default?: undefined;
|
|
528
663
|
} | {
|
|
529
664
|
type: any;
|
|
530
|
-
default: string | number | boolean | Events | {
|
|
665
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
666
|
+
[key: string]: any;
|
|
667
|
+
} | import("../../_utils/props").RequestParams | {
|
|
531
668
|
[key: string]: any;
|
|
532
|
-
}
|
|
669
|
+
};
|
|
533
670
|
};
|
|
534
671
|
isRender: {
|
|
535
672
|
type?: undefined;
|
|
536
673
|
default?: undefined;
|
|
537
674
|
} | {
|
|
538
675
|
type: any;
|
|
539
|
-
default: string | number | boolean | Events | {
|
|
676
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
540
677
|
[key: string]: any;
|
|
541
|
-
} | import(
|
|
678
|
+
} | import("../../_utils/props").RequestParams | {
|
|
679
|
+
[key: string]: any;
|
|
680
|
+
};
|
|
542
681
|
};
|
|
543
682
|
events: {
|
|
544
683
|
type?: undefined;
|
|
545
684
|
default?: undefined;
|
|
546
685
|
} | {
|
|
547
686
|
type: any;
|
|
548
|
-
default: string | number | boolean | Events | {
|
|
687
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
688
|
+
[key: string]: any;
|
|
689
|
+
} | import("../../_utils/props").RequestParams | {
|
|
549
690
|
[key: string]: any;
|
|
550
|
-
}
|
|
691
|
+
};
|
|
551
692
|
};
|
|
552
693
|
requestUrl: {
|
|
553
694
|
type?: undefined;
|
|
554
695
|
default?: undefined;
|
|
555
696
|
} | {
|
|
556
697
|
type: any;
|
|
557
|
-
default: string | number | boolean | Events | {
|
|
698
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
699
|
+
[key: string]: any;
|
|
700
|
+
} | import("../../_utils/props").RequestParams | {
|
|
558
701
|
[key: string]: any;
|
|
559
|
-
}
|
|
702
|
+
};
|
|
560
703
|
};
|
|
561
704
|
requestMethod: {
|
|
562
705
|
type?: undefined;
|
|
563
706
|
default?: undefined;
|
|
564
707
|
} | {
|
|
565
708
|
type: any;
|
|
566
|
-
default: string | number | boolean | Events | {
|
|
709
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
567
710
|
[key: string]: any;
|
|
568
|
-
} | import(
|
|
711
|
+
} | import("../../_utils/props").RequestParams | {
|
|
712
|
+
[key: string]: any;
|
|
713
|
+
};
|
|
569
714
|
};
|
|
570
715
|
requestHeaders: {
|
|
571
716
|
type?: undefined;
|
|
572
717
|
default?: undefined;
|
|
573
718
|
} | {
|
|
574
719
|
type: any;
|
|
575
|
-
default: string | number | boolean | Events | {
|
|
720
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
721
|
+
[key: string]: any;
|
|
722
|
+
} | import("../../_utils/props").RequestParams | {
|
|
576
723
|
[key: string]: any;
|
|
577
|
-
}
|
|
724
|
+
};
|
|
578
725
|
};
|
|
579
726
|
isOpenRequestTimer: {
|
|
580
727
|
type?: undefined;
|
|
581
728
|
default?: undefined;
|
|
582
729
|
} | {
|
|
583
730
|
type: any;
|
|
584
|
-
default: string | number | boolean | Events | {
|
|
731
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
585
732
|
[key: string]: any;
|
|
586
|
-
} | import(
|
|
733
|
+
} | import("../../_utils/props").RequestParams | {
|
|
734
|
+
[key: string]: any;
|
|
735
|
+
};
|
|
587
736
|
};
|
|
588
737
|
requestInterval: {
|
|
589
738
|
type?: undefined;
|
|
590
739
|
default?: undefined;
|
|
591
740
|
} | {
|
|
592
741
|
type: any;
|
|
593
|
-
default: string | number | boolean | Events | {
|
|
742
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
743
|
+
[key: string]: any;
|
|
744
|
+
} | import("../../_utils/props").RequestParams | {
|
|
594
745
|
[key: string]: any;
|
|
595
|
-
}
|
|
746
|
+
};
|
|
596
747
|
};
|
|
597
748
|
requestParams: {
|
|
598
749
|
type?: undefined;
|
|
599
750
|
default?: undefined;
|
|
600
751
|
} | {
|
|
601
752
|
type: any;
|
|
602
|
-
default: string | number | boolean | Events | {
|
|
753
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
754
|
+
[key: string]: any;
|
|
755
|
+
} | import("../../_utils/props").RequestParams | {
|
|
603
756
|
[key: string]: any;
|
|
604
|
-
}
|
|
757
|
+
};
|
|
605
758
|
};
|
|
606
759
|
requestSort: {
|
|
607
760
|
type?: undefined;
|
|
608
761
|
default?: undefined;
|
|
609
762
|
} | {
|
|
610
763
|
type: any;
|
|
611
|
-
default: string | number | boolean | Events | {
|
|
764
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
612
765
|
[key: string]: any;
|
|
613
|
-
} | import(
|
|
766
|
+
} | import("../../_utils/props").RequestParams | {
|
|
767
|
+
[key: string]: any;
|
|
768
|
+
};
|
|
614
769
|
};
|
|
615
770
|
dataType: {
|
|
616
771
|
type?: undefined;
|
|
617
772
|
default?: undefined;
|
|
618
773
|
} | {
|
|
619
774
|
type: any;
|
|
620
|
-
default: string | number | boolean | Events | {
|
|
775
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
776
|
+
[key: string]: any;
|
|
777
|
+
} | import("../../_utils/props").RequestParams | {
|
|
621
778
|
[key: string]: any;
|
|
622
|
-
}
|
|
779
|
+
};
|
|
623
780
|
};
|
|
624
781
|
}>>, {}>;
|
|
625
782
|
export default _sfc_main;
|