@ecan-bi/datav 1.0.13 → 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.
Files changed (53) hide show
  1. package/dist/_utils/constant.d.ts +1 -1
  2. package/dist/_utils/hooks/index.d.ts +1 -1
  3. package/dist/_utils/hooks/usePickEchartsData.d.ts +1 -1
  4. package/dist/_utils/hooks/useRequestData.d.ts +5 -13
  5. package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +12 -3
  6. package/dist/_utils/props.d.ts +1 -1
  7. package/dist/_utils/util.d.ts +14 -0
  8. package/dist/common/echarts/ECharts.d.ts +1 -0
  9. package/dist/container/border/props.d.ts +67 -57
  10. package/dist/container/index.d.ts +1 -0
  11. package/dist/container/modal/Modal.vue.d.ts +49 -32
  12. package/dist/container/modal/props.d.ts +29 -18
  13. package/dist/container/tabs/Tabs.vue.d.ts +271 -0
  14. package/dist/container/tabs/index.d.ts +3 -0
  15. package/dist/container/tabs/props.d.ts +219 -0
  16. package/dist/control/button/Button.vue.d.ts +53 -53
  17. package/dist/control/button/props.d.ts +49 -49
  18. package/dist/control/date-picker/DatePicker.vue.d.ts +61 -61
  19. package/dist/control/date-picker/props.d.ts +7 -7
  20. package/dist/control/input/Input.vue.d.ts +59 -59
  21. package/dist/control/input/props.d.ts +53 -53
  22. package/dist/control/range-picker/RangePicker.vue.d.ts +55 -55
  23. package/dist/control/range-picker/props.d.ts +51 -51
  24. package/dist/control/select/Select.vue.d.ts +65 -61
  25. package/dist/control/select/props.d.ts +53 -53
  26. package/dist/graph/bar/Bar.vue.d.ts +304 -57
  27. package/dist/graph/bar/props.d.ts +277 -49
  28. package/dist/graph/custom-graph/CustomGraph.vue.d.ts +57 -57
  29. package/dist/graph/custom-graph/props.d.ts +53 -53
  30. package/dist/graph/line/Line.vue.d.ts +286 -109
  31. package/dist/graph/line/props.d.ts +235 -49
  32. package/dist/graph/pie/Pie.vue.d.ts +332 -114
  33. package/dist/graph/pie/props.d.ts +279 -57
  34. package/dist/graph/scatter/Scatter.vue.d.ts +157 -209
  35. package/dist/graph/scatter/props.d.ts +148 -123
  36. package/dist/index.esm.js +2 -2
  37. package/dist/index.umd.js +2 -2
  38. package/dist/media/image/Image.vue.d.ts +55 -55
  39. package/dist/media/image/props.d.ts +51 -51
  40. package/dist/table/table/Table.vue.d.ts +208 -67
  41. package/dist/table/table/props.d.ts +160 -62
  42. package/dist/text/index.d.ts +2 -0
  43. package/dist/text/list/List.vue.d.ts +471 -0
  44. package/dist/text/list/index.d.ts +3 -0
  45. package/dist/text/list/props.d.ts +367 -0
  46. package/dist/text/text/Text.vue.d.ts +132 -43
  47. package/dist/text/text/props.d.ts +122 -38
  48. package/dist/text/time-display/TimeDisplay.vue.d.ts +385 -0
  49. package/dist/text/time-display/index.d.ts +3 -0
  50. package/dist/text/time-display/props.d.ts +275 -0
  51. package/package.json +12 -5
  52. package/dist/_utils/hooks/useRequestParams.d.ts +0 -5
  53. package/dist/_utils/request.d.ts +0 -2
@@ -1,3 +1,3 @@
1
1
  export declare const EVENT_BUS = "EVENT_BUS";
2
- export declare const GLOBAL_VAR = "GLOBAL_VAR";
2
+ export declare const GLOBAL_CONFIG = "GLOBAL_CONFIG";
3
3
  export declare const GLOBAL_MODEL = "GLOBAL_MODEL";
@@ -2,5 +2,5 @@ export * from './usePickComponentStyle';
2
2
  export * from './usePickEchartsData';
3
3
  export * from './useOnEvent';
4
4
  export * from './useEmitEvent';
5
- export * from './useRequestParams';
6
5
  export * from './useTransformEchartsDataset';
6
+ export * from './useRequestData';
@@ -1,2 +1,2 @@
1
- export declare const usePickEchartsData: (data: any) => any;
1
+ export declare const usePickEchartsData: (data?: any) => any;
2
2
  export default usePickEchartsData;
@@ -1,14 +1,6 @@
1
- import { RequestMethod } from '../props';
2
- interface RequestDataOptions {
3
- url: string;
4
- method: RequestMethod;
5
- headers: {
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
- export declare const useTransformEchartsDataset: (data: Data) => {
3
- dimensions: string[];
4
- source: {
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
  };
@@ -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]: {
@@ -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;
@@ -126,6 +126,7 @@ declare const _default: import("vue").DefineComponent<{
126
126
  renderer?: "canvas" | "svg";
127
127
  devicePixelRatio?: number;
128
128
  useDirtyRect?: boolean;
129
+ ssr?: boolean;
129
130
  width?: number;
130
131
  height?: number;
131
132
  }>;
@@ -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 | import("../../_utils/props").Events;
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 | import("../../_utils/props").Events;
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 | import("../../_utils/props").Events;
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 | import("../../_utils/props").Events;
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 | import("../../_utils/props").Events;
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 | import("../../_utils/props").Events;
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 | import("../../_utils/props").Events;
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 | import("../../_utils/props").Events;
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 | import("../../_utils/props").Events;
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 | import("../../_utils/props").Events;
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 | import("../../_utils/props").Events;
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 | import("../../_utils/props").Events;
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 | import("../../_utils/props").Events;
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 | import("../../_utils/props").Events;
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 | import("../../_utils/props").Events;
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 | import("../../_utils/props").Events;
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 | import("../../_utils/props").Events;
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 | import("../../_utils/props").Events;
180
+ } | import("../../_utils/props").RequestParams;
171
181
  };
172
- requestUrl: {
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 | import("../../_utils/props").Events;
189
+ } | import("../../_utils/props").RequestParams;
180
190
  };
181
- requestMethod: {
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 | import("../../_utils/props").Events;
198
+ } | import("../../_utils/props").RequestParams;
189
199
  };
190
- requestHeaders: {
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 | import("../../_utils/props").Events;
207
+ } | import("../../_utils/props").RequestParams;
198
208
  };
199
- isOpenRequestTimer: {
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 | import("../../_utils/props").Events;
216
+ } | import("../../_utils/props").RequestParams;
207
217
  };
208
- requestInterval: {
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 | import("../../_utils/props").Events;
225
+ } | import("../../_utils/props").RequestParams;
216
226
  };
217
- requestParams: {
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 | import("../../_utils/props").Events;
234
+ } | import("../../_utils/props").RequestParams;
225
235
  };
226
- events: {
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 | import("../../_utils/props").Events;
243
+ } | import("../../_utils/props").RequestParams;
234
244
  };
235
245
  };
@@ -1,2 +1,3 @@
1
1
  export * from './border';
2
2
  export * from './modal';
3
+ export * from './tabs';
@@ -1,10 +1,11 @@
1
+ import 'ant-design-vue/es/modal/style/index';
1
2
  declare const _default: import("vue").DefineComponent<{
2
3
  id: {
3
4
  type?: undefined;
4
5
  default?: undefined;
5
6
  } | {
6
7
  type: any;
7
- default: string | boolean | Boolean | {
8
+ default: string | boolean | {
8
9
  [key: string]: any;
9
10
  }[];
10
11
  };
@@ -13,7 +14,7 @@ declare const _default: import("vue").DefineComponent<{
13
14
  default?: undefined;
14
15
  } | {
15
16
  type: any;
16
- default: string | boolean | Boolean | {
17
+ default: string | boolean | {
17
18
  [key: string]: any;
18
19
  }[];
19
20
  };
@@ -22,7 +23,7 @@ declare const _default: import("vue").DefineComponent<{
22
23
  default?: undefined;
23
24
  } | {
24
25
  type: any;
25
- default: string | boolean | Boolean | {
26
+ default: string | boolean | {
26
27
  [key: string]: any;
27
28
  }[];
28
29
  };
@@ -31,7 +32,7 @@ declare const _default: import("vue").DefineComponent<{
31
32
  default?: undefined;
32
33
  } | {
33
34
  type: any;
34
- default: string | boolean | Boolean | {
35
+ default: string | boolean | {
35
36
  [key: string]: any;
36
37
  }[];
37
38
  };
@@ -40,7 +41,7 @@ declare const _default: import("vue").DefineComponent<{
40
41
  default?: undefined;
41
42
  } | {
42
43
  type: any;
43
- default: string | boolean | Boolean | {
44
+ default: string | boolean | {
44
45
  [key: string]: any;
45
46
  }[];
46
47
  };
@@ -49,7 +50,7 @@ declare const _default: import("vue").DefineComponent<{
49
50
  default?: undefined;
50
51
  } | {
51
52
  type: any;
52
- default: string | boolean | Boolean | {
53
+ default: string | boolean | {
53
54
  [key: string]: any;
54
55
  }[];
55
56
  };
@@ -58,7 +59,7 @@ declare const _default: import("vue").DefineComponent<{
58
59
  default?: undefined;
59
60
  } | {
60
61
  type: any;
61
- default: string | boolean | Boolean | {
62
+ default: string | boolean | {
62
63
  [key: string]: any;
63
64
  }[];
64
65
  };
@@ -67,7 +68,7 @@ declare const _default: import("vue").DefineComponent<{
67
68
  default?: undefined;
68
69
  } | {
69
70
  type: any;
70
- default: string | boolean | Boolean | {
71
+ default: string | boolean | {
71
72
  [key: string]: any;
72
73
  }[];
73
74
  };
@@ -76,7 +77,7 @@ declare const _default: import("vue").DefineComponent<{
76
77
  default?: undefined;
77
78
  } | {
78
79
  type: any;
79
- default: string | boolean | Boolean | {
80
+ default: string | boolean | {
80
81
  [key: string]: any;
81
82
  }[];
82
83
  };
@@ -85,34 +86,43 @@ declare const _default: import("vue").DefineComponent<{
85
86
  default?: undefined;
86
87
  } | {
87
88
  type: any;
88
- default: string | boolean | Boolean | {
89
+ default: string | boolean | {
89
90
  [key: string]: any;
90
91
  }[];
91
92
  };
92
- centered: {
93
+ originalWidth: {
93
94
  type?: undefined;
94
95
  default?: undefined;
95
96
  } | {
96
97
  type: any;
97
- default: string | boolean | Boolean | {
98
+ default: string | boolean | {
98
99
  [key: string]: any;
99
100
  }[];
100
101
  };
101
- originalWidth: {
102
+ originalHeight: {
102
103
  type?: undefined;
103
104
  default?: undefined;
104
105
  } | {
105
106
  type: any;
106
- default: string | boolean | Boolean | {
107
+ default: string | boolean | {
107
108
  [key: string]: any;
108
109
  }[];
109
110
  };
110
- originalHeight: {
111
+ destroyOnClose: {
112
+ type?: undefined;
113
+ default?: undefined;
114
+ } | {
115
+ type: any;
116
+ default: string | boolean | {
117
+ [key: string]: any;
118
+ }[];
119
+ };
120
+ position: {
111
121
  type?: undefined;
112
122
  default?: undefined;
113
123
  } | {
114
124
  type: any;
115
- default: string | boolean | Boolean | {
125
+ default: string | boolean | {
116
126
  [key: string]: any;
117
127
  }[];
118
128
  };
@@ -162,7 +172,7 @@ declare const _default: import("vue").DefineComponent<{
162
172
  results?: string | number;
163
173
  security?: string;
164
174
  unselectable?: "on" | "off";
165
- inputmode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal";
175
+ inputmode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal";
166
176
  is?: string;
167
177
  'aria-activedescendant'?: string;
168
178
  'aria-atomic'?: boolean | "true" | "false";
@@ -296,8 +306,11 @@ declare const _default: import("vue").DefineComponent<{
296
306
  onTransitionstart?: (payload: TransitionEvent) => void;
297
307
  }>;
298
308
  getContainer: () => HTMLElement;
309
+ modalStyle: import("vue").ComputedRef<{
310
+ verticalAlign: string;
311
+ }>;
299
312
  modalWith: import("vue").ComputedRef<string>;
300
- isFullModal: import("vue").ComputedRef<string | boolean | Boolean | {
313
+ isFullModal: import("vue").ComputedRef<string | boolean | {
301
314
  [key: string]: any;
302
315
  }[]>;
303
316
  style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
@@ -316,47 +329,51 @@ declare const _default: import("vue").DefineComponent<{
316
329
  keyName?: unknown;
317
330
  componentList?: unknown;
318
331
  fullModal?: unknown;
319
- centered?: unknown;
320
332
  originalWidth?: unknown;
321
333
  originalHeight?: unknown;
334
+ destroyOnClose?: unknown;
335
+ position?: unknown;
322
336
  } & {} & {
323
- type?: string | boolean | Boolean | {
337
+ width?: string | boolean | {
338
+ [key: string]: any;
339
+ }[];
340
+ destroyOnClose?: string | boolean | {
324
341
  [key: string]: any;
325
342
  }[];
326
- id?: string | boolean | Boolean | {
343
+ type?: string | boolean | {
327
344
  [key: string]: any;
328
345
  }[];
329
- width?: string | boolean | Boolean | {
346
+ id?: string | boolean | {
330
347
  [key: string]: any;
331
348
  }[];
332
- height?: string | boolean | Boolean | {
349
+ height?: string | boolean | {
333
350
  [key: string]: any;
334
351
  }[];
335
- backgroundColor?: string | boolean | Boolean | {
352
+ backgroundColor?: string | boolean | {
336
353
  [key: string]: any;
337
354
  }[];
338
- backgroundImage?: string | boolean | Boolean | {
355
+ backgroundImage?: string | boolean | {
339
356
  [key: string]: any;
340
357
  }[];
341
- backgroundSize?: string | boolean | Boolean | {
358
+ backgroundSize?: string | boolean | {
342
359
  [key: string]: any;
343
360
  }[];
344
- keyName?: string | boolean | Boolean | {
361
+ keyName?: string | boolean | {
345
362
  [key: string]: any;
346
363
  }[];
347
- componentList?: string | boolean | Boolean | {
364
+ componentList?: string | boolean | {
348
365
  [key: string]: any;
349
366
  }[];
350
- fullModal?: string | boolean | Boolean | {
367
+ fullModal?: string | boolean | {
351
368
  [key: string]: any;
352
369
  }[];
353
- centered?: string | boolean | Boolean | {
370
+ originalWidth?: string | boolean | {
354
371
  [key: string]: any;
355
372
  }[];
356
- originalWidth?: string | boolean | Boolean | {
373
+ originalHeight?: string | boolean | {
357
374
  [key: string]: any;
358
375
  }[];
359
- originalHeight?: string | boolean | Boolean | {
376
+ position?: string | boolean | {
360
377
  [key: string]: any;
361
378
  }[];
362
379
  }>, {}>;