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