@ecan-bi/datav 1.0.39 → 1.0.42
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 +701 -173
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +699 -171
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +132 -72
- package/package.json +1 -1
- package/types/_utils/constant.d.ts +2 -1
- package/types/_utils/hooks/index.d.ts +1 -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 +72 -0
- package/types/control/button/index.d.ts +72 -0
- package/types/control/button/props.d.ts +84 -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
|
@@ -10,215 +10,215 @@ export declare const inputComponentProps: {
|
|
|
10
10
|
default?: undefined;
|
|
11
11
|
} | {
|
|
12
12
|
type: any;
|
|
13
|
-
default: string | number | boolean | import(
|
|
13
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
14
14
|
[key: string]: any;
|
|
15
|
-
} | import(
|
|
15
|
+
} | import('../../_utils/props').RequestParams;
|
|
16
16
|
};
|
|
17
17
|
placeholder: {
|
|
18
18
|
type?: undefined;
|
|
19
19
|
default?: undefined;
|
|
20
20
|
} | {
|
|
21
21
|
type: any;
|
|
22
|
-
default: string | number | boolean | import(
|
|
22
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
23
23
|
[key: string]: any;
|
|
24
|
-
} | import(
|
|
24
|
+
} | import('../../_utils/props').RequestParams;
|
|
25
25
|
};
|
|
26
26
|
id: {
|
|
27
27
|
type?: undefined;
|
|
28
28
|
default?: undefined;
|
|
29
29
|
} | {
|
|
30
30
|
type: any;
|
|
31
|
-
default: string | number | boolean | import(
|
|
31
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
32
32
|
[key: string]: any;
|
|
33
|
-
} | import(
|
|
33
|
+
} | import('../../_utils/props').RequestParams;
|
|
34
34
|
};
|
|
35
35
|
name: {
|
|
36
36
|
type?: undefined;
|
|
37
37
|
default?: undefined;
|
|
38
38
|
} | {
|
|
39
39
|
type: any;
|
|
40
|
-
default: string | number | boolean | import(
|
|
40
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
41
41
|
[key: string]: any;
|
|
42
|
-
} | import(
|
|
42
|
+
} | import('../../_utils/props').RequestParams;
|
|
43
43
|
};
|
|
44
44
|
keyName: {
|
|
45
45
|
type?: undefined;
|
|
46
46
|
default?: undefined;
|
|
47
47
|
} | {
|
|
48
48
|
type: any;
|
|
49
|
-
default: string | number | boolean | import(
|
|
49
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
50
50
|
[key: string]: any;
|
|
51
|
-
} | import(
|
|
51
|
+
} | import('../../_utils/props').RequestParams;
|
|
52
52
|
};
|
|
53
53
|
type: {
|
|
54
54
|
type?: undefined;
|
|
55
55
|
default?: undefined;
|
|
56
56
|
} | {
|
|
57
57
|
type: any;
|
|
58
|
-
default: string | number | boolean | import(
|
|
58
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
59
59
|
[key: string]: any;
|
|
60
|
-
} | import(
|
|
60
|
+
} | import('../../_utils/props').RequestParams;
|
|
61
61
|
};
|
|
62
62
|
width: {
|
|
63
63
|
type?: undefined;
|
|
64
64
|
default?: undefined;
|
|
65
65
|
} | {
|
|
66
66
|
type: any;
|
|
67
|
-
default: string | number | boolean | import(
|
|
67
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
68
68
|
[key: string]: any;
|
|
69
|
-
} | import(
|
|
69
|
+
} | import('../../_utils/props').RequestParams;
|
|
70
70
|
};
|
|
71
71
|
height: {
|
|
72
72
|
type?: undefined;
|
|
73
73
|
default?: undefined;
|
|
74
74
|
} | {
|
|
75
75
|
type: any;
|
|
76
|
-
default: string | number | boolean | import(
|
|
76
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
77
77
|
[key: string]: any;
|
|
78
|
-
} | import(
|
|
78
|
+
} | import('../../_utils/props').RequestParams;
|
|
79
79
|
};
|
|
80
80
|
position: {
|
|
81
81
|
type?: undefined;
|
|
82
82
|
default?: undefined;
|
|
83
83
|
} | {
|
|
84
84
|
type: any;
|
|
85
|
-
default: string | number | boolean | import(
|
|
85
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
86
86
|
[key: string]: any;
|
|
87
|
-
} | import(
|
|
87
|
+
} | import('../../_utils/props').RequestParams;
|
|
88
88
|
};
|
|
89
89
|
top: {
|
|
90
90
|
type?: undefined;
|
|
91
91
|
default?: undefined;
|
|
92
92
|
} | {
|
|
93
93
|
type: any;
|
|
94
|
-
default: string | number | boolean | import(
|
|
94
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
95
95
|
[key: string]: any;
|
|
96
|
-
} | import(
|
|
96
|
+
} | import('../../_utils/props').RequestParams;
|
|
97
97
|
};
|
|
98
98
|
left: {
|
|
99
99
|
type?: undefined;
|
|
100
100
|
default?: undefined;
|
|
101
101
|
} | {
|
|
102
102
|
type: any;
|
|
103
|
-
default: string | number | boolean | import(
|
|
103
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
104
104
|
[key: string]: any;
|
|
105
|
-
} | import(
|
|
105
|
+
} | import('../../_utils/props').RequestParams;
|
|
106
106
|
};
|
|
107
107
|
zIndex: {
|
|
108
108
|
type?: undefined;
|
|
109
109
|
default?: undefined;
|
|
110
110
|
} | {
|
|
111
111
|
type: any;
|
|
112
|
-
default: string | number | boolean | import(
|
|
112
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
113
113
|
[key: string]: any;
|
|
114
|
-
} | import(
|
|
114
|
+
} | import('../../_utils/props').RequestParams;
|
|
115
115
|
};
|
|
116
116
|
rotate: {
|
|
117
117
|
type?: undefined;
|
|
118
118
|
default?: undefined;
|
|
119
119
|
} | {
|
|
120
120
|
type: any;
|
|
121
|
-
default: string | number | boolean | import(
|
|
121
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
122
122
|
[key: string]: any;
|
|
123
|
-
} | import(
|
|
123
|
+
} | import('../../_utils/props').RequestParams;
|
|
124
124
|
};
|
|
125
125
|
isShow: {
|
|
126
126
|
type?: undefined;
|
|
127
127
|
default?: undefined;
|
|
128
128
|
} | {
|
|
129
129
|
type: any;
|
|
130
|
-
default: string | number | boolean | import(
|
|
130
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
131
131
|
[key: string]: any;
|
|
132
|
-
} | import(
|
|
132
|
+
} | import('../../_utils/props').RequestParams;
|
|
133
133
|
};
|
|
134
134
|
isRender: {
|
|
135
135
|
type?: undefined;
|
|
136
136
|
default?: undefined;
|
|
137
137
|
} | {
|
|
138
138
|
type: any;
|
|
139
|
-
default: string | number | boolean | import(
|
|
139
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
140
140
|
[key: string]: any;
|
|
141
|
-
} | import(
|
|
141
|
+
} | import('../../_utils/props').RequestParams;
|
|
142
142
|
};
|
|
143
143
|
events: {
|
|
144
144
|
type?: undefined;
|
|
145
145
|
default?: undefined;
|
|
146
146
|
} | {
|
|
147
147
|
type: any;
|
|
148
|
-
default: string | number | boolean | import(
|
|
148
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
149
149
|
[key: string]: any;
|
|
150
|
-
} | import(
|
|
150
|
+
} | import('../../_utils/props').RequestParams;
|
|
151
151
|
};
|
|
152
152
|
requestUrl: {
|
|
153
153
|
type?: undefined;
|
|
154
154
|
default?: undefined;
|
|
155
155
|
} | {
|
|
156
156
|
type: any;
|
|
157
|
-
default: string | number | boolean | import(
|
|
157
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
158
158
|
[key: string]: any;
|
|
159
|
-
} | import(
|
|
159
|
+
} | import('../../_utils/props').RequestParams;
|
|
160
160
|
};
|
|
161
161
|
requestMethod: {
|
|
162
162
|
type?: undefined;
|
|
163
163
|
default?: undefined;
|
|
164
164
|
} | {
|
|
165
165
|
type: any;
|
|
166
|
-
default: string | number | boolean | import(
|
|
166
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
167
167
|
[key: string]: any;
|
|
168
|
-
} | import(
|
|
168
|
+
} | import('../../_utils/props').RequestParams;
|
|
169
169
|
};
|
|
170
170
|
requestHeaders: {
|
|
171
171
|
type?: undefined;
|
|
172
172
|
default?: undefined;
|
|
173
173
|
} | {
|
|
174
174
|
type: any;
|
|
175
|
-
default: string | number | boolean | import(
|
|
175
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
176
176
|
[key: string]: any;
|
|
177
|
-
} | import(
|
|
177
|
+
} | import('../../_utils/props').RequestParams;
|
|
178
178
|
};
|
|
179
179
|
isOpenRequestTimer: {
|
|
180
180
|
type?: undefined;
|
|
181
181
|
default?: undefined;
|
|
182
182
|
} | {
|
|
183
183
|
type: any;
|
|
184
|
-
default: string | number | boolean | import(
|
|
184
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
185
185
|
[key: string]: any;
|
|
186
|
-
} | import(
|
|
186
|
+
} | import('../../_utils/props').RequestParams;
|
|
187
187
|
};
|
|
188
188
|
requestInterval: {
|
|
189
189
|
type?: undefined;
|
|
190
190
|
default?: undefined;
|
|
191
191
|
} | {
|
|
192
192
|
type: any;
|
|
193
|
-
default: string | number | boolean | import(
|
|
193
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
194
194
|
[key: string]: any;
|
|
195
|
-
} | import(
|
|
195
|
+
} | import('../../_utils/props').RequestParams;
|
|
196
196
|
};
|
|
197
197
|
requestParams: {
|
|
198
198
|
type?: undefined;
|
|
199
199
|
default?: undefined;
|
|
200
200
|
} | {
|
|
201
201
|
type: any;
|
|
202
|
-
default: string | number | boolean | import(
|
|
202
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
203
203
|
[key: string]: any;
|
|
204
|
-
} | import(
|
|
204
|
+
} | import('../../_utils/props').RequestParams;
|
|
205
205
|
};
|
|
206
206
|
requestSort: {
|
|
207
207
|
type?: undefined;
|
|
208
208
|
default?: undefined;
|
|
209
209
|
} | {
|
|
210
210
|
type: any;
|
|
211
|
-
default: string | number | boolean | import(
|
|
211
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
212
212
|
[key: string]: any;
|
|
213
|
-
} | import(
|
|
213
|
+
} | import('../../_utils/props').RequestParams;
|
|
214
214
|
};
|
|
215
215
|
dataType: {
|
|
216
216
|
type?: undefined;
|
|
217
217
|
default?: undefined;
|
|
218
218
|
} | {
|
|
219
219
|
type: any;
|
|
220
|
-
default: string | number | boolean | import(
|
|
220
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
221
221
|
[key: string]: any;
|
|
222
|
-
} | import(
|
|
222
|
+
} | import('../../_utils/props').RequestParams;
|
|
223
223
|
};
|
|
224
224
|
};
|