@ecan-bi/datav 1.1.40 → 1.1.41

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