@ecan-bi/datav 1.0.15 → 1.0.16
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/custom-graph/CustomGraph.vue.d.ts +57 -57
- package/dist/graph/custom-graph/props.d.ts +53 -53
- 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 +2 -2
- package/dist/index.umd.js +2 -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 +1 -1
- package/dist/_utils/hooks/useRequestParams.d.ts +0 -5
- package/dist/_utils/request.d.ts +0 -2
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Events } from '../../_utils/props';
|
|
1
2
|
declare const _default: import("vue").DefineComponent<{
|
|
2
3
|
data: {
|
|
3
4
|
type?: undefined;
|
|
@@ -5,8 +6,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5
6
|
} | {
|
|
6
7
|
type: any;
|
|
7
8
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
9
|
+
name: string;
|
|
10
|
+
value: string;
|
|
11
|
+
} | Events | {
|
|
8
12
|
[key: string]: any;
|
|
9
|
-
} | import("../../_utils/props").RequestParams
|
|
13
|
+
} | import("../../_utils/props").RequestParams;
|
|
10
14
|
};
|
|
11
15
|
titleText: {
|
|
12
16
|
type?: undefined;
|
|
@@ -14,8 +18,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14
18
|
} | {
|
|
15
19
|
type: any;
|
|
16
20
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
21
|
+
name: string;
|
|
22
|
+
value: string;
|
|
23
|
+
} | Events | {
|
|
17
24
|
[key: string]: any;
|
|
18
|
-
} | import("../../_utils/props").RequestParams
|
|
25
|
+
} | import("../../_utils/props").RequestParams;
|
|
19
26
|
};
|
|
20
27
|
titleSubtext: {
|
|
21
28
|
type?: undefined;
|
|
@@ -23,8 +30,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
23
30
|
} | {
|
|
24
31
|
type: any;
|
|
25
32
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
33
|
+
name: string;
|
|
34
|
+
value: string;
|
|
35
|
+
} | Events | {
|
|
26
36
|
[key: string]: any;
|
|
27
|
-
} | import("../../_utils/props").RequestParams
|
|
37
|
+
} | import("../../_utils/props").RequestParams;
|
|
28
38
|
};
|
|
29
39
|
colors: {
|
|
30
40
|
type?: undefined;
|
|
@@ -32,8 +42,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
32
42
|
} | {
|
|
33
43
|
type: any;
|
|
34
44
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
45
|
+
name: string;
|
|
46
|
+
value: string;
|
|
47
|
+
} | Events | {
|
|
35
48
|
[key: string]: any;
|
|
36
|
-
} | import("../../_utils/props").RequestParams
|
|
49
|
+
} | import("../../_utils/props").RequestParams;
|
|
37
50
|
};
|
|
38
51
|
legendShow: {
|
|
39
52
|
type?: undefined;
|
|
@@ -41,8 +54,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
41
54
|
} | {
|
|
42
55
|
type: any;
|
|
43
56
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
57
|
+
name: string;
|
|
58
|
+
value: string;
|
|
59
|
+
} | Events | {
|
|
44
60
|
[key: string]: any;
|
|
45
|
-
} | import("../../_utils/props").RequestParams
|
|
61
|
+
} | import("../../_utils/props").RequestParams;
|
|
46
62
|
};
|
|
47
63
|
tooltipShow: {
|
|
48
64
|
type?: undefined;
|
|
@@ -50,8 +66,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
50
66
|
} | {
|
|
51
67
|
type: any;
|
|
52
68
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
69
|
+
name: string;
|
|
70
|
+
value: string;
|
|
71
|
+
} | Events | {
|
|
53
72
|
[key: string]: any;
|
|
54
|
-
} | import("../../_utils/props").RequestParams
|
|
73
|
+
} | import("../../_utils/props").RequestParams;
|
|
55
74
|
};
|
|
56
75
|
tooltipTrigger: {
|
|
57
76
|
type?: undefined;
|
|
@@ -59,8 +78,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
59
78
|
} | {
|
|
60
79
|
type: any;
|
|
61
80
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
81
|
+
name: string;
|
|
82
|
+
value: string;
|
|
83
|
+
} | Events | {
|
|
62
84
|
[key: string]: any;
|
|
63
|
-
} | import("../../_utils/props").RequestParams
|
|
85
|
+
} | import("../../_utils/props").RequestParams;
|
|
64
86
|
};
|
|
65
87
|
tooltipFormatter: {
|
|
66
88
|
type?: undefined;
|
|
@@ -68,8 +90,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
68
90
|
} | {
|
|
69
91
|
type: any;
|
|
70
92
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
93
|
+
name: string;
|
|
94
|
+
value: string;
|
|
95
|
+
} | Events | {
|
|
71
96
|
[key: string]: any;
|
|
72
|
-
} | import("../../_utils/props").RequestParams
|
|
97
|
+
} | import("../../_utils/props").RequestParams;
|
|
73
98
|
};
|
|
74
99
|
legendLeft: {
|
|
75
100
|
type?: undefined;
|
|
@@ -77,8 +102,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
77
102
|
} | {
|
|
78
103
|
type: any;
|
|
79
104
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
105
|
+
name: string;
|
|
106
|
+
value: string;
|
|
107
|
+
} | Events | {
|
|
80
108
|
[key: string]: any;
|
|
81
|
-
} | import("../../_utils/props").RequestParams
|
|
109
|
+
} | import("../../_utils/props").RequestParams;
|
|
82
110
|
};
|
|
83
111
|
legendTop: {
|
|
84
112
|
type?: undefined;
|
|
@@ -86,8 +114,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
86
114
|
} | {
|
|
87
115
|
type: any;
|
|
88
116
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
117
|
+
name: string;
|
|
118
|
+
value: string;
|
|
119
|
+
} | Events | {
|
|
89
120
|
[key: string]: any;
|
|
90
|
-
} | import("../../_utils/props").RequestParams
|
|
121
|
+
} | import("../../_utils/props").RequestParams;
|
|
91
122
|
};
|
|
92
123
|
legendOrient: {
|
|
93
124
|
type?: undefined;
|
|
@@ -95,8 +126,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
95
126
|
} | {
|
|
96
127
|
type: any;
|
|
97
128
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
129
|
+
name: string;
|
|
130
|
+
value: string;
|
|
131
|
+
} | Events | {
|
|
98
132
|
[key: string]: any;
|
|
99
|
-
} | import("../../_utils/props").RequestParams
|
|
133
|
+
} | import("../../_utils/props").RequestParams;
|
|
100
134
|
};
|
|
101
135
|
symbolSize: {
|
|
102
136
|
type?: undefined;
|
|
@@ -104,89 +138,23 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
104
138
|
} | {
|
|
105
139
|
type: any;
|
|
106
140
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
141
|
+
name: string;
|
|
142
|
+
value: string;
|
|
143
|
+
} | Events | {
|
|
107
144
|
[key: string]: any;
|
|
108
|
-
} | import("../../_utils/props").RequestParams
|
|
109
|
-
};
|
|
110
|
-
xAxisSplitLineShow: {
|
|
111
|
-
type?: undefined;
|
|
112
|
-
default?: undefined;
|
|
113
|
-
} | {
|
|
114
|
-
type: any;
|
|
115
|
-
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
116
|
-
[key: string]: any;
|
|
117
|
-
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
118
|
-
};
|
|
119
|
-
xAxisLabelColor: {
|
|
120
|
-
type?: undefined;
|
|
121
|
-
default?: undefined;
|
|
122
|
-
} | {
|
|
123
|
-
type: any;
|
|
124
|
-
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
125
|
-
[key: string]: any;
|
|
126
|
-
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
127
|
-
};
|
|
128
|
-
xAxisLineStyleColor: {
|
|
129
|
-
type?: undefined;
|
|
130
|
-
default?: undefined;
|
|
131
|
-
} | {
|
|
132
|
-
type: any;
|
|
133
|
-
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
134
|
-
[key: string]: any;
|
|
135
|
-
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
136
|
-
};
|
|
137
|
-
xAxisTickShow: {
|
|
138
|
-
type?: undefined;
|
|
139
|
-
default?: undefined;
|
|
140
|
-
} | {
|
|
141
|
-
type: any;
|
|
142
|
-
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
143
|
-
[key: string]: any;
|
|
144
|
-
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
145
|
-
};
|
|
146
|
-
yAxisSplitLineShow: {
|
|
147
|
-
type?: undefined;
|
|
148
|
-
default?: undefined;
|
|
149
|
-
} | {
|
|
150
|
-
type: any;
|
|
151
|
-
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
152
|
-
[key: string]: any;
|
|
153
|
-
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
154
|
-
};
|
|
155
|
-
xAxisSplitLineStyleColor: {
|
|
156
|
-
type?: undefined;
|
|
157
|
-
default?: undefined;
|
|
158
|
-
} | {
|
|
159
|
-
type: any;
|
|
160
|
-
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
161
|
-
[key: string]: any;
|
|
162
|
-
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
163
|
-
};
|
|
164
|
-
yAxisSplitLineStyleColor: {
|
|
165
|
-
type?: undefined;
|
|
166
|
-
default?: undefined;
|
|
167
|
-
} | {
|
|
168
|
-
type: any;
|
|
169
|
-
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
170
|
-
[key: string]: any;
|
|
171
|
-
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
172
|
-
};
|
|
173
|
-
yAxisLabelColor: {
|
|
174
|
-
type?: undefined;
|
|
175
|
-
default?: undefined;
|
|
176
|
-
} | {
|
|
177
|
-
type: any;
|
|
178
|
-
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
179
|
-
[key: string]: any;
|
|
180
|
-
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
145
|
+
} | import("../../_utils/props").RequestParams;
|
|
181
146
|
};
|
|
182
|
-
|
|
147
|
+
dataFieldNames: {
|
|
183
148
|
type?: undefined;
|
|
184
149
|
default?: undefined;
|
|
185
150
|
} | {
|
|
186
151
|
type: any;
|
|
187
152
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
153
|
+
name: string;
|
|
154
|
+
value: string;
|
|
155
|
+
} | Events | {
|
|
188
156
|
[key: string]: any;
|
|
189
|
-
} | import("../../_utils/props").RequestParams
|
|
157
|
+
} | import("../../_utils/props").RequestParams;
|
|
190
158
|
};
|
|
191
159
|
id: {
|
|
192
160
|
type?: undefined;
|
|
@@ -194,8 +162,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
194
162
|
} | {
|
|
195
163
|
type: any;
|
|
196
164
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
165
|
+
name: string;
|
|
166
|
+
value: string;
|
|
167
|
+
} | Events | {
|
|
197
168
|
[key: string]: any;
|
|
198
|
-
} | import("../../_utils/props").RequestParams
|
|
169
|
+
} | import("../../_utils/props").RequestParams;
|
|
199
170
|
};
|
|
200
171
|
name: {
|
|
201
172
|
type?: undefined;
|
|
@@ -203,8 +174,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
203
174
|
} | {
|
|
204
175
|
type: any;
|
|
205
176
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
177
|
+
name: string;
|
|
178
|
+
value: string;
|
|
179
|
+
} | Events | {
|
|
206
180
|
[key: string]: any;
|
|
207
|
-
} | import("../../_utils/props").RequestParams
|
|
181
|
+
} | import("../../_utils/props").RequestParams;
|
|
208
182
|
};
|
|
209
183
|
keyName: {
|
|
210
184
|
type?: undefined;
|
|
@@ -212,8 +186,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
212
186
|
} | {
|
|
213
187
|
type: any;
|
|
214
188
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
189
|
+
name: string;
|
|
190
|
+
value: string;
|
|
191
|
+
} | Events | {
|
|
215
192
|
[key: string]: any;
|
|
216
|
-
} | import("../../_utils/props").RequestParams
|
|
193
|
+
} | import("../../_utils/props").RequestParams;
|
|
217
194
|
};
|
|
218
195
|
type: {
|
|
219
196
|
type?: undefined;
|
|
@@ -221,8 +198,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
221
198
|
} | {
|
|
222
199
|
type: any;
|
|
223
200
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
201
|
+
name: string;
|
|
202
|
+
value: string;
|
|
203
|
+
} | Events | {
|
|
224
204
|
[key: string]: any;
|
|
225
|
-
} | import("../../_utils/props").RequestParams
|
|
205
|
+
} | import("../../_utils/props").RequestParams;
|
|
226
206
|
};
|
|
227
207
|
width: {
|
|
228
208
|
type?: undefined;
|
|
@@ -230,8 +210,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
230
210
|
} | {
|
|
231
211
|
type: any;
|
|
232
212
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
213
|
+
name: string;
|
|
214
|
+
value: string;
|
|
215
|
+
} | Events | {
|
|
233
216
|
[key: string]: any;
|
|
234
|
-
} | import("../../_utils/props").RequestParams
|
|
217
|
+
} | import("../../_utils/props").RequestParams;
|
|
235
218
|
};
|
|
236
219
|
height: {
|
|
237
220
|
type?: undefined;
|
|
@@ -239,8 +222,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
239
222
|
} | {
|
|
240
223
|
type: any;
|
|
241
224
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
225
|
+
name: string;
|
|
226
|
+
value: string;
|
|
227
|
+
} | Events | {
|
|
242
228
|
[key: string]: any;
|
|
243
|
-
} | import("../../_utils/props").RequestParams
|
|
229
|
+
} | import("../../_utils/props").RequestParams;
|
|
244
230
|
};
|
|
245
231
|
position: {
|
|
246
232
|
type?: undefined;
|
|
@@ -248,8 +234,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
248
234
|
} | {
|
|
249
235
|
type: any;
|
|
250
236
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
237
|
+
name: string;
|
|
238
|
+
value: string;
|
|
239
|
+
} | Events | {
|
|
251
240
|
[key: string]: any;
|
|
252
|
-
} | import("../../_utils/props").RequestParams
|
|
241
|
+
} | import("../../_utils/props").RequestParams;
|
|
253
242
|
};
|
|
254
243
|
top: {
|
|
255
244
|
type?: undefined;
|
|
@@ -257,8 +246,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
257
246
|
} | {
|
|
258
247
|
type: any;
|
|
259
248
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
249
|
+
name: string;
|
|
250
|
+
value: string;
|
|
251
|
+
} | Events | {
|
|
260
252
|
[key: string]: any;
|
|
261
|
-
} | import("../../_utils/props").RequestParams
|
|
253
|
+
} | import("../../_utils/props").RequestParams;
|
|
262
254
|
};
|
|
263
255
|
left: {
|
|
264
256
|
type?: undefined;
|
|
@@ -266,8 +258,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
266
258
|
} | {
|
|
267
259
|
type: any;
|
|
268
260
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
261
|
+
name: string;
|
|
262
|
+
value: string;
|
|
263
|
+
} | Events | {
|
|
269
264
|
[key: string]: any;
|
|
270
|
-
} | import("../../_utils/props").RequestParams
|
|
265
|
+
} | import("../../_utils/props").RequestParams;
|
|
271
266
|
};
|
|
272
267
|
zIndex: {
|
|
273
268
|
type?: undefined;
|
|
@@ -275,8 +270,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
275
270
|
} | {
|
|
276
271
|
type: any;
|
|
277
272
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
273
|
+
name: string;
|
|
274
|
+
value: string;
|
|
275
|
+
} | Events | {
|
|
278
276
|
[key: string]: any;
|
|
279
|
-
} | import("../../_utils/props").RequestParams
|
|
277
|
+
} | import("../../_utils/props").RequestParams;
|
|
280
278
|
};
|
|
281
279
|
rotate: {
|
|
282
280
|
type?: undefined;
|
|
@@ -284,8 +282,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
284
282
|
} | {
|
|
285
283
|
type: any;
|
|
286
284
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
285
|
+
name: string;
|
|
286
|
+
value: string;
|
|
287
|
+
} | Events | {
|
|
287
288
|
[key: string]: any;
|
|
288
|
-
} | import("../../_utils/props").RequestParams
|
|
289
|
+
} | import("../../_utils/props").RequestParams;
|
|
289
290
|
};
|
|
290
291
|
isShow: {
|
|
291
292
|
type?: undefined;
|
|
@@ -293,8 +294,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
293
294
|
} | {
|
|
294
295
|
type: any;
|
|
295
296
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
297
|
+
name: string;
|
|
298
|
+
value: string;
|
|
299
|
+
} | Events | {
|
|
296
300
|
[key: string]: any;
|
|
297
|
-
} | import("../../_utils/props").RequestParams
|
|
301
|
+
} | import("../../_utils/props").RequestParams;
|
|
298
302
|
};
|
|
299
303
|
isRender: {
|
|
300
304
|
type?: undefined;
|
|
@@ -302,8 +306,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
302
306
|
} | {
|
|
303
307
|
type: any;
|
|
304
308
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
309
|
+
name: string;
|
|
310
|
+
value: string;
|
|
311
|
+
} | Events | {
|
|
305
312
|
[key: string]: any;
|
|
306
|
-
} | import("../../_utils/props").RequestParams
|
|
313
|
+
} | import("../../_utils/props").RequestParams;
|
|
307
314
|
};
|
|
308
315
|
isRequestData: {
|
|
309
316
|
type?: undefined;
|
|
@@ -311,71 +318,95 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
311
318
|
} | {
|
|
312
319
|
type: any;
|
|
313
320
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
321
|
+
name: string;
|
|
322
|
+
value: string;
|
|
323
|
+
} | Events | {
|
|
314
324
|
[key: string]: any;
|
|
315
|
-
} | import("../../_utils/props").RequestParams
|
|
325
|
+
} | import("../../_utils/props").RequestParams;
|
|
316
326
|
};
|
|
317
|
-
|
|
327
|
+
events: {
|
|
318
328
|
type?: undefined;
|
|
319
329
|
default?: undefined;
|
|
320
330
|
} | {
|
|
321
331
|
type: any;
|
|
322
332
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
333
|
+
name: string;
|
|
334
|
+
value: string;
|
|
335
|
+
} | Events | {
|
|
323
336
|
[key: string]: any;
|
|
324
|
-
} | import("../../_utils/props").RequestParams
|
|
337
|
+
} | import("../../_utils/props").RequestParams;
|
|
325
338
|
};
|
|
326
|
-
|
|
339
|
+
requestUrl: {
|
|
327
340
|
type?: undefined;
|
|
328
341
|
default?: undefined;
|
|
329
342
|
} | {
|
|
330
343
|
type: any;
|
|
331
344
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
345
|
+
name: string;
|
|
346
|
+
value: string;
|
|
347
|
+
} | Events | {
|
|
332
348
|
[key: string]: any;
|
|
333
|
-
} | import("../../_utils/props").RequestParams
|
|
349
|
+
} | import("../../_utils/props").RequestParams;
|
|
334
350
|
};
|
|
335
|
-
|
|
351
|
+
requestMethod: {
|
|
336
352
|
type?: undefined;
|
|
337
353
|
default?: undefined;
|
|
338
354
|
} | {
|
|
339
355
|
type: any;
|
|
340
356
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
357
|
+
name: string;
|
|
358
|
+
value: string;
|
|
359
|
+
} | Events | {
|
|
341
360
|
[key: string]: any;
|
|
342
|
-
} | import("../../_utils/props").RequestParams
|
|
361
|
+
} | import("../../_utils/props").RequestParams;
|
|
343
362
|
};
|
|
344
|
-
|
|
363
|
+
requestHeaders: {
|
|
345
364
|
type?: undefined;
|
|
346
365
|
default?: undefined;
|
|
347
366
|
} | {
|
|
348
367
|
type: any;
|
|
349
368
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
369
|
+
name: string;
|
|
370
|
+
value: string;
|
|
371
|
+
} | Events | {
|
|
350
372
|
[key: string]: any;
|
|
351
|
-
} | import("../../_utils/props").RequestParams
|
|
373
|
+
} | import("../../_utils/props").RequestParams;
|
|
352
374
|
};
|
|
353
|
-
|
|
375
|
+
isOpenRequestTimer: {
|
|
354
376
|
type?: undefined;
|
|
355
377
|
default?: undefined;
|
|
356
378
|
} | {
|
|
357
379
|
type: any;
|
|
358
380
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
381
|
+
name: string;
|
|
382
|
+
value: string;
|
|
383
|
+
} | Events | {
|
|
359
384
|
[key: string]: any;
|
|
360
|
-
} | import("../../_utils/props").RequestParams
|
|
385
|
+
} | import("../../_utils/props").RequestParams;
|
|
361
386
|
};
|
|
362
|
-
|
|
387
|
+
requestInterval: {
|
|
363
388
|
type?: undefined;
|
|
364
389
|
default?: undefined;
|
|
365
390
|
} | {
|
|
366
391
|
type: any;
|
|
367
392
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
393
|
+
name: string;
|
|
394
|
+
value: string;
|
|
395
|
+
} | Events | {
|
|
368
396
|
[key: string]: any;
|
|
369
|
-
} | import("../../_utils/props").RequestParams
|
|
397
|
+
} | import("../../_utils/props").RequestParams;
|
|
370
398
|
};
|
|
371
|
-
|
|
399
|
+
requestParams: {
|
|
372
400
|
type?: undefined;
|
|
373
401
|
default?: undefined;
|
|
374
402
|
} | {
|
|
375
403
|
type: any;
|
|
376
404
|
default: string | number | boolean | string[] | import("../../_utils/props").Data | {
|
|
405
|
+
name: string;
|
|
406
|
+
value: string;
|
|
407
|
+
} | Events | {
|
|
377
408
|
[key: string]: any;
|
|
378
|
-
} | import("../../_utils/props").RequestParams
|
|
409
|
+
} | import("../../_utils/props").RequestParams;
|
|
379
410
|
};
|
|
380
411
|
}, {
|
|
381
412
|
option: import("vue").ComputedRef<{
|
|
@@ -391,59 +422,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
391
422
|
color: string | number | boolean | {
|
|
392
423
|
[key: string]: any;
|
|
393
424
|
};
|
|
394
|
-
xAxis: {
|
|
395
|
-
|
|
396
|
-
show: string | number | boolean | {
|
|
397
|
-
[key: string]: any;
|
|
398
|
-
};
|
|
399
|
-
lineStyle: {
|
|
400
|
-
color: string | number | boolean | {
|
|
401
|
-
[key: string]: any;
|
|
402
|
-
};
|
|
403
|
-
};
|
|
404
|
-
};
|
|
405
|
-
axisLabel: {
|
|
406
|
-
color: string | number | boolean | {
|
|
407
|
-
[key: string]: any;
|
|
408
|
-
};
|
|
409
|
-
};
|
|
410
|
-
axisLine: {
|
|
411
|
-
lineStyle: {
|
|
412
|
-
color: string | number | boolean | {
|
|
413
|
-
[key: string]: any;
|
|
414
|
-
};
|
|
415
|
-
};
|
|
416
|
-
};
|
|
417
|
-
axisTick: {
|
|
418
|
-
show: string | number | boolean | {
|
|
419
|
-
[key: string]: any;
|
|
420
|
-
};
|
|
421
|
-
};
|
|
422
|
-
};
|
|
423
|
-
yAxis: {
|
|
424
|
-
splitLine: {
|
|
425
|
-
show: string | number | boolean | {
|
|
426
|
-
[key: string]: any;
|
|
427
|
-
};
|
|
428
|
-
lineStyle: {
|
|
429
|
-
color: string | number | boolean | {
|
|
430
|
-
[key: string]: any;
|
|
431
|
-
};
|
|
432
|
-
};
|
|
433
|
-
};
|
|
434
|
-
axisLabel: {
|
|
435
|
-
color: string | number | boolean | {
|
|
436
|
-
[key: string]: any;
|
|
437
|
-
};
|
|
438
|
-
};
|
|
439
|
-
axisLine: {
|
|
440
|
-
lineStyle: {
|
|
441
|
-
color: string | number | boolean | {
|
|
442
|
-
[key: string]: any;
|
|
443
|
-
};
|
|
444
|
-
};
|
|
445
|
-
};
|
|
446
|
-
};
|
|
425
|
+
xAxis: {};
|
|
426
|
+
yAxis: {};
|
|
447
427
|
tooltip: {
|
|
448
428
|
show: string | number | boolean | {
|
|
449
429
|
[key: string]: any;
|
|
@@ -470,17 +450,17 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
470
450
|
};
|
|
471
451
|
};
|
|
472
452
|
series: {
|
|
473
|
-
|
|
474
|
-
type: string;
|
|
475
|
-
data: string | number | boolean | {
|
|
453
|
+
data: {
|
|
476
454
|
[x: string]: any;
|
|
477
|
-
};
|
|
455
|
+
}[];
|
|
456
|
+
type: string;
|
|
478
457
|
symbolSize: string | number | boolean | {
|
|
479
458
|
[key: string]: any;
|
|
480
459
|
};
|
|
481
460
|
}[];
|
|
482
461
|
}>;
|
|
483
462
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
463
|
+
click: () => void;
|
|
484
464
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
485
465
|
data?: unknown;
|
|
486
466
|
titleText?: unknown;
|
|
@@ -494,15 +474,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
494
474
|
legendTop?: unknown;
|
|
495
475
|
legendOrient?: unknown;
|
|
496
476
|
symbolSize?: unknown;
|
|
497
|
-
|
|
498
|
-
xAxisLabelColor?: unknown;
|
|
499
|
-
xAxisLineStyleColor?: unknown;
|
|
500
|
-
xAxisTickShow?: unknown;
|
|
501
|
-
yAxisSplitLineShow?: unknown;
|
|
502
|
-
xAxisSplitLineStyleColor?: unknown;
|
|
503
|
-
yAxisSplitLineStyleColor?: unknown;
|
|
504
|
-
yAxisLabelColor?: unknown;
|
|
505
|
-
yAxisLineStyleColor?: unknown;
|
|
477
|
+
dataFieldNames?: unknown;
|
|
506
478
|
id?: unknown;
|
|
507
479
|
name?: unknown;
|
|
508
480
|
keyName?: unknown;
|
|
@@ -517,13 +489,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
517
489
|
isShow?: unknown;
|
|
518
490
|
isRender?: unknown;
|
|
519
491
|
isRequestData?: unknown;
|
|
492
|
+
events?: unknown;
|
|
520
493
|
requestUrl?: unknown;
|
|
521
494
|
requestMethod?: unknown;
|
|
522
495
|
requestHeaders?: unknown;
|
|
523
496
|
isOpenRequestTimer?: unknown;
|
|
524
497
|
requestInterval?: unknown;
|
|
525
498
|
requestParams?: unknown;
|
|
526
|
-
events?: unknown;
|
|
527
499
|
} & {} & {
|
|
528
500
|
type?: string | number | boolean | {
|
|
529
501
|
[key: string]: any;
|
|
@@ -564,31 +536,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
564
536
|
symbolSize?: string | number | boolean | {
|
|
565
537
|
[key: string]: any;
|
|
566
538
|
};
|
|
567
|
-
|
|
568
|
-
[key: string]: any;
|
|
569
|
-
};
|
|
570
|
-
xAxisLabelColor?: string | number | boolean | {
|
|
571
|
-
[key: string]: any;
|
|
572
|
-
};
|
|
573
|
-
xAxisLineStyleColor?: string | number | boolean | {
|
|
574
|
-
[key: string]: any;
|
|
575
|
-
};
|
|
576
|
-
xAxisTickShow?: string | number | boolean | {
|
|
577
|
-
[key: string]: any;
|
|
578
|
-
};
|
|
579
|
-
yAxisSplitLineShow?: string | number | boolean | {
|
|
580
|
-
[key: string]: any;
|
|
581
|
-
};
|
|
582
|
-
xAxisSplitLineStyleColor?: string | number | boolean | {
|
|
583
|
-
[key: string]: any;
|
|
584
|
-
};
|
|
585
|
-
yAxisSplitLineStyleColor?: string | number | boolean | {
|
|
586
|
-
[key: string]: any;
|
|
587
|
-
};
|
|
588
|
-
yAxisLabelColor?: string | number | boolean | {
|
|
589
|
-
[key: string]: any;
|
|
590
|
-
};
|
|
591
|
-
yAxisLineStyleColor?: string | number | boolean | {
|
|
539
|
+
dataFieldNames?: string | number | boolean | {
|
|
592
540
|
[key: string]: any;
|
|
593
541
|
};
|
|
594
542
|
id?: string | number | boolean | {
|
|
@@ -630,6 +578,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
630
578
|
isRequestData?: string | number | boolean | {
|
|
631
579
|
[key: string]: any;
|
|
632
580
|
};
|
|
581
|
+
events?: string | number | boolean | {
|
|
582
|
+
[key: string]: any;
|
|
583
|
+
};
|
|
633
584
|
requestUrl?: string | number | boolean | {
|
|
634
585
|
[key: string]: any;
|
|
635
586
|
};
|
|
@@ -648,8 +599,5 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
648
599
|
requestParams?: string | number | boolean | {
|
|
649
600
|
[key: string]: any;
|
|
650
601
|
};
|
|
651
|
-
events?: string | number | boolean | {
|
|
652
|
-
[key: string]: any;
|
|
653
|
-
};
|
|
654
602
|
}>, {}>;
|
|
655
603
|
export default _default;
|