@ecan-bi/datav 1.0.7 → 1.0.8

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 (75) hide show
  1. package/README.dev.md +16 -0
  2. package/README.md +0 -16
  3. package/dist/_utils/constant.d.ts +3 -0
  4. package/dist/_utils/hooks/index.d.ts +6 -0
  5. package/dist/_utils/hooks/useEmitEvent.d.ts +7 -0
  6. package/dist/_utils/hooks/useOnEvent.d.ts +6 -0
  7. package/dist/_utils/{hooks.d.ts → hooks/usePickComponentStyle.d.ts} +3 -2
  8. package/dist/_utils/hooks/usePickEchartsData.d.ts +2 -0
  9. package/dist/_utils/hooks/useRequestData.d.ts +14 -0
  10. package/dist/_utils/hooks/useRequestParams.d.ts +5 -0
  11. package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +8 -0
  12. package/dist/_utils/props.d.ts +37 -3
  13. package/dist/_utils/request.d.ts +2 -0
  14. package/dist/_utils/util.d.ts +5 -0
  15. package/dist/components.d.ts +3 -0
  16. package/dist/container/border/index.d.ts +3 -0
  17. package/dist/container/border/props.d.ts +235 -0
  18. package/dist/container/index.d.ts +2 -0
  19. package/dist/container/modal/Modal.vue.d.ts +363 -0
  20. package/dist/container/modal/index.d.ts +3 -0
  21. package/dist/container/modal/props.d.ts +138 -0
  22. package/dist/control/button/Button.vue.d.ts +282 -0
  23. package/dist/control/button/index.d.ts +3 -0
  24. package/dist/control/button/props.d.ts +196 -0
  25. package/dist/control/date-picker/DatePicker.vue.d.ts +397 -0
  26. package/dist/control/date-picker/index.d.ts +3 -0
  27. package/dist/control/date-picker/props.d.ts +236 -0
  28. package/dist/control/index.d.ts +4 -0
  29. package/dist/control/input/Input.vue.d.ts +305 -3
  30. package/dist/control/input/index.d.ts +1 -0
  31. package/dist/control/input/props.d.ts +215 -0
  32. package/dist/control/range-picker/RangePicker.vue.d.ts +296 -0
  33. package/dist/control/range-picker/index.d.ts +3 -0
  34. package/dist/control/range-picker/props.d.ts +205 -0
  35. package/dist/control/select/Select.vue.d.ts +308 -0
  36. package/dist/control/select/index.d.ts +3 -0
  37. package/dist/control/select/props.d.ts +223 -0
  38. package/dist/graph/bar/Bar.vue.d.ts +603 -9
  39. package/dist/graph/bar/index.d.ts +1 -1
  40. package/dist/graph/bar/props.d.ts +375 -5
  41. package/dist/graph/custom-graph/CustomGraph.vue.d.ts +355 -0
  42. package/dist/graph/custom-graph/index.d.ts +3 -0
  43. package/dist/graph/custom-graph/props.d.ts +263 -0
  44. package/dist/graph/index.d.ts +1 -0
  45. package/dist/graph/line/Line.vue.d.ts +639 -7
  46. package/dist/graph/line/props.d.ts +397 -4
  47. package/dist/graph/pie/Pie.vue.d.ts +731 -13
  48. package/dist/graph/pie/index.d.ts +1 -1
  49. package/dist/graph/pie/props.d.ts +477 -4
  50. package/dist/graph/scatter/Scatter.vue.d.ts +646 -10
  51. package/dist/graph/scatter/index.d.ts +1 -1
  52. package/dist/graph/scatter/props.d.ts +398 -5
  53. package/dist/index.esm.js +2 -2
  54. package/dist/index.umd.js +2 -2
  55. package/dist/media/image/Image.vue.d.ts +293 -0
  56. package/dist/media/image/index.d.ts +3 -0
  57. package/dist/media/image/props.d.ts +205 -0
  58. package/dist/media/index.d.ts +1 -0
  59. package/dist/setting/index.d.ts +2 -1
  60. package/dist/setting/page-config/PageConfig.vue.d.ts +78 -0
  61. package/dist/setting/page-config/index.d.ts +3 -0
  62. package/dist/setting/page-config/props.d.ts +61 -0
  63. package/dist/setting/provider-config/ProviderConfig.vue.d.ts +34 -0
  64. package/dist/setting/{page-cofig → provider-config}/index.d.ts +2 -2
  65. package/dist/setting/provider-config/props.d.ts +29 -0
  66. package/dist/table/index.d.ts +1 -0
  67. package/dist/table/table/Table.vue.d.ts +494 -0
  68. package/dist/table/table/index.d.ts +3 -0
  69. package/dist/table/table/props.d.ts +382 -0
  70. package/dist/text/text/Text.vue.d.ts +383 -5
  71. package/dist/text/text/index.d.ts +1 -1
  72. package/dist/text/text/props.d.ts +264 -1
  73. package/package.json +15 -13
  74. package/dist/setting/page-cofig/PageConfig.vue.d.ts +0 -13
  75. package/dist/setting/page-cofig/props.d.ts +0 -8
@@ -1,6 +1,384 @@
1
- declare const _default: import("vue").DefineComponent<any, {
2
- style: import("vue").ComputedRef<any>;
3
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<any>, {} | {
4
- [x: string]: any;
5
- }>;
1
+ declare const _default: import("vue").DefineComponent<{
2
+ text: {
3
+ type?: undefined;
4
+ default?: undefined;
5
+ } | {
6
+ type: any;
7
+ default: string | number | boolean | {
8
+ [key: string]: any;
9
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
10
+ };
11
+ color: {
12
+ type?: undefined;
13
+ default?: undefined;
14
+ } | {
15
+ type: any;
16
+ default: string | number | boolean | {
17
+ [key: string]: any;
18
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
19
+ };
20
+ fontSize: {
21
+ type?: undefined;
22
+ default?: undefined;
23
+ } | {
24
+ type: any;
25
+ default: string | number | boolean | {
26
+ [key: string]: any;
27
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
28
+ };
29
+ fontFamily: {
30
+ type?: undefined;
31
+ default?: undefined;
32
+ } | {
33
+ type: any;
34
+ default: string | number | boolean | {
35
+ [key: string]: any;
36
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
37
+ };
38
+ fontWeight: {
39
+ type?: undefined;
40
+ default?: undefined;
41
+ } | {
42
+ type: any;
43
+ default: string | number | boolean | {
44
+ [key: string]: any;
45
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
46
+ };
47
+ textAlign: {
48
+ type?: undefined;
49
+ default?: undefined;
50
+ } | {
51
+ type: any;
52
+ default: string | number | boolean | {
53
+ [key: string]: any;
54
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
55
+ };
56
+ overflow: {
57
+ type?: undefined;
58
+ default?: undefined;
59
+ } | {
60
+ type: any;
61
+ default: string | number | boolean | {
62
+ [key: string]: any;
63
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
64
+ };
65
+ textShadow: {
66
+ type?: undefined;
67
+ default?: undefined;
68
+ } | {
69
+ type: any;
70
+ default: string | number | boolean | {
71
+ [key: string]: any;
72
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
73
+ };
74
+ id: {
75
+ type?: undefined;
76
+ default?: undefined;
77
+ } | {
78
+ type: any;
79
+ default: string | number | boolean | {
80
+ [key: string]: any;
81
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
82
+ };
83
+ name: {
84
+ type?: undefined;
85
+ default?: undefined;
86
+ } | {
87
+ type: any;
88
+ default: string | number | boolean | {
89
+ [key: string]: any;
90
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
91
+ };
92
+ keyName: {
93
+ type?: undefined;
94
+ default?: undefined;
95
+ } | {
96
+ type: any;
97
+ default: string | number | boolean | {
98
+ [key: string]: any;
99
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
100
+ };
101
+ type: {
102
+ type?: undefined;
103
+ default?: undefined;
104
+ } | {
105
+ type: any;
106
+ default: string | number | boolean | {
107
+ [key: string]: any;
108
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
109
+ };
110
+ width: {
111
+ type?: undefined;
112
+ default?: undefined;
113
+ } | {
114
+ type: any;
115
+ default: string | number | boolean | {
116
+ [key: string]: any;
117
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
118
+ };
119
+ height: {
120
+ type?: undefined;
121
+ default?: undefined;
122
+ } | {
123
+ type: any;
124
+ default: string | number | boolean | {
125
+ [key: string]: any;
126
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
127
+ };
128
+ position: {
129
+ type?: undefined;
130
+ default?: undefined;
131
+ } | {
132
+ type: any;
133
+ default: string | number | boolean | {
134
+ [key: string]: any;
135
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
136
+ };
137
+ top: {
138
+ type?: undefined;
139
+ default?: undefined;
140
+ } | {
141
+ type: any;
142
+ default: string | number | boolean | {
143
+ [key: string]: any;
144
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
145
+ };
146
+ left: {
147
+ type?: undefined;
148
+ default?: undefined;
149
+ } | {
150
+ type: any;
151
+ default: string | number | boolean | {
152
+ [key: string]: any;
153
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
154
+ };
155
+ zIndex: {
156
+ type?: undefined;
157
+ default?: undefined;
158
+ } | {
159
+ type: any;
160
+ default: string | number | boolean | {
161
+ [key: string]: any;
162
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
163
+ };
164
+ rotate: {
165
+ type?: undefined;
166
+ default?: undefined;
167
+ } | {
168
+ type: any;
169
+ default: string | number | boolean | {
170
+ [key: string]: any;
171
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
172
+ };
173
+ isShow: {
174
+ type?: undefined;
175
+ default?: undefined;
176
+ } | {
177
+ type: any;
178
+ default: string | number | boolean | {
179
+ [key: string]: any;
180
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
181
+ };
182
+ isRender: {
183
+ type?: undefined;
184
+ default?: undefined;
185
+ } | {
186
+ type: any;
187
+ default: string | number | boolean | {
188
+ [key: string]: any;
189
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
190
+ };
191
+ isRequestData: {
192
+ type?: undefined;
193
+ default?: undefined;
194
+ } | {
195
+ type: any;
196
+ default: string | number | boolean | {
197
+ [key: string]: any;
198
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
199
+ };
200
+ requestUrl: {
201
+ type?: undefined;
202
+ default?: undefined;
203
+ } | {
204
+ type: any;
205
+ default: string | number | boolean | {
206
+ [key: string]: any;
207
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
208
+ };
209
+ requestMethod: {
210
+ type?: undefined;
211
+ default?: undefined;
212
+ } | {
213
+ type: any;
214
+ default: string | number | boolean | {
215
+ [key: string]: any;
216
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
217
+ };
218
+ requestHeaders: {
219
+ type?: undefined;
220
+ default?: undefined;
221
+ } | {
222
+ type: any;
223
+ default: string | number | boolean | {
224
+ [key: string]: any;
225
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
226
+ };
227
+ isOpenRequestTimer: {
228
+ type?: undefined;
229
+ default?: undefined;
230
+ } | {
231
+ type: any;
232
+ default: string | number | boolean | {
233
+ [key: string]: any;
234
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
235
+ };
236
+ requestInterval: {
237
+ type?: undefined;
238
+ default?: undefined;
239
+ } | {
240
+ type: any;
241
+ default: string | number | boolean | {
242
+ [key: string]: any;
243
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
244
+ };
245
+ requestParams: {
246
+ type?: undefined;
247
+ default?: undefined;
248
+ } | {
249
+ type: any;
250
+ default: string | number | boolean | {
251
+ [key: string]: any;
252
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
253
+ };
254
+ events: {
255
+ type?: undefined;
256
+ default?: undefined;
257
+ } | {
258
+ type: any;
259
+ default: string | number | boolean | {
260
+ [key: string]: any;
261
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
262
+ };
263
+ }, {
264
+ style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
265
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
266
+ text?: unknown;
267
+ color?: unknown;
268
+ fontSize?: unknown;
269
+ fontFamily?: unknown;
270
+ fontWeight?: unknown;
271
+ textAlign?: unknown;
272
+ overflow?: unknown;
273
+ textShadow?: unknown;
274
+ id?: unknown;
275
+ name?: unknown;
276
+ keyName?: unknown;
277
+ type?: unknown;
278
+ width?: unknown;
279
+ height?: unknown;
280
+ position?: unknown;
281
+ top?: unknown;
282
+ left?: unknown;
283
+ zIndex?: unknown;
284
+ rotate?: unknown;
285
+ isShow?: unknown;
286
+ isRender?: unknown;
287
+ isRequestData?: unknown;
288
+ requestUrl?: unknown;
289
+ requestMethod?: unknown;
290
+ requestHeaders?: unknown;
291
+ isOpenRequestTimer?: unknown;
292
+ requestInterval?: unknown;
293
+ requestParams?: unknown;
294
+ events?: unknown;
295
+ } & {} & {
296
+ type?: string | number | boolean | {
297
+ [key: string]: any;
298
+ };
299
+ text?: string | number | boolean | {
300
+ [key: string]: any;
301
+ };
302
+ color?: string | number | boolean | {
303
+ [key: string]: any;
304
+ };
305
+ fontSize?: string | number | boolean | {
306
+ [key: string]: any;
307
+ };
308
+ fontFamily?: string | number | boolean | {
309
+ [key: string]: any;
310
+ };
311
+ fontWeight?: string | number | boolean | {
312
+ [key: string]: any;
313
+ };
314
+ textAlign?: string | number | boolean | {
315
+ [key: string]: any;
316
+ };
317
+ overflow?: string | number | boolean | {
318
+ [key: string]: any;
319
+ };
320
+ textShadow?: string | number | boolean | {
321
+ [key: string]: any;
322
+ };
323
+ id?: string | number | boolean | {
324
+ [key: string]: any;
325
+ };
326
+ name?: string | number | boolean | {
327
+ [key: string]: any;
328
+ };
329
+ keyName?: string | number | boolean | {
330
+ [key: string]: any;
331
+ };
332
+ width?: string | number | boolean | {
333
+ [key: string]: any;
334
+ };
335
+ height?: string | number | boolean | {
336
+ [key: string]: any;
337
+ };
338
+ position?: string | number | boolean | {
339
+ [key: string]: any;
340
+ };
341
+ top?: string | number | boolean | {
342
+ [key: string]: any;
343
+ };
344
+ left?: string | number | boolean | {
345
+ [key: string]: any;
346
+ };
347
+ zIndex?: string | number | boolean | {
348
+ [key: string]: any;
349
+ };
350
+ rotate?: string | number | boolean | {
351
+ [key: string]: any;
352
+ };
353
+ isShow?: string | number | boolean | {
354
+ [key: string]: any;
355
+ };
356
+ isRender?: string | number | boolean | {
357
+ [key: string]: any;
358
+ };
359
+ isRequestData?: string | number | boolean | {
360
+ [key: string]: any;
361
+ };
362
+ requestUrl?: string | number | boolean | {
363
+ [key: string]: any;
364
+ };
365
+ requestMethod?: string | number | boolean | {
366
+ [key: string]: any;
367
+ };
368
+ requestHeaders?: string | number | boolean | {
369
+ [key: string]: any;
370
+ };
371
+ isOpenRequestTimer?: string | number | boolean | {
372
+ [key: string]: any;
373
+ };
374
+ requestInterval?: string | number | boolean | {
375
+ [key: string]: any;
376
+ };
377
+ requestParams?: string | number | boolean | {
378
+ [key: string]: any;
379
+ };
380
+ events?: string | number | boolean | {
381
+ [key: string]: any;
382
+ };
383
+ }>, {}>;
6
384
  export default _default;
@@ -1,3 +1,3 @@
1
- export * from './props';
2
1
  export declare const EcanText: import("../../_utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{}, {}, any, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>> & Record<string, any>;
3
2
  export default EcanText;
3
+ export * from './props';
@@ -7,6 +7,269 @@ export interface TextProps extends Props {
7
7
  fontWeight: number;
8
8
  textAlign: string;
9
9
  overflow: string;
10
+ textShadow: string;
10
11
  }
11
12
  export declare const textProps: TextProps;
12
- export declare const textComponentProps: any;
13
+ export declare const textComponentProps: {
14
+ text: {
15
+ type?: undefined;
16
+ default?: undefined;
17
+ } | {
18
+ type: any;
19
+ default: string | number | boolean | {
20
+ [key: string]: any;
21
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
22
+ };
23
+ color: {
24
+ type?: undefined;
25
+ default?: undefined;
26
+ } | {
27
+ type: any;
28
+ default: string | number | boolean | {
29
+ [key: string]: any;
30
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
31
+ };
32
+ fontSize: {
33
+ type?: undefined;
34
+ default?: undefined;
35
+ } | {
36
+ type: any;
37
+ default: string | number | boolean | {
38
+ [key: string]: any;
39
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
40
+ };
41
+ fontFamily: {
42
+ type?: undefined;
43
+ default?: undefined;
44
+ } | {
45
+ type: any;
46
+ default: string | number | boolean | {
47
+ [key: string]: any;
48
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
49
+ };
50
+ fontWeight: {
51
+ type?: undefined;
52
+ default?: undefined;
53
+ } | {
54
+ type: any;
55
+ default: string | number | boolean | {
56
+ [key: string]: any;
57
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
58
+ };
59
+ textAlign: {
60
+ type?: undefined;
61
+ default?: undefined;
62
+ } | {
63
+ type: any;
64
+ default: string | number | boolean | {
65
+ [key: string]: any;
66
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
67
+ };
68
+ overflow: {
69
+ type?: undefined;
70
+ default?: undefined;
71
+ } | {
72
+ type: any;
73
+ default: string | number | boolean | {
74
+ [key: string]: any;
75
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
76
+ };
77
+ textShadow: {
78
+ type?: undefined;
79
+ default?: undefined;
80
+ } | {
81
+ type: any;
82
+ default: string | number | boolean | {
83
+ [key: string]: any;
84
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
85
+ };
86
+ id: {
87
+ type?: undefined;
88
+ default?: undefined;
89
+ } | {
90
+ type: any;
91
+ default: string | number | boolean | {
92
+ [key: string]: any;
93
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
94
+ };
95
+ name: {
96
+ type?: undefined;
97
+ default?: undefined;
98
+ } | {
99
+ type: any;
100
+ default: string | number | boolean | {
101
+ [key: string]: any;
102
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
103
+ };
104
+ keyName: {
105
+ type?: undefined;
106
+ default?: undefined;
107
+ } | {
108
+ type: any;
109
+ default: string | number | boolean | {
110
+ [key: string]: any;
111
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
112
+ };
113
+ type: {
114
+ type?: undefined;
115
+ default?: undefined;
116
+ } | {
117
+ type: any;
118
+ default: string | number | boolean | {
119
+ [key: string]: any;
120
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
121
+ };
122
+ width: {
123
+ type?: undefined;
124
+ default?: undefined;
125
+ } | {
126
+ type: any;
127
+ default: string | number | boolean | {
128
+ [key: string]: any;
129
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
130
+ };
131
+ height: {
132
+ type?: undefined;
133
+ default?: undefined;
134
+ } | {
135
+ type: any;
136
+ default: string | number | boolean | {
137
+ [key: string]: any;
138
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
139
+ };
140
+ position: {
141
+ type?: undefined;
142
+ default?: undefined;
143
+ } | {
144
+ type: any;
145
+ default: string | number | boolean | {
146
+ [key: string]: any;
147
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
148
+ };
149
+ top: {
150
+ type?: undefined;
151
+ default?: undefined;
152
+ } | {
153
+ type: any;
154
+ default: string | number | boolean | {
155
+ [key: string]: any;
156
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
157
+ };
158
+ left: {
159
+ type?: undefined;
160
+ default?: undefined;
161
+ } | {
162
+ type: any;
163
+ default: string | number | boolean | {
164
+ [key: string]: any;
165
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
166
+ };
167
+ zIndex: {
168
+ type?: undefined;
169
+ default?: undefined;
170
+ } | {
171
+ type: any;
172
+ default: string | number | boolean | {
173
+ [key: string]: any;
174
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
175
+ };
176
+ rotate: {
177
+ type?: undefined;
178
+ default?: undefined;
179
+ } | {
180
+ type: any;
181
+ default: string | number | boolean | {
182
+ [key: string]: any;
183
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
184
+ };
185
+ isShow: {
186
+ type?: undefined;
187
+ default?: undefined;
188
+ } | {
189
+ type: any;
190
+ default: string | number | boolean | {
191
+ [key: string]: any;
192
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
193
+ };
194
+ isRender: {
195
+ type?: undefined;
196
+ default?: undefined;
197
+ } | {
198
+ type: any;
199
+ default: string | number | boolean | {
200
+ [key: string]: any;
201
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
202
+ };
203
+ isRequestData: {
204
+ type?: undefined;
205
+ default?: undefined;
206
+ } | {
207
+ type: any;
208
+ default: string | number | boolean | {
209
+ [key: string]: any;
210
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
211
+ };
212
+ requestUrl: {
213
+ type?: undefined;
214
+ default?: undefined;
215
+ } | {
216
+ type: any;
217
+ default: string | number | boolean | {
218
+ [key: string]: any;
219
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
220
+ };
221
+ requestMethod: {
222
+ type?: undefined;
223
+ default?: undefined;
224
+ } | {
225
+ type: any;
226
+ default: string | number | boolean | {
227
+ [key: string]: any;
228
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
229
+ };
230
+ requestHeaders: {
231
+ type?: undefined;
232
+ default?: undefined;
233
+ } | {
234
+ type: any;
235
+ default: string | number | boolean | {
236
+ [key: string]: any;
237
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
238
+ };
239
+ isOpenRequestTimer: {
240
+ type?: undefined;
241
+ default?: undefined;
242
+ } | {
243
+ type: any;
244
+ default: string | number | boolean | {
245
+ [key: string]: any;
246
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
247
+ };
248
+ requestInterval: {
249
+ type?: undefined;
250
+ default?: undefined;
251
+ } | {
252
+ type: any;
253
+ default: string | number | boolean | {
254
+ [key: string]: any;
255
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
256
+ };
257
+ requestParams: {
258
+ type?: undefined;
259
+ default?: undefined;
260
+ } | {
261
+ type: any;
262
+ default: string | number | boolean | {
263
+ [key: string]: any;
264
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
265
+ };
266
+ events: {
267
+ type?: undefined;
268
+ default?: undefined;
269
+ } | {
270
+ type: any;
271
+ default: string | number | boolean | {
272
+ [key: string]: any;
273
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
274
+ };
275
+ };