@ecan-bi/datav 1.0.15 → 1.0.16
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/_utils/constant.d.ts +1 -1
- package/dist/_utils/hooks/index.d.ts +1 -1
- package/dist/_utils/hooks/usePickEchartsData.d.ts +1 -1
- package/dist/_utils/hooks/useRequestData.d.ts +5 -13
- package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +12 -3
- package/dist/_utils/props.d.ts +1 -1
- package/dist/_utils/util.d.ts +14 -0
- package/dist/common/echarts/ECharts.d.ts +1 -0
- package/dist/container/border/props.d.ts +67 -57
- package/dist/container/index.d.ts +1 -0
- package/dist/container/modal/Modal.vue.d.ts +47 -31
- package/dist/container/modal/props.d.ts +29 -18
- package/dist/container/tabs/Tabs.vue.d.ts +271 -0
- package/dist/container/tabs/index.d.ts +3 -0
- package/dist/container/tabs/props.d.ts +219 -0
- package/dist/control/button/Button.vue.d.ts +53 -53
- package/dist/control/button/props.d.ts +49 -49
- package/dist/control/date-picker/DatePicker.vue.d.ts +61 -61
- package/dist/control/date-picker/props.d.ts +7 -7
- package/dist/control/input/Input.vue.d.ts +59 -59
- package/dist/control/input/props.d.ts +53 -53
- package/dist/control/range-picker/RangePicker.vue.d.ts +55 -55
- package/dist/control/range-picker/props.d.ts +51 -51
- package/dist/control/select/Select.vue.d.ts +65 -61
- package/dist/control/select/props.d.ts +53 -53
- package/dist/graph/bar/Bar.vue.d.ts +304 -57
- package/dist/graph/bar/props.d.ts +277 -49
- package/dist/graph/custom-graph/CustomGraph.vue.d.ts +57 -57
- package/dist/graph/custom-graph/props.d.ts +53 -53
- package/dist/graph/line/Line.vue.d.ts +286 -109
- package/dist/graph/line/props.d.ts +235 -49
- package/dist/graph/pie/Pie.vue.d.ts +332 -114
- package/dist/graph/pie/props.d.ts +279 -57
- package/dist/graph/scatter/Scatter.vue.d.ts +157 -209
- package/dist/graph/scatter/props.d.ts +148 -123
- package/dist/index.esm.js +2 -2
- package/dist/index.umd.js +2 -2
- package/dist/media/image/Image.vue.d.ts +55 -55
- package/dist/media/image/props.d.ts +51 -51
- package/dist/table/table/Table.vue.d.ts +208 -67
- package/dist/table/table/props.d.ts +160 -62
- package/dist/text/index.d.ts +2 -0
- package/dist/text/list/List.vue.d.ts +471 -0
- package/dist/text/list/index.d.ts +3 -0
- package/dist/text/list/props.d.ts +367 -0
- package/dist/text/text/Text.vue.d.ts +132 -43
- package/dist/text/text/props.d.ts +122 -38
- package/dist/text/time-display/TimeDisplay.vue.d.ts +385 -0
- package/dist/text/time-display/index.d.ts +3 -0
- package/dist/text/time-display/props.d.ts +275 -0
- package/package.json +1 -1
- package/dist/_utils/hooks/useRequestParams.d.ts +0 -5
- package/dist/_utils/request.d.ts +0 -2
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const usePickEchartsData: (data
|
|
1
|
+
export declare const usePickEchartsData: (data?: any) => any;
|
|
2
2
|
export default usePickEchartsData;
|
|
@@ -1,14 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
[key: string]: string;
|
|
7
|
-
};
|
|
8
|
-
isOpenTimer: boolean;
|
|
9
|
-
interval: number;
|
|
10
|
-
}
|
|
11
|
-
export declare const useRequestData: (requestDataOptions: RequestDataOptions) => {
|
|
12
|
-
requestData: () => Promise<import("axios").AxiosResponse<any, any>>;
|
|
13
|
-
};
|
|
1
|
+
export declare const useRequestData: (props: {
|
|
2
|
+
[key: string]: any;
|
|
3
|
+
}, callBack?: Function) => (params?: {
|
|
4
|
+
[key: string]: any;
|
|
5
|
+
}) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
14
6
|
export default useRequestData;
|
|
@@ -1,7 +1,16 @@
|
|
|
1
1
|
import { Data } from '../props';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
/**
|
|
3
|
+
* 图形转化数据
|
|
4
|
+
* @param data 数据
|
|
5
|
+
* @param dataFieldNames 字段映射
|
|
6
|
+
*/
|
|
7
|
+
export declare const useTransformEchartsDataset: (data: Data, dataFieldNames?: {
|
|
8
|
+
name: string;
|
|
9
|
+
value: string;
|
|
10
|
+
type: string;
|
|
11
|
+
}) => {
|
|
12
|
+
dimensions: unknown[];
|
|
13
|
+
dataset: {
|
|
5
14
|
[key: string]: any;
|
|
6
15
|
}[];
|
|
7
16
|
};
|
package/dist/_utils/props.d.ts
CHANGED
|
@@ -28,6 +28,7 @@ export interface Props {
|
|
|
28
28
|
isShow: boolean;
|
|
29
29
|
isRender: boolean;
|
|
30
30
|
isRequestData: boolean;
|
|
31
|
+
events: Events;
|
|
31
32
|
requestUrl: string;
|
|
32
33
|
requestMethod: RequestMethod;
|
|
33
34
|
requestHeaders: {
|
|
@@ -36,7 +37,6 @@ export interface Props {
|
|
|
36
37
|
isOpenRequestTimer: boolean;
|
|
37
38
|
requestInterval: number;
|
|
38
39
|
requestParams: RequestParams;
|
|
39
|
-
events: Events;
|
|
40
40
|
}
|
|
41
41
|
export declare const props: Props;
|
|
42
42
|
export declare const transformToComponentProps: <T extends {}>(props: T) => { [P in keyof T]: {
|
package/dist/_utils/util.d.ts
CHANGED
|
@@ -3,3 +3,17 @@
|
|
|
3
3
|
* @param formatter 格式化字符串
|
|
4
4
|
*/
|
|
5
5
|
export declare const handleFormatter: (formatter: string) => string;
|
|
6
|
+
/**
|
|
7
|
+
* 格式化金额
|
|
8
|
+
* @param value 数值
|
|
9
|
+
* @param decimalPlaces 格式化位数
|
|
10
|
+
*/
|
|
11
|
+
export declare const formatMoney: (value: string | number, decimalPlaces?: number) => string | number;
|
|
12
|
+
export declare const formatPercentage: (value: string | number, decimalPlaces?: number) => string | number;
|
|
13
|
+
/**
|
|
14
|
+
* 字符串1 中是否包含 字符串2 (会全部转成小写)
|
|
15
|
+
* @param v1 字符串1
|
|
16
|
+
* @param v2 字符串2
|
|
17
|
+
* @constructor
|
|
18
|
+
*/
|
|
19
|
+
export declare const lowerCaseIncludes: (v1: any, v2: any) => boolean;
|
|
@@ -4,6 +4,7 @@ export interface BorderProps extends Props {
|
|
|
4
4
|
fontFamily: string;
|
|
5
5
|
fontWeight: number;
|
|
6
6
|
title: string;
|
|
7
|
+
mode: 'top-title' | 'no-title' | 'left-top';
|
|
7
8
|
}
|
|
8
9
|
export declare const borderProps: BorderProps;
|
|
9
10
|
export declare const cardComponentProps: {
|
|
@@ -12,224 +13,233 @@ export declare const cardComponentProps: {
|
|
|
12
13
|
default?: undefined;
|
|
13
14
|
} | {
|
|
14
15
|
type: any;
|
|
15
|
-
default: string | number | boolean | {
|
|
16
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
16
17
|
[key: string]: any;
|
|
17
|
-
} | import("../../_utils/props").RequestParams
|
|
18
|
+
} | import("../../_utils/props").RequestParams;
|
|
18
19
|
};
|
|
19
20
|
fontFamily: {
|
|
20
21
|
type?: undefined;
|
|
21
22
|
default?: undefined;
|
|
22
23
|
} | {
|
|
23
24
|
type: any;
|
|
24
|
-
default: string | number | boolean | {
|
|
25
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
25
26
|
[key: string]: any;
|
|
26
|
-
} | import("../../_utils/props").RequestParams
|
|
27
|
+
} | import("../../_utils/props").RequestParams;
|
|
27
28
|
};
|
|
28
29
|
fontWeight: {
|
|
29
30
|
type?: undefined;
|
|
30
31
|
default?: undefined;
|
|
31
32
|
} | {
|
|
32
33
|
type: any;
|
|
33
|
-
default: string | number | boolean | {
|
|
34
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
34
35
|
[key: string]: any;
|
|
35
|
-
} | import("../../_utils/props").RequestParams
|
|
36
|
+
} | import("../../_utils/props").RequestParams;
|
|
36
37
|
};
|
|
37
38
|
title: {
|
|
38
39
|
type?: undefined;
|
|
39
40
|
default?: undefined;
|
|
40
41
|
} | {
|
|
41
42
|
type: any;
|
|
42
|
-
default: string | number | boolean | {
|
|
43
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
43
44
|
[key: string]: any;
|
|
44
|
-
} | import("../../_utils/props").RequestParams
|
|
45
|
+
} | import("../../_utils/props").RequestParams;
|
|
46
|
+
};
|
|
47
|
+
mode: {
|
|
48
|
+
type?: undefined;
|
|
49
|
+
default?: undefined;
|
|
50
|
+
} | {
|
|
51
|
+
type: any;
|
|
52
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
53
|
+
[key: string]: any;
|
|
54
|
+
} | import("../../_utils/props").RequestParams;
|
|
45
55
|
};
|
|
46
56
|
id: {
|
|
47
57
|
type?: undefined;
|
|
48
58
|
default?: undefined;
|
|
49
59
|
} | {
|
|
50
60
|
type: any;
|
|
51
|
-
default: string | number | boolean | {
|
|
61
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
52
62
|
[key: string]: any;
|
|
53
|
-
} | import("../../_utils/props").RequestParams
|
|
63
|
+
} | import("../../_utils/props").RequestParams;
|
|
54
64
|
};
|
|
55
65
|
name: {
|
|
56
66
|
type?: undefined;
|
|
57
67
|
default?: undefined;
|
|
58
68
|
} | {
|
|
59
69
|
type: any;
|
|
60
|
-
default: string | number | boolean | {
|
|
70
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
61
71
|
[key: string]: any;
|
|
62
|
-
} | import("../../_utils/props").RequestParams
|
|
72
|
+
} | import("../../_utils/props").RequestParams;
|
|
63
73
|
};
|
|
64
74
|
keyName: {
|
|
65
75
|
type?: undefined;
|
|
66
76
|
default?: undefined;
|
|
67
77
|
} | {
|
|
68
78
|
type: any;
|
|
69
|
-
default: string | number | boolean | {
|
|
79
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
70
80
|
[key: string]: any;
|
|
71
|
-
} | import("../../_utils/props").RequestParams
|
|
81
|
+
} | import("../../_utils/props").RequestParams;
|
|
72
82
|
};
|
|
73
83
|
type: {
|
|
74
84
|
type?: undefined;
|
|
75
85
|
default?: undefined;
|
|
76
86
|
} | {
|
|
77
87
|
type: any;
|
|
78
|
-
default: string | number | boolean | {
|
|
88
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
79
89
|
[key: string]: any;
|
|
80
|
-
} | import("../../_utils/props").RequestParams
|
|
90
|
+
} | import("../../_utils/props").RequestParams;
|
|
81
91
|
};
|
|
82
92
|
width: {
|
|
83
93
|
type?: undefined;
|
|
84
94
|
default?: undefined;
|
|
85
95
|
} | {
|
|
86
96
|
type: any;
|
|
87
|
-
default: string | number | boolean | {
|
|
97
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
88
98
|
[key: string]: any;
|
|
89
|
-
} | import("../../_utils/props").RequestParams
|
|
99
|
+
} | import("../../_utils/props").RequestParams;
|
|
90
100
|
};
|
|
91
101
|
height: {
|
|
92
102
|
type?: undefined;
|
|
93
103
|
default?: undefined;
|
|
94
104
|
} | {
|
|
95
105
|
type: any;
|
|
96
|
-
default: string | number | boolean | {
|
|
106
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
97
107
|
[key: string]: any;
|
|
98
|
-
} | import("../../_utils/props").RequestParams
|
|
108
|
+
} | import("../../_utils/props").RequestParams;
|
|
99
109
|
};
|
|
100
110
|
position: {
|
|
101
111
|
type?: undefined;
|
|
102
112
|
default?: undefined;
|
|
103
113
|
} | {
|
|
104
114
|
type: any;
|
|
105
|
-
default: string | number | boolean | {
|
|
115
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
106
116
|
[key: string]: any;
|
|
107
|
-
} | import("../../_utils/props").RequestParams
|
|
117
|
+
} | import("../../_utils/props").RequestParams;
|
|
108
118
|
};
|
|
109
119
|
top: {
|
|
110
120
|
type?: undefined;
|
|
111
121
|
default?: undefined;
|
|
112
122
|
} | {
|
|
113
123
|
type: any;
|
|
114
|
-
default: string | number | boolean | {
|
|
124
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
115
125
|
[key: string]: any;
|
|
116
|
-
} | import("../../_utils/props").RequestParams
|
|
126
|
+
} | import("../../_utils/props").RequestParams;
|
|
117
127
|
};
|
|
118
128
|
left: {
|
|
119
129
|
type?: undefined;
|
|
120
130
|
default?: undefined;
|
|
121
131
|
} | {
|
|
122
132
|
type: any;
|
|
123
|
-
default: string | number | boolean | {
|
|
133
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
124
134
|
[key: string]: any;
|
|
125
|
-
} | import("../../_utils/props").RequestParams
|
|
135
|
+
} | import("../../_utils/props").RequestParams;
|
|
126
136
|
};
|
|
127
137
|
zIndex: {
|
|
128
138
|
type?: undefined;
|
|
129
139
|
default?: undefined;
|
|
130
140
|
} | {
|
|
131
141
|
type: any;
|
|
132
|
-
default: string | number | boolean | {
|
|
142
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
133
143
|
[key: string]: any;
|
|
134
|
-
} | import("../../_utils/props").RequestParams
|
|
144
|
+
} | import("../../_utils/props").RequestParams;
|
|
135
145
|
};
|
|
136
146
|
rotate: {
|
|
137
147
|
type?: undefined;
|
|
138
148
|
default?: undefined;
|
|
139
149
|
} | {
|
|
140
150
|
type: any;
|
|
141
|
-
default: string | number | boolean | {
|
|
151
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
142
152
|
[key: string]: any;
|
|
143
|
-
} | import("../../_utils/props").RequestParams
|
|
153
|
+
} | import("../../_utils/props").RequestParams;
|
|
144
154
|
};
|
|
145
155
|
isShow: {
|
|
146
156
|
type?: undefined;
|
|
147
157
|
default?: undefined;
|
|
148
158
|
} | {
|
|
149
159
|
type: any;
|
|
150
|
-
default: string | number | boolean | {
|
|
160
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
151
161
|
[key: string]: any;
|
|
152
|
-
} | import("../../_utils/props").RequestParams
|
|
162
|
+
} | import("../../_utils/props").RequestParams;
|
|
153
163
|
};
|
|
154
164
|
isRender: {
|
|
155
165
|
type?: undefined;
|
|
156
166
|
default?: undefined;
|
|
157
167
|
} | {
|
|
158
168
|
type: any;
|
|
159
|
-
default: string | number | boolean | {
|
|
169
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
160
170
|
[key: string]: any;
|
|
161
|
-
} | import("../../_utils/props").RequestParams
|
|
171
|
+
} | import("../../_utils/props").RequestParams;
|
|
162
172
|
};
|
|
163
173
|
isRequestData: {
|
|
164
174
|
type?: undefined;
|
|
165
175
|
default?: undefined;
|
|
166
176
|
} | {
|
|
167
177
|
type: any;
|
|
168
|
-
default: string | number | boolean | {
|
|
178
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
169
179
|
[key: string]: any;
|
|
170
|
-
} | import("../../_utils/props").RequestParams
|
|
180
|
+
} | import("../../_utils/props").RequestParams;
|
|
171
181
|
};
|
|
172
|
-
|
|
182
|
+
events: {
|
|
173
183
|
type?: undefined;
|
|
174
184
|
default?: undefined;
|
|
175
185
|
} | {
|
|
176
186
|
type: any;
|
|
177
|
-
default: string | number | boolean | {
|
|
187
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
178
188
|
[key: string]: any;
|
|
179
|
-
} | import("../../_utils/props").RequestParams
|
|
189
|
+
} | import("../../_utils/props").RequestParams;
|
|
180
190
|
};
|
|
181
|
-
|
|
191
|
+
requestUrl: {
|
|
182
192
|
type?: undefined;
|
|
183
193
|
default?: undefined;
|
|
184
194
|
} | {
|
|
185
195
|
type: any;
|
|
186
|
-
default: string | number | boolean | {
|
|
196
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
187
197
|
[key: string]: any;
|
|
188
|
-
} | import("../../_utils/props").RequestParams
|
|
198
|
+
} | import("../../_utils/props").RequestParams;
|
|
189
199
|
};
|
|
190
|
-
|
|
200
|
+
requestMethod: {
|
|
191
201
|
type?: undefined;
|
|
192
202
|
default?: undefined;
|
|
193
203
|
} | {
|
|
194
204
|
type: any;
|
|
195
|
-
default: string | number | boolean | {
|
|
205
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
196
206
|
[key: string]: any;
|
|
197
|
-
} | import("../../_utils/props").RequestParams
|
|
207
|
+
} | import("../../_utils/props").RequestParams;
|
|
198
208
|
};
|
|
199
|
-
|
|
209
|
+
requestHeaders: {
|
|
200
210
|
type?: undefined;
|
|
201
211
|
default?: undefined;
|
|
202
212
|
} | {
|
|
203
213
|
type: any;
|
|
204
|
-
default: string | number | boolean | {
|
|
214
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
205
215
|
[key: string]: any;
|
|
206
|
-
} | import("../../_utils/props").RequestParams
|
|
216
|
+
} | import("../../_utils/props").RequestParams;
|
|
207
217
|
};
|
|
208
|
-
|
|
218
|
+
isOpenRequestTimer: {
|
|
209
219
|
type?: undefined;
|
|
210
220
|
default?: undefined;
|
|
211
221
|
} | {
|
|
212
222
|
type: any;
|
|
213
|
-
default: string | number | boolean | {
|
|
223
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
214
224
|
[key: string]: any;
|
|
215
|
-
} | import("../../_utils/props").RequestParams
|
|
225
|
+
} | import("../../_utils/props").RequestParams;
|
|
216
226
|
};
|
|
217
|
-
|
|
227
|
+
requestInterval: {
|
|
218
228
|
type?: undefined;
|
|
219
229
|
default?: undefined;
|
|
220
230
|
} | {
|
|
221
231
|
type: any;
|
|
222
|
-
default: string | number | boolean | {
|
|
232
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
223
233
|
[key: string]: any;
|
|
224
|
-
} | import("../../_utils/props").RequestParams
|
|
234
|
+
} | import("../../_utils/props").RequestParams;
|
|
225
235
|
};
|
|
226
|
-
|
|
236
|
+
requestParams: {
|
|
227
237
|
type?: undefined;
|
|
228
238
|
default?: undefined;
|
|
229
239
|
} | {
|
|
230
240
|
type: any;
|
|
231
|
-
default: string | number | boolean | {
|
|
241
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
232
242
|
[key: string]: any;
|
|
233
|
-
} | import("../../_utils/props").RequestParams
|
|
243
|
+
} | import("../../_utils/props").RequestParams;
|
|
234
244
|
};
|
|
235
245
|
};
|
|
@@ -5,7 +5,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5
5
|
default?: undefined;
|
|
6
6
|
} | {
|
|
7
7
|
type: any;
|
|
8
|
-
default: string | boolean |
|
|
8
|
+
default: string | boolean | {
|
|
9
9
|
[key: string]: any;
|
|
10
10
|
}[];
|
|
11
11
|
};
|
|
@@ -14,7 +14,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14
14
|
default?: undefined;
|
|
15
15
|
} | {
|
|
16
16
|
type: any;
|
|
17
|
-
default: string | boolean |
|
|
17
|
+
default: string | boolean | {
|
|
18
18
|
[key: string]: any;
|
|
19
19
|
}[];
|
|
20
20
|
};
|
|
@@ -23,7 +23,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
23
23
|
default?: undefined;
|
|
24
24
|
} | {
|
|
25
25
|
type: any;
|
|
26
|
-
default: string | boolean |
|
|
26
|
+
default: string | boolean | {
|
|
27
27
|
[key: string]: any;
|
|
28
28
|
}[];
|
|
29
29
|
};
|
|
@@ -32,7 +32,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
32
32
|
default?: undefined;
|
|
33
33
|
} | {
|
|
34
34
|
type: any;
|
|
35
|
-
default: string | boolean |
|
|
35
|
+
default: string | boolean | {
|
|
36
36
|
[key: string]: any;
|
|
37
37
|
}[];
|
|
38
38
|
};
|
|
@@ -41,7 +41,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
41
41
|
default?: undefined;
|
|
42
42
|
} | {
|
|
43
43
|
type: any;
|
|
44
|
-
default: string | boolean |
|
|
44
|
+
default: string | boolean | {
|
|
45
45
|
[key: string]: any;
|
|
46
46
|
}[];
|
|
47
47
|
};
|
|
@@ -50,7 +50,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
50
50
|
default?: undefined;
|
|
51
51
|
} | {
|
|
52
52
|
type: any;
|
|
53
|
-
default: string | boolean |
|
|
53
|
+
default: string | boolean | {
|
|
54
54
|
[key: string]: any;
|
|
55
55
|
}[];
|
|
56
56
|
};
|
|
@@ -59,7 +59,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
59
59
|
default?: undefined;
|
|
60
60
|
} | {
|
|
61
61
|
type: any;
|
|
62
|
-
default: string | boolean |
|
|
62
|
+
default: string | boolean | {
|
|
63
63
|
[key: string]: any;
|
|
64
64
|
}[];
|
|
65
65
|
};
|
|
@@ -68,7 +68,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
68
68
|
default?: undefined;
|
|
69
69
|
} | {
|
|
70
70
|
type: any;
|
|
71
|
-
default: string | boolean |
|
|
71
|
+
default: string | boolean | {
|
|
72
72
|
[key: string]: any;
|
|
73
73
|
}[];
|
|
74
74
|
};
|
|
@@ -77,7 +77,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
77
77
|
default?: undefined;
|
|
78
78
|
} | {
|
|
79
79
|
type: any;
|
|
80
|
-
default: string | boolean |
|
|
80
|
+
default: string | boolean | {
|
|
81
81
|
[key: string]: any;
|
|
82
82
|
}[];
|
|
83
83
|
};
|
|
@@ -86,34 +86,43 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
86
86
|
default?: undefined;
|
|
87
87
|
} | {
|
|
88
88
|
type: any;
|
|
89
|
-
default: string | boolean |
|
|
89
|
+
default: string | boolean | {
|
|
90
90
|
[key: string]: any;
|
|
91
91
|
}[];
|
|
92
92
|
};
|
|
93
|
-
|
|
93
|
+
originalWidth: {
|
|
94
94
|
type?: undefined;
|
|
95
95
|
default?: undefined;
|
|
96
96
|
} | {
|
|
97
97
|
type: any;
|
|
98
|
-
default: string | boolean |
|
|
98
|
+
default: string | boolean | {
|
|
99
99
|
[key: string]: any;
|
|
100
100
|
}[];
|
|
101
101
|
};
|
|
102
|
-
|
|
102
|
+
originalHeight: {
|
|
103
103
|
type?: undefined;
|
|
104
104
|
default?: undefined;
|
|
105
105
|
} | {
|
|
106
106
|
type: any;
|
|
107
|
-
default: string | boolean |
|
|
107
|
+
default: string | boolean | {
|
|
108
108
|
[key: string]: any;
|
|
109
109
|
}[];
|
|
110
110
|
};
|
|
111
|
-
|
|
111
|
+
destroyOnClose: {
|
|
112
|
+
type?: undefined;
|
|
113
|
+
default?: undefined;
|
|
114
|
+
} | {
|
|
115
|
+
type: any;
|
|
116
|
+
default: string | boolean | {
|
|
117
|
+
[key: string]: any;
|
|
118
|
+
}[];
|
|
119
|
+
};
|
|
120
|
+
position: {
|
|
112
121
|
type?: undefined;
|
|
113
122
|
default?: undefined;
|
|
114
123
|
} | {
|
|
115
124
|
type: any;
|
|
116
|
-
default: string | boolean |
|
|
125
|
+
default: string | boolean | {
|
|
117
126
|
[key: string]: any;
|
|
118
127
|
}[];
|
|
119
128
|
};
|
|
@@ -297,8 +306,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
297
306
|
onTransitionstart?: (payload: TransitionEvent) => void;
|
|
298
307
|
}>;
|
|
299
308
|
getContainer: () => HTMLElement;
|
|
309
|
+
modalStyle: import("vue").ComputedRef<{
|
|
310
|
+
verticalAlign: string;
|
|
311
|
+
}>;
|
|
300
312
|
modalWith: import("vue").ComputedRef<string>;
|
|
301
|
-
isFullModal: import("vue").ComputedRef<string | boolean |
|
|
313
|
+
isFullModal: import("vue").ComputedRef<string | boolean | {
|
|
302
314
|
[key: string]: any;
|
|
303
315
|
}[]>;
|
|
304
316
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
@@ -317,47 +329,51 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
317
329
|
keyName?: unknown;
|
|
318
330
|
componentList?: unknown;
|
|
319
331
|
fullModal?: unknown;
|
|
320
|
-
centered?: unknown;
|
|
321
332
|
originalWidth?: unknown;
|
|
322
333
|
originalHeight?: unknown;
|
|
334
|
+
destroyOnClose?: unknown;
|
|
335
|
+
position?: unknown;
|
|
323
336
|
} & {} & {
|
|
324
|
-
|
|
337
|
+
width?: string | boolean | {
|
|
338
|
+
[key: string]: any;
|
|
339
|
+
}[];
|
|
340
|
+
destroyOnClose?: string | boolean | {
|
|
325
341
|
[key: string]: any;
|
|
326
342
|
}[];
|
|
327
|
-
|
|
343
|
+
type?: string | boolean | {
|
|
328
344
|
[key: string]: any;
|
|
329
345
|
}[];
|
|
330
|
-
|
|
346
|
+
id?: string | boolean | {
|
|
331
347
|
[key: string]: any;
|
|
332
348
|
}[];
|
|
333
|
-
height?: string | boolean |
|
|
349
|
+
height?: string | boolean | {
|
|
334
350
|
[key: string]: any;
|
|
335
351
|
}[];
|
|
336
|
-
backgroundColor?: string | boolean |
|
|
352
|
+
backgroundColor?: string | boolean | {
|
|
337
353
|
[key: string]: any;
|
|
338
354
|
}[];
|
|
339
|
-
backgroundImage?: string | boolean |
|
|
355
|
+
backgroundImage?: string | boolean | {
|
|
340
356
|
[key: string]: any;
|
|
341
357
|
}[];
|
|
342
|
-
backgroundSize?: string | boolean |
|
|
358
|
+
backgroundSize?: string | boolean | {
|
|
343
359
|
[key: string]: any;
|
|
344
360
|
}[];
|
|
345
|
-
keyName?: string | boolean |
|
|
361
|
+
keyName?: string | boolean | {
|
|
346
362
|
[key: string]: any;
|
|
347
363
|
}[];
|
|
348
|
-
componentList?: string | boolean |
|
|
364
|
+
componentList?: string | boolean | {
|
|
349
365
|
[key: string]: any;
|
|
350
366
|
}[];
|
|
351
|
-
fullModal?: string | boolean |
|
|
367
|
+
fullModal?: string | boolean | {
|
|
352
368
|
[key: string]: any;
|
|
353
369
|
}[];
|
|
354
|
-
|
|
370
|
+
originalWidth?: string | boolean | {
|
|
355
371
|
[key: string]: any;
|
|
356
372
|
}[];
|
|
357
|
-
|
|
373
|
+
originalHeight?: string | boolean | {
|
|
358
374
|
[key: string]: any;
|
|
359
375
|
}[];
|
|
360
|
-
|
|
376
|
+
position?: string | boolean | {
|
|
361
377
|
[key: string]: any;
|
|
362
378
|
}[];
|
|
363
379
|
}>, {}>;
|