@ecan-bi/datav 1.1.39 → 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 +1525 -1499
- 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 +184 -380
- package/types/container/tabs/index.d.ts +184 -380
- package/types/container/tabs/props.d.ts +94 -190
- 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
|
@@ -1,156 +1,76 @@
|
|
|
1
|
+
import { ModalPosition } from './props';
|
|
1
2
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
3
|
id: {
|
|
3
|
-
type?:
|
|
4
|
-
default?:
|
|
5
|
-
} | {
|
|
6
|
-
type: any;
|
|
7
|
-
default: string | boolean | {
|
|
8
|
-
[key: string]: any;
|
|
9
|
-
}[];
|
|
4
|
+
type?: import("vue").PropType<string>;
|
|
5
|
+
default?: string;
|
|
10
6
|
};
|
|
11
7
|
type: {
|
|
12
|
-
type?:
|
|
13
|
-
default?:
|
|
14
|
-
} | {
|
|
15
|
-
type: any;
|
|
16
|
-
default: string | boolean | {
|
|
17
|
-
[key: string]: any;
|
|
18
|
-
}[];
|
|
8
|
+
type?: import("vue").PropType<string>;
|
|
9
|
+
default?: string;
|
|
19
10
|
};
|
|
20
11
|
width: {
|
|
21
|
-
type?:
|
|
22
|
-
default?:
|
|
23
|
-
} | {
|
|
24
|
-
type: any;
|
|
25
|
-
default: string | boolean | {
|
|
26
|
-
[key: string]: any;
|
|
27
|
-
}[];
|
|
12
|
+
type?: import("vue").PropType<string>;
|
|
13
|
+
default?: string;
|
|
28
14
|
};
|
|
29
15
|
height: {
|
|
30
|
-
type?:
|
|
31
|
-
default?:
|
|
32
|
-
} | {
|
|
33
|
-
type: any;
|
|
34
|
-
default: string | boolean | {
|
|
35
|
-
[key: string]: any;
|
|
36
|
-
}[];
|
|
16
|
+
type?: import("vue").PropType<string>;
|
|
17
|
+
default?: string;
|
|
37
18
|
};
|
|
38
19
|
title: {
|
|
39
|
-
type?:
|
|
40
|
-
default?:
|
|
41
|
-
} | {
|
|
42
|
-
type: any;
|
|
43
|
-
default: string | boolean | {
|
|
44
|
-
[key: string]: any;
|
|
45
|
-
}[];
|
|
20
|
+
type?: import("vue").PropType<string>;
|
|
21
|
+
default?: string;
|
|
46
22
|
};
|
|
47
23
|
titleFontSize: {
|
|
48
|
-
type?:
|
|
49
|
-
default?:
|
|
50
|
-
} | {
|
|
51
|
-
type: any;
|
|
52
|
-
default: string | boolean | {
|
|
53
|
-
[key: string]: any;
|
|
54
|
-
}[];
|
|
24
|
+
type?: import("vue").PropType<string>;
|
|
25
|
+
default?: string;
|
|
55
26
|
};
|
|
56
27
|
titleColor: {
|
|
57
|
-
type?:
|
|
58
|
-
default?:
|
|
59
|
-
} | {
|
|
60
|
-
type: any;
|
|
61
|
-
default: string | boolean | {
|
|
62
|
-
[key: string]: any;
|
|
63
|
-
}[];
|
|
28
|
+
type?: import("vue").PropType<string>;
|
|
29
|
+
default?: string;
|
|
64
30
|
};
|
|
65
31
|
backgroundColor: {
|
|
66
|
-
type?:
|
|
67
|
-
default?:
|
|
68
|
-
} | {
|
|
69
|
-
type: any;
|
|
70
|
-
default: string | boolean | {
|
|
71
|
-
[key: string]: any;
|
|
72
|
-
}[];
|
|
32
|
+
type?: import("vue").PropType<string>;
|
|
33
|
+
default?: string;
|
|
73
34
|
};
|
|
74
35
|
backgroundImage: {
|
|
75
|
-
type?:
|
|
76
|
-
default?:
|
|
77
|
-
} | {
|
|
78
|
-
type: any;
|
|
79
|
-
default: string | boolean | {
|
|
80
|
-
[key: string]: any;
|
|
81
|
-
}[];
|
|
36
|
+
type?: import("vue").PropType<string>;
|
|
37
|
+
default?: string;
|
|
82
38
|
};
|
|
83
39
|
backgroundSize: {
|
|
84
|
-
type?:
|
|
85
|
-
default?:
|
|
86
|
-
} | {
|
|
87
|
-
type: any;
|
|
88
|
-
default: string | boolean | {
|
|
89
|
-
[key: string]: any;
|
|
90
|
-
}[];
|
|
40
|
+
type?: import("vue").PropType<string>;
|
|
41
|
+
default?: string;
|
|
91
42
|
};
|
|
92
43
|
keyName: {
|
|
93
|
-
type?:
|
|
94
|
-
default?:
|
|
95
|
-
} | {
|
|
96
|
-
type: any;
|
|
97
|
-
default: string | boolean | {
|
|
98
|
-
[key: string]: any;
|
|
99
|
-
}[];
|
|
44
|
+
type?: import("vue").PropType<string>;
|
|
45
|
+
default?: string;
|
|
100
46
|
};
|
|
101
47
|
componentList: {
|
|
102
|
-
type?:
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
default: string | boolean | {
|
|
48
|
+
type?: import("vue").PropType<{
|
|
49
|
+
[key: string]: any;
|
|
50
|
+
}[]>;
|
|
51
|
+
default?: {
|
|
107
52
|
[key: string]: any;
|
|
108
53
|
}[];
|
|
109
54
|
};
|
|
110
55
|
fullModal: {
|
|
111
|
-
type?:
|
|
112
|
-
default?:
|
|
113
|
-
} | {
|
|
114
|
-
type: any;
|
|
115
|
-
default: string | boolean | {
|
|
116
|
-
[key: string]: any;
|
|
117
|
-
}[];
|
|
56
|
+
type?: import("vue").PropType<boolean>;
|
|
57
|
+
default?: boolean;
|
|
118
58
|
};
|
|
119
59
|
originalWidth: {
|
|
120
|
-
type?:
|
|
121
|
-
default?:
|
|
122
|
-
} | {
|
|
123
|
-
type: any;
|
|
124
|
-
default: string | boolean | {
|
|
125
|
-
[key: string]: any;
|
|
126
|
-
}[];
|
|
60
|
+
type?: import("vue").PropType<string>;
|
|
61
|
+
default?: string;
|
|
127
62
|
};
|
|
128
63
|
originalHeight: {
|
|
129
|
-
type?:
|
|
130
|
-
default?:
|
|
131
|
-
} | {
|
|
132
|
-
type: any;
|
|
133
|
-
default: string | boolean | {
|
|
134
|
-
[key: string]: any;
|
|
135
|
-
}[];
|
|
64
|
+
type?: import("vue").PropType<string>;
|
|
65
|
+
default?: string;
|
|
136
66
|
};
|
|
137
67
|
destroyOnClose: {
|
|
138
|
-
type?:
|
|
139
|
-
default?:
|
|
140
|
-
} | {
|
|
141
|
-
type: any;
|
|
142
|
-
default: string | boolean | {
|
|
143
|
-
[key: string]: any;
|
|
144
|
-
}[];
|
|
68
|
+
type?: import("vue").PropType<boolean>;
|
|
69
|
+
default?: boolean;
|
|
145
70
|
};
|
|
146
71
|
position: {
|
|
147
|
-
type?:
|
|
148
|
-
default?:
|
|
149
|
-
} | {
|
|
150
|
-
type: any;
|
|
151
|
-
default: string | boolean | {
|
|
152
|
-
[key: string]: any;
|
|
153
|
-
}[];
|
|
72
|
+
type?: import("vue").PropType<ModalPosition>;
|
|
73
|
+
default?: ModalPosition;
|
|
154
74
|
};
|
|
155
75
|
}, {
|
|
156
76
|
modalRef: import("vue").Ref<HTMLElement>;
|
|
@@ -161,9 +81,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
161
81
|
verticalAlign: string;
|
|
162
82
|
}>;
|
|
163
83
|
modalWith: import("vue").Ref<string>;
|
|
164
|
-
isFullModal: import("vue").ComputedRef<
|
|
165
|
-
[key: string]: any;
|
|
166
|
-
}[]>;
|
|
84
|
+
isFullModal: import("vue").ComputedRef<boolean>;
|
|
167
85
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
168
86
|
visible: import("vue").Ref<boolean>;
|
|
169
87
|
showModal: () => void;
|
|
@@ -174,157 +92,76 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
174
92
|
ready: import("vue").Ref<boolean>;
|
|
175
93
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
176
94
|
id: {
|
|
177
|
-
type?:
|
|
178
|
-
default?:
|
|
179
|
-
} | {
|
|
180
|
-
type: any;
|
|
181
|
-
default: string | boolean | {
|
|
182
|
-
[key: string]: any;
|
|
183
|
-
}[];
|
|
95
|
+
type?: import("vue").PropType<string>;
|
|
96
|
+
default?: string;
|
|
184
97
|
};
|
|
185
98
|
type: {
|
|
186
|
-
type?:
|
|
187
|
-
default?:
|
|
188
|
-
} | {
|
|
189
|
-
type: any;
|
|
190
|
-
default: string | boolean | {
|
|
191
|
-
[key: string]: any;
|
|
192
|
-
}[];
|
|
99
|
+
type?: import("vue").PropType<string>;
|
|
100
|
+
default?: string;
|
|
193
101
|
};
|
|
194
102
|
width: {
|
|
195
|
-
type?:
|
|
196
|
-
default?:
|
|
197
|
-
} | {
|
|
198
|
-
type: any;
|
|
199
|
-
default: string | boolean | {
|
|
200
|
-
[key: string]: any;
|
|
201
|
-
}[];
|
|
103
|
+
type?: import("vue").PropType<string>;
|
|
104
|
+
default?: string;
|
|
202
105
|
};
|
|
203
106
|
height: {
|
|
204
|
-
type?:
|
|
205
|
-
default?:
|
|
206
|
-
} | {
|
|
207
|
-
type: any;
|
|
208
|
-
default: string | boolean | {
|
|
209
|
-
[key: string]: any;
|
|
210
|
-
}[];
|
|
107
|
+
type?: import("vue").PropType<string>;
|
|
108
|
+
default?: string;
|
|
211
109
|
};
|
|
212
110
|
title: {
|
|
213
|
-
type?:
|
|
214
|
-
default?:
|
|
215
|
-
} | {
|
|
216
|
-
type: any;
|
|
217
|
-
default: string | boolean | {
|
|
218
|
-
[key: string]: any;
|
|
219
|
-
}[];
|
|
111
|
+
type?: import("vue").PropType<string>;
|
|
112
|
+
default?: string;
|
|
220
113
|
};
|
|
221
114
|
titleFontSize: {
|
|
222
|
-
type?:
|
|
223
|
-
default?:
|
|
224
|
-
} | {
|
|
225
|
-
type: any;
|
|
226
|
-
default: string | boolean | {
|
|
227
|
-
[key: string]: any;
|
|
228
|
-
}[];
|
|
115
|
+
type?: import("vue").PropType<string>;
|
|
116
|
+
default?: string;
|
|
229
117
|
};
|
|
230
118
|
titleColor: {
|
|
231
|
-
type?:
|
|
232
|
-
default?:
|
|
233
|
-
} | {
|
|
234
|
-
type: any;
|
|
235
|
-
default: string | boolean | {
|
|
236
|
-
[key: string]: any;
|
|
237
|
-
}[];
|
|
119
|
+
type?: import("vue").PropType<string>;
|
|
120
|
+
default?: string;
|
|
238
121
|
};
|
|
239
122
|
backgroundColor: {
|
|
240
|
-
type?:
|
|
241
|
-
default?:
|
|
242
|
-
} | {
|
|
243
|
-
type: any;
|
|
244
|
-
default: string | boolean | {
|
|
245
|
-
[key: string]: any;
|
|
246
|
-
}[];
|
|
123
|
+
type?: import("vue").PropType<string>;
|
|
124
|
+
default?: string;
|
|
247
125
|
};
|
|
248
126
|
backgroundImage: {
|
|
249
|
-
type?:
|
|
250
|
-
default?:
|
|
251
|
-
} | {
|
|
252
|
-
type: any;
|
|
253
|
-
default: string | boolean | {
|
|
254
|
-
[key: string]: any;
|
|
255
|
-
}[];
|
|
127
|
+
type?: import("vue").PropType<string>;
|
|
128
|
+
default?: string;
|
|
256
129
|
};
|
|
257
130
|
backgroundSize: {
|
|
258
|
-
type?:
|
|
259
|
-
default?:
|
|
260
|
-
} | {
|
|
261
|
-
type: any;
|
|
262
|
-
default: string | boolean | {
|
|
263
|
-
[key: string]: any;
|
|
264
|
-
}[];
|
|
131
|
+
type?: import("vue").PropType<string>;
|
|
132
|
+
default?: string;
|
|
265
133
|
};
|
|
266
134
|
keyName: {
|
|
267
|
-
type?:
|
|
268
|
-
default?:
|
|
269
|
-
} | {
|
|
270
|
-
type: any;
|
|
271
|
-
default: string | boolean | {
|
|
272
|
-
[key: string]: any;
|
|
273
|
-
}[];
|
|
135
|
+
type?: import("vue").PropType<string>;
|
|
136
|
+
default?: string;
|
|
274
137
|
};
|
|
275
138
|
componentList: {
|
|
276
|
-
type?:
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
default: string | boolean | {
|
|
139
|
+
type?: import("vue").PropType<{
|
|
140
|
+
[key: string]: any;
|
|
141
|
+
}[]>;
|
|
142
|
+
default?: {
|
|
281
143
|
[key: string]: any;
|
|
282
144
|
}[];
|
|
283
145
|
};
|
|
284
146
|
fullModal: {
|
|
285
|
-
type?:
|
|
286
|
-
default?:
|
|
287
|
-
} | {
|
|
288
|
-
type: any;
|
|
289
|
-
default: string | boolean | {
|
|
290
|
-
[key: string]: any;
|
|
291
|
-
}[];
|
|
147
|
+
type?: import("vue").PropType<boolean>;
|
|
148
|
+
default?: boolean;
|
|
292
149
|
};
|
|
293
150
|
originalWidth: {
|
|
294
|
-
type?:
|
|
295
|
-
default?:
|
|
296
|
-
} | {
|
|
297
|
-
type: any;
|
|
298
|
-
default: string | boolean | {
|
|
299
|
-
[key: string]: any;
|
|
300
|
-
}[];
|
|
151
|
+
type?: import("vue").PropType<string>;
|
|
152
|
+
default?: string;
|
|
301
153
|
};
|
|
302
154
|
originalHeight: {
|
|
303
|
-
type?:
|
|
304
|
-
default?:
|
|
305
|
-
} | {
|
|
306
|
-
type: any;
|
|
307
|
-
default: string | boolean | {
|
|
308
|
-
[key: string]: any;
|
|
309
|
-
}[];
|
|
155
|
+
type?: import("vue").PropType<string>;
|
|
156
|
+
default?: string;
|
|
310
157
|
};
|
|
311
158
|
destroyOnClose: {
|
|
312
|
-
type?:
|
|
313
|
-
default?:
|
|
314
|
-
} | {
|
|
315
|
-
type: any;
|
|
316
|
-
default: string | boolean | {
|
|
317
|
-
[key: string]: any;
|
|
318
|
-
}[];
|
|
159
|
+
type?: import("vue").PropType<boolean>;
|
|
160
|
+
default?: boolean;
|
|
319
161
|
};
|
|
320
162
|
position: {
|
|
321
|
-
type?:
|
|
322
|
-
default?:
|
|
323
|
-
} | {
|
|
324
|
-
type: any;
|
|
325
|
-
default: string | boolean | {
|
|
326
|
-
[key: string]: any;
|
|
327
|
-
}[];
|
|
163
|
+
type?: import("vue").PropType<ModalPosition>;
|
|
164
|
+
default?: ModalPosition;
|
|
328
165
|
};
|
|
329
166
|
}>>, {}>;
|
|
330
167
|
export default _sfc_main;
|