@ecan-bi/datav 1.1.39 → 1.1.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.es.js +1525 -1499
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +6 -6
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/container/border/Border.vue.d.ts +144 -618
- package/types/container/border/index.d.ts +144 -618
- package/types/container/border/props.d.ts +72 -309
- package/types/container/modal/Modal.vue.d.ts +74 -237
- package/types/container/modal/index.d.ts +73 -237
- package/types/container/modal/props.d.ts +36 -117
- package/types/container/tabs/Tabs.vue.d.ts +184 -380
- package/types/container/tabs/index.d.ts +184 -380
- package/types/container/tabs/props.d.ts +94 -190
- package/types/control/button/Button.vue.d.ts +126 -418
- package/types/control/button/index.d.ts +126 -418
- package/types/control/button/props.d.ts +63 -209
- package/types/control/checkbox/Checkbox.vue.d.ts +102 -334
- package/types/control/checkbox/index.d.ts +102 -334
- package/types/control/checkbox/props.d.ts +51 -167
- package/types/control/date-picker/DatePicker.vue.d.ts +119 -391
- package/types/control/date-picker/index.d.ts +119 -391
- package/types/control/date-picker/props.d.ts +59 -195
- package/types/control/input/Input.vue.d.ts +102 -334
- package/types/control/input/index.d.ts +102 -334
- package/types/control/input/props.d.ts +51 -167
- package/types/control/range-picker/RangePicker.vue.d.ts +128 -420
- package/types/control/range-picker/index.d.ts +128 -420
- package/types/control/range-picker/props.d.ts +63 -209
- package/types/control/select/Select.vue.d.ts +125 -531
- package/types/control/select/index.d.ts +125 -531
- package/types/control/select/props.d.ts +59 -265
- package/types/graph/bar/Bar.vue.d.ts +374 -2044
- package/types/graph/bar/index.d.ts +373 -2043
- package/types/graph/bar/props.d.ts +166 -962
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +340 -741
- package/types/graph/combo-graph/index.d.ts +339 -741
- package/types/graph/combo-graph/props.d.ts +154 -355
- package/types/graph/custom-graph/CustomGraph.vue.d.ts +100 -420
- package/types/graph/custom-graph/index.d.ts +100 -420
- package/types/graph/custom-graph/props.d.ts +50 -210
- package/types/graph/line/Line.vue.d.ts +364 -2546
- package/types/graph/line/index.d.ts +364 -2546
- package/types/graph/line/props.d.ts +149 -1211
- package/types/graph/pie/Pie.vue.d.ts +317 -722
- package/types/graph/pie/index.d.ts +316 -722
- package/types/graph/pie/props.d.ts +142 -345
- package/types/graph/scatter/Scatter.vue.d.ts +293 -639
- package/types/graph/scatter/index.d.ts +293 -639
- package/types/graph/scatter/props.d.ts +132 -305
- package/types/map/map/Map.vue.d.ts +269 -1404
- package/types/map/map/index.d.ts +269 -1404
- package/types/map/map/props.d.ts +121 -664
- package/types/media/iframe/Iframe.vue.d.ts +102 -334
- package/types/media/iframe/index.d.ts +102 -334
- package/types/media/iframe/props.d.ts +51 -167
- package/types/media/image/Image.vue.d.ts +110 -362
- package/types/media/image/index.d.ts +110 -362
- package/types/media/image/props.d.ts +55 -181
- package/types/setting/page-config/PageConfig.vue.d.ts +28 -70
- package/types/setting/page-config/index.d.ts +28 -70
- package/types/setting/page-config/props.d.ts +14 -35
- package/types/setting/provider-config/ProviderConfig.vue.d.ts +22 -62
- package/types/setting/provider-config/index.d.ts +22 -62
- package/types/setting/provider-config/props.d.ts +11 -31
- package/types/table/table/Table.vue.d.ts +234 -1660
- package/types/table/table/index.d.ts +234 -1660
- package/types/table/table/props.d.ts +101 -811
- package/types/text/list/List.vue.d.ts +136 -688
- package/types/text/list/index.d.ts +136 -688
- package/types/text/list/props.d.ts +68 -344
- package/types/text/proportion/Proportion.vue.d.ts +148 -636
- package/types/text/proportion/index.d.ts +148 -636
- package/types/text/proportion/props.d.ts +74 -318
- package/types/text/text/Text.vue.d.ts +160 -690
- package/types/text/text/index.d.ts +160 -690
- package/types/text/text/props.d.ts +81 -346
- package/types/text/time-display/TimeDisplay.vue.d.ts +126 -418
- package/types/text/time-display/index.d.ts +126 -418
- package/types/text/time-display/props.d.ts +63 -209
- package/types/utils/props.d.ts +3 -5
|
@@ -1,515 +1,315 @@
|
|
|
1
|
+
import { KeyTypeDataFieldNames } from '../../utils/props';
|
|
1
2
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
3
|
data: {
|
|
3
|
-
type?:
|
|
4
|
-
default?:
|
|
5
|
-
} | {
|
|
6
|
-
type: any;
|
|
7
|
-
default: any;
|
|
4
|
+
type?: import("vue").PropType<import('../../utils/props').Data>;
|
|
5
|
+
default?: import('../../utils/props').Data;
|
|
8
6
|
};
|
|
9
7
|
titleText: {
|
|
10
|
-
type?:
|
|
11
|
-
default?:
|
|
12
|
-
} | {
|
|
13
|
-
type: any;
|
|
14
|
-
default: any;
|
|
8
|
+
type?: import("vue").PropType<string>;
|
|
9
|
+
default?: string;
|
|
15
10
|
};
|
|
16
11
|
titleSubtext: {
|
|
17
|
-
type?:
|
|
18
|
-
default?:
|
|
19
|
-
} | {
|
|
20
|
-
type: any;
|
|
21
|
-
default: any;
|
|
12
|
+
type?: import("vue").PropType<string>;
|
|
13
|
+
default?: string;
|
|
22
14
|
};
|
|
23
15
|
colors: {
|
|
24
|
-
type?:
|
|
25
|
-
default?:
|
|
26
|
-
} | {
|
|
27
|
-
type: any;
|
|
28
|
-
default: any;
|
|
16
|
+
type?: import("vue").PropType<string[]>;
|
|
17
|
+
default?: string[];
|
|
29
18
|
};
|
|
30
19
|
legendShow: {
|
|
31
|
-
type?:
|
|
32
|
-
default?:
|
|
33
|
-
} | {
|
|
34
|
-
type: any;
|
|
35
|
-
default: any;
|
|
20
|
+
type?: import("vue").PropType<boolean>;
|
|
21
|
+
default?: boolean;
|
|
36
22
|
};
|
|
37
23
|
legendTextStyleColor: {
|
|
38
|
-
type?:
|
|
39
|
-
default?:
|
|
40
|
-
} | {
|
|
41
|
-
type: any;
|
|
42
|
-
default: any;
|
|
24
|
+
type?: import("vue").PropType<string>;
|
|
25
|
+
default?: string;
|
|
43
26
|
};
|
|
44
27
|
legendLeft: {
|
|
45
|
-
type?:
|
|
46
|
-
default?:
|
|
47
|
-
} | {
|
|
48
|
-
type: any;
|
|
49
|
-
default: any;
|
|
28
|
+
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
29
|
+
default?: "left" | "center" | "right";
|
|
50
30
|
};
|
|
51
31
|
legendTop: {
|
|
52
|
-
type?:
|
|
53
|
-
default?:
|
|
54
|
-
} | {
|
|
55
|
-
type: any;
|
|
56
|
-
default: any;
|
|
32
|
+
type?: import("vue").PropType<"top" | "bottom" | "middle">;
|
|
33
|
+
default?: "top" | "bottom" | "middle";
|
|
57
34
|
};
|
|
58
35
|
legendOrient: {
|
|
59
|
-
type?:
|
|
60
|
-
default?:
|
|
61
|
-
} | {
|
|
62
|
-
type: any;
|
|
63
|
-
default: any;
|
|
36
|
+
type?: import("vue").PropType<"horizontal" | "vertical">;
|
|
37
|
+
default?: "horizontal" | "vertical";
|
|
64
38
|
};
|
|
65
39
|
xAxisSplitLineShow: {
|
|
66
|
-
type?:
|
|
67
|
-
default?:
|
|
68
|
-
} | {
|
|
69
|
-
type: any;
|
|
70
|
-
default: any;
|
|
40
|
+
type?: import("vue").PropType<boolean>;
|
|
41
|
+
default?: boolean;
|
|
71
42
|
};
|
|
72
43
|
xAxisMinInterval: {
|
|
73
|
-
type?:
|
|
74
|
-
default?:
|
|
75
|
-
} | {
|
|
76
|
-
type: any;
|
|
77
|
-
default: any;
|
|
44
|
+
type?: import("vue").PropType<number>;
|
|
45
|
+
default?: number;
|
|
78
46
|
};
|
|
79
47
|
xAxisLabelColor: {
|
|
80
|
-
type?:
|
|
81
|
-
default?:
|
|
82
|
-
} | {
|
|
83
|
-
type: any;
|
|
84
|
-
default: any;
|
|
48
|
+
type?: import("vue").PropType<string>;
|
|
49
|
+
default?: string;
|
|
85
50
|
};
|
|
86
51
|
xAxisLineStyleColor: {
|
|
87
|
-
type?:
|
|
88
|
-
default?:
|
|
89
|
-
} | {
|
|
90
|
-
type: any;
|
|
91
|
-
default: any;
|
|
52
|
+
type?: import("vue").PropType<string>;
|
|
53
|
+
default?: string;
|
|
92
54
|
};
|
|
93
55
|
xAxisTickShow: {
|
|
94
|
-
type?:
|
|
95
|
-
default?:
|
|
96
|
-
} | {
|
|
97
|
-
type: any;
|
|
98
|
-
default: any;
|
|
56
|
+
type?: import("vue").PropType<boolean>;
|
|
57
|
+
default?: boolean;
|
|
99
58
|
};
|
|
100
59
|
yAxisSplitLineShow: {
|
|
101
|
-
type?:
|
|
102
|
-
default?:
|
|
103
|
-
} | {
|
|
104
|
-
type: any;
|
|
105
|
-
default: any;
|
|
60
|
+
type?: import("vue").PropType<boolean>;
|
|
61
|
+
default?: boolean;
|
|
106
62
|
};
|
|
107
63
|
xAxisSplitLineStyleColor: {
|
|
108
|
-
type?:
|
|
109
|
-
default?:
|
|
110
|
-
} | {
|
|
111
|
-
type: any;
|
|
112
|
-
default: any;
|
|
64
|
+
type?: import("vue").PropType<string>;
|
|
65
|
+
default?: string;
|
|
113
66
|
};
|
|
114
67
|
yAxisSplitLineStyleColor: {
|
|
115
|
-
type?:
|
|
116
|
-
default?:
|
|
117
|
-
} | {
|
|
118
|
-
type: any;
|
|
119
|
-
default: any;
|
|
68
|
+
type?: import("vue").PropType<string>;
|
|
69
|
+
default?: string;
|
|
120
70
|
};
|
|
121
71
|
yAxisLabelColor: {
|
|
122
|
-
type?:
|
|
123
|
-
default?:
|
|
124
|
-
} | {
|
|
125
|
-
type: any;
|
|
126
|
-
default: any;
|
|
72
|
+
type?: import("vue").PropType<string>;
|
|
73
|
+
default?: string;
|
|
127
74
|
};
|
|
128
75
|
yAxisLineStyleColor: {
|
|
129
|
-
type?:
|
|
130
|
-
default?:
|
|
131
|
-
} | {
|
|
132
|
-
type: any;
|
|
133
|
-
default: any;
|
|
76
|
+
type?: import("vue").PropType<string>;
|
|
77
|
+
default?: string;
|
|
134
78
|
};
|
|
135
79
|
valueTypeDataFieldNames: {
|
|
136
|
-
type?:
|
|
137
|
-
default?:
|
|
138
|
-
} | {
|
|
139
|
-
type: any;
|
|
140
|
-
default: any;
|
|
80
|
+
type?: import("vue").PropType<import('../../utils/props').ValueTypeDataFieldNames>;
|
|
81
|
+
default?: import('../../utils/props').ValueTypeDataFieldNames;
|
|
141
82
|
};
|
|
142
83
|
keyTypeDataFieldNames: {
|
|
143
|
-
type?:
|
|
144
|
-
default?:
|
|
145
|
-
} | {
|
|
146
|
-
type: any;
|
|
147
|
-
default: any;
|
|
84
|
+
type?: import("vue").PropType<KeyTypeDataFieldNames>;
|
|
85
|
+
default?: KeyTypeDataFieldNames;
|
|
148
86
|
};
|
|
149
87
|
tooltipShow: {
|
|
150
|
-
type?:
|
|
151
|
-
default?:
|
|
152
|
-
} | {
|
|
153
|
-
type: any;
|
|
154
|
-
default: any;
|
|
88
|
+
type?: import("vue").PropType<boolean>;
|
|
89
|
+
default?: boolean;
|
|
155
90
|
};
|
|
156
91
|
tooltipTrigger: {
|
|
157
|
-
type?:
|
|
158
|
-
default?:
|
|
159
|
-
} | {
|
|
160
|
-
type: any;
|
|
161
|
-
default: any;
|
|
92
|
+
type?: import("vue").PropType<"none" | "axis" | "item">;
|
|
93
|
+
default?: "none" | "axis" | "item";
|
|
162
94
|
};
|
|
163
95
|
tooltipTextStyleColor: {
|
|
164
|
-
type?:
|
|
165
|
-
default?:
|
|
166
|
-
} | {
|
|
167
|
-
type: any;
|
|
168
|
-
default: any;
|
|
96
|
+
type?: import("vue").PropType<string>;
|
|
97
|
+
default?: string;
|
|
169
98
|
};
|
|
170
99
|
tooltipFormatter: {
|
|
171
|
-
type?:
|
|
172
|
-
default?:
|
|
173
|
-
} | {
|
|
174
|
-
type: any;
|
|
175
|
-
default: any;
|
|
100
|
+
type?: import("vue").PropType<string>;
|
|
101
|
+
default?: string;
|
|
176
102
|
};
|
|
177
103
|
seriesTypes: {
|
|
178
|
-
type?:
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
104
|
+
type?: import("vue").PropType<{
|
|
105
|
+
[key: string]: any;
|
|
106
|
+
}[]>;
|
|
107
|
+
default?: {
|
|
108
|
+
[key: string]: any;
|
|
109
|
+
}[];
|
|
183
110
|
};
|
|
184
111
|
dataFieldConfigType: {
|
|
185
|
-
type?:
|
|
186
|
-
default?:
|
|
187
|
-
} | {
|
|
188
|
-
type: any;
|
|
189
|
-
default: any;
|
|
112
|
+
type?: import("vue").PropType<"value" | "key">;
|
|
113
|
+
default?: "value" | "key";
|
|
190
114
|
};
|
|
191
115
|
yAxis: {
|
|
192
|
-
type?:
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
116
|
+
type?: import("vue").PropType<{
|
|
117
|
+
[key: string]: any;
|
|
118
|
+
}[]>;
|
|
119
|
+
default?: {
|
|
120
|
+
[key: string]: any;
|
|
121
|
+
}[];
|
|
197
122
|
};
|
|
198
123
|
yAxisMinInterval: {
|
|
199
|
-
type?:
|
|
200
|
-
default?:
|
|
201
|
-
} | {
|
|
202
|
-
type: any;
|
|
203
|
-
default: any;
|
|
124
|
+
type?: import("vue").PropType<number>;
|
|
125
|
+
default?: number;
|
|
204
126
|
};
|
|
205
127
|
graphicConfig?: {
|
|
206
|
-
type?:
|
|
207
|
-
default?:
|
|
208
|
-
} | {
|
|
209
|
-
type: any;
|
|
210
|
-
default: any;
|
|
128
|
+
type?: import("vue").PropType<any>;
|
|
129
|
+
default?: any;
|
|
211
130
|
};
|
|
212
131
|
gridContainLabel: {
|
|
213
|
-
type?:
|
|
214
|
-
default?:
|
|
215
|
-
} | {
|
|
216
|
-
type: any;
|
|
217
|
-
default: any;
|
|
132
|
+
type?: import("vue").PropType<boolean>;
|
|
133
|
+
default?: boolean;
|
|
218
134
|
};
|
|
219
135
|
gridTop: {
|
|
220
|
-
type?:
|
|
221
|
-
default?:
|
|
222
|
-
} | {
|
|
223
|
-
type: any;
|
|
224
|
-
default: any;
|
|
136
|
+
type?: import("vue").PropType<string>;
|
|
137
|
+
default?: string;
|
|
225
138
|
};
|
|
226
139
|
gridBottom: {
|
|
227
|
-
type?:
|
|
228
|
-
default?:
|
|
229
|
-
} | {
|
|
230
|
-
type: any;
|
|
231
|
-
default: any;
|
|
140
|
+
type?: import("vue").PropType<string>;
|
|
141
|
+
default?: string;
|
|
232
142
|
};
|
|
233
143
|
gridLeft: {
|
|
234
|
-
type?:
|
|
235
|
-
default?:
|
|
236
|
-
} | {
|
|
237
|
-
type: any;
|
|
238
|
-
default: any;
|
|
144
|
+
type?: import("vue").PropType<string>;
|
|
145
|
+
default?: string;
|
|
239
146
|
};
|
|
240
147
|
gridRight: {
|
|
241
|
-
type?:
|
|
242
|
-
default?:
|
|
243
|
-
} | {
|
|
244
|
-
type: any;
|
|
245
|
-
default: any;
|
|
148
|
+
type?: import("vue").PropType<string>;
|
|
149
|
+
default?: string;
|
|
246
150
|
};
|
|
247
151
|
toolboxShow: {
|
|
248
|
-
type?:
|
|
249
|
-
default?:
|
|
250
|
-
} | {
|
|
251
|
-
type: any;
|
|
252
|
-
default: any;
|
|
152
|
+
type?: import("vue").PropType<boolean>;
|
|
153
|
+
default?: boolean;
|
|
253
154
|
};
|
|
254
155
|
toolboxOrient: {
|
|
255
|
-
type?:
|
|
256
|
-
default?:
|
|
257
|
-
} | {
|
|
258
|
-
type: any;
|
|
259
|
-
default: any;
|
|
156
|
+
type?: import("vue").PropType<"horizontal" | "vertical">;
|
|
157
|
+
default?: "horizontal" | "vertical";
|
|
260
158
|
};
|
|
261
159
|
toolboxItemSize: {
|
|
262
|
-
type?:
|
|
263
|
-
default?:
|
|
264
|
-
} | {
|
|
265
|
-
type: any;
|
|
266
|
-
default: any;
|
|
160
|
+
type?: import("vue").PropType<number>;
|
|
161
|
+
default?: number;
|
|
267
162
|
};
|
|
268
163
|
toolboxItemGap: {
|
|
269
|
-
type?:
|
|
270
|
-
default?:
|
|
271
|
-
} | {
|
|
272
|
-
type: any;
|
|
273
|
-
default: any;
|
|
164
|
+
type?: import("vue").PropType<number>;
|
|
165
|
+
default?: number;
|
|
274
166
|
};
|
|
275
167
|
toolboxLeft: {
|
|
276
|
-
type?:
|
|
277
|
-
default?:
|
|
278
|
-
} | {
|
|
279
|
-
type: any;
|
|
280
|
-
default: any;
|
|
168
|
+
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
169
|
+
default?: "left" | "center" | "right";
|
|
281
170
|
};
|
|
282
171
|
toolboxTop: {
|
|
283
|
-
type?:
|
|
284
|
-
default?:
|
|
285
|
-
} | {
|
|
286
|
-
type: any;
|
|
287
|
-
default: any;
|
|
172
|
+
type?: import("vue").PropType<"top" | "bottom" | "middle">;
|
|
173
|
+
default?: "top" | "bottom" | "middle";
|
|
288
174
|
};
|
|
289
175
|
toolboxIconStyleBorderColor: {
|
|
290
|
-
type?:
|
|
291
|
-
default?:
|
|
292
|
-
} | {
|
|
293
|
-
type: any;
|
|
294
|
-
default: any;
|
|
176
|
+
type?: import("vue").PropType<string>;
|
|
177
|
+
default?: string;
|
|
295
178
|
};
|
|
296
179
|
toolboxDownloadUrl: {
|
|
297
|
-
type?:
|
|
298
|
-
default?:
|
|
299
|
-
} | {
|
|
300
|
-
type: any;
|
|
301
|
-
default: any;
|
|
180
|
+
type?: import("vue").PropType<string>;
|
|
181
|
+
default?: string;
|
|
302
182
|
};
|
|
303
183
|
toolboxInfoText: {
|
|
304
|
-
type?:
|
|
305
|
-
default?:
|
|
306
|
-
} | {
|
|
307
|
-
type: any;
|
|
308
|
-
default: any;
|
|
184
|
+
type?: import("vue").PropType<string>;
|
|
185
|
+
default?: string;
|
|
309
186
|
};
|
|
310
187
|
symbolSize: {
|
|
311
|
-
type?:
|
|
312
|
-
default?:
|
|
313
|
-
} | {
|
|
314
|
-
type: any;
|
|
315
|
-
default: any;
|
|
188
|
+
type?: import("vue").PropType<number>;
|
|
189
|
+
default?: number;
|
|
316
190
|
};
|
|
317
191
|
lineStyleWidth: {
|
|
318
|
-
type?:
|
|
319
|
-
default?:
|
|
320
|
-
} | {
|
|
321
|
-
type: any;
|
|
322
|
-
default: any;
|
|
192
|
+
type?: import("vue").PropType<number>;
|
|
193
|
+
default?: number;
|
|
323
194
|
};
|
|
324
195
|
smooth: {
|
|
325
|
-
type?:
|
|
326
|
-
default?:
|
|
327
|
-
} | {
|
|
328
|
-
type: any;
|
|
329
|
-
default: any;
|
|
196
|
+
type?: import("vue").PropType<boolean>;
|
|
197
|
+
default?: boolean;
|
|
330
198
|
};
|
|
331
199
|
areaStyleOpacity: {
|
|
332
|
-
type?:
|
|
333
|
-
default?:
|
|
334
|
-
} | {
|
|
335
|
-
type: any;
|
|
336
|
-
default: any;
|
|
200
|
+
type?: import("vue").PropType<number>;
|
|
201
|
+
default?: number;
|
|
337
202
|
};
|
|
338
203
|
barWidth: {
|
|
339
|
-
type?:
|
|
340
|
-
default?:
|
|
341
|
-
} | {
|
|
342
|
-
type: any;
|
|
343
|
-
default: any;
|
|
204
|
+
type?: import("vue").PropType<string>;
|
|
205
|
+
default?: string;
|
|
344
206
|
};
|
|
345
207
|
id: {
|
|
346
|
-
type?:
|
|
347
|
-
default?:
|
|
348
|
-
} | {
|
|
349
|
-
type: any;
|
|
350
|
-
default: any;
|
|
208
|
+
type?: import("vue").PropType<string>;
|
|
209
|
+
default?: string;
|
|
351
210
|
};
|
|
352
211
|
name: {
|
|
353
|
-
type?:
|
|
354
|
-
default?:
|
|
355
|
-
} | {
|
|
356
|
-
type: any;
|
|
357
|
-
default: any;
|
|
212
|
+
type?: import("vue").PropType<string>;
|
|
213
|
+
default?: string;
|
|
358
214
|
};
|
|
359
215
|
keyName: {
|
|
360
|
-
type?:
|
|
361
|
-
default?:
|
|
362
|
-
} | {
|
|
363
|
-
type: any;
|
|
364
|
-
default: any;
|
|
216
|
+
type?: import("vue").PropType<string>;
|
|
217
|
+
default?: string;
|
|
365
218
|
};
|
|
366
219
|
type: {
|
|
367
|
-
type?:
|
|
368
|
-
default?:
|
|
369
|
-
} | {
|
|
370
|
-
type: any;
|
|
371
|
-
default: any;
|
|
220
|
+
type?: import("vue").PropType<string>;
|
|
221
|
+
default?: string;
|
|
372
222
|
};
|
|
373
223
|
width: {
|
|
374
|
-
type?:
|
|
375
|
-
default?:
|
|
376
|
-
} | {
|
|
377
|
-
type: any;
|
|
378
|
-
default: any;
|
|
224
|
+
type?: import("vue").PropType<string>;
|
|
225
|
+
default?: string;
|
|
379
226
|
};
|
|
380
227
|
height: {
|
|
381
|
-
type?:
|
|
382
|
-
default?:
|
|
383
|
-
} | {
|
|
384
|
-
type: any;
|
|
385
|
-
default: any;
|
|
228
|
+
type?: import("vue").PropType<string>;
|
|
229
|
+
default?: string;
|
|
386
230
|
};
|
|
387
231
|
position: {
|
|
388
|
-
type?:
|
|
389
|
-
default?:
|
|
390
|
-
} | {
|
|
391
|
-
type: any;
|
|
392
|
-
default: any;
|
|
232
|
+
type?: import("vue").PropType<string>;
|
|
233
|
+
default?: string;
|
|
393
234
|
};
|
|
394
235
|
top: {
|
|
395
|
-
type?:
|
|
396
|
-
default?:
|
|
397
|
-
} | {
|
|
398
|
-
type: any;
|
|
399
|
-
default: any;
|
|
236
|
+
type?: import("vue").PropType<string>;
|
|
237
|
+
default?: string;
|
|
400
238
|
};
|
|
401
239
|
left: {
|
|
402
|
-
type?:
|
|
403
|
-
default?:
|
|
404
|
-
} | {
|
|
405
|
-
type: any;
|
|
406
|
-
default: any;
|
|
240
|
+
type?: import("vue").PropType<string>;
|
|
241
|
+
default?: string;
|
|
407
242
|
};
|
|
408
243
|
zIndex: {
|
|
409
|
-
type?:
|
|
410
|
-
default?:
|
|
411
|
-
} | {
|
|
412
|
-
type: any;
|
|
413
|
-
default: any;
|
|
244
|
+
type?: import("vue").PropType<number>;
|
|
245
|
+
default?: number;
|
|
414
246
|
};
|
|
415
247
|
rotate: {
|
|
416
|
-
type?:
|
|
417
|
-
default?:
|
|
418
|
-
} | {
|
|
419
|
-
type: any;
|
|
420
|
-
default: any;
|
|
248
|
+
type?: import("vue").PropType<string>;
|
|
249
|
+
default?: string;
|
|
421
250
|
};
|
|
422
251
|
isShow: {
|
|
423
|
-
type?:
|
|
424
|
-
default?:
|
|
425
|
-
} | {
|
|
426
|
-
type: any;
|
|
427
|
-
default: any;
|
|
252
|
+
type?: import("vue").PropType<boolean>;
|
|
253
|
+
default?: boolean;
|
|
428
254
|
};
|
|
429
255
|
isRender: {
|
|
430
|
-
type?:
|
|
431
|
-
default?:
|
|
432
|
-
} | {
|
|
433
|
-
type: any;
|
|
434
|
-
default: any;
|
|
256
|
+
type?: import("vue").PropType<boolean>;
|
|
257
|
+
default?: boolean;
|
|
435
258
|
};
|
|
436
259
|
events: {
|
|
437
|
-
type?:
|
|
438
|
-
default?:
|
|
439
|
-
} | {
|
|
440
|
-
type: any;
|
|
441
|
-
default: any;
|
|
260
|
+
type?: import("vue").PropType<import('../../utils/props').Events>;
|
|
261
|
+
default?: import('../../utils/props').Events;
|
|
442
262
|
};
|
|
443
263
|
requestUrl: {
|
|
444
|
-
type?:
|
|
445
|
-
default?:
|
|
446
|
-
} | {
|
|
447
|
-
type: any;
|
|
448
|
-
default: any;
|
|
264
|
+
type?: import("vue").PropType<string>;
|
|
265
|
+
default?: string;
|
|
449
266
|
};
|
|
450
267
|
requestMethod: {
|
|
451
|
-
type?:
|
|
452
|
-
default?:
|
|
453
|
-
} | {
|
|
454
|
-
type: any;
|
|
455
|
-
default: any;
|
|
268
|
+
type?: import("vue").PropType<import('../../utils/props').RequestMethod>;
|
|
269
|
+
default?: import('../../utils/props').RequestMethod;
|
|
456
270
|
};
|
|
457
271
|
requestHeaders: {
|
|
458
|
-
type?:
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
272
|
+
type?: import("vue").PropType<{
|
|
273
|
+
[key: string]: any;
|
|
274
|
+
}>;
|
|
275
|
+
default?: {
|
|
276
|
+
[key: string]: any;
|
|
277
|
+
};
|
|
463
278
|
};
|
|
464
279
|
isOpenRequestTimer: {
|
|
465
|
-
type?:
|
|
466
|
-
default?:
|
|
467
|
-
} | {
|
|
468
|
-
type: any;
|
|
469
|
-
default: any;
|
|
280
|
+
type?: import("vue").PropType<boolean>;
|
|
281
|
+
default?: boolean;
|
|
470
282
|
};
|
|
471
283
|
requestInterval: {
|
|
472
|
-
type?:
|
|
473
|
-
default?:
|
|
474
|
-
} | {
|
|
475
|
-
type: any;
|
|
476
|
-
default: any;
|
|
284
|
+
type?: import("vue").PropType<number>;
|
|
285
|
+
default?: number;
|
|
477
286
|
};
|
|
478
287
|
requestParams: {
|
|
479
|
-
type?:
|
|
480
|
-
default?:
|
|
481
|
-
} | {
|
|
482
|
-
type: any;
|
|
483
|
-
default: any;
|
|
288
|
+
type?: import("vue").PropType<import('../../utils/props').RequestParams>;
|
|
289
|
+
default?: import('../../utils/props').RequestParams;
|
|
484
290
|
};
|
|
485
291
|
requestSort: {
|
|
486
|
-
type?:
|
|
487
|
-
default?:
|
|
488
|
-
} | {
|
|
489
|
-
type: any;
|
|
490
|
-
default: any;
|
|
292
|
+
type?: import("vue").PropType<number>;
|
|
293
|
+
default?: number;
|
|
491
294
|
};
|
|
492
295
|
dataType: {
|
|
493
|
-
type?:
|
|
494
|
-
default?:
|
|
495
|
-
} | {
|
|
496
|
-
type: any;
|
|
497
|
-
default: any;
|
|
296
|
+
type?: import("vue").PropType<"indicator" | "static" | "request">;
|
|
297
|
+
default?: "indicator" | "static" | "request";
|
|
498
298
|
};
|
|
499
299
|
}, {
|
|
500
300
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
501
301
|
option: import("vue").ComputedRef<{
|
|
502
302
|
title: {
|
|
503
|
-
text:
|
|
504
|
-
subtext:
|
|
303
|
+
text: string;
|
|
304
|
+
subtext: string;
|
|
505
305
|
left: string;
|
|
506
306
|
};
|
|
507
307
|
toolbox: {
|
|
508
|
-
show:
|
|
509
|
-
left:
|
|
510
|
-
top:
|
|
511
|
-
itemSize:
|
|
512
|
-
itemGap:
|
|
308
|
+
show: boolean;
|
|
309
|
+
left: "left" | "center" | "right";
|
|
310
|
+
top: "top" | "bottom" | "middle";
|
|
311
|
+
itemSize: number;
|
|
312
|
+
itemGap: number;
|
|
513
313
|
feature: {
|
|
514
314
|
myDownload: {
|
|
515
315
|
show: boolean;
|
|
@@ -532,70 +332,70 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
532
332
|
};
|
|
533
333
|
};
|
|
534
334
|
grid: {
|
|
535
|
-
top:
|
|
536
|
-
bottom:
|
|
537
|
-
left:
|
|
538
|
-
right:
|
|
539
|
-
containLabel:
|
|
335
|
+
top: string;
|
|
336
|
+
bottom: string;
|
|
337
|
+
left: string;
|
|
338
|
+
right: string;
|
|
339
|
+
containLabel: boolean;
|
|
540
340
|
};
|
|
541
|
-
color:
|
|
341
|
+
color: string[];
|
|
542
342
|
legend: {
|
|
543
|
-
show:
|
|
544
|
-
orient:
|
|
545
|
-
top:
|
|
546
|
-
left:
|
|
343
|
+
show: boolean;
|
|
344
|
+
orient: "horizontal" | "vertical";
|
|
345
|
+
top: "top" | "bottom" | "middle";
|
|
346
|
+
left: "left" | "center" | "right";
|
|
547
347
|
textStyle: {
|
|
548
|
-
color:
|
|
348
|
+
color: string;
|
|
549
349
|
};
|
|
550
350
|
};
|
|
551
351
|
tooltip: {
|
|
552
352
|
trigger: string;
|
|
553
|
-
show:
|
|
353
|
+
show: boolean;
|
|
554
354
|
formatter: (params: any) => string;
|
|
555
355
|
textStyle: {
|
|
556
|
-
color:
|
|
356
|
+
color: string;
|
|
557
357
|
};
|
|
558
358
|
};
|
|
559
359
|
xAxis: {
|
|
560
|
-
minInterval:
|
|
360
|
+
minInterval: number;
|
|
561
361
|
type: string;
|
|
562
362
|
data: {
|
|
563
363
|
[x: string]: any;
|
|
564
364
|
}[];
|
|
565
365
|
splitLine: {
|
|
566
|
-
show:
|
|
366
|
+
show: boolean;
|
|
567
367
|
lineStyle: {
|
|
568
|
-
color:
|
|
368
|
+
color: string;
|
|
569
369
|
};
|
|
570
370
|
};
|
|
571
371
|
axisLabel: {
|
|
572
|
-
color:
|
|
372
|
+
color: string;
|
|
573
373
|
};
|
|
574
374
|
axisLine: {
|
|
575
375
|
lineStyle: {
|
|
576
|
-
color:
|
|
376
|
+
color: string;
|
|
577
377
|
};
|
|
578
378
|
};
|
|
579
379
|
axisTick: {
|
|
580
|
-
show:
|
|
380
|
+
show: boolean;
|
|
581
381
|
};
|
|
582
382
|
};
|
|
583
383
|
yAxis: {
|
|
584
384
|
type: string;
|
|
585
|
-
minInterval:
|
|
385
|
+
minInterval: number;
|
|
586
386
|
splitLine: {
|
|
587
|
-
show:
|
|
387
|
+
show: boolean;
|
|
588
388
|
lineStyle: {
|
|
589
|
-
color:
|
|
389
|
+
color: string;
|
|
590
390
|
};
|
|
591
391
|
};
|
|
592
392
|
axisLabel: {
|
|
593
|
-
color:
|
|
393
|
+
color: string;
|
|
594
394
|
formatter(value: string): string;
|
|
595
395
|
};
|
|
596
396
|
axisLine: {
|
|
597
397
|
lineStyle: {
|
|
598
|
-
color:
|
|
398
|
+
color: string;
|
|
599
399
|
};
|
|
600
400
|
};
|
|
601
401
|
}[];
|
|
@@ -609,501 +409,300 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
609
409
|
hideModal: () => void;
|
|
610
410
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
611
411
|
data: {
|
|
612
|
-
type?:
|
|
613
|
-
default?:
|
|
614
|
-
} | {
|
|
615
|
-
type: any;
|
|
616
|
-
default: any;
|
|
412
|
+
type?: import("vue").PropType<import('../../utils/props').Data>;
|
|
413
|
+
default?: import('../../utils/props').Data;
|
|
617
414
|
};
|
|
618
415
|
titleText: {
|
|
619
|
-
type?:
|
|
620
|
-
default?:
|
|
621
|
-
} | {
|
|
622
|
-
type: any;
|
|
623
|
-
default: any;
|
|
416
|
+
type?: import("vue").PropType<string>;
|
|
417
|
+
default?: string;
|
|
624
418
|
};
|
|
625
419
|
titleSubtext: {
|
|
626
|
-
type?:
|
|
627
|
-
default?:
|
|
628
|
-
} | {
|
|
629
|
-
type: any;
|
|
630
|
-
default: any;
|
|
420
|
+
type?: import("vue").PropType<string>;
|
|
421
|
+
default?: string;
|
|
631
422
|
};
|
|
632
423
|
colors: {
|
|
633
|
-
type?:
|
|
634
|
-
default?:
|
|
635
|
-
} | {
|
|
636
|
-
type: any;
|
|
637
|
-
default: any;
|
|
424
|
+
type?: import("vue").PropType<string[]>;
|
|
425
|
+
default?: string[];
|
|
638
426
|
};
|
|
639
427
|
legendShow: {
|
|
640
|
-
type?:
|
|
641
|
-
default?:
|
|
642
|
-
} | {
|
|
643
|
-
type: any;
|
|
644
|
-
default: any;
|
|
428
|
+
type?: import("vue").PropType<boolean>;
|
|
429
|
+
default?: boolean;
|
|
645
430
|
};
|
|
646
431
|
legendTextStyleColor: {
|
|
647
|
-
type?:
|
|
648
|
-
default?:
|
|
649
|
-
} | {
|
|
650
|
-
type: any;
|
|
651
|
-
default: any;
|
|
432
|
+
type?: import("vue").PropType<string>;
|
|
433
|
+
default?: string;
|
|
652
434
|
};
|
|
653
435
|
legendLeft: {
|
|
654
|
-
type?:
|
|
655
|
-
default?:
|
|
656
|
-
} | {
|
|
657
|
-
type: any;
|
|
658
|
-
default: any;
|
|
436
|
+
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
437
|
+
default?: "left" | "center" | "right";
|
|
659
438
|
};
|
|
660
439
|
legendTop: {
|
|
661
|
-
type?:
|
|
662
|
-
default?:
|
|
663
|
-
} | {
|
|
664
|
-
type: any;
|
|
665
|
-
default: any;
|
|
440
|
+
type?: import("vue").PropType<"top" | "bottom" | "middle">;
|
|
441
|
+
default?: "top" | "bottom" | "middle";
|
|
666
442
|
};
|
|
667
443
|
legendOrient: {
|
|
668
|
-
type?:
|
|
669
|
-
default?:
|
|
670
|
-
} | {
|
|
671
|
-
type: any;
|
|
672
|
-
default: any;
|
|
444
|
+
type?: import("vue").PropType<"horizontal" | "vertical">;
|
|
445
|
+
default?: "horizontal" | "vertical";
|
|
673
446
|
};
|
|
674
447
|
xAxisSplitLineShow: {
|
|
675
|
-
type?:
|
|
676
|
-
default?:
|
|
677
|
-
} | {
|
|
678
|
-
type: any;
|
|
679
|
-
default: any;
|
|
448
|
+
type?: import("vue").PropType<boolean>;
|
|
449
|
+
default?: boolean;
|
|
680
450
|
};
|
|
681
451
|
xAxisMinInterval: {
|
|
682
|
-
type?:
|
|
683
|
-
default?:
|
|
684
|
-
} | {
|
|
685
|
-
type: any;
|
|
686
|
-
default: any;
|
|
452
|
+
type?: import("vue").PropType<number>;
|
|
453
|
+
default?: number;
|
|
687
454
|
};
|
|
688
455
|
xAxisLabelColor: {
|
|
689
|
-
type?:
|
|
690
|
-
default?:
|
|
691
|
-
} | {
|
|
692
|
-
type: any;
|
|
693
|
-
default: any;
|
|
456
|
+
type?: import("vue").PropType<string>;
|
|
457
|
+
default?: string;
|
|
694
458
|
};
|
|
695
459
|
xAxisLineStyleColor: {
|
|
696
|
-
type?:
|
|
697
|
-
default?:
|
|
698
|
-
} | {
|
|
699
|
-
type: any;
|
|
700
|
-
default: any;
|
|
460
|
+
type?: import("vue").PropType<string>;
|
|
461
|
+
default?: string;
|
|
701
462
|
};
|
|
702
463
|
xAxisTickShow: {
|
|
703
|
-
type?:
|
|
704
|
-
default?:
|
|
705
|
-
} | {
|
|
706
|
-
type: any;
|
|
707
|
-
default: any;
|
|
464
|
+
type?: import("vue").PropType<boolean>;
|
|
465
|
+
default?: boolean;
|
|
708
466
|
};
|
|
709
467
|
yAxisSplitLineShow: {
|
|
710
|
-
type?:
|
|
711
|
-
default?:
|
|
712
|
-
} | {
|
|
713
|
-
type: any;
|
|
714
|
-
default: any;
|
|
468
|
+
type?: import("vue").PropType<boolean>;
|
|
469
|
+
default?: boolean;
|
|
715
470
|
};
|
|
716
471
|
xAxisSplitLineStyleColor: {
|
|
717
|
-
type?:
|
|
718
|
-
default?:
|
|
719
|
-
} | {
|
|
720
|
-
type: any;
|
|
721
|
-
default: any;
|
|
472
|
+
type?: import("vue").PropType<string>;
|
|
473
|
+
default?: string;
|
|
722
474
|
};
|
|
723
475
|
yAxisSplitLineStyleColor: {
|
|
724
|
-
type?:
|
|
725
|
-
default?:
|
|
726
|
-
} | {
|
|
727
|
-
type: any;
|
|
728
|
-
default: any;
|
|
476
|
+
type?: import("vue").PropType<string>;
|
|
477
|
+
default?: string;
|
|
729
478
|
};
|
|
730
479
|
yAxisLabelColor: {
|
|
731
|
-
type?:
|
|
732
|
-
default?:
|
|
733
|
-
} | {
|
|
734
|
-
type: any;
|
|
735
|
-
default: any;
|
|
480
|
+
type?: import("vue").PropType<string>;
|
|
481
|
+
default?: string;
|
|
736
482
|
};
|
|
737
483
|
yAxisLineStyleColor: {
|
|
738
|
-
type?:
|
|
739
|
-
default?:
|
|
740
|
-
} | {
|
|
741
|
-
type: any;
|
|
742
|
-
default: any;
|
|
484
|
+
type?: import("vue").PropType<string>;
|
|
485
|
+
default?: string;
|
|
743
486
|
};
|
|
744
487
|
valueTypeDataFieldNames: {
|
|
745
|
-
type?:
|
|
746
|
-
default?:
|
|
747
|
-
} | {
|
|
748
|
-
type: any;
|
|
749
|
-
default: any;
|
|
488
|
+
type?: import("vue").PropType<import('../../utils/props').ValueTypeDataFieldNames>;
|
|
489
|
+
default?: import('../../utils/props').ValueTypeDataFieldNames;
|
|
750
490
|
};
|
|
751
491
|
keyTypeDataFieldNames: {
|
|
752
|
-
type?:
|
|
753
|
-
default?:
|
|
754
|
-
} | {
|
|
755
|
-
type: any;
|
|
756
|
-
default: any;
|
|
492
|
+
type?: import("vue").PropType<KeyTypeDataFieldNames>;
|
|
493
|
+
default?: KeyTypeDataFieldNames;
|
|
757
494
|
};
|
|
758
495
|
tooltipShow: {
|
|
759
|
-
type?:
|
|
760
|
-
default?:
|
|
761
|
-
} | {
|
|
762
|
-
type: any;
|
|
763
|
-
default: any;
|
|
496
|
+
type?: import("vue").PropType<boolean>;
|
|
497
|
+
default?: boolean;
|
|
764
498
|
};
|
|
765
499
|
tooltipTrigger: {
|
|
766
|
-
type?:
|
|
767
|
-
default?:
|
|
768
|
-
} | {
|
|
769
|
-
type: any;
|
|
770
|
-
default: any;
|
|
500
|
+
type?: import("vue").PropType<"none" | "axis" | "item">;
|
|
501
|
+
default?: "none" | "axis" | "item";
|
|
771
502
|
};
|
|
772
503
|
tooltipTextStyleColor: {
|
|
773
|
-
type?:
|
|
774
|
-
default?:
|
|
775
|
-
} | {
|
|
776
|
-
type: any;
|
|
777
|
-
default: any;
|
|
504
|
+
type?: import("vue").PropType<string>;
|
|
505
|
+
default?: string;
|
|
778
506
|
};
|
|
779
507
|
tooltipFormatter: {
|
|
780
|
-
type?:
|
|
781
|
-
default?:
|
|
782
|
-
} | {
|
|
783
|
-
type: any;
|
|
784
|
-
default: any;
|
|
508
|
+
type?: import("vue").PropType<string>;
|
|
509
|
+
default?: string;
|
|
785
510
|
};
|
|
786
511
|
seriesTypes: {
|
|
787
|
-
type?:
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
512
|
+
type?: import("vue").PropType<{
|
|
513
|
+
[key: string]: any;
|
|
514
|
+
}[]>;
|
|
515
|
+
default?: {
|
|
516
|
+
[key: string]: any;
|
|
517
|
+
}[];
|
|
792
518
|
};
|
|
793
519
|
dataFieldConfigType: {
|
|
794
|
-
type?:
|
|
795
|
-
default?:
|
|
796
|
-
} | {
|
|
797
|
-
type: any;
|
|
798
|
-
default: any;
|
|
520
|
+
type?: import("vue").PropType<"value" | "key">;
|
|
521
|
+
default?: "value" | "key";
|
|
799
522
|
};
|
|
800
523
|
yAxis: {
|
|
801
|
-
type?:
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
524
|
+
type?: import("vue").PropType<{
|
|
525
|
+
[key: string]: any;
|
|
526
|
+
}[]>;
|
|
527
|
+
default?: {
|
|
528
|
+
[key: string]: any;
|
|
529
|
+
}[];
|
|
806
530
|
};
|
|
807
531
|
yAxisMinInterval: {
|
|
808
|
-
type?:
|
|
809
|
-
default?:
|
|
810
|
-
} | {
|
|
811
|
-
type: any;
|
|
812
|
-
default: any;
|
|
532
|
+
type?: import("vue").PropType<number>;
|
|
533
|
+
default?: number;
|
|
813
534
|
};
|
|
814
535
|
graphicConfig?: {
|
|
815
|
-
type?:
|
|
816
|
-
default?:
|
|
817
|
-
} | {
|
|
818
|
-
type: any;
|
|
819
|
-
default: any;
|
|
536
|
+
type?: import("vue").PropType<any>;
|
|
537
|
+
default?: any;
|
|
820
538
|
};
|
|
821
539
|
gridContainLabel: {
|
|
822
|
-
type?:
|
|
823
|
-
default?:
|
|
824
|
-
} | {
|
|
825
|
-
type: any;
|
|
826
|
-
default: any;
|
|
540
|
+
type?: import("vue").PropType<boolean>;
|
|
541
|
+
default?: boolean;
|
|
827
542
|
};
|
|
828
543
|
gridTop: {
|
|
829
|
-
type?:
|
|
830
|
-
default?:
|
|
831
|
-
} | {
|
|
832
|
-
type: any;
|
|
833
|
-
default: any;
|
|
544
|
+
type?: import("vue").PropType<string>;
|
|
545
|
+
default?: string;
|
|
834
546
|
};
|
|
835
547
|
gridBottom: {
|
|
836
|
-
type?:
|
|
837
|
-
default?:
|
|
838
|
-
} | {
|
|
839
|
-
type: any;
|
|
840
|
-
default: any;
|
|
548
|
+
type?: import("vue").PropType<string>;
|
|
549
|
+
default?: string;
|
|
841
550
|
};
|
|
842
551
|
gridLeft: {
|
|
843
|
-
type?:
|
|
844
|
-
default?:
|
|
845
|
-
} | {
|
|
846
|
-
type: any;
|
|
847
|
-
default: any;
|
|
552
|
+
type?: import("vue").PropType<string>;
|
|
553
|
+
default?: string;
|
|
848
554
|
};
|
|
849
555
|
gridRight: {
|
|
850
|
-
type?:
|
|
851
|
-
default?:
|
|
852
|
-
} | {
|
|
853
|
-
type: any;
|
|
854
|
-
default: any;
|
|
556
|
+
type?: import("vue").PropType<string>;
|
|
557
|
+
default?: string;
|
|
855
558
|
};
|
|
856
559
|
toolboxShow: {
|
|
857
|
-
type?:
|
|
858
|
-
default?:
|
|
859
|
-
} | {
|
|
860
|
-
type: any;
|
|
861
|
-
default: any;
|
|
560
|
+
type?: import("vue").PropType<boolean>;
|
|
561
|
+
default?: boolean;
|
|
862
562
|
};
|
|
863
563
|
toolboxOrient: {
|
|
864
|
-
type?:
|
|
865
|
-
default?:
|
|
866
|
-
} | {
|
|
867
|
-
type: any;
|
|
868
|
-
default: any;
|
|
564
|
+
type?: import("vue").PropType<"horizontal" | "vertical">;
|
|
565
|
+
default?: "horizontal" | "vertical";
|
|
869
566
|
};
|
|
870
567
|
toolboxItemSize: {
|
|
871
|
-
type?:
|
|
872
|
-
default?:
|
|
873
|
-
} | {
|
|
874
|
-
type: any;
|
|
875
|
-
default: any;
|
|
568
|
+
type?: import("vue").PropType<number>;
|
|
569
|
+
default?: number;
|
|
876
570
|
};
|
|
877
571
|
toolboxItemGap: {
|
|
878
|
-
type?:
|
|
879
|
-
default?:
|
|
880
|
-
} | {
|
|
881
|
-
type: any;
|
|
882
|
-
default: any;
|
|
572
|
+
type?: import("vue").PropType<number>;
|
|
573
|
+
default?: number;
|
|
883
574
|
};
|
|
884
575
|
toolboxLeft: {
|
|
885
|
-
type?:
|
|
886
|
-
default?:
|
|
887
|
-
} | {
|
|
888
|
-
type: any;
|
|
889
|
-
default: any;
|
|
576
|
+
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
577
|
+
default?: "left" | "center" | "right";
|
|
890
578
|
};
|
|
891
579
|
toolboxTop: {
|
|
892
|
-
type?:
|
|
893
|
-
default?:
|
|
894
|
-
} | {
|
|
895
|
-
type: any;
|
|
896
|
-
default: any;
|
|
580
|
+
type?: import("vue").PropType<"top" | "bottom" | "middle">;
|
|
581
|
+
default?: "top" | "bottom" | "middle";
|
|
897
582
|
};
|
|
898
583
|
toolboxIconStyleBorderColor: {
|
|
899
|
-
type?:
|
|
900
|
-
default?:
|
|
901
|
-
} | {
|
|
902
|
-
type: any;
|
|
903
|
-
default: any;
|
|
584
|
+
type?: import("vue").PropType<string>;
|
|
585
|
+
default?: string;
|
|
904
586
|
};
|
|
905
587
|
toolboxDownloadUrl: {
|
|
906
|
-
type?:
|
|
907
|
-
default?:
|
|
908
|
-
} | {
|
|
909
|
-
type: any;
|
|
910
|
-
default: any;
|
|
588
|
+
type?: import("vue").PropType<string>;
|
|
589
|
+
default?: string;
|
|
911
590
|
};
|
|
912
591
|
toolboxInfoText: {
|
|
913
|
-
type?:
|
|
914
|
-
default?:
|
|
915
|
-
} | {
|
|
916
|
-
type: any;
|
|
917
|
-
default: any;
|
|
592
|
+
type?: import("vue").PropType<string>;
|
|
593
|
+
default?: string;
|
|
918
594
|
};
|
|
919
595
|
symbolSize: {
|
|
920
|
-
type?:
|
|
921
|
-
default?:
|
|
922
|
-
} | {
|
|
923
|
-
type: any;
|
|
924
|
-
default: any;
|
|
596
|
+
type?: import("vue").PropType<number>;
|
|
597
|
+
default?: number;
|
|
925
598
|
};
|
|
926
599
|
lineStyleWidth: {
|
|
927
|
-
type?:
|
|
928
|
-
default?:
|
|
929
|
-
} | {
|
|
930
|
-
type: any;
|
|
931
|
-
default: any;
|
|
600
|
+
type?: import("vue").PropType<number>;
|
|
601
|
+
default?: number;
|
|
932
602
|
};
|
|
933
603
|
smooth: {
|
|
934
|
-
type?:
|
|
935
|
-
default?:
|
|
936
|
-
} | {
|
|
937
|
-
type: any;
|
|
938
|
-
default: any;
|
|
604
|
+
type?: import("vue").PropType<boolean>;
|
|
605
|
+
default?: boolean;
|
|
939
606
|
};
|
|
940
607
|
areaStyleOpacity: {
|
|
941
|
-
type?:
|
|
942
|
-
default?:
|
|
943
|
-
} | {
|
|
944
|
-
type: any;
|
|
945
|
-
default: any;
|
|
608
|
+
type?: import("vue").PropType<number>;
|
|
609
|
+
default?: number;
|
|
946
610
|
};
|
|
947
611
|
barWidth: {
|
|
948
|
-
type?:
|
|
949
|
-
default?:
|
|
950
|
-
} | {
|
|
951
|
-
type: any;
|
|
952
|
-
default: any;
|
|
612
|
+
type?: import("vue").PropType<string>;
|
|
613
|
+
default?: string;
|
|
953
614
|
};
|
|
954
615
|
id: {
|
|
955
|
-
type?:
|
|
956
|
-
default?:
|
|
957
|
-
} | {
|
|
958
|
-
type: any;
|
|
959
|
-
default: any;
|
|
616
|
+
type?: import("vue").PropType<string>;
|
|
617
|
+
default?: string;
|
|
960
618
|
};
|
|
961
619
|
name: {
|
|
962
|
-
type?:
|
|
963
|
-
default?:
|
|
964
|
-
} | {
|
|
965
|
-
type: any;
|
|
966
|
-
default: any;
|
|
620
|
+
type?: import("vue").PropType<string>;
|
|
621
|
+
default?: string;
|
|
967
622
|
};
|
|
968
623
|
keyName: {
|
|
969
|
-
type?:
|
|
970
|
-
default?:
|
|
971
|
-
} | {
|
|
972
|
-
type: any;
|
|
973
|
-
default: any;
|
|
624
|
+
type?: import("vue").PropType<string>;
|
|
625
|
+
default?: string;
|
|
974
626
|
};
|
|
975
627
|
type: {
|
|
976
|
-
type?:
|
|
977
|
-
default?:
|
|
978
|
-
} | {
|
|
979
|
-
type: any;
|
|
980
|
-
default: any;
|
|
628
|
+
type?: import("vue").PropType<string>;
|
|
629
|
+
default?: string;
|
|
981
630
|
};
|
|
982
631
|
width: {
|
|
983
|
-
type?:
|
|
984
|
-
default?:
|
|
985
|
-
} | {
|
|
986
|
-
type: any;
|
|
987
|
-
default: any;
|
|
632
|
+
type?: import("vue").PropType<string>;
|
|
633
|
+
default?: string;
|
|
988
634
|
};
|
|
989
635
|
height: {
|
|
990
|
-
type?:
|
|
991
|
-
default?:
|
|
992
|
-
} | {
|
|
993
|
-
type: any;
|
|
994
|
-
default: any;
|
|
636
|
+
type?: import("vue").PropType<string>;
|
|
637
|
+
default?: string;
|
|
995
638
|
};
|
|
996
639
|
position: {
|
|
997
|
-
type?:
|
|
998
|
-
default?:
|
|
999
|
-
} | {
|
|
1000
|
-
type: any;
|
|
1001
|
-
default: any;
|
|
640
|
+
type?: import("vue").PropType<string>;
|
|
641
|
+
default?: string;
|
|
1002
642
|
};
|
|
1003
643
|
top: {
|
|
1004
|
-
type?:
|
|
1005
|
-
default?:
|
|
1006
|
-
} | {
|
|
1007
|
-
type: any;
|
|
1008
|
-
default: any;
|
|
644
|
+
type?: import("vue").PropType<string>;
|
|
645
|
+
default?: string;
|
|
1009
646
|
};
|
|
1010
647
|
left: {
|
|
1011
|
-
type?:
|
|
1012
|
-
default?:
|
|
1013
|
-
} | {
|
|
1014
|
-
type: any;
|
|
1015
|
-
default: any;
|
|
648
|
+
type?: import("vue").PropType<string>;
|
|
649
|
+
default?: string;
|
|
1016
650
|
};
|
|
1017
651
|
zIndex: {
|
|
1018
|
-
type?:
|
|
1019
|
-
default?:
|
|
1020
|
-
} | {
|
|
1021
|
-
type: any;
|
|
1022
|
-
default: any;
|
|
652
|
+
type?: import("vue").PropType<number>;
|
|
653
|
+
default?: number;
|
|
1023
654
|
};
|
|
1024
655
|
rotate: {
|
|
1025
|
-
type?:
|
|
1026
|
-
default?:
|
|
1027
|
-
} | {
|
|
1028
|
-
type: any;
|
|
1029
|
-
default: any;
|
|
656
|
+
type?: import("vue").PropType<string>;
|
|
657
|
+
default?: string;
|
|
1030
658
|
};
|
|
1031
659
|
isShow: {
|
|
1032
|
-
type?:
|
|
1033
|
-
default?:
|
|
1034
|
-
} | {
|
|
1035
|
-
type: any;
|
|
1036
|
-
default: any;
|
|
660
|
+
type?: import("vue").PropType<boolean>;
|
|
661
|
+
default?: boolean;
|
|
1037
662
|
};
|
|
1038
663
|
isRender: {
|
|
1039
|
-
type?:
|
|
1040
|
-
default?:
|
|
1041
|
-
} | {
|
|
1042
|
-
type: any;
|
|
1043
|
-
default: any;
|
|
664
|
+
type?: import("vue").PropType<boolean>;
|
|
665
|
+
default?: boolean;
|
|
1044
666
|
};
|
|
1045
667
|
events: {
|
|
1046
|
-
type?:
|
|
1047
|
-
default?:
|
|
1048
|
-
} | {
|
|
1049
|
-
type: any;
|
|
1050
|
-
default: any;
|
|
668
|
+
type?: import("vue").PropType<import('../../utils/props').Events>;
|
|
669
|
+
default?: import('../../utils/props').Events;
|
|
1051
670
|
};
|
|
1052
671
|
requestUrl: {
|
|
1053
|
-
type?:
|
|
1054
|
-
default?:
|
|
1055
|
-
} | {
|
|
1056
|
-
type: any;
|
|
1057
|
-
default: any;
|
|
672
|
+
type?: import("vue").PropType<string>;
|
|
673
|
+
default?: string;
|
|
1058
674
|
};
|
|
1059
675
|
requestMethod: {
|
|
1060
|
-
type?:
|
|
1061
|
-
default?:
|
|
1062
|
-
} | {
|
|
1063
|
-
type: any;
|
|
1064
|
-
default: any;
|
|
676
|
+
type?: import("vue").PropType<import('../../utils/props').RequestMethod>;
|
|
677
|
+
default?: import('../../utils/props').RequestMethod;
|
|
1065
678
|
};
|
|
1066
679
|
requestHeaders: {
|
|
1067
|
-
type?:
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
680
|
+
type?: import("vue").PropType<{
|
|
681
|
+
[key: string]: any;
|
|
682
|
+
}>;
|
|
683
|
+
default?: {
|
|
684
|
+
[key: string]: any;
|
|
685
|
+
};
|
|
1072
686
|
};
|
|
1073
687
|
isOpenRequestTimer: {
|
|
1074
|
-
type?:
|
|
1075
|
-
default?:
|
|
1076
|
-
} | {
|
|
1077
|
-
type: any;
|
|
1078
|
-
default: any;
|
|
688
|
+
type?: import("vue").PropType<boolean>;
|
|
689
|
+
default?: boolean;
|
|
1079
690
|
};
|
|
1080
691
|
requestInterval: {
|
|
1081
|
-
type?:
|
|
1082
|
-
default?:
|
|
1083
|
-
} | {
|
|
1084
|
-
type: any;
|
|
1085
|
-
default: any;
|
|
692
|
+
type?: import("vue").PropType<number>;
|
|
693
|
+
default?: number;
|
|
1086
694
|
};
|
|
1087
695
|
requestParams: {
|
|
1088
|
-
type?:
|
|
1089
|
-
default?:
|
|
1090
|
-
} | {
|
|
1091
|
-
type: any;
|
|
1092
|
-
default: any;
|
|
696
|
+
type?: import("vue").PropType<import('../../utils/props').RequestParams>;
|
|
697
|
+
default?: import('../../utils/props').RequestParams;
|
|
1093
698
|
};
|
|
1094
699
|
requestSort: {
|
|
1095
|
-
type?:
|
|
1096
|
-
default?:
|
|
1097
|
-
} | {
|
|
1098
|
-
type: any;
|
|
1099
|
-
default: any;
|
|
700
|
+
type?: import("vue").PropType<number>;
|
|
701
|
+
default?: number;
|
|
1100
702
|
};
|
|
1101
703
|
dataType: {
|
|
1102
|
-
type?:
|
|
1103
|
-
default?:
|
|
1104
|
-
} | {
|
|
1105
|
-
type: any;
|
|
1106
|
-
default: any;
|
|
704
|
+
type?: import("vue").PropType<"indicator" | "static" | "request">;
|
|
705
|
+
default?: "indicator" | "static" | "request";
|
|
1107
706
|
};
|
|
1108
707
|
}>>, {}>;
|
|
1109
708
|
export default _sfc_main;
|