@ecan-bi/datav 1.0.14 → 1.0.17
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 +49 -32
- 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 +16 -0
- package/dist/index.umd.js +16 -0
- 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 +15 -6
- package/dist/_utils/hooks/useRequestParams.d.ts +0 -5
- package/dist/_utils/request.d.ts +0 -2
- package/dist/index.js +0 -16
- package/dist/index.js.map +0 -1
- package/dist/index.mjs +0 -16
- package/dist/index.mjs.map +0 -1
|
@@ -6,8 +6,12 @@ export interface TextProps extends Props {
|
|
|
6
6
|
fontFamily: string;
|
|
7
7
|
fontWeight: number;
|
|
8
8
|
textAlign: string;
|
|
9
|
-
|
|
9
|
+
verticalAlign: string;
|
|
10
10
|
textShadow: string;
|
|
11
|
+
data: {
|
|
12
|
+
[key: string]: any;
|
|
13
|
+
};
|
|
14
|
+
variableColor: string;
|
|
11
15
|
}
|
|
12
16
|
export declare const textProps: TextProps;
|
|
13
17
|
export declare const textComponentProps: {
|
|
@@ -18,7 +22,9 @@ export declare const textComponentProps: {
|
|
|
18
22
|
type: any;
|
|
19
23
|
default: string | number | boolean | {
|
|
20
24
|
[key: string]: any;
|
|
21
|
-
} | import("../../_utils/props").
|
|
25
|
+
} | import("../../_utils/props").Events | {
|
|
26
|
+
[key: string]: any;
|
|
27
|
+
} | import("../../_utils/props").RequestParams;
|
|
22
28
|
};
|
|
23
29
|
color: {
|
|
24
30
|
type?: undefined;
|
|
@@ -27,7 +33,9 @@ export declare const textComponentProps: {
|
|
|
27
33
|
type: any;
|
|
28
34
|
default: string | number | boolean | {
|
|
29
35
|
[key: string]: any;
|
|
30
|
-
} | import("../../_utils/props").
|
|
36
|
+
} | import("../../_utils/props").Events | {
|
|
37
|
+
[key: string]: any;
|
|
38
|
+
} | import("../../_utils/props").RequestParams;
|
|
31
39
|
};
|
|
32
40
|
fontSize: {
|
|
33
41
|
type?: undefined;
|
|
@@ -36,7 +44,9 @@ export declare const textComponentProps: {
|
|
|
36
44
|
type: any;
|
|
37
45
|
default: string | number | boolean | {
|
|
38
46
|
[key: string]: any;
|
|
39
|
-
} | import("../../_utils/props").
|
|
47
|
+
} | import("../../_utils/props").Events | {
|
|
48
|
+
[key: string]: any;
|
|
49
|
+
} | import("../../_utils/props").RequestParams;
|
|
40
50
|
};
|
|
41
51
|
fontFamily: {
|
|
42
52
|
type?: undefined;
|
|
@@ -45,7 +55,9 @@ export declare const textComponentProps: {
|
|
|
45
55
|
type: any;
|
|
46
56
|
default: string | number | boolean | {
|
|
47
57
|
[key: string]: any;
|
|
48
|
-
} | import("../../_utils/props").
|
|
58
|
+
} | import("../../_utils/props").Events | {
|
|
59
|
+
[key: string]: any;
|
|
60
|
+
} | import("../../_utils/props").RequestParams;
|
|
49
61
|
};
|
|
50
62
|
fontWeight: {
|
|
51
63
|
type?: undefined;
|
|
@@ -54,7 +66,9 @@ export declare const textComponentProps: {
|
|
|
54
66
|
type: any;
|
|
55
67
|
default: string | number | boolean | {
|
|
56
68
|
[key: string]: any;
|
|
57
|
-
} | import("../../_utils/props").
|
|
69
|
+
} | import("../../_utils/props").Events | {
|
|
70
|
+
[key: string]: any;
|
|
71
|
+
} | import("../../_utils/props").RequestParams;
|
|
58
72
|
};
|
|
59
73
|
textAlign: {
|
|
60
74
|
type?: undefined;
|
|
@@ -63,16 +77,20 @@ export declare const textComponentProps: {
|
|
|
63
77
|
type: any;
|
|
64
78
|
default: string | number | boolean | {
|
|
65
79
|
[key: string]: any;
|
|
66
|
-
} | import("../../_utils/props").
|
|
80
|
+
} | import("../../_utils/props").Events | {
|
|
81
|
+
[key: string]: any;
|
|
82
|
+
} | import("../../_utils/props").RequestParams;
|
|
67
83
|
};
|
|
68
|
-
|
|
84
|
+
verticalAlign: {
|
|
69
85
|
type?: undefined;
|
|
70
86
|
default?: undefined;
|
|
71
87
|
} | {
|
|
72
88
|
type: any;
|
|
73
89
|
default: string | number | boolean | {
|
|
74
90
|
[key: string]: any;
|
|
75
|
-
} | import("../../_utils/props").
|
|
91
|
+
} | import("../../_utils/props").Events | {
|
|
92
|
+
[key: string]: any;
|
|
93
|
+
} | import("../../_utils/props").RequestParams;
|
|
76
94
|
};
|
|
77
95
|
textShadow: {
|
|
78
96
|
type?: undefined;
|
|
@@ -81,7 +99,31 @@ export declare const textComponentProps: {
|
|
|
81
99
|
type: any;
|
|
82
100
|
default: string | number | boolean | {
|
|
83
101
|
[key: string]: any;
|
|
84
|
-
} | import("../../_utils/props").
|
|
102
|
+
} | import("../../_utils/props").Events | {
|
|
103
|
+
[key: string]: any;
|
|
104
|
+
} | import("../../_utils/props").RequestParams;
|
|
105
|
+
};
|
|
106
|
+
data: {
|
|
107
|
+
type?: undefined;
|
|
108
|
+
default?: undefined;
|
|
109
|
+
} | {
|
|
110
|
+
type: any;
|
|
111
|
+
default: string | number | boolean | {
|
|
112
|
+
[key: string]: any;
|
|
113
|
+
} | import("../../_utils/props").Events | {
|
|
114
|
+
[key: string]: any;
|
|
115
|
+
} | import("../../_utils/props").RequestParams;
|
|
116
|
+
};
|
|
117
|
+
variableColor: {
|
|
118
|
+
type?: undefined;
|
|
119
|
+
default?: undefined;
|
|
120
|
+
} | {
|
|
121
|
+
type: any;
|
|
122
|
+
default: string | number | boolean | {
|
|
123
|
+
[key: string]: any;
|
|
124
|
+
} | import("../../_utils/props").Events | {
|
|
125
|
+
[key: string]: any;
|
|
126
|
+
} | import("../../_utils/props").RequestParams;
|
|
85
127
|
};
|
|
86
128
|
id: {
|
|
87
129
|
type?: undefined;
|
|
@@ -90,7 +132,9 @@ export declare const textComponentProps: {
|
|
|
90
132
|
type: any;
|
|
91
133
|
default: string | number | boolean | {
|
|
92
134
|
[key: string]: any;
|
|
93
|
-
} | import("../../_utils/props").
|
|
135
|
+
} | import("../../_utils/props").Events | {
|
|
136
|
+
[key: string]: any;
|
|
137
|
+
} | import("../../_utils/props").RequestParams;
|
|
94
138
|
};
|
|
95
139
|
name: {
|
|
96
140
|
type?: undefined;
|
|
@@ -99,7 +143,9 @@ export declare const textComponentProps: {
|
|
|
99
143
|
type: any;
|
|
100
144
|
default: string | number | boolean | {
|
|
101
145
|
[key: string]: any;
|
|
102
|
-
} | import("../../_utils/props").
|
|
146
|
+
} | import("../../_utils/props").Events | {
|
|
147
|
+
[key: string]: any;
|
|
148
|
+
} | import("../../_utils/props").RequestParams;
|
|
103
149
|
};
|
|
104
150
|
keyName: {
|
|
105
151
|
type?: undefined;
|
|
@@ -108,7 +154,9 @@ export declare const textComponentProps: {
|
|
|
108
154
|
type: any;
|
|
109
155
|
default: string | number | boolean | {
|
|
110
156
|
[key: string]: any;
|
|
111
|
-
} | import("../../_utils/props").
|
|
157
|
+
} | import("../../_utils/props").Events | {
|
|
158
|
+
[key: string]: any;
|
|
159
|
+
} | import("../../_utils/props").RequestParams;
|
|
112
160
|
};
|
|
113
161
|
type: {
|
|
114
162
|
type?: undefined;
|
|
@@ -117,7 +165,9 @@ export declare const textComponentProps: {
|
|
|
117
165
|
type: any;
|
|
118
166
|
default: string | number | boolean | {
|
|
119
167
|
[key: string]: any;
|
|
120
|
-
} | import("../../_utils/props").
|
|
168
|
+
} | import("../../_utils/props").Events | {
|
|
169
|
+
[key: string]: any;
|
|
170
|
+
} | import("../../_utils/props").RequestParams;
|
|
121
171
|
};
|
|
122
172
|
width: {
|
|
123
173
|
type?: undefined;
|
|
@@ -126,7 +176,9 @@ export declare const textComponentProps: {
|
|
|
126
176
|
type: any;
|
|
127
177
|
default: string | number | boolean | {
|
|
128
178
|
[key: string]: any;
|
|
129
|
-
} | import("../../_utils/props").
|
|
179
|
+
} | import("../../_utils/props").Events | {
|
|
180
|
+
[key: string]: any;
|
|
181
|
+
} | import("../../_utils/props").RequestParams;
|
|
130
182
|
};
|
|
131
183
|
height: {
|
|
132
184
|
type?: undefined;
|
|
@@ -135,7 +187,9 @@ export declare const textComponentProps: {
|
|
|
135
187
|
type: any;
|
|
136
188
|
default: string | number | boolean | {
|
|
137
189
|
[key: string]: any;
|
|
138
|
-
} | import("../../_utils/props").
|
|
190
|
+
} | import("../../_utils/props").Events | {
|
|
191
|
+
[key: string]: any;
|
|
192
|
+
} | import("../../_utils/props").RequestParams;
|
|
139
193
|
};
|
|
140
194
|
position: {
|
|
141
195
|
type?: undefined;
|
|
@@ -144,7 +198,9 @@ export declare const textComponentProps: {
|
|
|
144
198
|
type: any;
|
|
145
199
|
default: string | number | boolean | {
|
|
146
200
|
[key: string]: any;
|
|
147
|
-
} | import("../../_utils/props").
|
|
201
|
+
} | import("../../_utils/props").Events | {
|
|
202
|
+
[key: string]: any;
|
|
203
|
+
} | import("../../_utils/props").RequestParams;
|
|
148
204
|
};
|
|
149
205
|
top: {
|
|
150
206
|
type?: undefined;
|
|
@@ -153,7 +209,9 @@ export declare const textComponentProps: {
|
|
|
153
209
|
type: any;
|
|
154
210
|
default: string | number | boolean | {
|
|
155
211
|
[key: string]: any;
|
|
156
|
-
} | import("../../_utils/props").
|
|
212
|
+
} | import("../../_utils/props").Events | {
|
|
213
|
+
[key: string]: any;
|
|
214
|
+
} | import("../../_utils/props").RequestParams;
|
|
157
215
|
};
|
|
158
216
|
left: {
|
|
159
217
|
type?: undefined;
|
|
@@ -162,7 +220,9 @@ export declare const textComponentProps: {
|
|
|
162
220
|
type: any;
|
|
163
221
|
default: string | number | boolean | {
|
|
164
222
|
[key: string]: any;
|
|
165
|
-
} | import("../../_utils/props").
|
|
223
|
+
} | import("../../_utils/props").Events | {
|
|
224
|
+
[key: string]: any;
|
|
225
|
+
} | import("../../_utils/props").RequestParams;
|
|
166
226
|
};
|
|
167
227
|
zIndex: {
|
|
168
228
|
type?: undefined;
|
|
@@ -171,7 +231,9 @@ export declare const textComponentProps: {
|
|
|
171
231
|
type: any;
|
|
172
232
|
default: string | number | boolean | {
|
|
173
233
|
[key: string]: any;
|
|
174
|
-
} | import("../../_utils/props").
|
|
234
|
+
} | import("../../_utils/props").Events | {
|
|
235
|
+
[key: string]: any;
|
|
236
|
+
} | import("../../_utils/props").RequestParams;
|
|
175
237
|
};
|
|
176
238
|
rotate: {
|
|
177
239
|
type?: undefined;
|
|
@@ -180,7 +242,9 @@ export declare const textComponentProps: {
|
|
|
180
242
|
type: any;
|
|
181
243
|
default: string | number | boolean | {
|
|
182
244
|
[key: string]: any;
|
|
183
|
-
} | import("../../_utils/props").
|
|
245
|
+
} | import("../../_utils/props").Events | {
|
|
246
|
+
[key: string]: any;
|
|
247
|
+
} | import("../../_utils/props").RequestParams;
|
|
184
248
|
};
|
|
185
249
|
isShow: {
|
|
186
250
|
type?: undefined;
|
|
@@ -189,7 +253,9 @@ export declare const textComponentProps: {
|
|
|
189
253
|
type: any;
|
|
190
254
|
default: string | number | boolean | {
|
|
191
255
|
[key: string]: any;
|
|
192
|
-
} | import("../../_utils/props").
|
|
256
|
+
} | import("../../_utils/props").Events | {
|
|
257
|
+
[key: string]: any;
|
|
258
|
+
} | import("../../_utils/props").RequestParams;
|
|
193
259
|
};
|
|
194
260
|
isRender: {
|
|
195
261
|
type?: undefined;
|
|
@@ -198,7 +264,9 @@ export declare const textComponentProps: {
|
|
|
198
264
|
type: any;
|
|
199
265
|
default: string | number | boolean | {
|
|
200
266
|
[key: string]: any;
|
|
201
|
-
} | import("../../_utils/props").
|
|
267
|
+
} | import("../../_utils/props").Events | {
|
|
268
|
+
[key: string]: any;
|
|
269
|
+
} | import("../../_utils/props").RequestParams;
|
|
202
270
|
};
|
|
203
271
|
isRequestData: {
|
|
204
272
|
type?: undefined;
|
|
@@ -207,69 +275,85 @@ export declare const textComponentProps: {
|
|
|
207
275
|
type: any;
|
|
208
276
|
default: string | number | boolean | {
|
|
209
277
|
[key: string]: any;
|
|
210
|
-
} | import("../../_utils/props").
|
|
278
|
+
} | import("../../_utils/props").Events | {
|
|
279
|
+
[key: string]: any;
|
|
280
|
+
} | import("../../_utils/props").RequestParams;
|
|
211
281
|
};
|
|
212
|
-
|
|
282
|
+
events: {
|
|
213
283
|
type?: undefined;
|
|
214
284
|
default?: undefined;
|
|
215
285
|
} | {
|
|
216
286
|
type: any;
|
|
217
287
|
default: string | number | boolean | {
|
|
218
288
|
[key: string]: any;
|
|
219
|
-
} | import("../../_utils/props").
|
|
289
|
+
} | import("../../_utils/props").Events | {
|
|
290
|
+
[key: string]: any;
|
|
291
|
+
} | import("../../_utils/props").RequestParams;
|
|
220
292
|
};
|
|
221
|
-
|
|
293
|
+
requestUrl: {
|
|
222
294
|
type?: undefined;
|
|
223
295
|
default?: undefined;
|
|
224
296
|
} | {
|
|
225
297
|
type: any;
|
|
226
298
|
default: string | number | boolean | {
|
|
227
299
|
[key: string]: any;
|
|
228
|
-
} | import("../../_utils/props").
|
|
300
|
+
} | import("../../_utils/props").Events | {
|
|
301
|
+
[key: string]: any;
|
|
302
|
+
} | import("../../_utils/props").RequestParams;
|
|
229
303
|
};
|
|
230
|
-
|
|
304
|
+
requestMethod: {
|
|
231
305
|
type?: undefined;
|
|
232
306
|
default?: undefined;
|
|
233
307
|
} | {
|
|
234
308
|
type: any;
|
|
235
309
|
default: string | number | boolean | {
|
|
236
310
|
[key: string]: any;
|
|
237
|
-
} | import("../../_utils/props").
|
|
311
|
+
} | import("../../_utils/props").Events | {
|
|
312
|
+
[key: string]: any;
|
|
313
|
+
} | import("../../_utils/props").RequestParams;
|
|
238
314
|
};
|
|
239
|
-
|
|
315
|
+
requestHeaders: {
|
|
240
316
|
type?: undefined;
|
|
241
317
|
default?: undefined;
|
|
242
318
|
} | {
|
|
243
319
|
type: any;
|
|
244
320
|
default: string | number | boolean | {
|
|
245
321
|
[key: string]: any;
|
|
246
|
-
} | import("../../_utils/props").
|
|
322
|
+
} | import("../../_utils/props").Events | {
|
|
323
|
+
[key: string]: any;
|
|
324
|
+
} | import("../../_utils/props").RequestParams;
|
|
247
325
|
};
|
|
248
|
-
|
|
326
|
+
isOpenRequestTimer: {
|
|
249
327
|
type?: undefined;
|
|
250
328
|
default?: undefined;
|
|
251
329
|
} | {
|
|
252
330
|
type: any;
|
|
253
331
|
default: string | number | boolean | {
|
|
254
332
|
[key: string]: any;
|
|
255
|
-
} | import("../../_utils/props").
|
|
333
|
+
} | import("../../_utils/props").Events | {
|
|
334
|
+
[key: string]: any;
|
|
335
|
+
} | import("../../_utils/props").RequestParams;
|
|
256
336
|
};
|
|
257
|
-
|
|
337
|
+
requestInterval: {
|
|
258
338
|
type?: undefined;
|
|
259
339
|
default?: undefined;
|
|
260
340
|
} | {
|
|
261
341
|
type: any;
|
|
262
342
|
default: string | number | boolean | {
|
|
263
343
|
[key: string]: any;
|
|
264
|
-
} | import("../../_utils/props").
|
|
344
|
+
} | import("../../_utils/props").Events | {
|
|
345
|
+
[key: string]: any;
|
|
346
|
+
} | import("../../_utils/props").RequestParams;
|
|
265
347
|
};
|
|
266
|
-
|
|
348
|
+
requestParams: {
|
|
267
349
|
type?: undefined;
|
|
268
350
|
default?: undefined;
|
|
269
351
|
} | {
|
|
270
352
|
type: any;
|
|
271
353
|
default: string | number | boolean | {
|
|
272
354
|
[key: string]: any;
|
|
273
|
-
} | import("../../_utils/props").
|
|
355
|
+
} | import("../../_utils/props").Events | {
|
|
356
|
+
[key: string]: any;
|
|
357
|
+
} | import("../../_utils/props").RequestParams;
|
|
274
358
|
};
|
|
275
359
|
};
|