@ecan-bi/datav 1.0.40 → 1.0.43
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 +757 -201
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +755 -199
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +137 -74
- package/package.json +1 -1
- package/types/_utils/constant.d.ts +2 -1
- package/types/_utils/hooks/index.d.ts +2 -0
- package/types/_utils/hooks/useHrefParamsToGlobalVariables.d.ts +2 -0
- package/types/_utils/hooks/useIndicatorData.d.ts +4 -0
- package/types/common/echarts/Echarts.d.ts +418 -0
- package/types/common/echarts/index.d.ts +2 -2
- package/types/common/index.d.ts +1 -1
- package/types/common/skeleton/Skeleton.vue.d.ts +14 -0
- package/types/common/skeleton/index.d.ts +2 -0
- package/types/container/border/Border.vue.d.ts +54 -54
- package/types/container/border/props.d.ts +54 -54
- package/types/container/modal/Modal.vue.d.ts +1 -1
- package/types/container/modal/index.d.ts +1 -1
- package/types/control/button/Button.vue.d.ts +110 -0
- package/types/control/button/index.d.ts +111 -1
- package/types/control/button/props.d.ts +104 -44
- package/types/control/date-picker/props.d.ts +52 -52
- package/types/control/input/props.d.ts +48 -48
- package/types/control/range-picker/RangePicker.vue.d.ts +52 -52
- package/types/control/range-picker/props.d.ts +52 -52
- package/types/control/select/Select.vue.d.ts +50 -50
- package/types/control/select/props.d.ts +50 -50
- package/types/graph/bar/Bar.vue.d.ts +128 -128
- package/types/graph/bar/index.d.ts +128 -128
- package/types/graph/bar/props.d.ts +65 -65
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +155 -0
- package/types/graph/combo-graph/index.d.ts +155 -0
- package/types/graph/combo-graph/props.d.ts +72 -0
- package/types/graph/custom-graph/props.d.ts +48 -48
- package/types/graph/line/Line.vue.d.ts +155 -0
- package/types/graph/line/index.d.ts +155 -0
- package/types/graph/line/props.d.ts +72 -0
- package/types/graph/pie/Pie.vue.d.ts +155 -0
- package/types/graph/pie/index.d.ts +155 -0
- package/types/graph/pie/props.d.ts +72 -0
- package/types/graph/scatter/Scatter.vue.d.ts +155 -0
- package/types/graph/scatter/index.d.ts +155 -0
- package/types/graph/scatter/props.d.ts +72 -0
- package/types/map/map/props.d.ts +112 -112
- package/types/media/image/props.d.ts +52 -52
- package/types/table/table/Table.vue.d.ts +900 -79
- package/types/table/table/index.d.ts +899 -79
- package/types/table/table/props.d.ts +451 -39
- package/types/text/list/List.vue.d.ts +64 -64
- package/types/text/list/props.d.ts +64 -64
- package/types/text/proportion/Proportion.vue.d.ts +68 -68
- package/types/text/proportion/props.d.ts +68 -68
- package/types/text/text/Text.vue.d.ts +66 -66
- package/types/text/text/props.d.ts +66 -66
- package/types/text/time-display/props.d.ts +60 -60
|
@@ -16,269 +16,269 @@ export declare const timeDisplayComponentProps: {
|
|
|
16
16
|
default?: undefined;
|
|
17
17
|
} | {
|
|
18
18
|
type: any;
|
|
19
|
-
default: string | number | boolean | import(
|
|
19
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
20
20
|
[key: string]: any;
|
|
21
|
-
} | import(
|
|
21
|
+
} | import('../../_utils/props').RequestParams;
|
|
22
22
|
};
|
|
23
23
|
format: {
|
|
24
24
|
type?: undefined;
|
|
25
25
|
default?: undefined;
|
|
26
26
|
} | {
|
|
27
27
|
type: any;
|
|
28
|
-
default: string | number | boolean | import(
|
|
28
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
29
29
|
[key: string]: any;
|
|
30
|
-
} | import(
|
|
30
|
+
} | import('../../_utils/props').RequestParams;
|
|
31
31
|
};
|
|
32
32
|
fontSize: {
|
|
33
33
|
type?: undefined;
|
|
34
34
|
default?: undefined;
|
|
35
35
|
} | {
|
|
36
36
|
type: any;
|
|
37
|
-
default: string | number | boolean | import(
|
|
37
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
38
38
|
[key: string]: any;
|
|
39
|
-
} | import(
|
|
39
|
+
} | import('../../_utils/props').RequestParams;
|
|
40
40
|
};
|
|
41
41
|
fontFamily: {
|
|
42
42
|
type?: undefined;
|
|
43
43
|
default?: undefined;
|
|
44
44
|
} | {
|
|
45
45
|
type: any;
|
|
46
|
-
default: string | number | boolean | import(
|
|
46
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
47
47
|
[key: string]: any;
|
|
48
|
-
} | import(
|
|
48
|
+
} | import('../../_utils/props').RequestParams;
|
|
49
49
|
};
|
|
50
50
|
fontWeight: {
|
|
51
51
|
type?: undefined;
|
|
52
52
|
default?: undefined;
|
|
53
53
|
} | {
|
|
54
54
|
type: any;
|
|
55
|
-
default: string | number | boolean | import(
|
|
55
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
56
56
|
[key: string]: any;
|
|
57
|
-
} | import(
|
|
57
|
+
} | import('../../_utils/props').RequestParams;
|
|
58
58
|
};
|
|
59
59
|
textShadow: {
|
|
60
60
|
type?: undefined;
|
|
61
61
|
default?: undefined;
|
|
62
62
|
} | {
|
|
63
63
|
type: any;
|
|
64
|
-
default: string | number | boolean | import(
|
|
64
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
65
65
|
[key: string]: any;
|
|
66
|
-
} | import(
|
|
66
|
+
} | import('../../_utils/props').RequestParams;
|
|
67
67
|
};
|
|
68
68
|
textAlign: {
|
|
69
69
|
type?: undefined;
|
|
70
70
|
default?: undefined;
|
|
71
71
|
} | {
|
|
72
72
|
type: any;
|
|
73
|
-
default: string | number | boolean | import(
|
|
73
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
74
74
|
[key: string]: any;
|
|
75
|
-
} | import(
|
|
75
|
+
} | import('../../_utils/props').RequestParams;
|
|
76
76
|
};
|
|
77
77
|
verticalAlign: {
|
|
78
78
|
type?: undefined;
|
|
79
79
|
default?: undefined;
|
|
80
80
|
} | {
|
|
81
81
|
type: any;
|
|
82
|
-
default: string | number | boolean | import(
|
|
82
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
83
83
|
[key: string]: any;
|
|
84
|
-
} | import(
|
|
84
|
+
} | import('../../_utils/props').RequestParams;
|
|
85
85
|
};
|
|
86
86
|
id: {
|
|
87
87
|
type?: undefined;
|
|
88
88
|
default?: undefined;
|
|
89
89
|
} | {
|
|
90
90
|
type: any;
|
|
91
|
-
default: string | number | boolean | import(
|
|
91
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
92
92
|
[key: string]: any;
|
|
93
|
-
} | import(
|
|
93
|
+
} | import('../../_utils/props').RequestParams;
|
|
94
94
|
};
|
|
95
95
|
name: {
|
|
96
96
|
type?: undefined;
|
|
97
97
|
default?: undefined;
|
|
98
98
|
} | {
|
|
99
99
|
type: any;
|
|
100
|
-
default: string | number | boolean | import(
|
|
100
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
101
101
|
[key: string]: any;
|
|
102
|
-
} | import(
|
|
102
|
+
} | import('../../_utils/props').RequestParams;
|
|
103
103
|
};
|
|
104
104
|
keyName: {
|
|
105
105
|
type?: undefined;
|
|
106
106
|
default?: undefined;
|
|
107
107
|
} | {
|
|
108
108
|
type: any;
|
|
109
|
-
default: string | number | boolean | import(
|
|
109
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
110
110
|
[key: string]: any;
|
|
111
|
-
} | import(
|
|
111
|
+
} | import('../../_utils/props').RequestParams;
|
|
112
112
|
};
|
|
113
113
|
type: {
|
|
114
114
|
type?: undefined;
|
|
115
115
|
default?: undefined;
|
|
116
116
|
} | {
|
|
117
117
|
type: any;
|
|
118
|
-
default: string | number | boolean | import(
|
|
118
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
119
119
|
[key: string]: any;
|
|
120
|
-
} | import(
|
|
120
|
+
} | import('../../_utils/props').RequestParams;
|
|
121
121
|
};
|
|
122
122
|
width: {
|
|
123
123
|
type?: undefined;
|
|
124
124
|
default?: undefined;
|
|
125
125
|
} | {
|
|
126
126
|
type: any;
|
|
127
|
-
default: string | number | boolean | import(
|
|
127
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
128
128
|
[key: string]: any;
|
|
129
|
-
} | import(
|
|
129
|
+
} | import('../../_utils/props').RequestParams;
|
|
130
130
|
};
|
|
131
131
|
height: {
|
|
132
132
|
type?: undefined;
|
|
133
133
|
default?: undefined;
|
|
134
134
|
} | {
|
|
135
135
|
type: any;
|
|
136
|
-
default: string | number | boolean | import(
|
|
136
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
137
137
|
[key: string]: any;
|
|
138
|
-
} | import(
|
|
138
|
+
} | import('../../_utils/props').RequestParams;
|
|
139
139
|
};
|
|
140
140
|
position: {
|
|
141
141
|
type?: undefined;
|
|
142
142
|
default?: undefined;
|
|
143
143
|
} | {
|
|
144
144
|
type: any;
|
|
145
|
-
default: string | number | boolean | import(
|
|
145
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
146
146
|
[key: string]: any;
|
|
147
|
-
} | import(
|
|
147
|
+
} | import('../../_utils/props').RequestParams;
|
|
148
148
|
};
|
|
149
149
|
top: {
|
|
150
150
|
type?: undefined;
|
|
151
151
|
default?: undefined;
|
|
152
152
|
} | {
|
|
153
153
|
type: any;
|
|
154
|
-
default: string | number | boolean | import(
|
|
154
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
155
155
|
[key: string]: any;
|
|
156
|
-
} | import(
|
|
156
|
+
} | import('../../_utils/props').RequestParams;
|
|
157
157
|
};
|
|
158
158
|
left: {
|
|
159
159
|
type?: undefined;
|
|
160
160
|
default?: undefined;
|
|
161
161
|
} | {
|
|
162
162
|
type: any;
|
|
163
|
-
default: string | number | boolean | import(
|
|
163
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
164
164
|
[key: string]: any;
|
|
165
|
-
} | import(
|
|
165
|
+
} | import('../../_utils/props').RequestParams;
|
|
166
166
|
};
|
|
167
167
|
zIndex: {
|
|
168
168
|
type?: undefined;
|
|
169
169
|
default?: undefined;
|
|
170
170
|
} | {
|
|
171
171
|
type: any;
|
|
172
|
-
default: string | number | boolean | import(
|
|
172
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
173
173
|
[key: string]: any;
|
|
174
|
-
} | import(
|
|
174
|
+
} | import('../../_utils/props').RequestParams;
|
|
175
175
|
};
|
|
176
176
|
rotate: {
|
|
177
177
|
type?: undefined;
|
|
178
178
|
default?: undefined;
|
|
179
179
|
} | {
|
|
180
180
|
type: any;
|
|
181
|
-
default: string | number | boolean | import(
|
|
181
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
182
182
|
[key: string]: any;
|
|
183
|
-
} | import(
|
|
183
|
+
} | import('../../_utils/props').RequestParams;
|
|
184
184
|
};
|
|
185
185
|
isShow: {
|
|
186
186
|
type?: undefined;
|
|
187
187
|
default?: undefined;
|
|
188
188
|
} | {
|
|
189
189
|
type: any;
|
|
190
|
-
default: string | number | boolean | import(
|
|
190
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
191
191
|
[key: string]: any;
|
|
192
|
-
} | import(
|
|
192
|
+
} | import('../../_utils/props').RequestParams;
|
|
193
193
|
};
|
|
194
194
|
isRender: {
|
|
195
195
|
type?: undefined;
|
|
196
196
|
default?: undefined;
|
|
197
197
|
} | {
|
|
198
198
|
type: any;
|
|
199
|
-
default: string | number | boolean | import(
|
|
199
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
200
200
|
[key: string]: any;
|
|
201
|
-
} | import(
|
|
201
|
+
} | import('../../_utils/props').RequestParams;
|
|
202
202
|
};
|
|
203
203
|
events: {
|
|
204
204
|
type?: undefined;
|
|
205
205
|
default?: undefined;
|
|
206
206
|
} | {
|
|
207
207
|
type: any;
|
|
208
|
-
default: string | number | boolean | import(
|
|
208
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
209
209
|
[key: string]: any;
|
|
210
|
-
} | import(
|
|
210
|
+
} | import('../../_utils/props').RequestParams;
|
|
211
211
|
};
|
|
212
212
|
requestUrl: {
|
|
213
213
|
type?: undefined;
|
|
214
214
|
default?: undefined;
|
|
215
215
|
} | {
|
|
216
216
|
type: any;
|
|
217
|
-
default: string | number | boolean | import(
|
|
217
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
218
218
|
[key: string]: any;
|
|
219
|
-
} | import(
|
|
219
|
+
} | import('../../_utils/props').RequestParams;
|
|
220
220
|
};
|
|
221
221
|
requestMethod: {
|
|
222
222
|
type?: undefined;
|
|
223
223
|
default?: undefined;
|
|
224
224
|
} | {
|
|
225
225
|
type: any;
|
|
226
|
-
default: string | number | boolean | import(
|
|
226
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
227
227
|
[key: string]: any;
|
|
228
|
-
} | import(
|
|
228
|
+
} | import('../../_utils/props').RequestParams;
|
|
229
229
|
};
|
|
230
230
|
requestHeaders: {
|
|
231
231
|
type?: undefined;
|
|
232
232
|
default?: undefined;
|
|
233
233
|
} | {
|
|
234
234
|
type: any;
|
|
235
|
-
default: string | number | boolean | import(
|
|
235
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
236
236
|
[key: string]: any;
|
|
237
|
-
} | import(
|
|
237
|
+
} | import('../../_utils/props').RequestParams;
|
|
238
238
|
};
|
|
239
239
|
isOpenRequestTimer: {
|
|
240
240
|
type?: undefined;
|
|
241
241
|
default?: undefined;
|
|
242
242
|
} | {
|
|
243
243
|
type: any;
|
|
244
|
-
default: string | number | boolean | import(
|
|
244
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
245
245
|
[key: string]: any;
|
|
246
|
-
} | import(
|
|
246
|
+
} | import('../../_utils/props').RequestParams;
|
|
247
247
|
};
|
|
248
248
|
requestInterval: {
|
|
249
249
|
type?: undefined;
|
|
250
250
|
default?: undefined;
|
|
251
251
|
} | {
|
|
252
252
|
type: any;
|
|
253
|
-
default: string | number | boolean | import(
|
|
253
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
254
254
|
[key: string]: any;
|
|
255
|
-
} | import(
|
|
255
|
+
} | import('../../_utils/props').RequestParams;
|
|
256
256
|
};
|
|
257
257
|
requestParams: {
|
|
258
258
|
type?: undefined;
|
|
259
259
|
default?: undefined;
|
|
260
260
|
} | {
|
|
261
261
|
type: any;
|
|
262
|
-
default: string | number | boolean | import(
|
|
262
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
263
263
|
[key: string]: any;
|
|
264
|
-
} | import(
|
|
264
|
+
} | import('../../_utils/props').RequestParams;
|
|
265
265
|
};
|
|
266
266
|
requestSort: {
|
|
267
267
|
type?: undefined;
|
|
268
268
|
default?: undefined;
|
|
269
269
|
} | {
|
|
270
270
|
type: any;
|
|
271
|
-
default: string | number | boolean | import(
|
|
271
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
272
272
|
[key: string]: any;
|
|
273
|
-
} | import(
|
|
273
|
+
} | import('../../_utils/props').RequestParams;
|
|
274
274
|
};
|
|
275
275
|
dataType: {
|
|
276
276
|
type?: undefined;
|
|
277
277
|
default?: undefined;
|
|
278
278
|
} | {
|
|
279
279
|
type: any;
|
|
280
|
-
default: string | number | boolean | import(
|
|
280
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
281
281
|
[key: string]: any;
|
|
282
|
-
} | import(
|
|
282
|
+
} | import('../../_utils/props').RequestParams;
|
|
283
283
|
};
|
|
284
284
|
};
|