@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
|
@@ -1,453 +1,667 @@
|
|
|
1
|
+
import { Events } from 'src/_utils/props';
|
|
1
2
|
declare const _default: import("vue").DefineComponent<{
|
|
2
3
|
data: {
|
|
3
4
|
type?: undefined;
|
|
4
5
|
default?: undefined;
|
|
5
6
|
} | {
|
|
6
7
|
type: any;
|
|
7
|
-
default: string | number | boolean | string[] | import("
|
|
8
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
9
|
+
name: string;
|
|
10
|
+
value: string;
|
|
11
|
+
type: string;
|
|
12
|
+
} | Events | {
|
|
8
13
|
[key: string]: any;
|
|
9
|
-
} | import("
|
|
14
|
+
} | import("src/_utils/props").RequestParams;
|
|
10
15
|
};
|
|
11
16
|
titleText: {
|
|
12
17
|
type?: undefined;
|
|
13
18
|
default?: undefined;
|
|
14
19
|
} | {
|
|
15
20
|
type: any;
|
|
16
|
-
default: string | number | boolean | string[] | import("
|
|
21
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
22
|
+
name: string;
|
|
23
|
+
value: string;
|
|
24
|
+
type: string;
|
|
25
|
+
} | Events | {
|
|
17
26
|
[key: string]: any;
|
|
18
|
-
} | import("
|
|
27
|
+
} | import("src/_utils/props").RequestParams;
|
|
19
28
|
};
|
|
20
29
|
titleSubtext: {
|
|
21
30
|
type?: undefined;
|
|
22
31
|
default?: undefined;
|
|
23
32
|
} | {
|
|
24
33
|
type: any;
|
|
25
|
-
default: string | number | boolean | string[] | import("
|
|
34
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
35
|
+
name: string;
|
|
36
|
+
value: string;
|
|
37
|
+
type: string;
|
|
38
|
+
} | Events | {
|
|
26
39
|
[key: string]: any;
|
|
27
|
-
} | import("
|
|
40
|
+
} | import("src/_utils/props").RequestParams;
|
|
28
41
|
};
|
|
29
42
|
titleLeft: {
|
|
30
43
|
type?: undefined;
|
|
31
44
|
default?: undefined;
|
|
32
45
|
} | {
|
|
33
46
|
type: any;
|
|
34
|
-
default: string | number | boolean | string[] | import("
|
|
47
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
48
|
+
name: string;
|
|
49
|
+
value: string;
|
|
50
|
+
type: string;
|
|
51
|
+
} | Events | {
|
|
35
52
|
[key: string]: any;
|
|
36
|
-
} | import("
|
|
53
|
+
} | import("src/_utils/props").RequestParams;
|
|
37
54
|
};
|
|
38
55
|
colors: {
|
|
39
56
|
type?: undefined;
|
|
40
57
|
default?: undefined;
|
|
41
58
|
} | {
|
|
42
59
|
type: any;
|
|
43
|
-
default: string | number | boolean | string[] | import("
|
|
60
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
61
|
+
name: string;
|
|
62
|
+
value: string;
|
|
63
|
+
type: string;
|
|
64
|
+
} | Events | {
|
|
44
65
|
[key: string]: any;
|
|
45
|
-
} | import("
|
|
66
|
+
} | import("src/_utils/props").RequestParams;
|
|
46
67
|
};
|
|
47
68
|
backgroundColor: {
|
|
48
69
|
type?: undefined;
|
|
49
70
|
default?: undefined;
|
|
50
71
|
} | {
|
|
51
72
|
type: any;
|
|
52
|
-
default: string | number | boolean | string[] | import("
|
|
73
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
74
|
+
name: string;
|
|
75
|
+
value: string;
|
|
76
|
+
type: string;
|
|
77
|
+
} | Events | {
|
|
53
78
|
[key: string]: any;
|
|
54
|
-
} | import("
|
|
79
|
+
} | import("src/_utils/props").RequestParams;
|
|
55
80
|
};
|
|
56
81
|
tooltipShow: {
|
|
57
82
|
type?: undefined;
|
|
58
83
|
default?: undefined;
|
|
59
84
|
} | {
|
|
60
85
|
type: any;
|
|
61
|
-
default: string | number | boolean | string[] | import("
|
|
86
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
87
|
+
name: string;
|
|
88
|
+
value: string;
|
|
89
|
+
type: string;
|
|
90
|
+
} | Events | {
|
|
62
91
|
[key: string]: any;
|
|
63
|
-
} | import("
|
|
92
|
+
} | import("src/_utils/props").RequestParams;
|
|
64
93
|
};
|
|
65
94
|
tooltipTrigger: {
|
|
66
95
|
type?: undefined;
|
|
67
96
|
default?: undefined;
|
|
68
97
|
} | {
|
|
69
98
|
type: any;
|
|
70
|
-
default: string | number | boolean | string[] | import("
|
|
99
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
100
|
+
name: string;
|
|
101
|
+
value: string;
|
|
102
|
+
type: string;
|
|
103
|
+
} | Events | {
|
|
71
104
|
[key: string]: any;
|
|
72
|
-
} | import("
|
|
105
|
+
} | import("src/_utils/props").RequestParams;
|
|
73
106
|
};
|
|
74
107
|
tooltipTextStyleColor: {
|
|
75
108
|
type?: undefined;
|
|
76
109
|
default?: undefined;
|
|
77
110
|
} | {
|
|
78
111
|
type: any;
|
|
79
|
-
default: string | number | boolean | string[] | import("
|
|
112
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
113
|
+
name: string;
|
|
114
|
+
value: string;
|
|
115
|
+
type: string;
|
|
116
|
+
} | Events | {
|
|
80
117
|
[key: string]: any;
|
|
81
|
-
} | import("
|
|
118
|
+
} | import("src/_utils/props").RequestParams;
|
|
82
119
|
};
|
|
83
120
|
tooltipFormatter: {
|
|
84
121
|
type?: undefined;
|
|
85
122
|
default?: undefined;
|
|
86
123
|
} | {
|
|
87
124
|
type: any;
|
|
88
|
-
default: string | number | boolean | string[] | import("
|
|
125
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
126
|
+
name: string;
|
|
127
|
+
value: string;
|
|
128
|
+
type: string;
|
|
129
|
+
} | Events | {
|
|
89
130
|
[key: string]: any;
|
|
90
|
-
} | import("
|
|
131
|
+
} | import("src/_utils/props").RequestParams;
|
|
91
132
|
};
|
|
92
133
|
legendShow: {
|
|
93
134
|
type?: undefined;
|
|
94
135
|
default?: undefined;
|
|
95
136
|
} | {
|
|
96
137
|
type: any;
|
|
97
|
-
default: string | number | boolean | string[] | import("
|
|
138
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
139
|
+
name: string;
|
|
140
|
+
value: string;
|
|
141
|
+
type: string;
|
|
142
|
+
} | Events | {
|
|
98
143
|
[key: string]: any;
|
|
99
|
-
} | import("
|
|
144
|
+
} | import("src/_utils/props").RequestParams;
|
|
100
145
|
};
|
|
101
146
|
legendLeft: {
|
|
102
147
|
type?: undefined;
|
|
103
148
|
default?: undefined;
|
|
104
149
|
} | {
|
|
105
150
|
type: any;
|
|
106
|
-
default: string | number | boolean | string[] | import("
|
|
151
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
152
|
+
name: string;
|
|
153
|
+
value: string;
|
|
154
|
+
type: string;
|
|
155
|
+
} | Events | {
|
|
107
156
|
[key: string]: any;
|
|
108
|
-
} | import("
|
|
157
|
+
} | import("src/_utils/props").RequestParams;
|
|
109
158
|
};
|
|
110
159
|
legendTop: {
|
|
111
160
|
type?: undefined;
|
|
112
161
|
default?: undefined;
|
|
113
162
|
} | {
|
|
114
163
|
type: any;
|
|
115
|
-
default: string | number | boolean | string[] | import("
|
|
164
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
165
|
+
name: string;
|
|
166
|
+
value: string;
|
|
167
|
+
type: string;
|
|
168
|
+
} | Events | {
|
|
116
169
|
[key: string]: any;
|
|
117
|
-
} | import("
|
|
170
|
+
} | import("src/_utils/props").RequestParams;
|
|
118
171
|
};
|
|
119
172
|
legendOrient: {
|
|
120
173
|
type?: undefined;
|
|
121
174
|
default?: undefined;
|
|
122
175
|
} | {
|
|
123
176
|
type: any;
|
|
124
|
-
default: string | number | boolean | string[] | import("
|
|
177
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
178
|
+
name: string;
|
|
179
|
+
value: string;
|
|
180
|
+
type: string;
|
|
181
|
+
} | Events | {
|
|
125
182
|
[key: string]: any;
|
|
126
|
-
} | import("
|
|
183
|
+
} | import("src/_utils/props").RequestParams;
|
|
127
184
|
};
|
|
128
185
|
legendTextStyleColor: {
|
|
129
186
|
type?: undefined;
|
|
130
187
|
default?: undefined;
|
|
131
188
|
} | {
|
|
132
189
|
type: any;
|
|
133
|
-
default: string | number | boolean | string[] | import("
|
|
190
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
191
|
+
name: string;
|
|
192
|
+
value: string;
|
|
193
|
+
type: string;
|
|
194
|
+
} | Events | {
|
|
134
195
|
[key: string]: any;
|
|
135
|
-
} | import("
|
|
196
|
+
} | import("src/_utils/props").RequestParams;
|
|
136
197
|
};
|
|
137
198
|
innerRadius: {
|
|
138
199
|
type?: undefined;
|
|
139
200
|
default?: undefined;
|
|
140
201
|
} | {
|
|
141
202
|
type: any;
|
|
142
|
-
default: string | number | boolean | string[] | import("
|
|
203
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
204
|
+
name: string;
|
|
205
|
+
value: string;
|
|
206
|
+
type: string;
|
|
207
|
+
} | Events | {
|
|
143
208
|
[key: string]: any;
|
|
144
|
-
} | import("
|
|
209
|
+
} | import("src/_utils/props").RequestParams;
|
|
145
210
|
};
|
|
146
211
|
outerRadius: {
|
|
147
212
|
type?: undefined;
|
|
148
213
|
default?: undefined;
|
|
149
214
|
} | {
|
|
150
215
|
type: any;
|
|
151
|
-
default: string | number | boolean | string[] | import("
|
|
216
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
217
|
+
name: string;
|
|
218
|
+
value: string;
|
|
219
|
+
type: string;
|
|
220
|
+
} | Events | {
|
|
152
221
|
[key: string]: any;
|
|
153
|
-
} | import("
|
|
222
|
+
} | import("src/_utils/props").RequestParams;
|
|
154
223
|
};
|
|
155
224
|
centerLeft: {
|
|
156
225
|
type?: undefined;
|
|
157
226
|
default?: undefined;
|
|
158
227
|
} | {
|
|
159
228
|
type: any;
|
|
160
|
-
default: string | number | boolean | string[] | import("
|
|
229
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
230
|
+
name: string;
|
|
231
|
+
value: string;
|
|
232
|
+
type: string;
|
|
233
|
+
} | Events | {
|
|
161
234
|
[key: string]: any;
|
|
162
|
-
} | import("
|
|
235
|
+
} | import("src/_utils/props").RequestParams;
|
|
163
236
|
};
|
|
164
237
|
centerTop: {
|
|
165
238
|
type?: undefined;
|
|
166
239
|
default?: undefined;
|
|
167
240
|
} | {
|
|
168
241
|
type: any;
|
|
169
|
-
default: string | number | boolean | string[] | import("
|
|
242
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
243
|
+
name: string;
|
|
244
|
+
value: string;
|
|
245
|
+
type: string;
|
|
246
|
+
} | Events | {
|
|
170
247
|
[key: string]: any;
|
|
171
|
-
} | import("
|
|
248
|
+
} | import("src/_utils/props").RequestParams;
|
|
172
249
|
};
|
|
173
250
|
labelShow: {
|
|
174
251
|
type?: undefined;
|
|
175
252
|
default?: undefined;
|
|
176
253
|
} | {
|
|
177
254
|
type: any;
|
|
178
|
-
default: string | number | boolean | string[] | import("
|
|
255
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
256
|
+
name: string;
|
|
257
|
+
value: string;
|
|
258
|
+
type: string;
|
|
259
|
+
} | Events | {
|
|
179
260
|
[key: string]: any;
|
|
180
|
-
} | import("
|
|
261
|
+
} | import("src/_utils/props").RequestParams;
|
|
181
262
|
};
|
|
182
263
|
labelFormatter: {
|
|
183
264
|
type?: undefined;
|
|
184
265
|
default?: undefined;
|
|
185
266
|
} | {
|
|
186
267
|
type: any;
|
|
187
|
-
default: string | number | boolean | string[] | import("
|
|
268
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
269
|
+
name: string;
|
|
270
|
+
value: string;
|
|
271
|
+
type: string;
|
|
272
|
+
} | Events | {
|
|
188
273
|
[key: string]: any;
|
|
189
|
-
} | import("
|
|
274
|
+
} | import("src/_utils/props").RequestParams;
|
|
190
275
|
};
|
|
191
276
|
labelFontSize: {
|
|
192
277
|
type?: undefined;
|
|
193
278
|
default?: undefined;
|
|
194
279
|
} | {
|
|
195
280
|
type: any;
|
|
196
|
-
default: string | number | boolean | string[] | import("
|
|
281
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
282
|
+
name: string;
|
|
283
|
+
value: string;
|
|
284
|
+
type: string;
|
|
285
|
+
} | Events | {
|
|
197
286
|
[key: string]: any;
|
|
198
|
-
} | import("
|
|
287
|
+
} | import("src/_utils/props").RequestParams;
|
|
199
288
|
};
|
|
200
289
|
labelPosition: {
|
|
201
290
|
type?: undefined;
|
|
202
291
|
default?: undefined;
|
|
203
292
|
} | {
|
|
204
293
|
type: any;
|
|
205
|
-
default: string | number | boolean | string[] | import("
|
|
294
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
295
|
+
name: string;
|
|
296
|
+
value: string;
|
|
297
|
+
type: string;
|
|
298
|
+
} | Events | {
|
|
206
299
|
[key: string]: any;
|
|
207
|
-
} | import("
|
|
300
|
+
} | import("src/_utils/props").RequestParams;
|
|
208
301
|
};
|
|
209
302
|
labelLineShow: {
|
|
210
303
|
type?: undefined;
|
|
211
304
|
default?: undefined;
|
|
212
305
|
} | {
|
|
213
306
|
type: any;
|
|
214
|
-
default: string | number | boolean | string[] | import("
|
|
307
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
308
|
+
name: string;
|
|
309
|
+
value: string;
|
|
310
|
+
type: string;
|
|
311
|
+
} | Events | {
|
|
215
312
|
[key: string]: any;
|
|
216
|
-
} | import("
|
|
313
|
+
} | import("src/_utils/props").RequestParams;
|
|
217
314
|
};
|
|
218
315
|
labelColor: {
|
|
219
316
|
type?: undefined;
|
|
220
317
|
default?: undefined;
|
|
221
318
|
} | {
|
|
222
319
|
type: any;
|
|
223
|
-
default: string | number | boolean | string[] | import("
|
|
320
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
321
|
+
name: string;
|
|
322
|
+
value: string;
|
|
323
|
+
type: string;
|
|
324
|
+
} | Events | {
|
|
224
325
|
[key: string]: any;
|
|
225
|
-
} | import("
|
|
326
|
+
} | import("src/_utils/props").RequestParams;
|
|
226
327
|
};
|
|
227
328
|
isUseLabelColors: {
|
|
228
329
|
type?: undefined;
|
|
229
330
|
default?: undefined;
|
|
230
331
|
} | {
|
|
231
332
|
type: any;
|
|
232
|
-
default: string | number | boolean | string[] | import("
|
|
333
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
334
|
+
name: string;
|
|
335
|
+
value: string;
|
|
336
|
+
type: string;
|
|
337
|
+
} | Events | {
|
|
233
338
|
[key: string]: any;
|
|
234
|
-
} | import("
|
|
339
|
+
} | import("src/_utils/props").RequestParams;
|
|
235
340
|
};
|
|
236
341
|
labelLineLength: {
|
|
237
342
|
type?: undefined;
|
|
238
343
|
default?: undefined;
|
|
239
344
|
} | {
|
|
240
345
|
type: any;
|
|
241
|
-
default: string | number | boolean | string[] | import("
|
|
346
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
347
|
+
name: string;
|
|
348
|
+
value: string;
|
|
349
|
+
type: string;
|
|
350
|
+
} | Events | {
|
|
242
351
|
[key: string]: any;
|
|
243
|
-
} | import("
|
|
352
|
+
} | import("src/_utils/props").RequestParams;
|
|
244
353
|
};
|
|
245
354
|
labelLineLength2: {
|
|
246
355
|
type?: undefined;
|
|
247
356
|
default?: undefined;
|
|
248
357
|
} | {
|
|
249
358
|
type: any;
|
|
250
|
-
default: string | number | boolean | string[] | import("
|
|
359
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
360
|
+
name: string;
|
|
361
|
+
value: string;
|
|
362
|
+
type: string;
|
|
363
|
+
} | Events | {
|
|
251
364
|
[key: string]: any;
|
|
252
|
-
} | import("
|
|
365
|
+
} | import("src/_utils/props").RequestParams;
|
|
253
366
|
};
|
|
254
367
|
roseType: {
|
|
255
368
|
type?: undefined;
|
|
256
369
|
default?: undefined;
|
|
257
370
|
} | {
|
|
258
371
|
type: any;
|
|
259
|
-
default: string | number | boolean | string[] | import("
|
|
372
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
373
|
+
name: string;
|
|
374
|
+
value: string;
|
|
375
|
+
type: string;
|
|
376
|
+
} | Events | {
|
|
260
377
|
[key: string]: any;
|
|
261
|
-
} | import("
|
|
378
|
+
} | import("src/_utils/props").RequestParams;
|
|
379
|
+
};
|
|
380
|
+
dataFieldNames: {
|
|
381
|
+
type?: undefined;
|
|
382
|
+
default?: undefined;
|
|
383
|
+
} | {
|
|
384
|
+
type: any;
|
|
385
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
386
|
+
name: string;
|
|
387
|
+
value: string;
|
|
388
|
+
type: string;
|
|
389
|
+
} | Events | {
|
|
390
|
+
[key: string]: any;
|
|
391
|
+
} | import("src/_utils/props").RequestParams;
|
|
262
392
|
};
|
|
263
393
|
id: {
|
|
264
394
|
type?: undefined;
|
|
265
395
|
default?: undefined;
|
|
266
396
|
} | {
|
|
267
397
|
type: any;
|
|
268
|
-
default: string | number | boolean | string[] | import("
|
|
398
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
399
|
+
name: string;
|
|
400
|
+
value: string;
|
|
401
|
+
type: string;
|
|
402
|
+
} | Events | {
|
|
269
403
|
[key: string]: any;
|
|
270
|
-
} | import("
|
|
404
|
+
} | import("src/_utils/props").RequestParams;
|
|
271
405
|
};
|
|
272
406
|
name: {
|
|
273
407
|
type?: undefined;
|
|
274
408
|
default?: undefined;
|
|
275
409
|
} | {
|
|
276
410
|
type: any;
|
|
277
|
-
default: string | number | boolean | string[] | import("
|
|
411
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
412
|
+
name: string;
|
|
413
|
+
value: string;
|
|
414
|
+
type: string;
|
|
415
|
+
} | Events | {
|
|
278
416
|
[key: string]: any;
|
|
279
|
-
} | import("
|
|
417
|
+
} | import("src/_utils/props").RequestParams;
|
|
280
418
|
};
|
|
281
419
|
keyName: {
|
|
282
420
|
type?: undefined;
|
|
283
421
|
default?: undefined;
|
|
284
422
|
} | {
|
|
285
423
|
type: any;
|
|
286
|
-
default: string | number | boolean | string[] | import("
|
|
424
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
425
|
+
name: string;
|
|
426
|
+
value: string;
|
|
427
|
+
type: string;
|
|
428
|
+
} | Events | {
|
|
287
429
|
[key: string]: any;
|
|
288
|
-
} | import("
|
|
430
|
+
} | import("src/_utils/props").RequestParams;
|
|
289
431
|
};
|
|
290
432
|
type: {
|
|
291
433
|
type?: undefined;
|
|
292
434
|
default?: undefined;
|
|
293
435
|
} | {
|
|
294
436
|
type: any;
|
|
295
|
-
default: string | number | boolean | string[] | import("
|
|
437
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
438
|
+
name: string;
|
|
439
|
+
value: string;
|
|
440
|
+
type: string;
|
|
441
|
+
} | Events | {
|
|
296
442
|
[key: string]: any;
|
|
297
|
-
} | import("
|
|
443
|
+
} | import("src/_utils/props").RequestParams;
|
|
298
444
|
};
|
|
299
445
|
width: {
|
|
300
446
|
type?: undefined;
|
|
301
447
|
default?: undefined;
|
|
302
448
|
} | {
|
|
303
449
|
type: any;
|
|
304
|
-
default: string | number | boolean | string[] | import("
|
|
450
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
451
|
+
name: string;
|
|
452
|
+
value: string;
|
|
453
|
+
type: string;
|
|
454
|
+
} | Events | {
|
|
305
455
|
[key: string]: any;
|
|
306
|
-
} | import("
|
|
456
|
+
} | import("src/_utils/props").RequestParams;
|
|
307
457
|
};
|
|
308
458
|
height: {
|
|
309
459
|
type?: undefined;
|
|
310
460
|
default?: undefined;
|
|
311
461
|
} | {
|
|
312
462
|
type: any;
|
|
313
|
-
default: string | number | boolean | string[] | import("
|
|
463
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
464
|
+
name: string;
|
|
465
|
+
value: string;
|
|
466
|
+
type: string;
|
|
467
|
+
} | Events | {
|
|
314
468
|
[key: string]: any;
|
|
315
|
-
} | import("
|
|
469
|
+
} | import("src/_utils/props").RequestParams;
|
|
316
470
|
};
|
|
317
471
|
position: {
|
|
318
472
|
type?: undefined;
|
|
319
473
|
default?: undefined;
|
|
320
474
|
} | {
|
|
321
475
|
type: any;
|
|
322
|
-
default: string | number | boolean | string[] | import("
|
|
476
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
477
|
+
name: string;
|
|
478
|
+
value: string;
|
|
479
|
+
type: string;
|
|
480
|
+
} | Events | {
|
|
323
481
|
[key: string]: any;
|
|
324
|
-
} | import("
|
|
482
|
+
} | import("src/_utils/props").RequestParams;
|
|
325
483
|
};
|
|
326
484
|
top: {
|
|
327
485
|
type?: undefined;
|
|
328
486
|
default?: undefined;
|
|
329
487
|
} | {
|
|
330
488
|
type: any;
|
|
331
|
-
default: string | number | boolean | string[] | import("
|
|
489
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
490
|
+
name: string;
|
|
491
|
+
value: string;
|
|
492
|
+
type: string;
|
|
493
|
+
} | Events | {
|
|
332
494
|
[key: string]: any;
|
|
333
|
-
} | import("
|
|
495
|
+
} | import("src/_utils/props").RequestParams;
|
|
334
496
|
};
|
|
335
497
|
left: {
|
|
336
498
|
type?: undefined;
|
|
337
499
|
default?: undefined;
|
|
338
500
|
} | {
|
|
339
501
|
type: any;
|
|
340
|
-
default: string | number | boolean | string[] | import("
|
|
502
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
503
|
+
name: string;
|
|
504
|
+
value: string;
|
|
505
|
+
type: string;
|
|
506
|
+
} | Events | {
|
|
341
507
|
[key: string]: any;
|
|
342
|
-
} | import("
|
|
508
|
+
} | import("src/_utils/props").RequestParams;
|
|
343
509
|
};
|
|
344
510
|
zIndex: {
|
|
345
511
|
type?: undefined;
|
|
346
512
|
default?: undefined;
|
|
347
513
|
} | {
|
|
348
514
|
type: any;
|
|
349
|
-
default: string | number | boolean | string[] | import("
|
|
515
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
516
|
+
name: string;
|
|
517
|
+
value: string;
|
|
518
|
+
type: string;
|
|
519
|
+
} | Events | {
|
|
350
520
|
[key: string]: any;
|
|
351
|
-
} | import("
|
|
521
|
+
} | import("src/_utils/props").RequestParams;
|
|
352
522
|
};
|
|
353
523
|
rotate: {
|
|
354
524
|
type?: undefined;
|
|
355
525
|
default?: undefined;
|
|
356
526
|
} | {
|
|
357
527
|
type: any;
|
|
358
|
-
default: string | number | boolean | string[] | import("
|
|
528
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
529
|
+
name: string;
|
|
530
|
+
value: string;
|
|
531
|
+
type: string;
|
|
532
|
+
} | Events | {
|
|
359
533
|
[key: string]: any;
|
|
360
|
-
} | import("
|
|
534
|
+
} | import("src/_utils/props").RequestParams;
|
|
361
535
|
};
|
|
362
536
|
isShow: {
|
|
363
537
|
type?: undefined;
|
|
364
538
|
default?: undefined;
|
|
365
539
|
} | {
|
|
366
540
|
type: any;
|
|
367
|
-
default: string | number | boolean | string[] | import("
|
|
541
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
542
|
+
name: string;
|
|
543
|
+
value: string;
|
|
544
|
+
type: string;
|
|
545
|
+
} | Events | {
|
|
368
546
|
[key: string]: any;
|
|
369
|
-
} | import("
|
|
547
|
+
} | import("src/_utils/props").RequestParams;
|
|
370
548
|
};
|
|
371
549
|
isRender: {
|
|
372
550
|
type?: undefined;
|
|
373
551
|
default?: undefined;
|
|
374
552
|
} | {
|
|
375
553
|
type: any;
|
|
376
|
-
default: string | number | boolean | string[] | import("
|
|
554
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
555
|
+
name: string;
|
|
556
|
+
value: string;
|
|
557
|
+
type: string;
|
|
558
|
+
} | Events | {
|
|
377
559
|
[key: string]: any;
|
|
378
|
-
} | import("
|
|
560
|
+
} | import("src/_utils/props").RequestParams;
|
|
379
561
|
};
|
|
380
562
|
isRequestData: {
|
|
381
563
|
type?: undefined;
|
|
382
564
|
default?: undefined;
|
|
383
565
|
} | {
|
|
384
566
|
type: any;
|
|
385
|
-
default: string | number | boolean | string[] | import("
|
|
567
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
568
|
+
name: string;
|
|
569
|
+
value: string;
|
|
570
|
+
type: string;
|
|
571
|
+
} | Events | {
|
|
386
572
|
[key: string]: any;
|
|
387
|
-
} | import("
|
|
573
|
+
} | import("src/_utils/props").RequestParams;
|
|
388
574
|
};
|
|
389
|
-
|
|
575
|
+
events: {
|
|
390
576
|
type?: undefined;
|
|
391
577
|
default?: undefined;
|
|
392
578
|
} | {
|
|
393
579
|
type: any;
|
|
394
|
-
default: string | number | boolean | string[] | import("
|
|
580
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
581
|
+
name: string;
|
|
582
|
+
value: string;
|
|
583
|
+
type: string;
|
|
584
|
+
} | Events | {
|
|
395
585
|
[key: string]: any;
|
|
396
|
-
} | import("
|
|
586
|
+
} | import("src/_utils/props").RequestParams;
|
|
397
587
|
};
|
|
398
|
-
|
|
588
|
+
requestUrl: {
|
|
399
589
|
type?: undefined;
|
|
400
590
|
default?: undefined;
|
|
401
591
|
} | {
|
|
402
592
|
type: any;
|
|
403
|
-
default: string | number | boolean | string[] | import("
|
|
593
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
594
|
+
name: string;
|
|
595
|
+
value: string;
|
|
596
|
+
type: string;
|
|
597
|
+
} | Events | {
|
|
404
598
|
[key: string]: any;
|
|
405
|
-
} | import("
|
|
599
|
+
} | import("src/_utils/props").RequestParams;
|
|
406
600
|
};
|
|
407
|
-
|
|
601
|
+
requestMethod: {
|
|
408
602
|
type?: undefined;
|
|
409
603
|
default?: undefined;
|
|
410
604
|
} | {
|
|
411
605
|
type: any;
|
|
412
|
-
default: string | number | boolean | string[] | import("
|
|
606
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
607
|
+
name: string;
|
|
608
|
+
value: string;
|
|
609
|
+
type: string;
|
|
610
|
+
} | Events | {
|
|
413
611
|
[key: string]: any;
|
|
414
|
-
} | import("
|
|
612
|
+
} | import("src/_utils/props").RequestParams;
|
|
415
613
|
};
|
|
416
|
-
|
|
614
|
+
requestHeaders: {
|
|
417
615
|
type?: undefined;
|
|
418
616
|
default?: undefined;
|
|
419
617
|
} | {
|
|
420
618
|
type: any;
|
|
421
|
-
default: string | number | boolean | string[] | import("
|
|
619
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
620
|
+
name: string;
|
|
621
|
+
value: string;
|
|
622
|
+
type: string;
|
|
623
|
+
} | Events | {
|
|
422
624
|
[key: string]: any;
|
|
423
|
-
} | import("
|
|
625
|
+
} | import("src/_utils/props").RequestParams;
|
|
424
626
|
};
|
|
425
|
-
|
|
627
|
+
isOpenRequestTimer: {
|
|
426
628
|
type?: undefined;
|
|
427
629
|
default?: undefined;
|
|
428
630
|
} | {
|
|
429
631
|
type: any;
|
|
430
|
-
default: string | number | boolean | string[] | import("
|
|
632
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
633
|
+
name: string;
|
|
634
|
+
value: string;
|
|
635
|
+
type: string;
|
|
636
|
+
} | Events | {
|
|
431
637
|
[key: string]: any;
|
|
432
|
-
} | import("
|
|
638
|
+
} | import("src/_utils/props").RequestParams;
|
|
433
639
|
};
|
|
434
|
-
|
|
640
|
+
requestInterval: {
|
|
435
641
|
type?: undefined;
|
|
436
642
|
default?: undefined;
|
|
437
643
|
} | {
|
|
438
644
|
type: any;
|
|
439
|
-
default: string | number | boolean | string[] | import("
|
|
645
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
646
|
+
name: string;
|
|
647
|
+
value: string;
|
|
648
|
+
type: string;
|
|
649
|
+
} | Events | {
|
|
440
650
|
[key: string]: any;
|
|
441
|
-
} | import("
|
|
651
|
+
} | import("src/_utils/props").RequestParams;
|
|
442
652
|
};
|
|
443
|
-
|
|
653
|
+
requestParams: {
|
|
444
654
|
type?: undefined;
|
|
445
655
|
default?: undefined;
|
|
446
656
|
} | {
|
|
447
657
|
type: any;
|
|
448
|
-
default: string | number | boolean | string[] | import("
|
|
658
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | {
|
|
659
|
+
name: string;
|
|
660
|
+
value: string;
|
|
661
|
+
type: string;
|
|
662
|
+
} | Events | {
|
|
449
663
|
[key: string]: any;
|
|
450
|
-
} | import("
|
|
664
|
+
} | import("src/_utils/props").RequestParams;
|
|
451
665
|
};
|
|
452
666
|
}, {
|
|
453
667
|
option: import("vue").ComputedRef<{
|
|
@@ -507,9 +721,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
507
721
|
roseType: string | number | boolean | {
|
|
508
722
|
[key: string]: any;
|
|
509
723
|
};
|
|
510
|
-
|
|
511
|
-
[key: string]: any;
|
|
512
|
-
};
|
|
724
|
+
avoidLabelOverlap: boolean;
|
|
513
725
|
label: {
|
|
514
726
|
show: string | number | boolean | {
|
|
515
727
|
[key: string]: any;
|
|
@@ -542,10 +754,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
542
754
|
shadowOffsetX: number;
|
|
543
755
|
shadowColor: string;
|
|
544
756
|
};
|
|
757
|
+
label: {};
|
|
545
758
|
};
|
|
546
759
|
}[];
|
|
547
760
|
}>;
|
|
548
761
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
762
|
+
click: () => void;
|
|
549
763
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
550
764
|
data?: unknown;
|
|
551
765
|
titleText?: unknown;
|
|
@@ -576,6 +790,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
576
790
|
labelLineLength?: unknown;
|
|
577
791
|
labelLineLength2?: unknown;
|
|
578
792
|
roseType?: unknown;
|
|
793
|
+
dataFieldNames?: unknown;
|
|
579
794
|
id?: unknown;
|
|
580
795
|
name?: unknown;
|
|
581
796
|
keyName?: unknown;
|
|
@@ -590,13 +805,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
590
805
|
isShow?: unknown;
|
|
591
806
|
isRender?: unknown;
|
|
592
807
|
isRequestData?: unknown;
|
|
808
|
+
events?: unknown;
|
|
593
809
|
requestUrl?: unknown;
|
|
594
810
|
requestMethod?: unknown;
|
|
595
811
|
requestHeaders?: unknown;
|
|
596
812
|
isOpenRequestTimer?: unknown;
|
|
597
813
|
requestInterval?: unknown;
|
|
598
814
|
requestParams?: unknown;
|
|
599
|
-
events?: unknown;
|
|
600
815
|
} & {} & {
|
|
601
816
|
type?: string | number | boolean | {
|
|
602
817
|
[key: string]: any;
|
|
@@ -688,6 +903,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
688
903
|
roseType?: string | number | boolean | {
|
|
689
904
|
[key: string]: any;
|
|
690
905
|
};
|
|
906
|
+
dataFieldNames?: string | number | boolean | {
|
|
907
|
+
[key: string]: any;
|
|
908
|
+
};
|
|
691
909
|
id?: string | number | boolean | {
|
|
692
910
|
[key: string]: any;
|
|
693
911
|
};
|
|
@@ -727,6 +945,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
727
945
|
isRequestData?: string | number | boolean | {
|
|
728
946
|
[key: string]: any;
|
|
729
947
|
};
|
|
948
|
+
events?: string | number | boolean | {
|
|
949
|
+
[key: string]: any;
|
|
950
|
+
};
|
|
730
951
|
requestUrl?: string | number | boolean | {
|
|
731
952
|
[key: string]: any;
|
|
732
953
|
};
|
|
@@ -745,8 +966,5 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
745
966
|
requestParams?: string | number | boolean | {
|
|
746
967
|
[key: string]: any;
|
|
747
968
|
};
|
|
748
|
-
events?: string | number | boolean | {
|
|
749
|
-
[key: string]: any;
|
|
750
|
-
};
|
|
751
969
|
}>, {}>;
|
|
752
970
|
export default _default;
|