@ecan-bi/datav 1.0.15 → 1.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_utils/constant.d.ts +1 -1
- package/dist/_utils/hooks/index.d.ts +1 -1
- package/dist/_utils/hooks/usePickEchartsData.d.ts +1 -1
- package/dist/_utils/hooks/useRequestData.d.ts +5 -13
- package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +12 -3
- package/dist/_utils/props.d.ts +1 -1
- package/dist/_utils/util.d.ts +14 -0
- package/dist/common/echarts/ECharts.d.ts +1 -0
- package/dist/container/border/props.d.ts +67 -57
- package/dist/container/index.d.ts +1 -0
- package/dist/container/modal/Modal.vue.d.ts +47 -31
- package/dist/container/modal/props.d.ts +29 -18
- package/dist/container/tabs/Tabs.vue.d.ts +271 -0
- package/dist/container/tabs/index.d.ts +3 -0
- package/dist/container/tabs/props.d.ts +219 -0
- package/dist/control/button/Button.vue.d.ts +53 -53
- package/dist/control/button/props.d.ts +49 -49
- package/dist/control/date-picker/DatePicker.vue.d.ts +61 -61
- package/dist/control/date-picker/props.d.ts +7 -7
- package/dist/control/input/Input.vue.d.ts +59 -59
- package/dist/control/input/props.d.ts +53 -53
- package/dist/control/range-picker/RangePicker.vue.d.ts +55 -55
- package/dist/control/range-picker/props.d.ts +51 -51
- package/dist/control/select/Select.vue.d.ts +65 -61
- package/dist/control/select/props.d.ts +53 -53
- package/dist/graph/bar/Bar.vue.d.ts +304 -57
- package/dist/graph/bar/props.d.ts +277 -49
- package/dist/graph/combo-graph/ComboGraph.vue.d.ts +880 -0
- package/dist/graph/combo-graph/index.d.ts +3 -0
- package/dist/graph/combo-graph/props.d.ts +619 -0
- package/dist/graph/custom-graph/CustomGraph.vue.d.ts +57 -57
- package/dist/graph/custom-graph/props.d.ts +53 -53
- package/dist/graph/index.d.ts +1 -0
- package/dist/graph/line/Line.vue.d.ts +286 -109
- package/dist/graph/line/props.d.ts +235 -49
- package/dist/graph/pie/Pie.vue.d.ts +332 -114
- package/dist/graph/pie/props.d.ts +279 -57
- package/dist/graph/scatter/Scatter.vue.d.ts +157 -209
- package/dist/graph/scatter/props.d.ts +148 -123
- package/dist/index.esm.js +3 -2
- package/dist/index.umd.js +3 -2
- package/dist/media/image/Image.vue.d.ts +55 -55
- package/dist/media/image/props.d.ts +51 -51
- package/dist/table/table/Table.vue.d.ts +208 -67
- package/dist/table/table/props.d.ts +160 -62
- package/dist/text/index.d.ts +2 -0
- package/dist/text/list/List.vue.d.ts +471 -0
- package/dist/text/list/index.d.ts +3 -0
- package/dist/text/list/props.d.ts +367 -0
- package/dist/text/text/Text.vue.d.ts +132 -43
- package/dist/text/text/props.d.ts +122 -38
- package/dist/text/time-display/TimeDisplay.vue.d.ts +385 -0
- package/dist/text/time-display/index.d.ts +3 -0
- package/dist/text/time-display/props.d.ts +275 -0
- package/package.json +2 -1
- package/dist/_utils/hooks/useRequestParams.d.ts +0 -5
- package/dist/_utils/request.d.ts +0 -2
|
@@ -12,15 +12,10 @@ export interface ScatterProps extends Props {
|
|
|
12
12
|
legendTop: 'top' | 'middle' | 'bottom';
|
|
13
13
|
legendOrient: 'vertical' | 'horizontal';
|
|
14
14
|
symbolSize: number;
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
yAxisSplitLineShow: boolean;
|
|
20
|
-
xAxisSplitLineStyleColor: string;
|
|
21
|
-
yAxisSplitLineStyleColor: string;
|
|
22
|
-
yAxisLabelColor: string;
|
|
23
|
-
yAxisLineStyleColor: string;
|
|
15
|
+
dataFieldNames: {
|
|
16
|
+
name: string;
|
|
17
|
+
value: string;
|
|
18
|
+
};
|
|
24
19
|
}
|
|
25
20
|
export declare const scatterProps: ScatterProps;
|
|
26
21
|
export declare const scatterComponentProps: {
|
|
@@ -30,8 +25,11 @@ export declare const scatterComponentProps: {
|
|
|
30
25
|
} | {
|
|
31
26
|
type: any;
|
|
32
27
|
default: string | number | boolean | Data | string[] | {
|
|
28
|
+
name: string;
|
|
29
|
+
value: string;
|
|
30
|
+
} | import("../../_utils/props").Events | {
|
|
33
31
|
[key: string]: any;
|
|
34
|
-
} | import("../../_utils/props").RequestParams
|
|
32
|
+
} | import("../../_utils/props").RequestParams;
|
|
35
33
|
};
|
|
36
34
|
titleText: {
|
|
37
35
|
type?: undefined;
|
|
@@ -39,8 +37,11 @@ export declare const scatterComponentProps: {
|
|
|
39
37
|
} | {
|
|
40
38
|
type: any;
|
|
41
39
|
default: string | number | boolean | Data | string[] | {
|
|
40
|
+
name: string;
|
|
41
|
+
value: string;
|
|
42
|
+
} | import("../../_utils/props").Events | {
|
|
42
43
|
[key: string]: any;
|
|
43
|
-
} | import("../../_utils/props").RequestParams
|
|
44
|
+
} | import("../../_utils/props").RequestParams;
|
|
44
45
|
};
|
|
45
46
|
titleSubtext: {
|
|
46
47
|
type?: undefined;
|
|
@@ -48,8 +49,11 @@ export declare const scatterComponentProps: {
|
|
|
48
49
|
} | {
|
|
49
50
|
type: any;
|
|
50
51
|
default: string | number | boolean | Data | string[] | {
|
|
52
|
+
name: string;
|
|
53
|
+
value: string;
|
|
54
|
+
} | import("../../_utils/props").Events | {
|
|
51
55
|
[key: string]: any;
|
|
52
|
-
} | import("../../_utils/props").RequestParams
|
|
56
|
+
} | import("../../_utils/props").RequestParams;
|
|
53
57
|
};
|
|
54
58
|
colors: {
|
|
55
59
|
type?: undefined;
|
|
@@ -57,8 +61,11 @@ export declare const scatterComponentProps: {
|
|
|
57
61
|
} | {
|
|
58
62
|
type: any;
|
|
59
63
|
default: string | number | boolean | Data | string[] | {
|
|
64
|
+
name: string;
|
|
65
|
+
value: string;
|
|
66
|
+
} | import("../../_utils/props").Events | {
|
|
60
67
|
[key: string]: any;
|
|
61
|
-
} | import("../../_utils/props").RequestParams
|
|
68
|
+
} | import("../../_utils/props").RequestParams;
|
|
62
69
|
};
|
|
63
70
|
legendShow: {
|
|
64
71
|
type?: undefined;
|
|
@@ -66,8 +73,11 @@ export declare const scatterComponentProps: {
|
|
|
66
73
|
} | {
|
|
67
74
|
type: any;
|
|
68
75
|
default: string | number | boolean | Data | string[] | {
|
|
76
|
+
name: string;
|
|
77
|
+
value: string;
|
|
78
|
+
} | import("../../_utils/props").Events | {
|
|
69
79
|
[key: string]: any;
|
|
70
|
-
} | import("../../_utils/props").RequestParams
|
|
80
|
+
} | import("../../_utils/props").RequestParams;
|
|
71
81
|
};
|
|
72
82
|
tooltipShow: {
|
|
73
83
|
type?: undefined;
|
|
@@ -75,8 +85,11 @@ export declare const scatterComponentProps: {
|
|
|
75
85
|
} | {
|
|
76
86
|
type: any;
|
|
77
87
|
default: string | number | boolean | Data | string[] | {
|
|
88
|
+
name: string;
|
|
89
|
+
value: string;
|
|
90
|
+
} | import("../../_utils/props").Events | {
|
|
78
91
|
[key: string]: any;
|
|
79
|
-
} | import("../../_utils/props").RequestParams
|
|
92
|
+
} | import("../../_utils/props").RequestParams;
|
|
80
93
|
};
|
|
81
94
|
tooltipTrigger: {
|
|
82
95
|
type?: undefined;
|
|
@@ -84,8 +97,11 @@ export declare const scatterComponentProps: {
|
|
|
84
97
|
} | {
|
|
85
98
|
type: any;
|
|
86
99
|
default: string | number | boolean | Data | string[] | {
|
|
100
|
+
name: string;
|
|
101
|
+
value: string;
|
|
102
|
+
} | import("../../_utils/props").Events | {
|
|
87
103
|
[key: string]: any;
|
|
88
|
-
} | import("../../_utils/props").RequestParams
|
|
104
|
+
} | import("../../_utils/props").RequestParams;
|
|
89
105
|
};
|
|
90
106
|
tooltipFormatter: {
|
|
91
107
|
type?: undefined;
|
|
@@ -93,8 +109,11 @@ export declare const scatterComponentProps: {
|
|
|
93
109
|
} | {
|
|
94
110
|
type: any;
|
|
95
111
|
default: string | number | boolean | Data | string[] | {
|
|
112
|
+
name: string;
|
|
113
|
+
value: string;
|
|
114
|
+
} | import("../../_utils/props").Events | {
|
|
96
115
|
[key: string]: any;
|
|
97
|
-
} | import("../../_utils/props").RequestParams
|
|
116
|
+
} | import("../../_utils/props").RequestParams;
|
|
98
117
|
};
|
|
99
118
|
legendLeft: {
|
|
100
119
|
type?: undefined;
|
|
@@ -102,8 +121,11 @@ export declare const scatterComponentProps: {
|
|
|
102
121
|
} | {
|
|
103
122
|
type: any;
|
|
104
123
|
default: string | number | boolean | Data | string[] | {
|
|
124
|
+
name: string;
|
|
125
|
+
value: string;
|
|
126
|
+
} | import("../../_utils/props").Events | {
|
|
105
127
|
[key: string]: any;
|
|
106
|
-
} | import("../../_utils/props").RequestParams
|
|
128
|
+
} | import("../../_utils/props").RequestParams;
|
|
107
129
|
};
|
|
108
130
|
legendTop: {
|
|
109
131
|
type?: undefined;
|
|
@@ -111,8 +133,11 @@ export declare const scatterComponentProps: {
|
|
|
111
133
|
} | {
|
|
112
134
|
type: any;
|
|
113
135
|
default: string | number | boolean | Data | string[] | {
|
|
136
|
+
name: string;
|
|
137
|
+
value: string;
|
|
138
|
+
} | import("../../_utils/props").Events | {
|
|
114
139
|
[key: string]: any;
|
|
115
|
-
} | import("../../_utils/props").RequestParams
|
|
140
|
+
} | import("../../_utils/props").RequestParams;
|
|
116
141
|
};
|
|
117
142
|
legendOrient: {
|
|
118
143
|
type?: undefined;
|
|
@@ -120,8 +145,11 @@ export declare const scatterComponentProps: {
|
|
|
120
145
|
} | {
|
|
121
146
|
type: any;
|
|
122
147
|
default: string | number | boolean | Data | string[] | {
|
|
148
|
+
name: string;
|
|
149
|
+
value: string;
|
|
150
|
+
} | import("../../_utils/props").Events | {
|
|
123
151
|
[key: string]: any;
|
|
124
|
-
} | import("../../_utils/props").RequestParams
|
|
152
|
+
} | import("../../_utils/props").RequestParams;
|
|
125
153
|
};
|
|
126
154
|
symbolSize: {
|
|
127
155
|
type?: undefined;
|
|
@@ -129,89 +157,23 @@ export declare const scatterComponentProps: {
|
|
|
129
157
|
} | {
|
|
130
158
|
type: any;
|
|
131
159
|
default: string | number | boolean | Data | string[] | {
|
|
160
|
+
name: string;
|
|
161
|
+
value: string;
|
|
162
|
+
} | import("../../_utils/props").Events | {
|
|
132
163
|
[key: string]: any;
|
|
133
|
-
} | import("../../_utils/props").RequestParams
|
|
134
|
-
};
|
|
135
|
-
xAxisSplitLineShow: {
|
|
136
|
-
type?: undefined;
|
|
137
|
-
default?: undefined;
|
|
138
|
-
} | {
|
|
139
|
-
type: any;
|
|
140
|
-
default: string | number | boolean | Data | string[] | {
|
|
141
|
-
[key: string]: any;
|
|
142
|
-
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
143
|
-
};
|
|
144
|
-
xAxisLabelColor: {
|
|
145
|
-
type?: undefined;
|
|
146
|
-
default?: undefined;
|
|
147
|
-
} | {
|
|
148
|
-
type: any;
|
|
149
|
-
default: string | number | boolean | Data | string[] | {
|
|
150
|
-
[key: string]: any;
|
|
151
|
-
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
152
|
-
};
|
|
153
|
-
xAxisLineStyleColor: {
|
|
154
|
-
type?: undefined;
|
|
155
|
-
default?: undefined;
|
|
156
|
-
} | {
|
|
157
|
-
type: any;
|
|
158
|
-
default: string | number | boolean | Data | string[] | {
|
|
159
|
-
[key: string]: any;
|
|
160
|
-
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
161
|
-
};
|
|
162
|
-
xAxisTickShow: {
|
|
163
|
-
type?: undefined;
|
|
164
|
-
default?: undefined;
|
|
165
|
-
} | {
|
|
166
|
-
type: any;
|
|
167
|
-
default: string | number | boolean | Data | string[] | {
|
|
168
|
-
[key: string]: any;
|
|
169
|
-
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
170
|
-
};
|
|
171
|
-
yAxisSplitLineShow: {
|
|
172
|
-
type?: undefined;
|
|
173
|
-
default?: undefined;
|
|
174
|
-
} | {
|
|
175
|
-
type: any;
|
|
176
|
-
default: string | number | boolean | Data | string[] | {
|
|
177
|
-
[key: string]: any;
|
|
178
|
-
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
164
|
+
} | import("../../_utils/props").RequestParams;
|
|
179
165
|
};
|
|
180
|
-
|
|
166
|
+
dataFieldNames: {
|
|
181
167
|
type?: undefined;
|
|
182
168
|
default?: undefined;
|
|
183
169
|
} | {
|
|
184
170
|
type: any;
|
|
185
171
|
default: string | number | boolean | Data | string[] | {
|
|
172
|
+
name: string;
|
|
173
|
+
value: string;
|
|
174
|
+
} | import("../../_utils/props").Events | {
|
|
186
175
|
[key: string]: any;
|
|
187
|
-
} | import("../../_utils/props").RequestParams
|
|
188
|
-
};
|
|
189
|
-
yAxisSplitLineStyleColor: {
|
|
190
|
-
type?: undefined;
|
|
191
|
-
default?: undefined;
|
|
192
|
-
} | {
|
|
193
|
-
type: any;
|
|
194
|
-
default: string | number | boolean | Data | string[] | {
|
|
195
|
-
[key: string]: any;
|
|
196
|
-
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
197
|
-
};
|
|
198
|
-
yAxisLabelColor: {
|
|
199
|
-
type?: undefined;
|
|
200
|
-
default?: undefined;
|
|
201
|
-
} | {
|
|
202
|
-
type: any;
|
|
203
|
-
default: string | number | boolean | Data | string[] | {
|
|
204
|
-
[key: string]: any;
|
|
205
|
-
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
206
|
-
};
|
|
207
|
-
yAxisLineStyleColor: {
|
|
208
|
-
type?: undefined;
|
|
209
|
-
default?: undefined;
|
|
210
|
-
} | {
|
|
211
|
-
type: any;
|
|
212
|
-
default: string | number | boolean | Data | string[] | {
|
|
213
|
-
[key: string]: any;
|
|
214
|
-
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
176
|
+
} | import("../../_utils/props").RequestParams;
|
|
215
177
|
};
|
|
216
178
|
id: {
|
|
217
179
|
type?: undefined;
|
|
@@ -219,8 +181,11 @@ export declare const scatterComponentProps: {
|
|
|
219
181
|
} | {
|
|
220
182
|
type: any;
|
|
221
183
|
default: string | number | boolean | Data | string[] | {
|
|
184
|
+
name: string;
|
|
185
|
+
value: string;
|
|
186
|
+
} | import("../../_utils/props").Events | {
|
|
222
187
|
[key: string]: any;
|
|
223
|
-
} | import("../../_utils/props").RequestParams
|
|
188
|
+
} | import("../../_utils/props").RequestParams;
|
|
224
189
|
};
|
|
225
190
|
name: {
|
|
226
191
|
type?: undefined;
|
|
@@ -228,8 +193,11 @@ export declare const scatterComponentProps: {
|
|
|
228
193
|
} | {
|
|
229
194
|
type: any;
|
|
230
195
|
default: string | number | boolean | Data | string[] | {
|
|
196
|
+
name: string;
|
|
197
|
+
value: string;
|
|
198
|
+
} | import("../../_utils/props").Events | {
|
|
231
199
|
[key: string]: any;
|
|
232
|
-
} | import("../../_utils/props").RequestParams
|
|
200
|
+
} | import("../../_utils/props").RequestParams;
|
|
233
201
|
};
|
|
234
202
|
keyName: {
|
|
235
203
|
type?: undefined;
|
|
@@ -237,8 +205,11 @@ export declare const scatterComponentProps: {
|
|
|
237
205
|
} | {
|
|
238
206
|
type: any;
|
|
239
207
|
default: string | number | boolean | Data | string[] | {
|
|
208
|
+
name: string;
|
|
209
|
+
value: string;
|
|
210
|
+
} | import("../../_utils/props").Events | {
|
|
240
211
|
[key: string]: any;
|
|
241
|
-
} | import("../../_utils/props").RequestParams
|
|
212
|
+
} | import("../../_utils/props").RequestParams;
|
|
242
213
|
};
|
|
243
214
|
type: {
|
|
244
215
|
type?: undefined;
|
|
@@ -246,8 +217,11 @@ export declare const scatterComponentProps: {
|
|
|
246
217
|
} | {
|
|
247
218
|
type: any;
|
|
248
219
|
default: string | number | boolean | Data | string[] | {
|
|
220
|
+
name: string;
|
|
221
|
+
value: string;
|
|
222
|
+
} | import("../../_utils/props").Events | {
|
|
249
223
|
[key: string]: any;
|
|
250
|
-
} | import("../../_utils/props").RequestParams
|
|
224
|
+
} | import("../../_utils/props").RequestParams;
|
|
251
225
|
};
|
|
252
226
|
width: {
|
|
253
227
|
type?: undefined;
|
|
@@ -255,8 +229,11 @@ export declare const scatterComponentProps: {
|
|
|
255
229
|
} | {
|
|
256
230
|
type: any;
|
|
257
231
|
default: string | number | boolean | Data | string[] | {
|
|
232
|
+
name: string;
|
|
233
|
+
value: string;
|
|
234
|
+
} | import("../../_utils/props").Events | {
|
|
258
235
|
[key: string]: any;
|
|
259
|
-
} | import("../../_utils/props").RequestParams
|
|
236
|
+
} | import("../../_utils/props").RequestParams;
|
|
260
237
|
};
|
|
261
238
|
height: {
|
|
262
239
|
type?: undefined;
|
|
@@ -264,8 +241,11 @@ export declare const scatterComponentProps: {
|
|
|
264
241
|
} | {
|
|
265
242
|
type: any;
|
|
266
243
|
default: string | number | boolean | Data | string[] | {
|
|
244
|
+
name: string;
|
|
245
|
+
value: string;
|
|
246
|
+
} | import("../../_utils/props").Events | {
|
|
267
247
|
[key: string]: any;
|
|
268
|
-
} | import("../../_utils/props").RequestParams
|
|
248
|
+
} | import("../../_utils/props").RequestParams;
|
|
269
249
|
};
|
|
270
250
|
position: {
|
|
271
251
|
type?: undefined;
|
|
@@ -273,8 +253,11 @@ export declare const scatterComponentProps: {
|
|
|
273
253
|
} | {
|
|
274
254
|
type: any;
|
|
275
255
|
default: string | number | boolean | Data | string[] | {
|
|
256
|
+
name: string;
|
|
257
|
+
value: string;
|
|
258
|
+
} | import("../../_utils/props").Events | {
|
|
276
259
|
[key: string]: any;
|
|
277
|
-
} | import("../../_utils/props").RequestParams
|
|
260
|
+
} | import("../../_utils/props").RequestParams;
|
|
278
261
|
};
|
|
279
262
|
top: {
|
|
280
263
|
type?: undefined;
|
|
@@ -282,8 +265,11 @@ export declare const scatterComponentProps: {
|
|
|
282
265
|
} | {
|
|
283
266
|
type: any;
|
|
284
267
|
default: string | number | boolean | Data | string[] | {
|
|
268
|
+
name: string;
|
|
269
|
+
value: string;
|
|
270
|
+
} | import("../../_utils/props").Events | {
|
|
285
271
|
[key: string]: any;
|
|
286
|
-
} | import("../../_utils/props").RequestParams
|
|
272
|
+
} | import("../../_utils/props").RequestParams;
|
|
287
273
|
};
|
|
288
274
|
left: {
|
|
289
275
|
type?: undefined;
|
|
@@ -291,8 +277,11 @@ export declare const scatterComponentProps: {
|
|
|
291
277
|
} | {
|
|
292
278
|
type: any;
|
|
293
279
|
default: string | number | boolean | Data | string[] | {
|
|
280
|
+
name: string;
|
|
281
|
+
value: string;
|
|
282
|
+
} | import("../../_utils/props").Events | {
|
|
294
283
|
[key: string]: any;
|
|
295
|
-
} | import("../../_utils/props").RequestParams
|
|
284
|
+
} | import("../../_utils/props").RequestParams;
|
|
296
285
|
};
|
|
297
286
|
zIndex: {
|
|
298
287
|
type?: undefined;
|
|
@@ -300,8 +289,11 @@ export declare const scatterComponentProps: {
|
|
|
300
289
|
} | {
|
|
301
290
|
type: any;
|
|
302
291
|
default: string | number | boolean | Data | string[] | {
|
|
292
|
+
name: string;
|
|
293
|
+
value: string;
|
|
294
|
+
} | import("../../_utils/props").Events | {
|
|
303
295
|
[key: string]: any;
|
|
304
|
-
} | import("../../_utils/props").RequestParams
|
|
296
|
+
} | import("../../_utils/props").RequestParams;
|
|
305
297
|
};
|
|
306
298
|
rotate: {
|
|
307
299
|
type?: undefined;
|
|
@@ -309,8 +301,11 @@ export declare const scatterComponentProps: {
|
|
|
309
301
|
} | {
|
|
310
302
|
type: any;
|
|
311
303
|
default: string | number | boolean | Data | string[] | {
|
|
304
|
+
name: string;
|
|
305
|
+
value: string;
|
|
306
|
+
} | import("../../_utils/props").Events | {
|
|
312
307
|
[key: string]: any;
|
|
313
|
-
} | import("../../_utils/props").RequestParams
|
|
308
|
+
} | import("../../_utils/props").RequestParams;
|
|
314
309
|
};
|
|
315
310
|
isShow: {
|
|
316
311
|
type?: undefined;
|
|
@@ -318,8 +313,11 @@ export declare const scatterComponentProps: {
|
|
|
318
313
|
} | {
|
|
319
314
|
type: any;
|
|
320
315
|
default: string | number | boolean | Data | string[] | {
|
|
316
|
+
name: string;
|
|
317
|
+
value: string;
|
|
318
|
+
} | import("../../_utils/props").Events | {
|
|
321
319
|
[key: string]: any;
|
|
322
|
-
} | import("../../_utils/props").RequestParams
|
|
320
|
+
} | import("../../_utils/props").RequestParams;
|
|
323
321
|
};
|
|
324
322
|
isRender: {
|
|
325
323
|
type?: undefined;
|
|
@@ -327,8 +325,11 @@ export declare const scatterComponentProps: {
|
|
|
327
325
|
} | {
|
|
328
326
|
type: any;
|
|
329
327
|
default: string | number | boolean | Data | string[] | {
|
|
328
|
+
name: string;
|
|
329
|
+
value: string;
|
|
330
|
+
} | import("../../_utils/props").Events | {
|
|
330
331
|
[key: string]: any;
|
|
331
|
-
} | import("../../_utils/props").RequestParams
|
|
332
|
+
} | import("../../_utils/props").RequestParams;
|
|
332
333
|
};
|
|
333
334
|
isRequestData: {
|
|
334
335
|
type?: undefined;
|
|
@@ -336,70 +337,94 @@ export declare const scatterComponentProps: {
|
|
|
336
337
|
} | {
|
|
337
338
|
type: any;
|
|
338
339
|
default: string | number | boolean | Data | string[] | {
|
|
340
|
+
name: string;
|
|
341
|
+
value: string;
|
|
342
|
+
} | import("../../_utils/props").Events | {
|
|
339
343
|
[key: string]: any;
|
|
340
|
-
} | import("../../_utils/props").RequestParams
|
|
344
|
+
} | import("../../_utils/props").RequestParams;
|
|
341
345
|
};
|
|
342
|
-
|
|
346
|
+
events: {
|
|
343
347
|
type?: undefined;
|
|
344
348
|
default?: undefined;
|
|
345
349
|
} | {
|
|
346
350
|
type: any;
|
|
347
351
|
default: string | number | boolean | Data | string[] | {
|
|
352
|
+
name: string;
|
|
353
|
+
value: string;
|
|
354
|
+
} | import("../../_utils/props").Events | {
|
|
348
355
|
[key: string]: any;
|
|
349
|
-
} | import("../../_utils/props").RequestParams
|
|
356
|
+
} | import("../../_utils/props").RequestParams;
|
|
350
357
|
};
|
|
351
|
-
|
|
358
|
+
requestUrl: {
|
|
352
359
|
type?: undefined;
|
|
353
360
|
default?: undefined;
|
|
354
361
|
} | {
|
|
355
362
|
type: any;
|
|
356
363
|
default: string | number | boolean | Data | string[] | {
|
|
364
|
+
name: string;
|
|
365
|
+
value: string;
|
|
366
|
+
} | import("../../_utils/props").Events | {
|
|
357
367
|
[key: string]: any;
|
|
358
|
-
} | import("../../_utils/props").RequestParams
|
|
368
|
+
} | import("../../_utils/props").RequestParams;
|
|
359
369
|
};
|
|
360
|
-
|
|
370
|
+
requestMethod: {
|
|
361
371
|
type?: undefined;
|
|
362
372
|
default?: undefined;
|
|
363
373
|
} | {
|
|
364
374
|
type: any;
|
|
365
375
|
default: string | number | boolean | Data | string[] | {
|
|
376
|
+
name: string;
|
|
377
|
+
value: string;
|
|
378
|
+
} | import("../../_utils/props").Events | {
|
|
366
379
|
[key: string]: any;
|
|
367
|
-
} | import("../../_utils/props").RequestParams
|
|
380
|
+
} | import("../../_utils/props").RequestParams;
|
|
368
381
|
};
|
|
369
|
-
|
|
382
|
+
requestHeaders: {
|
|
370
383
|
type?: undefined;
|
|
371
384
|
default?: undefined;
|
|
372
385
|
} | {
|
|
373
386
|
type: any;
|
|
374
387
|
default: string | number | boolean | Data | string[] | {
|
|
388
|
+
name: string;
|
|
389
|
+
value: string;
|
|
390
|
+
} | import("../../_utils/props").Events | {
|
|
375
391
|
[key: string]: any;
|
|
376
|
-
} | import("../../_utils/props").RequestParams
|
|
392
|
+
} | import("../../_utils/props").RequestParams;
|
|
377
393
|
};
|
|
378
|
-
|
|
394
|
+
isOpenRequestTimer: {
|
|
379
395
|
type?: undefined;
|
|
380
396
|
default?: undefined;
|
|
381
397
|
} | {
|
|
382
398
|
type: any;
|
|
383
399
|
default: string | number | boolean | Data | string[] | {
|
|
400
|
+
name: string;
|
|
401
|
+
value: string;
|
|
402
|
+
} | import("../../_utils/props").Events | {
|
|
384
403
|
[key: string]: any;
|
|
385
|
-
} | import("../../_utils/props").RequestParams
|
|
404
|
+
} | import("../../_utils/props").RequestParams;
|
|
386
405
|
};
|
|
387
|
-
|
|
406
|
+
requestInterval: {
|
|
388
407
|
type?: undefined;
|
|
389
408
|
default?: undefined;
|
|
390
409
|
} | {
|
|
391
410
|
type: any;
|
|
392
411
|
default: string | number | boolean | Data | string[] | {
|
|
412
|
+
name: string;
|
|
413
|
+
value: string;
|
|
414
|
+
} | import("../../_utils/props").Events | {
|
|
393
415
|
[key: string]: any;
|
|
394
|
-
} | import("../../_utils/props").RequestParams
|
|
416
|
+
} | import("../../_utils/props").RequestParams;
|
|
395
417
|
};
|
|
396
|
-
|
|
418
|
+
requestParams: {
|
|
397
419
|
type?: undefined;
|
|
398
420
|
default?: undefined;
|
|
399
421
|
} | {
|
|
400
422
|
type: any;
|
|
401
423
|
default: string | number | boolean | Data | string[] | {
|
|
424
|
+
name: string;
|
|
425
|
+
value: string;
|
|
426
|
+
} | import("../../_utils/props").Events | {
|
|
402
427
|
[key: string]: any;
|
|
403
|
-
} | import("../../_utils/props").RequestParams
|
|
428
|
+
} | import("../../_utils/props").RequestParams;
|
|
404
429
|
};
|
|
405
430
|
};
|