@ecan-bi/datav 1.0.5 → 1.0.8
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/README.dev.md +16 -0
- package/README.md +0 -0
- package/dist/_utils/constant.d.ts +3 -0
- package/dist/_utils/hooks/index.d.ts +6 -0
- package/dist/_utils/hooks/useEmitEvent.d.ts +7 -0
- package/dist/_utils/hooks/useOnEvent.d.ts +6 -0
- package/dist/_utils/hooks/usePickComponentStyle.d.ts +9 -0
- package/dist/_utils/hooks/usePickEchartsData.d.ts +2 -0
- package/dist/_utils/hooks/useRequestData.d.ts +14 -0
- package/dist/_utils/hooks/useRequestParams.d.ts +5 -0
- package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +8 -0
- package/dist/_utils/props.d.ts +48 -7
- package/dist/_utils/request.d.ts +2 -0
- package/dist/_utils/util.d.ts +5 -0
- package/dist/common/echarts/ECharts.d.ts +311 -0
- package/dist/common/echarts/composables/api.d.ts +7 -0
- package/dist/common/echarts/composables/autoresize.d.ts +6 -0
- package/dist/common/echarts/composables/index.d.ts +3 -0
- package/dist/common/echarts/composables/loading.d.ts +10 -0
- package/dist/common/echarts/index.d.ts +2 -0
- package/dist/common/echarts/types.d.ts +20 -0
- package/dist/common/echarts/utils.d.ts +6 -0
- package/dist/common/index.d.ts +1 -0
- package/dist/components.d.ts +6 -0
- package/dist/container/border/index.d.ts +3 -0
- package/dist/container/border/props.d.ts +235 -0
- package/dist/container/index.d.ts +2 -0
- package/dist/container/modal/Modal.vue.d.ts +363 -0
- package/dist/container/modal/index.d.ts +3 -0
- package/dist/container/modal/props.d.ts +138 -0
- package/dist/control/button/Button.vue.d.ts +282 -0
- package/dist/control/button/index.d.ts +3 -0
- package/dist/control/button/props.d.ts +196 -0
- package/dist/control/date-picker/DatePicker.vue.d.ts +397 -0
- package/dist/control/date-picker/index.d.ts +3 -0
- package/dist/control/date-picker/props.d.ts +236 -0
- package/dist/control/index.d.ts +4 -0
- package/dist/control/input/Input.vue.d.ts +305 -3
- package/dist/control/input/index.d.ts +1 -0
- package/dist/control/input/props.d.ts +215 -0
- package/dist/control/range-picker/RangePicker.vue.d.ts +296 -0
- package/dist/control/range-picker/index.d.ts +3 -0
- package/dist/control/range-picker/props.d.ts +205 -0
- package/dist/control/select/Select.vue.d.ts +308 -0
- package/dist/control/select/index.d.ts +3 -0
- package/dist/control/select/props.d.ts +223 -0
- package/dist/graph/bar/Bar.vue.d.ts +617 -0
- package/dist/graph/bar/index.d.ts +3 -0
- package/dist/graph/bar/props.d.ts +382 -0
- package/dist/graph/custom-graph/CustomGraph.vue.d.ts +355 -0
- package/dist/graph/custom-graph/index.d.ts +3 -0
- package/dist/graph/custom-graph/props.d.ts +263 -0
- package/dist/graph/index.d.ts +5 -0
- package/dist/graph/line/Line.vue.d.ts +655 -0
- package/dist/graph/line/index.d.ts +3 -0
- package/dist/graph/line/props.d.ts +405 -0
- package/dist/graph/pie/Pie.vue.d.ts +752 -0
- package/dist/graph/pie/index.d.ts +3 -0
- package/dist/graph/pie/props.d.ts +485 -0
- package/dist/graph/scatter/Scatter.vue.d.ts +655 -0
- package/dist/graph/scatter/index.d.ts +3 -0
- package/dist/graph/scatter/props.d.ts +405 -0
- package/dist/index.esm.js +15 -1
- package/dist/index.umd.js +15 -1
- package/dist/media/image/Image.vue.d.ts +293 -0
- package/dist/media/image/index.d.ts +3 -0
- package/dist/media/image/props.d.ts +205 -0
- package/dist/media/index.d.ts +1 -0
- package/dist/setting/index.d.ts +2 -0
- package/dist/setting/page-config/PageConfig.vue.d.ts +78 -0
- package/dist/setting/page-config/index.d.ts +3 -0
- package/dist/setting/page-config/props.d.ts +61 -0
- package/dist/setting/provider-config/ProviderConfig.vue.d.ts +34 -0
- package/dist/setting/provider-config/index.d.ts +3 -0
- package/dist/setting/provider-config/props.d.ts +29 -0
- package/dist/table/index.d.ts +1 -0
- package/dist/table/table/Table.vue.d.ts +494 -0
- package/dist/table/table/index.d.ts +3 -0
- package/dist/table/table/props.d.ts +382 -0
- package/dist/text/text/Text.vue.d.ts +383 -3
- package/dist/text/text/index.d.ts +1 -1
- package/dist/text/text/props.d.ts +268 -3
- package/package.json +24 -20
|
@@ -0,0 +1,235 @@
|
|
|
1
|
+
import { Props } from '../../_utils/props';
|
|
2
|
+
export interface BorderProps extends Props {
|
|
3
|
+
fontSize: string;
|
|
4
|
+
fontFamily: string;
|
|
5
|
+
fontWeight: number;
|
|
6
|
+
title: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const borderProps: BorderProps;
|
|
9
|
+
export declare const cardComponentProps: {
|
|
10
|
+
fontSize: {
|
|
11
|
+
type?: undefined;
|
|
12
|
+
default?: undefined;
|
|
13
|
+
} | {
|
|
14
|
+
type: any;
|
|
15
|
+
default: string | number | boolean | {
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
18
|
+
};
|
|
19
|
+
fontFamily: {
|
|
20
|
+
type?: undefined;
|
|
21
|
+
default?: undefined;
|
|
22
|
+
} | {
|
|
23
|
+
type: any;
|
|
24
|
+
default: string | number | boolean | {
|
|
25
|
+
[key: string]: any;
|
|
26
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
27
|
+
};
|
|
28
|
+
fontWeight: {
|
|
29
|
+
type?: undefined;
|
|
30
|
+
default?: undefined;
|
|
31
|
+
} | {
|
|
32
|
+
type: any;
|
|
33
|
+
default: string | number | boolean | {
|
|
34
|
+
[key: string]: any;
|
|
35
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
36
|
+
};
|
|
37
|
+
title: {
|
|
38
|
+
type?: undefined;
|
|
39
|
+
default?: undefined;
|
|
40
|
+
} | {
|
|
41
|
+
type: any;
|
|
42
|
+
default: string | number | boolean | {
|
|
43
|
+
[key: string]: any;
|
|
44
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
45
|
+
};
|
|
46
|
+
id: {
|
|
47
|
+
type?: undefined;
|
|
48
|
+
default?: undefined;
|
|
49
|
+
} | {
|
|
50
|
+
type: any;
|
|
51
|
+
default: string | number | boolean | {
|
|
52
|
+
[key: string]: any;
|
|
53
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
54
|
+
};
|
|
55
|
+
name: {
|
|
56
|
+
type?: undefined;
|
|
57
|
+
default?: undefined;
|
|
58
|
+
} | {
|
|
59
|
+
type: any;
|
|
60
|
+
default: string | number | boolean | {
|
|
61
|
+
[key: string]: any;
|
|
62
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
63
|
+
};
|
|
64
|
+
keyName: {
|
|
65
|
+
type?: undefined;
|
|
66
|
+
default?: undefined;
|
|
67
|
+
} | {
|
|
68
|
+
type: any;
|
|
69
|
+
default: string | number | boolean | {
|
|
70
|
+
[key: string]: any;
|
|
71
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
72
|
+
};
|
|
73
|
+
type: {
|
|
74
|
+
type?: undefined;
|
|
75
|
+
default?: undefined;
|
|
76
|
+
} | {
|
|
77
|
+
type: any;
|
|
78
|
+
default: string | number | boolean | {
|
|
79
|
+
[key: string]: any;
|
|
80
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
81
|
+
};
|
|
82
|
+
width: {
|
|
83
|
+
type?: undefined;
|
|
84
|
+
default?: undefined;
|
|
85
|
+
} | {
|
|
86
|
+
type: any;
|
|
87
|
+
default: string | number | boolean | {
|
|
88
|
+
[key: string]: any;
|
|
89
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
90
|
+
};
|
|
91
|
+
height: {
|
|
92
|
+
type?: undefined;
|
|
93
|
+
default?: undefined;
|
|
94
|
+
} | {
|
|
95
|
+
type: any;
|
|
96
|
+
default: string | number | boolean | {
|
|
97
|
+
[key: string]: any;
|
|
98
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
99
|
+
};
|
|
100
|
+
position: {
|
|
101
|
+
type?: undefined;
|
|
102
|
+
default?: undefined;
|
|
103
|
+
} | {
|
|
104
|
+
type: any;
|
|
105
|
+
default: string | number | boolean | {
|
|
106
|
+
[key: string]: any;
|
|
107
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
108
|
+
};
|
|
109
|
+
top: {
|
|
110
|
+
type?: undefined;
|
|
111
|
+
default?: undefined;
|
|
112
|
+
} | {
|
|
113
|
+
type: any;
|
|
114
|
+
default: string | number | boolean | {
|
|
115
|
+
[key: string]: any;
|
|
116
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
117
|
+
};
|
|
118
|
+
left: {
|
|
119
|
+
type?: undefined;
|
|
120
|
+
default?: undefined;
|
|
121
|
+
} | {
|
|
122
|
+
type: any;
|
|
123
|
+
default: string | number | boolean | {
|
|
124
|
+
[key: string]: any;
|
|
125
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
126
|
+
};
|
|
127
|
+
zIndex: {
|
|
128
|
+
type?: undefined;
|
|
129
|
+
default?: undefined;
|
|
130
|
+
} | {
|
|
131
|
+
type: any;
|
|
132
|
+
default: string | number | boolean | {
|
|
133
|
+
[key: string]: any;
|
|
134
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
135
|
+
};
|
|
136
|
+
rotate: {
|
|
137
|
+
type?: undefined;
|
|
138
|
+
default?: undefined;
|
|
139
|
+
} | {
|
|
140
|
+
type: any;
|
|
141
|
+
default: string | number | boolean | {
|
|
142
|
+
[key: string]: any;
|
|
143
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
144
|
+
};
|
|
145
|
+
isShow: {
|
|
146
|
+
type?: undefined;
|
|
147
|
+
default?: undefined;
|
|
148
|
+
} | {
|
|
149
|
+
type: any;
|
|
150
|
+
default: string | number | boolean | {
|
|
151
|
+
[key: string]: any;
|
|
152
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
153
|
+
};
|
|
154
|
+
isRender: {
|
|
155
|
+
type?: undefined;
|
|
156
|
+
default?: undefined;
|
|
157
|
+
} | {
|
|
158
|
+
type: any;
|
|
159
|
+
default: string | number | boolean | {
|
|
160
|
+
[key: string]: any;
|
|
161
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
162
|
+
};
|
|
163
|
+
isRequestData: {
|
|
164
|
+
type?: undefined;
|
|
165
|
+
default?: undefined;
|
|
166
|
+
} | {
|
|
167
|
+
type: any;
|
|
168
|
+
default: string | number | boolean | {
|
|
169
|
+
[key: string]: any;
|
|
170
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
171
|
+
};
|
|
172
|
+
requestUrl: {
|
|
173
|
+
type?: undefined;
|
|
174
|
+
default?: undefined;
|
|
175
|
+
} | {
|
|
176
|
+
type: any;
|
|
177
|
+
default: string | number | boolean | {
|
|
178
|
+
[key: string]: any;
|
|
179
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
180
|
+
};
|
|
181
|
+
requestMethod: {
|
|
182
|
+
type?: undefined;
|
|
183
|
+
default?: undefined;
|
|
184
|
+
} | {
|
|
185
|
+
type: any;
|
|
186
|
+
default: string | number | boolean | {
|
|
187
|
+
[key: string]: any;
|
|
188
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
189
|
+
};
|
|
190
|
+
requestHeaders: {
|
|
191
|
+
type?: undefined;
|
|
192
|
+
default?: undefined;
|
|
193
|
+
} | {
|
|
194
|
+
type: any;
|
|
195
|
+
default: string | number | boolean | {
|
|
196
|
+
[key: string]: any;
|
|
197
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
198
|
+
};
|
|
199
|
+
isOpenRequestTimer: {
|
|
200
|
+
type?: undefined;
|
|
201
|
+
default?: undefined;
|
|
202
|
+
} | {
|
|
203
|
+
type: any;
|
|
204
|
+
default: string | number | boolean | {
|
|
205
|
+
[key: string]: any;
|
|
206
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
207
|
+
};
|
|
208
|
+
requestInterval: {
|
|
209
|
+
type?: undefined;
|
|
210
|
+
default?: undefined;
|
|
211
|
+
} | {
|
|
212
|
+
type: any;
|
|
213
|
+
default: string | number | boolean | {
|
|
214
|
+
[key: string]: any;
|
|
215
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
216
|
+
};
|
|
217
|
+
requestParams: {
|
|
218
|
+
type?: undefined;
|
|
219
|
+
default?: undefined;
|
|
220
|
+
} | {
|
|
221
|
+
type: any;
|
|
222
|
+
default: string | number | boolean | {
|
|
223
|
+
[key: string]: any;
|
|
224
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
225
|
+
};
|
|
226
|
+
events: {
|
|
227
|
+
type?: undefined;
|
|
228
|
+
default?: undefined;
|
|
229
|
+
} | {
|
|
230
|
+
type: any;
|
|
231
|
+
default: string | number | boolean | {
|
|
232
|
+
[key: string]: any;
|
|
233
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
|
|
234
|
+
};
|
|
235
|
+
};
|
|
@@ -0,0 +1,363 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
id: {
|
|
3
|
+
type?: undefined;
|
|
4
|
+
default?: undefined;
|
|
5
|
+
} | {
|
|
6
|
+
type: any;
|
|
7
|
+
default: string | boolean | Boolean | {
|
|
8
|
+
[key: string]: any;
|
|
9
|
+
}[];
|
|
10
|
+
};
|
|
11
|
+
type: {
|
|
12
|
+
type?: undefined;
|
|
13
|
+
default?: undefined;
|
|
14
|
+
} | {
|
|
15
|
+
type: any;
|
|
16
|
+
default: string | boolean | Boolean | {
|
|
17
|
+
[key: string]: any;
|
|
18
|
+
}[];
|
|
19
|
+
};
|
|
20
|
+
width: {
|
|
21
|
+
type?: undefined;
|
|
22
|
+
default?: undefined;
|
|
23
|
+
} | {
|
|
24
|
+
type: any;
|
|
25
|
+
default: string | boolean | Boolean | {
|
|
26
|
+
[key: string]: any;
|
|
27
|
+
}[];
|
|
28
|
+
};
|
|
29
|
+
height: {
|
|
30
|
+
type?: undefined;
|
|
31
|
+
default?: undefined;
|
|
32
|
+
} | {
|
|
33
|
+
type: any;
|
|
34
|
+
default: string | boolean | Boolean | {
|
|
35
|
+
[key: string]: any;
|
|
36
|
+
}[];
|
|
37
|
+
};
|
|
38
|
+
backgroundColor: {
|
|
39
|
+
type?: undefined;
|
|
40
|
+
default?: undefined;
|
|
41
|
+
} | {
|
|
42
|
+
type: any;
|
|
43
|
+
default: string | boolean | Boolean | {
|
|
44
|
+
[key: string]: any;
|
|
45
|
+
}[];
|
|
46
|
+
};
|
|
47
|
+
backgroundImage: {
|
|
48
|
+
type?: undefined;
|
|
49
|
+
default?: undefined;
|
|
50
|
+
} | {
|
|
51
|
+
type: any;
|
|
52
|
+
default: string | boolean | Boolean | {
|
|
53
|
+
[key: string]: any;
|
|
54
|
+
}[];
|
|
55
|
+
};
|
|
56
|
+
backgroundSize: {
|
|
57
|
+
type?: undefined;
|
|
58
|
+
default?: undefined;
|
|
59
|
+
} | {
|
|
60
|
+
type: any;
|
|
61
|
+
default: string | boolean | Boolean | {
|
|
62
|
+
[key: string]: any;
|
|
63
|
+
}[];
|
|
64
|
+
};
|
|
65
|
+
keyName: {
|
|
66
|
+
type?: undefined;
|
|
67
|
+
default?: undefined;
|
|
68
|
+
} | {
|
|
69
|
+
type: any;
|
|
70
|
+
default: string | boolean | Boolean | {
|
|
71
|
+
[key: string]: any;
|
|
72
|
+
}[];
|
|
73
|
+
};
|
|
74
|
+
componentList: {
|
|
75
|
+
type?: undefined;
|
|
76
|
+
default?: undefined;
|
|
77
|
+
} | {
|
|
78
|
+
type: any;
|
|
79
|
+
default: string | boolean | Boolean | {
|
|
80
|
+
[key: string]: any;
|
|
81
|
+
}[];
|
|
82
|
+
};
|
|
83
|
+
fullModal: {
|
|
84
|
+
type?: undefined;
|
|
85
|
+
default?: undefined;
|
|
86
|
+
} | {
|
|
87
|
+
type: any;
|
|
88
|
+
default: string | boolean | Boolean | {
|
|
89
|
+
[key: string]: any;
|
|
90
|
+
}[];
|
|
91
|
+
};
|
|
92
|
+
centered: {
|
|
93
|
+
type?: undefined;
|
|
94
|
+
default?: undefined;
|
|
95
|
+
} | {
|
|
96
|
+
type: any;
|
|
97
|
+
default: string | boolean | Boolean | {
|
|
98
|
+
[key: string]: any;
|
|
99
|
+
}[];
|
|
100
|
+
};
|
|
101
|
+
originalWidth: {
|
|
102
|
+
type?: undefined;
|
|
103
|
+
default?: undefined;
|
|
104
|
+
} | {
|
|
105
|
+
type: any;
|
|
106
|
+
default: string | boolean | Boolean | {
|
|
107
|
+
[key: string]: any;
|
|
108
|
+
}[];
|
|
109
|
+
};
|
|
110
|
+
originalHeight: {
|
|
111
|
+
type?: undefined;
|
|
112
|
+
default?: undefined;
|
|
113
|
+
} | {
|
|
114
|
+
type: any;
|
|
115
|
+
default: string | boolean | Boolean | {
|
|
116
|
+
[key: string]: any;
|
|
117
|
+
}[];
|
|
118
|
+
};
|
|
119
|
+
}, {
|
|
120
|
+
contain: import("vue").Ref<HTMLElement>;
|
|
121
|
+
containStyle: import("vue").ComputedRef<{
|
|
122
|
+
width: string;
|
|
123
|
+
height: string;
|
|
124
|
+
}>;
|
|
125
|
+
contentStyle: import("vue").ComputedRef<{
|
|
126
|
+
transform: string;
|
|
127
|
+
innerHTML?: string;
|
|
128
|
+
class?: any;
|
|
129
|
+
style?: import("vue").StyleValue;
|
|
130
|
+
accesskey?: string;
|
|
131
|
+
contenteditable?: (boolean | "true" | "false") | "inherit";
|
|
132
|
+
contextmenu?: string;
|
|
133
|
+
dir?: string;
|
|
134
|
+
draggable?: boolean | "true" | "false";
|
|
135
|
+
hidden?: boolean | "true" | "false";
|
|
136
|
+
id?: string;
|
|
137
|
+
lang?: string;
|
|
138
|
+
placeholder?: string;
|
|
139
|
+
spellcheck?: boolean | "true" | "false";
|
|
140
|
+
tabindex?: string | number;
|
|
141
|
+
title?: string;
|
|
142
|
+
translate?: "yes" | "no";
|
|
143
|
+
radiogroup?: string;
|
|
144
|
+
role?: string;
|
|
145
|
+
about?: string;
|
|
146
|
+
datatype?: string;
|
|
147
|
+
inlist?: any;
|
|
148
|
+
prefix?: string;
|
|
149
|
+
property?: string;
|
|
150
|
+
resource?: string;
|
|
151
|
+
typeof?: string;
|
|
152
|
+
vocab?: string;
|
|
153
|
+
autocapitalize?: string;
|
|
154
|
+
autocorrect?: string;
|
|
155
|
+
autocave?: string;
|
|
156
|
+
color?: string;
|
|
157
|
+
itemprop?: string;
|
|
158
|
+
itemscope?: boolean | "true" | "false";
|
|
159
|
+
itemtype?: string;
|
|
160
|
+
itemid?: string;
|
|
161
|
+
itemref?: string;
|
|
162
|
+
results?: string | number;
|
|
163
|
+
security?: string;
|
|
164
|
+
unselectable?: "on" | "off";
|
|
165
|
+
inputmode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
166
|
+
is?: string;
|
|
167
|
+
'aria-activedescendant'?: string;
|
|
168
|
+
'aria-atomic'?: boolean | "true" | "false";
|
|
169
|
+
'aria-autocomplete'?: "none" | "inline" | "list" | "both";
|
|
170
|
+
'aria-busy'?: boolean | "true" | "false";
|
|
171
|
+
'aria-checked'?: (boolean | "true" | "false") | "mixed";
|
|
172
|
+
'aria-colcount'?: string | number;
|
|
173
|
+
'aria-colindex'?: string | number;
|
|
174
|
+
'aria-colspan'?: string | number;
|
|
175
|
+
'aria-controls'?: string;
|
|
176
|
+
'aria-current'?: (boolean | "true" | "false") | "page" | "step" | "location" | "date" | "time";
|
|
177
|
+
'aria-describedby'?: string;
|
|
178
|
+
'aria-details'?: string;
|
|
179
|
+
'aria-disabled'?: boolean | "true" | "false";
|
|
180
|
+
'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
|
|
181
|
+
'aria-errormessage'?: string;
|
|
182
|
+
'aria-expanded'?: boolean | "true" | "false";
|
|
183
|
+
'aria-flowto'?: string;
|
|
184
|
+
'aria-grabbed'?: boolean | "true" | "false";
|
|
185
|
+
'aria-haspopup'?: (boolean | "true" | "false") | "menu" | "listbox" | "tree" | "grid" | "dialog";
|
|
186
|
+
'aria-hidden'?: boolean | "true" | "false";
|
|
187
|
+
'aria-invalid'?: (boolean | "true" | "false") | "grammar" | "spelling";
|
|
188
|
+
'aria-keyshortcuts'?: string;
|
|
189
|
+
'aria-label'?: string;
|
|
190
|
+
'aria-labelledby'?: string;
|
|
191
|
+
'aria-level'?: string | number;
|
|
192
|
+
'aria-live'?: "off" | "assertive" | "polite";
|
|
193
|
+
'aria-modal'?: boolean | "true" | "false";
|
|
194
|
+
'aria-multiline'?: boolean | "true" | "false";
|
|
195
|
+
'aria-multiselectable'?: boolean | "true" | "false";
|
|
196
|
+
'aria-orientation'?: "horizontal" | "vertical";
|
|
197
|
+
'aria-owns'?: string;
|
|
198
|
+
'aria-placeholder'?: string;
|
|
199
|
+
'aria-posinset'?: string | number;
|
|
200
|
+
'aria-pressed'?: (boolean | "true" | "false") | "mixed";
|
|
201
|
+
'aria-readonly'?: boolean | "true" | "false";
|
|
202
|
+
'aria-relevant'?: "text" | "additions" | "additions text" | "all" | "removals";
|
|
203
|
+
'aria-required'?: boolean | "true" | "false";
|
|
204
|
+
'aria-roledescription'?: string;
|
|
205
|
+
'aria-rowcount'?: string | number;
|
|
206
|
+
'aria-rowindex'?: string | number;
|
|
207
|
+
'aria-rowspan'?: string | number;
|
|
208
|
+
'aria-selected'?: boolean | "true" | "false";
|
|
209
|
+
'aria-setsize'?: string | number;
|
|
210
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
211
|
+
'aria-valuemax'?: string | number;
|
|
212
|
+
'aria-valuemin'?: string | number;
|
|
213
|
+
'aria-valuenow'?: string | number;
|
|
214
|
+
'aria-valuetext'?: string;
|
|
215
|
+
onCopy?: (payload: ClipboardEvent) => void;
|
|
216
|
+
onCut?: (payload: ClipboardEvent) => void;
|
|
217
|
+
onPaste?: (payload: ClipboardEvent) => void;
|
|
218
|
+
onCompositionend?: (payload: CompositionEvent) => void;
|
|
219
|
+
onCompositionstart?: (payload: CompositionEvent) => void;
|
|
220
|
+
onCompositionupdate?: (payload: CompositionEvent) => void;
|
|
221
|
+
onDrag?: (payload: DragEvent) => void;
|
|
222
|
+
onDragend?: (payload: DragEvent) => void;
|
|
223
|
+
onDragenter?: (payload: DragEvent) => void;
|
|
224
|
+
onDragexit?: (payload: DragEvent) => void;
|
|
225
|
+
onDragleave?: (payload: DragEvent) => void;
|
|
226
|
+
onDragover?: (payload: DragEvent) => void;
|
|
227
|
+
onDragstart?: (payload: DragEvent) => void;
|
|
228
|
+
onDrop?: (payload: DragEvent) => void;
|
|
229
|
+
onFocus?: (payload: FocusEvent) => void;
|
|
230
|
+
onFocusin?: (payload: FocusEvent) => void;
|
|
231
|
+
onFocusout?: (payload: FocusEvent) => void;
|
|
232
|
+
onBlur?: (payload: FocusEvent) => void;
|
|
233
|
+
onChange?: (payload: Event) => void;
|
|
234
|
+
onBeforeinput?: (payload: Event) => void;
|
|
235
|
+
onInput?: (payload: Event) => void;
|
|
236
|
+
onReset?: (payload: Event) => void;
|
|
237
|
+
onSubmit?: (payload: Event) => void;
|
|
238
|
+
onInvalid?: (payload: Event) => void;
|
|
239
|
+
onLoad?: (payload: Event) => void;
|
|
240
|
+
onError?: (payload: Event) => void;
|
|
241
|
+
onKeydown?: (payload: KeyboardEvent) => void;
|
|
242
|
+
onKeypress?: (payload: KeyboardEvent) => void;
|
|
243
|
+
onKeyup?: (payload: KeyboardEvent) => void;
|
|
244
|
+
onAuxclick?: (payload: MouseEvent) => void;
|
|
245
|
+
onClick?: (payload: MouseEvent) => void;
|
|
246
|
+
onContextmenu?: (payload: MouseEvent) => void;
|
|
247
|
+
onDblclick?: (payload: MouseEvent) => void;
|
|
248
|
+
onMousedown?: (payload: MouseEvent) => void;
|
|
249
|
+
onMouseenter?: (payload: MouseEvent) => void;
|
|
250
|
+
onMouseleave?: (payload: MouseEvent) => void;
|
|
251
|
+
onMousemove?: (payload: MouseEvent) => void;
|
|
252
|
+
onMouseout?: (payload: MouseEvent) => void;
|
|
253
|
+
onMouseover?: (payload: MouseEvent) => void;
|
|
254
|
+
onMouseup?: (payload: MouseEvent) => void;
|
|
255
|
+
onAbort?: (payload: Event) => void;
|
|
256
|
+
onCanplay?: (payload: Event) => void;
|
|
257
|
+
onCanplaythrough?: (payload: Event) => void;
|
|
258
|
+
onDurationchange?: (payload: Event) => void;
|
|
259
|
+
onEmptied?: (payload: Event) => void;
|
|
260
|
+
onEncrypted?: (payload: Event) => void;
|
|
261
|
+
onEnded?: (payload: Event) => void;
|
|
262
|
+
onLoadeddata?: (payload: Event) => void;
|
|
263
|
+
onLoadedmetadata?: (payload: Event) => void;
|
|
264
|
+
onLoadstart?: (payload: Event) => void;
|
|
265
|
+
onPause?: (payload: Event) => void;
|
|
266
|
+
onPlay?: (payload: Event) => void;
|
|
267
|
+
onPlaying?: (payload: Event) => void;
|
|
268
|
+
onProgress?: (payload: Event) => void;
|
|
269
|
+
onRatechange?: (payload: Event) => void;
|
|
270
|
+
onSeeked?: (payload: Event) => void;
|
|
271
|
+
onSeeking?: (payload: Event) => void;
|
|
272
|
+
onStalled?: (payload: Event) => void;
|
|
273
|
+
onSuspend?: (payload: Event) => void;
|
|
274
|
+
onTimeupdate?: (payload: Event) => void;
|
|
275
|
+
onVolumechange?: (payload: Event) => void;
|
|
276
|
+
onWaiting?: (payload: Event) => void;
|
|
277
|
+
onSelect?: (payload: Event) => void;
|
|
278
|
+
onScroll?: (payload: UIEvent) => void;
|
|
279
|
+
onTouchcancel?: (payload: TouchEvent) => void;
|
|
280
|
+
onTouchend?: (payload: TouchEvent) => void;
|
|
281
|
+
onTouchmove?: (payload: TouchEvent) => void;
|
|
282
|
+
onTouchstart?: (payload: TouchEvent) => void;
|
|
283
|
+
onPointerdown?: (payload: PointerEvent) => void;
|
|
284
|
+
onPointermove?: (payload: PointerEvent) => void;
|
|
285
|
+
onPointerup?: (payload: PointerEvent) => void;
|
|
286
|
+
onPointercancel?: (payload: PointerEvent) => void;
|
|
287
|
+
onPointerenter?: (payload: PointerEvent) => void;
|
|
288
|
+
onPointerleave?: (payload: PointerEvent) => void;
|
|
289
|
+
onPointerover?: (payload: PointerEvent) => void;
|
|
290
|
+
onPointerout?: (payload: PointerEvent) => void;
|
|
291
|
+
onWheel?: (payload: WheelEvent) => void;
|
|
292
|
+
onAnimationstart?: (payload: AnimationEvent) => void;
|
|
293
|
+
onAnimationend?: (payload: AnimationEvent) => void;
|
|
294
|
+
onAnimationiteration?: (payload: AnimationEvent) => void;
|
|
295
|
+
onTransitionend?: (payload: TransitionEvent) => void;
|
|
296
|
+
onTransitionstart?: (payload: TransitionEvent) => void;
|
|
297
|
+
}>;
|
|
298
|
+
getContainer: () => HTMLElement;
|
|
299
|
+
modalWith: import("vue").ComputedRef<string>;
|
|
300
|
+
isFullModal: import("vue").ComputedRef<string | boolean | Boolean | {
|
|
301
|
+
[key: string]: any;
|
|
302
|
+
}[]>;
|
|
303
|
+
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
304
|
+
visible: import("vue").Ref<boolean>;
|
|
305
|
+
showModal: () => void;
|
|
306
|
+
onOk: () => void;
|
|
307
|
+
onCancel: () => void;
|
|
308
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
309
|
+
id?: unknown;
|
|
310
|
+
type?: unknown;
|
|
311
|
+
width?: unknown;
|
|
312
|
+
height?: unknown;
|
|
313
|
+
backgroundColor?: unknown;
|
|
314
|
+
backgroundImage?: unknown;
|
|
315
|
+
backgroundSize?: unknown;
|
|
316
|
+
keyName?: unknown;
|
|
317
|
+
componentList?: unknown;
|
|
318
|
+
fullModal?: unknown;
|
|
319
|
+
centered?: unknown;
|
|
320
|
+
originalWidth?: unknown;
|
|
321
|
+
originalHeight?: unknown;
|
|
322
|
+
} & {} & {
|
|
323
|
+
type?: string | boolean | Boolean | {
|
|
324
|
+
[key: string]: any;
|
|
325
|
+
}[];
|
|
326
|
+
id?: string | boolean | Boolean | {
|
|
327
|
+
[key: string]: any;
|
|
328
|
+
}[];
|
|
329
|
+
width?: string | boolean | Boolean | {
|
|
330
|
+
[key: string]: any;
|
|
331
|
+
}[];
|
|
332
|
+
height?: string | boolean | Boolean | {
|
|
333
|
+
[key: string]: any;
|
|
334
|
+
}[];
|
|
335
|
+
backgroundColor?: string | boolean | Boolean | {
|
|
336
|
+
[key: string]: any;
|
|
337
|
+
}[];
|
|
338
|
+
backgroundImage?: string | boolean | Boolean | {
|
|
339
|
+
[key: string]: any;
|
|
340
|
+
}[];
|
|
341
|
+
backgroundSize?: string | boolean | Boolean | {
|
|
342
|
+
[key: string]: any;
|
|
343
|
+
}[];
|
|
344
|
+
keyName?: string | boolean | Boolean | {
|
|
345
|
+
[key: string]: any;
|
|
346
|
+
}[];
|
|
347
|
+
componentList?: string | boolean | Boolean | {
|
|
348
|
+
[key: string]: any;
|
|
349
|
+
}[];
|
|
350
|
+
fullModal?: string | boolean | Boolean | {
|
|
351
|
+
[key: string]: any;
|
|
352
|
+
}[];
|
|
353
|
+
centered?: string | boolean | Boolean | {
|
|
354
|
+
[key: string]: any;
|
|
355
|
+
}[];
|
|
356
|
+
originalWidth?: string | boolean | Boolean | {
|
|
357
|
+
[key: string]: any;
|
|
358
|
+
}[];
|
|
359
|
+
originalHeight?: string | boolean | Boolean | {
|
|
360
|
+
[key: string]: any;
|
|
361
|
+
}[];
|
|
362
|
+
}>, {}>;
|
|
363
|
+
export default _default;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export declare const EcanModal: import("../../_utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{}, {}, any, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>> & Record<string, any>;
|
|
2
|
+
export default EcanModal;
|
|
3
|
+
export * from './props';
|