@ecan-bi/datav 1.0.6 → 1.0.9
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/README.dev.md +16 -0
- package/dist/_utils/constant.d.ts +3 -0
- package/dist/_utils/hooks/index.d.ts +6 -0
- package/dist/_utils/hooks/useEmitEvent.d.ts +7 -0
- package/dist/_utils/hooks/useOnEvent.d.ts +6 -0
- package/dist/_utils/{hooks.d.ts → hooks/usePickComponentStyle.d.ts} +3 -3
- package/dist/_utils/hooks/usePickEchartsData.d.ts +2 -0
- package/dist/_utils/hooks/useRequestData.d.ts +14 -0
- package/dist/_utils/hooks/useRequestParams.d.ts +5 -0
- package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +8 -0
- package/dist/_utils/props.d.ts +43 -2
- package/dist/_utils/request.d.ts +2 -0
- package/dist/_utils/util.d.ts +5 -0
- package/dist/common/{vue-echarts/VueEcharts.d.ts → echarts/ECharts.d.ts} +0 -0
- package/dist/common/{vue-echarts → echarts}/composables/api.d.ts +0 -0
- package/dist/common/{vue-echarts → echarts}/composables/autoresize.d.ts +0 -0
- package/dist/common/{vue-echarts → echarts}/composables/index.d.ts +0 -0
- package/dist/common/{vue-echarts → echarts}/composables/loading.d.ts +0 -0
- package/dist/common/echarts/index.d.ts +2 -0
- package/dist/common/{vue-echarts → echarts}/types.d.ts +0 -0
- package/dist/common/{vue-echarts → echarts}/utils.d.ts +0 -0
- package/dist/common/index.d.ts +1 -0
- package/dist/components.d.ts +4 -0
- package/dist/container/border/index.d.ts +3 -0
- package/dist/container/border/props.d.ts +235 -0
- package/dist/container/index.d.ts +2 -0
- package/dist/container/modal/Modal.vue.d.ts +364 -0
- package/dist/container/modal/index.d.ts +3 -0
- package/dist/container/modal/props.d.ts +138 -0
- package/dist/control/button/Button.vue.d.ts +283 -0
- package/dist/control/button/index.d.ts +3 -0
- package/dist/control/button/props.d.ts +196 -0
- package/dist/control/date-picker/DatePicker.vue.d.ts +397 -0
- package/dist/control/date-picker/index.d.ts +3 -0
- package/dist/control/date-picker/props.d.ts +236 -0
- package/dist/control/index.d.ts +4 -0
- package/dist/control/input/Input.vue.d.ts +306 -3
- package/dist/control/input/index.d.ts +1 -0
- package/dist/control/input/props.d.ts +215 -0
- package/dist/control/range-picker/RangePicker.vue.d.ts +296 -0
- package/dist/control/range-picker/index.d.ts +3 -0
- package/dist/control/range-picker/props.d.ts +205 -0
- package/dist/control/select/Select.vue.d.ts +308 -0
- package/dist/control/select/index.d.ts +3 -0
- package/dist/control/select/props.d.ts +223 -0
- package/dist/graph/bar/Bar.vue.d.ts +617 -0
- package/dist/graph/bar/index.d.ts +3 -0
- package/dist/graph/bar/props.d.ts +382 -0
- package/dist/graph/custom-graph/CustomGraph.vue.d.ts +355 -0
- package/dist/graph/custom-graph/index.d.ts +3 -0
- package/dist/graph/custom-graph/props.d.ts +263 -0
- package/dist/graph/index.d.ts +4 -0
- package/dist/graph/line/Line.vue.d.ts +655 -0
- package/dist/graph/line/index.d.ts +3 -0
- package/dist/graph/line/props.d.ts +405 -0
- package/dist/graph/pie/Pie.vue.d.ts +732 -18
- package/dist/graph/pie/index.d.ts +2 -306
- package/dist/graph/pie/props.d.ts +480 -6
- package/dist/graph/scatter/Scatter.vue.d.ts +655 -0
- package/dist/graph/scatter/index.d.ts +3 -0
- package/dist/graph/scatter/props.d.ts +405 -0
- package/dist/index.esm.js +2 -2
- package/dist/index.umd.js +2 -2
- package/dist/media/image/Image.vue.d.ts +293 -0
- package/dist/media/image/index.d.ts +3 -0
- package/dist/media/image/props.d.ts +205 -0
- package/dist/media/index.d.ts +1 -0
- package/dist/setting/index.d.ts +2 -1
- package/dist/setting/page-config/PageConfig.vue.d.ts +78 -0
- package/dist/setting/page-config/index.d.ts +3 -0
- package/dist/setting/page-config/props.d.ts +61 -0
- package/dist/setting/provider-config/ProviderConfig.vue.d.ts +34 -0
- package/dist/setting/{page-cofig → provider-config}/index.d.ts +2 -2
- package/dist/setting/provider-config/props.d.ts +29 -0
- package/dist/table/index.d.ts +1 -0
- package/dist/table/table/Table.vue.d.ts +495 -0
- package/dist/table/table/index.d.ts +3 -0
- package/dist/table/table/props.d.ts +382 -0
- package/dist/text/text/Text.vue.d.ts +383 -5
- package/dist/text/text/index.d.ts +1 -1
- package/dist/text/text/props.d.ts +264 -1
- package/package.json +15 -13
- package/dist/common/vue-echarts/index.d.ts +0 -2
- package/dist/setting/page-cofig/PageConfig.vue.d.ts +0 -13
- package/dist/setting/page-cofig/props.d.ts +0 -8
|
@@ -1,11 +1,485 @@
|
|
|
1
|
-
import { Props } from '../../_utils/props';
|
|
1
|
+
import { Props, Data } from '../../_utils/props';
|
|
2
2
|
export interface PieProps extends Props {
|
|
3
|
-
data:
|
|
3
|
+
data: Data;
|
|
4
4
|
titleText: string;
|
|
5
|
+
titleSubtext: string;
|
|
5
6
|
titleLeft: string;
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
colors: string[];
|
|
8
|
+
backgroundColor: string;
|
|
9
|
+
tooltipShow: boolean;
|
|
10
|
+
tooltipTrigger: 'item' | 'axis' | 'none';
|
|
11
|
+
tooltipTextStyleColor: string;
|
|
12
|
+
tooltipFormatter: string;
|
|
13
|
+
legendShow: boolean;
|
|
14
|
+
legendLeft: 'left' | 'center' | 'right';
|
|
15
|
+
legendTop: 'top' | 'middle' | 'bottom';
|
|
16
|
+
legendOrient: 'vertical' | 'horizontal';
|
|
17
|
+
legendTextStyleColor: string;
|
|
18
|
+
innerRadius: string;
|
|
19
|
+
outerRadius: string;
|
|
20
|
+
centerLeft: string;
|
|
21
|
+
centerTop: string;
|
|
22
|
+
labelShow: boolean;
|
|
23
|
+
labelFormatter: string;
|
|
24
|
+
labelFontSize: number;
|
|
25
|
+
labelPosition: 'outside' | 'inside' | 'center';
|
|
26
|
+
labelLineShow: boolean;
|
|
27
|
+
labelColor: string;
|
|
28
|
+
isUseLabelColors: boolean;
|
|
29
|
+
labelLineLength: number;
|
|
30
|
+
labelLineLength2: number;
|
|
31
|
+
roseType: '' | 'radius' | 'area';
|
|
9
32
|
}
|
|
10
33
|
export declare const pieProps: PieProps;
|
|
11
|
-
export declare const pieComponentProps:
|
|
34
|
+
export declare const pieComponentProps: {
|
|
35
|
+
data: {
|
|
36
|
+
type?: undefined;
|
|
37
|
+
default?: undefined;
|
|
38
|
+
} | {
|
|
39
|
+
type: any;
|
|
40
|
+
default: string | number | boolean | Data | string[] | {
|
|
41
|
+
[key: string]: any;
|
|
42
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
43
|
+
};
|
|
44
|
+
titleText: {
|
|
45
|
+
type?: undefined;
|
|
46
|
+
default?: undefined;
|
|
47
|
+
} | {
|
|
48
|
+
type: any;
|
|
49
|
+
default: string | number | boolean | Data | string[] | {
|
|
50
|
+
[key: string]: any;
|
|
51
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
52
|
+
};
|
|
53
|
+
titleSubtext: {
|
|
54
|
+
type?: undefined;
|
|
55
|
+
default?: undefined;
|
|
56
|
+
} | {
|
|
57
|
+
type: any;
|
|
58
|
+
default: string | number | boolean | Data | string[] | {
|
|
59
|
+
[key: string]: any;
|
|
60
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
61
|
+
};
|
|
62
|
+
titleLeft: {
|
|
63
|
+
type?: undefined;
|
|
64
|
+
default?: undefined;
|
|
65
|
+
} | {
|
|
66
|
+
type: any;
|
|
67
|
+
default: string | number | boolean | Data | string[] | {
|
|
68
|
+
[key: string]: any;
|
|
69
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
70
|
+
};
|
|
71
|
+
colors: {
|
|
72
|
+
type?: undefined;
|
|
73
|
+
default?: undefined;
|
|
74
|
+
} | {
|
|
75
|
+
type: any;
|
|
76
|
+
default: string | number | boolean | Data | string[] | {
|
|
77
|
+
[key: string]: any;
|
|
78
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
79
|
+
};
|
|
80
|
+
backgroundColor: {
|
|
81
|
+
type?: undefined;
|
|
82
|
+
default?: undefined;
|
|
83
|
+
} | {
|
|
84
|
+
type: any;
|
|
85
|
+
default: string | number | boolean | Data | string[] | {
|
|
86
|
+
[key: string]: any;
|
|
87
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
88
|
+
};
|
|
89
|
+
tooltipShow: {
|
|
90
|
+
type?: undefined;
|
|
91
|
+
default?: undefined;
|
|
92
|
+
} | {
|
|
93
|
+
type: any;
|
|
94
|
+
default: string | number | boolean | Data | string[] | {
|
|
95
|
+
[key: string]: any;
|
|
96
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
97
|
+
};
|
|
98
|
+
tooltipTrigger: {
|
|
99
|
+
type?: undefined;
|
|
100
|
+
default?: undefined;
|
|
101
|
+
} | {
|
|
102
|
+
type: any;
|
|
103
|
+
default: string | number | boolean | Data | string[] | {
|
|
104
|
+
[key: string]: any;
|
|
105
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
106
|
+
};
|
|
107
|
+
tooltipTextStyleColor: {
|
|
108
|
+
type?: undefined;
|
|
109
|
+
default?: undefined;
|
|
110
|
+
} | {
|
|
111
|
+
type: any;
|
|
112
|
+
default: string | number | boolean | Data | string[] | {
|
|
113
|
+
[key: string]: any;
|
|
114
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
115
|
+
};
|
|
116
|
+
tooltipFormatter: {
|
|
117
|
+
type?: undefined;
|
|
118
|
+
default?: undefined;
|
|
119
|
+
} | {
|
|
120
|
+
type: any;
|
|
121
|
+
default: string | number | boolean | Data | string[] | {
|
|
122
|
+
[key: string]: any;
|
|
123
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
124
|
+
};
|
|
125
|
+
legendShow: {
|
|
126
|
+
type?: undefined;
|
|
127
|
+
default?: undefined;
|
|
128
|
+
} | {
|
|
129
|
+
type: any;
|
|
130
|
+
default: string | number | boolean | Data | string[] | {
|
|
131
|
+
[key: string]: any;
|
|
132
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
133
|
+
};
|
|
134
|
+
legendLeft: {
|
|
135
|
+
type?: undefined;
|
|
136
|
+
default?: undefined;
|
|
137
|
+
} | {
|
|
138
|
+
type: any;
|
|
139
|
+
default: string | number | boolean | Data | string[] | {
|
|
140
|
+
[key: string]: any;
|
|
141
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
142
|
+
};
|
|
143
|
+
legendTop: {
|
|
144
|
+
type?: undefined;
|
|
145
|
+
default?: undefined;
|
|
146
|
+
} | {
|
|
147
|
+
type: any;
|
|
148
|
+
default: string | number | boolean | Data | string[] | {
|
|
149
|
+
[key: string]: any;
|
|
150
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
151
|
+
};
|
|
152
|
+
legendOrient: {
|
|
153
|
+
type?: undefined;
|
|
154
|
+
default?: undefined;
|
|
155
|
+
} | {
|
|
156
|
+
type: any;
|
|
157
|
+
default: string | number | boolean | Data | string[] | {
|
|
158
|
+
[key: string]: any;
|
|
159
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
160
|
+
};
|
|
161
|
+
legendTextStyleColor: {
|
|
162
|
+
type?: undefined;
|
|
163
|
+
default?: undefined;
|
|
164
|
+
} | {
|
|
165
|
+
type: any;
|
|
166
|
+
default: string | number | boolean | Data | string[] | {
|
|
167
|
+
[key: string]: any;
|
|
168
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
169
|
+
};
|
|
170
|
+
innerRadius: {
|
|
171
|
+
type?: undefined;
|
|
172
|
+
default?: undefined;
|
|
173
|
+
} | {
|
|
174
|
+
type: any;
|
|
175
|
+
default: string | number | boolean | Data | string[] | {
|
|
176
|
+
[key: string]: any;
|
|
177
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
178
|
+
};
|
|
179
|
+
outerRadius: {
|
|
180
|
+
type?: undefined;
|
|
181
|
+
default?: undefined;
|
|
182
|
+
} | {
|
|
183
|
+
type: any;
|
|
184
|
+
default: string | number | boolean | Data | string[] | {
|
|
185
|
+
[key: string]: any;
|
|
186
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
187
|
+
};
|
|
188
|
+
centerLeft: {
|
|
189
|
+
type?: undefined;
|
|
190
|
+
default?: undefined;
|
|
191
|
+
} | {
|
|
192
|
+
type: any;
|
|
193
|
+
default: string | number | boolean | Data | string[] | {
|
|
194
|
+
[key: string]: any;
|
|
195
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
196
|
+
};
|
|
197
|
+
centerTop: {
|
|
198
|
+
type?: undefined;
|
|
199
|
+
default?: undefined;
|
|
200
|
+
} | {
|
|
201
|
+
type: any;
|
|
202
|
+
default: string | number | boolean | Data | string[] | {
|
|
203
|
+
[key: string]: any;
|
|
204
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
205
|
+
};
|
|
206
|
+
labelShow: {
|
|
207
|
+
type?: undefined;
|
|
208
|
+
default?: undefined;
|
|
209
|
+
} | {
|
|
210
|
+
type: any;
|
|
211
|
+
default: string | number | boolean | Data | string[] | {
|
|
212
|
+
[key: string]: any;
|
|
213
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
214
|
+
};
|
|
215
|
+
labelFormatter: {
|
|
216
|
+
type?: undefined;
|
|
217
|
+
default?: undefined;
|
|
218
|
+
} | {
|
|
219
|
+
type: any;
|
|
220
|
+
default: string | number | boolean | Data | string[] | {
|
|
221
|
+
[key: string]: any;
|
|
222
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
223
|
+
};
|
|
224
|
+
labelFontSize: {
|
|
225
|
+
type?: undefined;
|
|
226
|
+
default?: undefined;
|
|
227
|
+
} | {
|
|
228
|
+
type: any;
|
|
229
|
+
default: string | number | boolean | Data | string[] | {
|
|
230
|
+
[key: string]: any;
|
|
231
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
232
|
+
};
|
|
233
|
+
labelPosition: {
|
|
234
|
+
type?: undefined;
|
|
235
|
+
default?: undefined;
|
|
236
|
+
} | {
|
|
237
|
+
type: any;
|
|
238
|
+
default: string | number | boolean | Data | string[] | {
|
|
239
|
+
[key: string]: any;
|
|
240
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
241
|
+
};
|
|
242
|
+
labelLineShow: {
|
|
243
|
+
type?: undefined;
|
|
244
|
+
default?: undefined;
|
|
245
|
+
} | {
|
|
246
|
+
type: any;
|
|
247
|
+
default: string | number | boolean | Data | string[] | {
|
|
248
|
+
[key: string]: any;
|
|
249
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
250
|
+
};
|
|
251
|
+
labelColor: {
|
|
252
|
+
type?: undefined;
|
|
253
|
+
default?: undefined;
|
|
254
|
+
} | {
|
|
255
|
+
type: any;
|
|
256
|
+
default: string | number | boolean | Data | string[] | {
|
|
257
|
+
[key: string]: any;
|
|
258
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
259
|
+
};
|
|
260
|
+
isUseLabelColors: {
|
|
261
|
+
type?: undefined;
|
|
262
|
+
default?: undefined;
|
|
263
|
+
} | {
|
|
264
|
+
type: any;
|
|
265
|
+
default: string | number | boolean | Data | string[] | {
|
|
266
|
+
[key: string]: any;
|
|
267
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
268
|
+
};
|
|
269
|
+
labelLineLength: {
|
|
270
|
+
type?: undefined;
|
|
271
|
+
default?: undefined;
|
|
272
|
+
} | {
|
|
273
|
+
type: any;
|
|
274
|
+
default: string | number | boolean | Data | string[] | {
|
|
275
|
+
[key: string]: any;
|
|
276
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
277
|
+
};
|
|
278
|
+
labelLineLength2: {
|
|
279
|
+
type?: undefined;
|
|
280
|
+
default?: undefined;
|
|
281
|
+
} | {
|
|
282
|
+
type: any;
|
|
283
|
+
default: string | number | boolean | Data | string[] | {
|
|
284
|
+
[key: string]: any;
|
|
285
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
286
|
+
};
|
|
287
|
+
roseType: {
|
|
288
|
+
type?: undefined;
|
|
289
|
+
default?: undefined;
|
|
290
|
+
} | {
|
|
291
|
+
type: any;
|
|
292
|
+
default: string | number | boolean | Data | string[] | {
|
|
293
|
+
[key: string]: any;
|
|
294
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
295
|
+
};
|
|
296
|
+
id: {
|
|
297
|
+
type?: undefined;
|
|
298
|
+
default?: undefined;
|
|
299
|
+
} | {
|
|
300
|
+
type: any;
|
|
301
|
+
default: string | number | boolean | Data | string[] | {
|
|
302
|
+
[key: string]: any;
|
|
303
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
304
|
+
};
|
|
305
|
+
name: {
|
|
306
|
+
type?: undefined;
|
|
307
|
+
default?: undefined;
|
|
308
|
+
} | {
|
|
309
|
+
type: any;
|
|
310
|
+
default: string | number | boolean | Data | string[] | {
|
|
311
|
+
[key: string]: any;
|
|
312
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
313
|
+
};
|
|
314
|
+
keyName: {
|
|
315
|
+
type?: undefined;
|
|
316
|
+
default?: undefined;
|
|
317
|
+
} | {
|
|
318
|
+
type: any;
|
|
319
|
+
default: string | number | boolean | Data | string[] | {
|
|
320
|
+
[key: string]: any;
|
|
321
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
322
|
+
};
|
|
323
|
+
type: {
|
|
324
|
+
type?: undefined;
|
|
325
|
+
default?: undefined;
|
|
326
|
+
} | {
|
|
327
|
+
type: any;
|
|
328
|
+
default: string | number | boolean | Data | string[] | {
|
|
329
|
+
[key: string]: any;
|
|
330
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
331
|
+
};
|
|
332
|
+
width: {
|
|
333
|
+
type?: undefined;
|
|
334
|
+
default?: undefined;
|
|
335
|
+
} | {
|
|
336
|
+
type: any;
|
|
337
|
+
default: string | number | boolean | Data | string[] | {
|
|
338
|
+
[key: string]: any;
|
|
339
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
340
|
+
};
|
|
341
|
+
height: {
|
|
342
|
+
type?: undefined;
|
|
343
|
+
default?: undefined;
|
|
344
|
+
} | {
|
|
345
|
+
type: any;
|
|
346
|
+
default: string | number | boolean | Data | string[] | {
|
|
347
|
+
[key: string]: any;
|
|
348
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
349
|
+
};
|
|
350
|
+
position: {
|
|
351
|
+
type?: undefined;
|
|
352
|
+
default?: undefined;
|
|
353
|
+
} | {
|
|
354
|
+
type: any;
|
|
355
|
+
default: string | number | boolean | Data | string[] | {
|
|
356
|
+
[key: string]: any;
|
|
357
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
358
|
+
};
|
|
359
|
+
top: {
|
|
360
|
+
type?: undefined;
|
|
361
|
+
default?: undefined;
|
|
362
|
+
} | {
|
|
363
|
+
type: any;
|
|
364
|
+
default: string | number | boolean | Data | string[] | {
|
|
365
|
+
[key: string]: any;
|
|
366
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
367
|
+
};
|
|
368
|
+
left: {
|
|
369
|
+
type?: undefined;
|
|
370
|
+
default?: undefined;
|
|
371
|
+
} | {
|
|
372
|
+
type: any;
|
|
373
|
+
default: string | number | boolean | Data | string[] | {
|
|
374
|
+
[key: string]: any;
|
|
375
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
376
|
+
};
|
|
377
|
+
zIndex: {
|
|
378
|
+
type?: undefined;
|
|
379
|
+
default?: undefined;
|
|
380
|
+
} | {
|
|
381
|
+
type: any;
|
|
382
|
+
default: string | number | boolean | Data | string[] | {
|
|
383
|
+
[key: string]: any;
|
|
384
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
385
|
+
};
|
|
386
|
+
rotate: {
|
|
387
|
+
type?: undefined;
|
|
388
|
+
default?: undefined;
|
|
389
|
+
} | {
|
|
390
|
+
type: any;
|
|
391
|
+
default: string | number | boolean | Data | string[] | {
|
|
392
|
+
[key: string]: any;
|
|
393
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
394
|
+
};
|
|
395
|
+
isShow: {
|
|
396
|
+
type?: undefined;
|
|
397
|
+
default?: undefined;
|
|
398
|
+
} | {
|
|
399
|
+
type: any;
|
|
400
|
+
default: string | number | boolean | Data | string[] | {
|
|
401
|
+
[key: string]: any;
|
|
402
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
403
|
+
};
|
|
404
|
+
isRender: {
|
|
405
|
+
type?: undefined;
|
|
406
|
+
default?: undefined;
|
|
407
|
+
} | {
|
|
408
|
+
type: any;
|
|
409
|
+
default: string | number | boolean | Data | string[] | {
|
|
410
|
+
[key: string]: any;
|
|
411
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
412
|
+
};
|
|
413
|
+
isRequestData: {
|
|
414
|
+
type?: undefined;
|
|
415
|
+
default?: undefined;
|
|
416
|
+
} | {
|
|
417
|
+
type: any;
|
|
418
|
+
default: string | number | boolean | Data | string[] | {
|
|
419
|
+
[key: string]: any;
|
|
420
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
421
|
+
};
|
|
422
|
+
requestUrl: {
|
|
423
|
+
type?: undefined;
|
|
424
|
+
default?: undefined;
|
|
425
|
+
} | {
|
|
426
|
+
type: any;
|
|
427
|
+
default: string | number | boolean | Data | string[] | {
|
|
428
|
+
[key: string]: any;
|
|
429
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
430
|
+
};
|
|
431
|
+
requestMethod: {
|
|
432
|
+
type?: undefined;
|
|
433
|
+
default?: undefined;
|
|
434
|
+
} | {
|
|
435
|
+
type: any;
|
|
436
|
+
default: string | number | boolean | Data | string[] | {
|
|
437
|
+
[key: string]: any;
|
|
438
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
439
|
+
};
|
|
440
|
+
requestHeaders: {
|
|
441
|
+
type?: undefined;
|
|
442
|
+
default?: undefined;
|
|
443
|
+
} | {
|
|
444
|
+
type: any;
|
|
445
|
+
default: string | number | boolean | Data | string[] | {
|
|
446
|
+
[key: string]: any;
|
|
447
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
448
|
+
};
|
|
449
|
+
isOpenRequestTimer: {
|
|
450
|
+
type?: undefined;
|
|
451
|
+
default?: undefined;
|
|
452
|
+
} | {
|
|
453
|
+
type: any;
|
|
454
|
+
default: string | number | boolean | Data | string[] | {
|
|
455
|
+
[key: string]: any;
|
|
456
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
457
|
+
};
|
|
458
|
+
requestInterval: {
|
|
459
|
+
type?: undefined;
|
|
460
|
+
default?: undefined;
|
|
461
|
+
} | {
|
|
462
|
+
type: any;
|
|
463
|
+
default: string | number | boolean | Data | string[] | {
|
|
464
|
+
[key: string]: any;
|
|
465
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
466
|
+
};
|
|
467
|
+
requestParams: {
|
|
468
|
+
type?: undefined;
|
|
469
|
+
default?: undefined;
|
|
470
|
+
} | {
|
|
471
|
+
type: any;
|
|
472
|
+
default: string | number | boolean | Data | string[] | {
|
|
473
|
+
[key: string]: any;
|
|
474
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
475
|
+
};
|
|
476
|
+
events: {
|
|
477
|
+
type?: undefined;
|
|
478
|
+
default?: undefined;
|
|
479
|
+
} | {
|
|
480
|
+
type: any;
|
|
481
|
+
default: string | number | boolean | Data | string[] | {
|
|
482
|
+
[key: string]: any;
|
|
483
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
484
|
+
};
|
|
485
|
+
};
|