@ecan-bi/datav 1.0.15 → 1.0.18

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 (57) 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 +47 -31
  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/combo-graph/ComboGraph.vue.d.ts +880 -0
  29. package/dist/graph/combo-graph/index.d.ts +3 -0
  30. package/dist/graph/combo-graph/props.d.ts +619 -0
  31. package/dist/graph/custom-graph/CustomGraph.vue.d.ts +57 -57
  32. package/dist/graph/custom-graph/props.d.ts +53 -53
  33. package/dist/graph/index.d.ts +1 -0
  34. package/dist/graph/line/Line.vue.d.ts +286 -109
  35. package/dist/graph/line/props.d.ts +235 -49
  36. package/dist/graph/pie/Pie.vue.d.ts +332 -114
  37. package/dist/graph/pie/props.d.ts +279 -57
  38. package/dist/graph/scatter/Scatter.vue.d.ts +157 -209
  39. package/dist/graph/scatter/props.d.ts +148 -123
  40. package/dist/index.esm.js +3 -2
  41. package/dist/index.umd.js +3 -2
  42. package/dist/media/image/Image.vue.d.ts +55 -55
  43. package/dist/media/image/props.d.ts +51 -51
  44. package/dist/table/table/Table.vue.d.ts +208 -67
  45. package/dist/table/table/props.d.ts +160 -62
  46. package/dist/text/index.d.ts +2 -0
  47. package/dist/text/list/List.vue.d.ts +471 -0
  48. package/dist/text/list/index.d.ts +3 -0
  49. package/dist/text/list/props.d.ts +367 -0
  50. package/dist/text/text/Text.vue.d.ts +132 -43
  51. package/dist/text/text/props.d.ts +122 -38
  52. package/dist/text/time-display/TimeDisplay.vue.d.ts +385 -0
  53. package/dist/text/time-display/index.d.ts +3 -0
  54. package/dist/text/time-display/props.d.ts +275 -0
  55. package/package.json +2 -1
  56. package/dist/_utils/hooks/useRequestParams.d.ts +0 -5
  57. 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';
@@ -5,7 +5,7 @@ declare const _default: import("vue").DefineComponent<{
5
5
  default?: undefined;
6
6
  } | {
7
7
  type: any;
8
- default: string | boolean | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | Boolean | {
89
+ default: string | boolean | {
90
90
  [key: string]: any;
91
91
  }[];
92
92
  };
93
- centered: {
93
+ originalWidth: {
94
94
  type?: undefined;
95
95
  default?: undefined;
96
96
  } | {
97
97
  type: any;
98
- default: string | boolean | Boolean | {
98
+ default: string | boolean | {
99
99
  [key: string]: any;
100
100
  }[];
101
101
  };
102
- originalWidth: {
102
+ originalHeight: {
103
103
  type?: undefined;
104
104
  default?: undefined;
105
105
  } | {
106
106
  type: any;
107
- default: string | boolean | Boolean | {
107
+ default: string | boolean | {
108
108
  [key: string]: any;
109
109
  }[];
110
110
  };
111
- 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: {
112
121
  type?: undefined;
113
122
  default?: undefined;
114
123
  } | {
115
124
  type: any;
116
- default: string | boolean | 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 | 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
- type?: string | boolean | Boolean | {
337
+ width?: string | boolean | {
338
+ [key: string]: any;
339
+ }[];
340
+ destroyOnClose?: string | boolean | {
325
341
  [key: string]: any;
326
342
  }[];
327
- id?: string | boolean | Boolean | {
343
+ type?: string | boolean | {
328
344
  [key: string]: any;
329
345
  }[];
330
- width?: string | boolean | Boolean | {
346
+ id?: string | boolean | {
331
347
  [key: string]: any;
332
348
  }[];
333
- height?: string | boolean | Boolean | {
349
+ height?: string | boolean | {
334
350
  [key: string]: any;
335
351
  }[];
336
- backgroundColor?: string | boolean | Boolean | {
352
+ backgroundColor?: string | boolean | {
337
353
  [key: string]: any;
338
354
  }[];
339
- backgroundImage?: string | boolean | Boolean | {
355
+ backgroundImage?: string | boolean | {
340
356
  [key: string]: any;
341
357
  }[];
342
- backgroundSize?: string | boolean | Boolean | {
358
+ backgroundSize?: string | boolean | {
343
359
  [key: string]: any;
344
360
  }[];
345
- keyName?: string | boolean | Boolean | {
361
+ keyName?: string | boolean | {
346
362
  [key: string]: any;
347
363
  }[];
348
- componentList?: string | boolean | Boolean | {
364
+ componentList?: string | boolean | {
349
365
  [key: string]: any;
350
366
  }[];
351
- fullModal?: string | boolean | Boolean | {
367
+ fullModal?: string | boolean | {
352
368
  [key: string]: any;
353
369
  }[];
354
- centered?: string | boolean | Boolean | {
370
+ originalWidth?: string | boolean | {
355
371
  [key: string]: any;
356
372
  }[];
357
- originalWidth?: string | boolean | Boolean | {
373
+ originalHeight?: string | boolean | {
358
374
  [key: string]: any;
359
375
  }[];
360
- originalHeight?: string | boolean | Boolean | {
376
+ position?: string | boolean | {
361
377
  [key: string]: any;
362
378
  }[];
363
379
  }>, {}>;