@ecan-bi/datav 1.1.40 → 1.1.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 +1307 -1297
- 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 +176 -400
- package/types/container/tabs/index.d.ts +176 -400
- package/types/container/tabs/props.d.ts +88 -200
- 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
- package/types/utils/runCode.d.ts +2 -0
|
@@ -14,274 +14,128 @@ export interface RangePickerProps extends Props {
|
|
|
14
14
|
export declare const rangePickerProps: RangePickerProps;
|
|
15
15
|
export declare const rangePickerComponentProps: {
|
|
16
16
|
picker: {
|
|
17
|
-
type?:
|
|
18
|
-
default?:
|
|
19
|
-
} | {
|
|
20
|
-
type: any;
|
|
21
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
22
|
-
[key: string]: any;
|
|
23
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
17
|
+
type?: import("vue").PropType<"date" | "week" | "month" | "quarter" | "year">;
|
|
18
|
+
default?: "date" | "week" | "month" | "quarter" | "year";
|
|
24
19
|
};
|
|
25
20
|
format: {
|
|
26
|
-
type?:
|
|
27
|
-
default?:
|
|
28
|
-
} | {
|
|
29
|
-
type: any;
|
|
30
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
31
|
-
[key: string]: any;
|
|
32
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
21
|
+
type?: import("vue").PropType<string>;
|
|
22
|
+
default?: string;
|
|
33
23
|
};
|
|
34
24
|
startTime: {
|
|
35
|
-
type?:
|
|
36
|
-
default?:
|
|
37
|
-
} | {
|
|
38
|
-
type: any;
|
|
39
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
40
|
-
[key: string]: any;
|
|
41
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
25
|
+
type?: import("vue").PropType<string>;
|
|
26
|
+
default?: string;
|
|
42
27
|
};
|
|
43
28
|
endTime: {
|
|
44
|
-
type?:
|
|
45
|
-
default?:
|
|
46
|
-
} | {
|
|
47
|
-
type: any;
|
|
48
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
49
|
-
[key: string]: any;
|
|
50
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
29
|
+
type?: import("vue").PropType<string>;
|
|
30
|
+
default?: string;
|
|
51
31
|
};
|
|
52
32
|
useCurrentTime: {
|
|
53
|
-
type?:
|
|
54
|
-
default?:
|
|
55
|
-
} | {
|
|
56
|
-
type: any;
|
|
57
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
58
|
-
[key: string]: any;
|
|
59
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
33
|
+
type?: import("vue").PropType<boolean>;
|
|
34
|
+
default?: boolean;
|
|
60
35
|
};
|
|
61
36
|
interval: {
|
|
62
|
-
type?:
|
|
63
|
-
default?:
|
|
64
|
-
} | {
|
|
65
|
-
type: any;
|
|
66
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
67
|
-
[key: string]: any;
|
|
68
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
37
|
+
type?: import("vue").PropType<number>;
|
|
38
|
+
default?: number;
|
|
69
39
|
};
|
|
70
40
|
intervalUnit: {
|
|
71
|
-
type?:
|
|
72
|
-
default?:
|
|
73
|
-
} | {
|
|
74
|
-
type: any;
|
|
75
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
76
|
-
[key: string]: any;
|
|
77
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
41
|
+
type?: import("vue").PropType<ManipulateType>;
|
|
42
|
+
default?: ManipulateType;
|
|
78
43
|
};
|
|
79
44
|
operate: {
|
|
80
|
-
type?:
|
|
81
|
-
default?:
|
|
82
|
-
} | {
|
|
83
|
-
type: any;
|
|
84
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
85
|
-
[key: string]: any;
|
|
86
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
45
|
+
type?: import("vue").PropType<DateOperate>;
|
|
46
|
+
default?: DateOperate;
|
|
87
47
|
};
|
|
88
48
|
id: {
|
|
89
|
-
type?:
|
|
90
|
-
default?:
|
|
91
|
-
} | {
|
|
92
|
-
type: any;
|
|
93
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
94
|
-
[key: string]: any;
|
|
95
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
49
|
+
type?: import("vue").PropType<string>;
|
|
50
|
+
default?: string;
|
|
96
51
|
};
|
|
97
52
|
name: {
|
|
98
|
-
type?:
|
|
99
|
-
default?:
|
|
100
|
-
} | {
|
|
101
|
-
type: any;
|
|
102
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
103
|
-
[key: string]: any;
|
|
104
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
53
|
+
type?: import("vue").PropType<string>;
|
|
54
|
+
default?: string;
|
|
105
55
|
};
|
|
106
56
|
keyName: {
|
|
107
|
-
type?:
|
|
108
|
-
default?:
|
|
109
|
-
} | {
|
|
110
|
-
type: any;
|
|
111
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
112
|
-
[key: string]: any;
|
|
113
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
57
|
+
type?: import("vue").PropType<string>;
|
|
58
|
+
default?: string;
|
|
114
59
|
};
|
|
115
60
|
type: {
|
|
116
|
-
type?:
|
|
117
|
-
default?:
|
|
118
|
-
} | {
|
|
119
|
-
type: any;
|
|
120
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
121
|
-
[key: string]: any;
|
|
122
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
61
|
+
type?: import("vue").PropType<string>;
|
|
62
|
+
default?: string;
|
|
123
63
|
};
|
|
124
64
|
width: {
|
|
125
|
-
type?:
|
|
126
|
-
default?:
|
|
127
|
-
} | {
|
|
128
|
-
type: any;
|
|
129
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
130
|
-
[key: string]: any;
|
|
131
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
65
|
+
type?: import("vue").PropType<string>;
|
|
66
|
+
default?: string;
|
|
132
67
|
};
|
|
133
68
|
height: {
|
|
134
|
-
type?:
|
|
135
|
-
default?:
|
|
136
|
-
} | {
|
|
137
|
-
type: any;
|
|
138
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
139
|
-
[key: string]: any;
|
|
140
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
69
|
+
type?: import("vue").PropType<string>;
|
|
70
|
+
default?: string;
|
|
141
71
|
};
|
|
142
72
|
position: {
|
|
143
|
-
type?:
|
|
144
|
-
default?:
|
|
145
|
-
} | {
|
|
146
|
-
type: any;
|
|
147
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
148
|
-
[key: string]: any;
|
|
149
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
73
|
+
type?: import("vue").PropType<string>;
|
|
74
|
+
default?: string;
|
|
150
75
|
};
|
|
151
76
|
top: {
|
|
152
|
-
type?:
|
|
153
|
-
default?:
|
|
154
|
-
} | {
|
|
155
|
-
type: any;
|
|
156
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
157
|
-
[key: string]: any;
|
|
158
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
77
|
+
type?: import("vue").PropType<string>;
|
|
78
|
+
default?: string;
|
|
159
79
|
};
|
|
160
80
|
left: {
|
|
161
|
-
type?:
|
|
162
|
-
default?:
|
|
163
|
-
} | {
|
|
164
|
-
type: any;
|
|
165
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
166
|
-
[key: string]: any;
|
|
167
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
81
|
+
type?: import("vue").PropType<string>;
|
|
82
|
+
default?: string;
|
|
168
83
|
};
|
|
169
84
|
zIndex: {
|
|
170
|
-
type?:
|
|
171
|
-
default?:
|
|
172
|
-
} | {
|
|
173
|
-
type: any;
|
|
174
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
175
|
-
[key: string]: any;
|
|
176
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
85
|
+
type?: import("vue").PropType<number>;
|
|
86
|
+
default?: number;
|
|
177
87
|
};
|
|
178
88
|
rotate: {
|
|
179
|
-
type?:
|
|
180
|
-
default?:
|
|
181
|
-
} | {
|
|
182
|
-
type: any;
|
|
183
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
184
|
-
[key: string]: any;
|
|
185
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
89
|
+
type?: import("vue").PropType<string>;
|
|
90
|
+
default?: string;
|
|
186
91
|
};
|
|
187
92
|
isShow: {
|
|
188
|
-
type?:
|
|
189
|
-
default?:
|
|
190
|
-
} | {
|
|
191
|
-
type: any;
|
|
192
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
193
|
-
[key: string]: any;
|
|
194
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
93
|
+
type?: import("vue").PropType<boolean>;
|
|
94
|
+
default?: boolean;
|
|
195
95
|
};
|
|
196
96
|
isRender: {
|
|
197
|
-
type?:
|
|
198
|
-
default?:
|
|
199
|
-
} | {
|
|
200
|
-
type: any;
|
|
201
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
202
|
-
[key: string]: any;
|
|
203
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
97
|
+
type?: import("vue").PropType<boolean>;
|
|
98
|
+
default?: boolean;
|
|
204
99
|
};
|
|
205
100
|
events: {
|
|
206
|
-
type?:
|
|
207
|
-
default?:
|
|
208
|
-
} | {
|
|
209
|
-
type: any;
|
|
210
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
211
|
-
[key: string]: any;
|
|
212
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
101
|
+
type?: import("vue").PropType<import('../../utils/props').Events>;
|
|
102
|
+
default?: import('../../utils/props').Events;
|
|
213
103
|
};
|
|
214
104
|
requestUrl: {
|
|
215
|
-
type?:
|
|
216
|
-
default?:
|
|
217
|
-
} | {
|
|
218
|
-
type: any;
|
|
219
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
220
|
-
[key: string]: any;
|
|
221
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
105
|
+
type?: import("vue").PropType<string>;
|
|
106
|
+
default?: string;
|
|
222
107
|
};
|
|
223
108
|
requestMethod: {
|
|
224
|
-
type?:
|
|
225
|
-
default?:
|
|
226
|
-
} | {
|
|
227
|
-
type: any;
|
|
228
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
229
|
-
[key: string]: any;
|
|
230
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
109
|
+
type?: import("vue").PropType<import('../../utils/props').RequestMethod>;
|
|
110
|
+
default?: import('../../utils/props').RequestMethod;
|
|
231
111
|
};
|
|
232
112
|
requestHeaders: {
|
|
233
|
-
type?:
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
113
|
+
type?: import("vue").PropType<{
|
|
114
|
+
[key: string]: any;
|
|
115
|
+
}>;
|
|
116
|
+
default?: {
|
|
238
117
|
[key: string]: any;
|
|
239
|
-
}
|
|
118
|
+
};
|
|
240
119
|
};
|
|
241
120
|
isOpenRequestTimer: {
|
|
242
|
-
type?:
|
|
243
|
-
default?:
|
|
244
|
-
} | {
|
|
245
|
-
type: any;
|
|
246
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
247
|
-
[key: string]: any;
|
|
248
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
121
|
+
type?: import("vue").PropType<boolean>;
|
|
122
|
+
default?: boolean;
|
|
249
123
|
};
|
|
250
124
|
requestInterval: {
|
|
251
|
-
type?:
|
|
252
|
-
default?:
|
|
253
|
-
} | {
|
|
254
|
-
type: any;
|
|
255
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
256
|
-
[key: string]: any;
|
|
257
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
125
|
+
type?: import("vue").PropType<number>;
|
|
126
|
+
default?: number;
|
|
258
127
|
};
|
|
259
128
|
requestParams: {
|
|
260
|
-
type?:
|
|
261
|
-
default?:
|
|
262
|
-
} | {
|
|
263
|
-
type: any;
|
|
264
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
265
|
-
[key: string]: any;
|
|
266
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
129
|
+
type?: import("vue").PropType<import('../../utils/props').RequestParams>;
|
|
130
|
+
default?: import('../../utils/props').RequestParams;
|
|
267
131
|
};
|
|
268
132
|
requestSort: {
|
|
269
|
-
type?:
|
|
270
|
-
default?:
|
|
271
|
-
} | {
|
|
272
|
-
type: any;
|
|
273
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
274
|
-
[key: string]: any;
|
|
275
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
133
|
+
type?: import("vue").PropType<number>;
|
|
134
|
+
default?: number;
|
|
276
135
|
};
|
|
277
136
|
dataType: {
|
|
278
|
-
type?:
|
|
279
|
-
default?:
|
|
280
|
-
} | {
|
|
281
|
-
type: any;
|
|
282
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
283
|
-
[key: string]: any;
|
|
284
|
-
} | import('../../utils/props').RequestParams | DateOperate;
|
|
137
|
+
type?: import("vue").PropType<"indicator" | "static" | "request">;
|
|
138
|
+
default?: "indicator" | "static" | "request";
|
|
285
139
|
};
|
|
286
140
|
};
|
|
287
141
|
export declare const rangePickerEvents: string[];
|