@ecan-bi/datav 1.0.50 → 1.0.53

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 (125) hide show
  1. package/dist/index.es.js +125 -76
  2. package/dist/index.es.js.map +1 -1
  3. package/dist/index.umd.js +124 -75
  4. package/dist/index.umd.js.map +1 -1
  5. package/dist/style.css +37 -35
  6. package/package.json +1 -1
  7. package/types/_utils/constant.d.ts +9 -0
  8. package/types/_utils/hooks/index.d.ts +15 -0
  9. package/types/_utils/hooks/useDownloadFile.d.ts +2 -0
  10. package/types/_utils/hooks/useEmitEvent.d.ts +7 -0
  11. package/types/_utils/hooks/useHrefParamsToGlobalVariables.d.ts +2 -0
  12. package/types/_utils/hooks/useImagePath.d.ts +2 -0
  13. package/types/_utils/hooks/useIndicatorData.d.ts +4 -0
  14. package/types/_utils/hooks/useOnEvent.d.ts +6 -0
  15. package/types/_utils/hooks/usePageUrl.d.ts +2 -0
  16. package/types/_utils/hooks/usePickComponentStyle.d.ts +9 -0
  17. package/types/_utils/hooks/usePickEchartsData.d.ts +2 -0
  18. package/types/_utils/hooks/useRequestData.d.ts +6 -0
  19. package/types/_utils/hooks/useRequestDiagramData.d.ts +6 -0
  20. package/types/_utils/hooks/useTooltipFormatter.d.ts +4 -0
  21. package/types/_utils/hooks/useTransformChartDataByAttrKey.d.ts +13 -0
  22. package/types/_utils/hooks/useTransformChartDataByAttrValue.d.ts +13 -0
  23. package/types/_utils/hooks/useValueFormatter.d.ts +2 -0
  24. package/types/_utils/hooks/useVariablesInText.d.ts +4 -0
  25. package/types/_utils/props.d.ts +71 -0
  26. package/types/_utils/request.d.ts +2 -0
  27. package/types/_utils/util.d.ts +20 -0
  28. package/types/_utils/withInstall.d.ts +5 -0
  29. package/types/common/echarts/Echarts.d.ts +418 -0
  30. package/types/common/echarts/composables/api.d.ts +7 -0
  31. package/types/common/echarts/composables/autoresize.d.ts +6 -0
  32. package/types/common/echarts/composables/index.d.ts +3 -0
  33. package/types/common/echarts/composables/loading.d.ts +10 -0
  34. package/types/common/echarts/index.d.ts +2 -0
  35. package/types/common/echarts/types.d.ts +20 -0
  36. package/types/common/echarts/utils.d.ts +6 -0
  37. package/types/common/index.d.ts +3 -0
  38. package/types/common/skeleton/Skeleton.vue.d.ts +14 -0
  39. package/types/common/skeleton/index.d.ts +2 -0
  40. package/types/common/spin/Spin.vue.d.ts +18 -0
  41. package/types/common/spin/index.d.ts +2 -0
  42. package/types/components.d.ts +9 -0
  43. package/types/container/border/Border.vue.d.ts +622 -0
  44. package/types/container/border/index.d.ts +622 -0
  45. package/types/container/border/props.d.ts +315 -0
  46. package/types/container/index.d.ts +3 -0
  47. package/types/container/modal/Modal.vue.d.ts +505 -0
  48. package/types/container/modal/index.d.ts +506 -0
  49. package/types/container/modal/props.d.ts +179 -0
  50. package/types/container/tabs/Tabs.vue.d.ts +475 -0
  51. package/types/container/tabs/index.d.ts +476 -0
  52. package/types/container/tabs/props.d.ts +251 -0
  53. package/types/control/button/Button.vue.d.ts +550 -0
  54. package/types/control/button/index.d.ts +550 -0
  55. package/types/control/button/props.d.ts +285 -0
  56. package/types/control/date-picker/DatePicker.vue.d.ts +480 -0
  57. package/types/control/date-picker/index.d.ts +479 -0
  58. package/types/control/date-picker/props.d.ts +245 -0
  59. package/types/control/index.d.ts +5 -0
  60. package/types/control/input/Input.vue.d.ts +438 -0
  61. package/types/control/input/index.d.ts +439 -0
  62. package/types/control/input/props.d.ts +224 -0
  63. package/types/control/range-picker/RangePicker.vue.d.ts +596 -0
  64. package/types/control/range-picker/index.d.ts +595 -0
  65. package/types/control/range-picker/props.d.ts +245 -0
  66. package/types/control/select/Select.vue.d.ts +613 -0
  67. package/types/control/select/index.d.ts +613 -0
  68. package/types/control/select/props.d.ts +321 -0
  69. package/types/graph/bar/Bar.vue.d.ts +2028 -0
  70. package/types/graph/bar/index.d.ts +2028 -0
  71. package/types/graph/bar/props.d.ts +984 -0
  72. package/types/graph/combo-graph/ComboGraph.vue.d.ts +1008 -0
  73. package/types/graph/combo-graph/index.d.ts +1009 -0
  74. package/types/graph/combo-graph/props.d.ts +501 -0
  75. package/types/graph/custom-graph/CustomGraph.vue.d.ts +537 -0
  76. package/types/graph/custom-graph/index.d.ts +537 -0
  77. package/types/graph/custom-graph/props.d.ts +274 -0
  78. package/types/graph/index.d.ts +6 -0
  79. package/types/graph/line/Line.vue.d.ts +973 -0
  80. package/types/graph/line/index.d.ts +974 -0
  81. package/types/graph/line/props.d.ts +481 -0
  82. package/types/graph/pie/Pie.vue.d.ts +1049 -0
  83. package/types/graph/pie/index.d.ts +1050 -0
  84. package/types/graph/pie/props.d.ts +533 -0
  85. package/types/graph/scatter/Scatter.vue.d.ts +949 -0
  86. package/types/graph/scatter/index.d.ts +950 -0
  87. package/types/graph/scatter/props.d.ts +468 -0
  88. package/types/index.d.ts +6 -0
  89. package/types/map/index.d.ts +1 -0
  90. package/types/map/map/Map.vue.d.ts +1699 -0
  91. package/types/map/map/index.d.ts +1700 -0
  92. package/types/map/map/props.d.ts +829 -0
  93. package/types/media/image/Image.vue.d.ts +476 -0
  94. package/types/media/image/index.d.ts +477 -0
  95. package/types/media/image/props.d.ts +244 -0
  96. package/types/media/index.d.ts +1 -0
  97. package/types/setting/index.d.ts +3 -0
  98. package/types/setting/page-config/PageConfig.vue.d.ts +112 -0
  99. package/types/setting/page-config/index.d.ts +113 -0
  100. package/types/setting/page-config/props.d.ts +61 -0
  101. package/types/setting/provider-config/ProviderConfig.vue.d.ts +78 -0
  102. package/types/setting/provider-config/index.d.ts +79 -0
  103. package/types/setting/provider-config/props.d.ts +47 -0
  104. package/types/setting/renderer/Renderer.vue.d.ts +22 -0
  105. package/types/setting/renderer/index.d.ts +23 -0
  106. package/types/setting/renderer/props.d.ts +17 -0
  107. package/types/table/index.d.ts +1 -0
  108. package/types/table/table/Table.vue.d.ts +1724 -0
  109. package/types/table/table/index.d.ts +1724 -0
  110. package/types/table/table/props.d.ts +878 -0
  111. package/types/text/index.d.ts +5 -0
  112. package/types/text/list/List.vue.d.ts +849 -0
  113. package/types/text/list/index.d.ts +849 -0
  114. package/types/text/list/props.d.ts +441 -0
  115. package/types/text/proportion/Proportion.vue.d.ts +782 -0
  116. package/types/text/proportion/index.d.ts +782 -0
  117. package/types/text/proportion/props.d.ts +407 -0
  118. package/types/text/scroll-text/ScrollText.vue.d.ts +4 -0
  119. package/types/text/scroll-text/index.d.ts +4 -0
  120. package/types/text/text/Text.vue.d.ts +736 -0
  121. package/types/text/text/index.d.ts +736 -0
  122. package/types/text/text/props.d.ts +383 -0
  123. package/types/text/time-display/TimeDisplay.vue.d.ts +547 -0
  124. package/types/text/time-display/index.d.ts +548 -0
  125. package/types/text/time-display/props.d.ts +284 -0
@@ -0,0 +1,505 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{
2
+ id: {
3
+ type?: undefined;
4
+ default?: undefined;
5
+ } | {
6
+ type: any;
7
+ default: string | boolean | {
8
+ [key: string]: any;
9
+ }[];
10
+ };
11
+ type: {
12
+ type?: undefined;
13
+ default?: undefined;
14
+ } | {
15
+ type: any;
16
+ default: string | boolean | {
17
+ [key: string]: any;
18
+ }[];
19
+ };
20
+ width: {
21
+ type?: undefined;
22
+ default?: undefined;
23
+ } | {
24
+ type: any;
25
+ default: string | boolean | {
26
+ [key: string]: any;
27
+ }[];
28
+ };
29
+ height: {
30
+ type?: undefined;
31
+ default?: undefined;
32
+ } | {
33
+ type: any;
34
+ default: string | boolean | {
35
+ [key: string]: any;
36
+ }[];
37
+ };
38
+ title: {
39
+ type?: undefined;
40
+ default?: undefined;
41
+ } | {
42
+ type: any;
43
+ default: string | boolean | {
44
+ [key: string]: any;
45
+ }[];
46
+ };
47
+ titleFontSize: {
48
+ type?: undefined;
49
+ default?: undefined;
50
+ } | {
51
+ type: any;
52
+ default: string | boolean | {
53
+ [key: string]: any;
54
+ }[];
55
+ };
56
+ titleColor: {
57
+ type?: undefined;
58
+ default?: undefined;
59
+ } | {
60
+ type: any;
61
+ default: string | boolean | {
62
+ [key: string]: any;
63
+ }[];
64
+ };
65
+ backgroundColor: {
66
+ type?: undefined;
67
+ default?: undefined;
68
+ } | {
69
+ type: any;
70
+ default: string | boolean | {
71
+ [key: string]: any;
72
+ }[];
73
+ };
74
+ backgroundImage: {
75
+ type?: undefined;
76
+ default?: undefined;
77
+ } | {
78
+ type: any;
79
+ default: string | boolean | {
80
+ [key: string]: any;
81
+ }[];
82
+ };
83
+ backgroundSize: {
84
+ type?: undefined;
85
+ default?: undefined;
86
+ } | {
87
+ type: any;
88
+ default: string | boolean | {
89
+ [key: string]: any;
90
+ }[];
91
+ };
92
+ keyName: {
93
+ type?: undefined;
94
+ default?: undefined;
95
+ } | {
96
+ type: any;
97
+ default: string | boolean | {
98
+ [key: string]: any;
99
+ }[];
100
+ };
101
+ componentList: {
102
+ type?: undefined;
103
+ default?: undefined;
104
+ } | {
105
+ type: any;
106
+ default: string | boolean | {
107
+ [key: string]: any;
108
+ }[];
109
+ };
110
+ fullModal: {
111
+ type?: undefined;
112
+ default?: undefined;
113
+ } | {
114
+ type: any;
115
+ default: string | boolean | {
116
+ [key: string]: any;
117
+ }[];
118
+ };
119
+ originalWidth: {
120
+ type?: undefined;
121
+ default?: undefined;
122
+ } | {
123
+ type: any;
124
+ default: string | boolean | {
125
+ [key: string]: any;
126
+ }[];
127
+ };
128
+ originalHeight: {
129
+ type?: undefined;
130
+ default?: undefined;
131
+ } | {
132
+ type: any;
133
+ default: string | boolean | {
134
+ [key: string]: any;
135
+ }[];
136
+ };
137
+ destroyOnClose: {
138
+ type?: undefined;
139
+ default?: undefined;
140
+ } | {
141
+ type: any;
142
+ default: string | boolean | {
143
+ [key: string]: any;
144
+ }[];
145
+ };
146
+ position: {
147
+ type?: undefined;
148
+ default?: undefined;
149
+ } | {
150
+ type: any;
151
+ default: string | boolean | {
152
+ [key: string]: any;
153
+ }[];
154
+ };
155
+ }, {
156
+ contain: import("vue").Ref<HTMLElement>;
157
+ containStyle: import("vue").ComputedRef<{
158
+ width: string;
159
+ height: string;
160
+ }>;
161
+ contentStyle: import("vue").ComputedRef<{
162
+ backgroundImage: string;
163
+ transform: string;
164
+ innerHTML?: string;
165
+ class?: any;
166
+ style?: import("vue").StyleValue;
167
+ accesskey?: string;
168
+ contenteditable?: "inherit" | (boolean | "false" | "true");
169
+ contextmenu?: string;
170
+ dir?: string;
171
+ draggable?: boolean | "false" | "true";
172
+ hidden?: boolean | "false" | "true";
173
+ id?: string;
174
+ lang?: string;
175
+ placeholder?: string;
176
+ spellcheck?: boolean | "false" | "true";
177
+ tabindex?: string | number;
178
+ title?: string;
179
+ translate?: "yes" | "no";
180
+ radiogroup?: string;
181
+ role?: string;
182
+ about?: string;
183
+ datatype?: string;
184
+ inlist?: any;
185
+ prefix?: string;
186
+ property?: string;
187
+ resource?: string;
188
+ typeof?: string;
189
+ vocab?: string;
190
+ autocapitalize?: string;
191
+ autocorrect?: string;
192
+ autocave?: string;
193
+ color?: string;
194
+ itemprop?: string;
195
+ itemscope?: boolean | "false" | "true";
196
+ itemtype?: string;
197
+ itemid?: string;
198
+ itemref?: string;
199
+ results?: string | number;
200
+ security?: string;
201
+ unselectable?: "on" | "off";
202
+ inputmode?: "search" | "text" | "none" | "url" | "tel" | "email" | "numeric" | "decimal";
203
+ is?: string;
204
+ 'aria-activedescendant'?: string;
205
+ 'aria-atomic'?: boolean | "false" | "true";
206
+ 'aria-autocomplete'?: "none" | "both" | "inline" | "list";
207
+ 'aria-busy'?: boolean | "false" | "true";
208
+ 'aria-checked'?: "mixed" | (boolean | "false" | "true");
209
+ 'aria-colcount'?: string | number;
210
+ 'aria-colindex'?: string | number;
211
+ 'aria-colspan'?: string | number;
212
+ 'aria-controls'?: string;
213
+ 'aria-current'?: "time" | "location" | "date" | "page" | (boolean | "false" | "true") | "step";
214
+ 'aria-describedby'?: string;
215
+ 'aria-details'?: string;
216
+ 'aria-disabled'?: boolean | "false" | "true";
217
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "move" | "execute" | "popup";
218
+ 'aria-errormessage'?: string;
219
+ 'aria-expanded'?: boolean | "false" | "true";
220
+ 'aria-flowto'?: string;
221
+ 'aria-grabbed'?: boolean | "false" | "true";
222
+ 'aria-haspopup'?: "dialog" | "menu" | "listbox" | "grid" | (boolean | "false" | "true") | "tree";
223
+ 'aria-hidden'?: boolean | "false" | "true";
224
+ 'aria-invalid'?: (boolean | "false" | "true") | "grammar" | "spelling";
225
+ 'aria-keyshortcuts'?: string;
226
+ 'aria-label'?: string;
227
+ 'aria-labelledby'?: string;
228
+ 'aria-level'?: string | number;
229
+ 'aria-live'?: "off" | "assertive" | "polite";
230
+ 'aria-modal'?: boolean | "false" | "true";
231
+ 'aria-multiline'?: boolean | "false" | "true";
232
+ 'aria-multiselectable'?: boolean | "false" | "true";
233
+ 'aria-orientation'?: "horizontal" | "vertical";
234
+ 'aria-owns'?: string;
235
+ 'aria-placeholder'?: string;
236
+ 'aria-posinset'?: string | number;
237
+ 'aria-pressed'?: "mixed" | (boolean | "false" | "true");
238
+ 'aria-readonly'?: boolean | "false" | "true";
239
+ 'aria-relevant'?: "text" | "all" | "additions" | "additions text" | "removals";
240
+ 'aria-required'?: boolean | "false" | "true";
241
+ 'aria-roledescription'?: string;
242
+ 'aria-rowcount'?: string | number;
243
+ 'aria-rowindex'?: string | number;
244
+ 'aria-rowspan'?: string | number;
245
+ 'aria-selected'?: boolean | "false" | "true";
246
+ 'aria-setsize'?: string | number;
247
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other";
248
+ 'aria-valuemax'?: string | number;
249
+ 'aria-valuemin'?: string | number;
250
+ 'aria-valuenow'?: string | number;
251
+ 'aria-valuetext'?: string;
252
+ onCopy?: (payload: ClipboardEvent) => void;
253
+ onCut?: (payload: ClipboardEvent) => void;
254
+ onPaste?: (payload: ClipboardEvent) => void;
255
+ onCompositionend?: (payload: CompositionEvent) => void;
256
+ onCompositionstart?: (payload: CompositionEvent) => void;
257
+ onCompositionupdate?: (payload: CompositionEvent) => void;
258
+ onDrag?: (payload: DragEvent) => void;
259
+ onDragend?: (payload: DragEvent) => void;
260
+ onDragenter?: (payload: DragEvent) => void;
261
+ onDragexit?: (payload: DragEvent) => void;
262
+ onDragleave?: (payload: DragEvent) => void;
263
+ onDragover?: (payload: DragEvent) => void;
264
+ onDragstart?: (payload: DragEvent) => void;
265
+ onDrop?: (payload: DragEvent) => void;
266
+ onFocus?: (payload: FocusEvent) => void;
267
+ onFocusin?: (payload: FocusEvent) => void;
268
+ onFocusout?: (payload: FocusEvent) => void;
269
+ onBlur?: (payload: FocusEvent) => void;
270
+ onChange?: (payload: Event) => void;
271
+ onBeforeinput?: (payload: Event) => void;
272
+ onInput?: (payload: Event) => void;
273
+ onReset?: (payload: Event) => void;
274
+ onSubmit?: (payload: Event) => void;
275
+ onInvalid?: (payload: Event) => void;
276
+ onLoad?: (payload: Event) => void;
277
+ onError?: (payload: Event) => void;
278
+ onKeydown?: (payload: KeyboardEvent) => void;
279
+ onKeypress?: (payload: KeyboardEvent) => void;
280
+ onKeyup?: (payload: KeyboardEvent) => void;
281
+ onAuxclick?: (payload: MouseEvent) => void;
282
+ onClick?: (payload: MouseEvent) => void;
283
+ onContextmenu?: (payload: MouseEvent) => void;
284
+ onDblclick?: (payload: MouseEvent) => void;
285
+ onMousedown?: (payload: MouseEvent) => void;
286
+ onMouseenter?: (payload: MouseEvent) => void;
287
+ onMouseleave?: (payload: MouseEvent) => void;
288
+ onMousemove?: (payload: MouseEvent) => void;
289
+ onMouseout?: (payload: MouseEvent) => void;
290
+ onMouseover?: (payload: MouseEvent) => void;
291
+ onMouseup?: (payload: MouseEvent) => void;
292
+ onAbort?: (payload: Event) => void;
293
+ onCanplay?: (payload: Event) => void;
294
+ onCanplaythrough?: (payload: Event) => void;
295
+ onDurationchange?: (payload: Event) => void;
296
+ onEmptied?: (payload: Event) => void;
297
+ onEncrypted?: (payload: Event) => void;
298
+ onEnded?: (payload: Event) => void;
299
+ onLoadeddata?: (payload: Event) => void;
300
+ onLoadedmetadata?: (payload: Event) => void;
301
+ onLoadstart?: (payload: Event) => void;
302
+ onPause?: (payload: Event) => void;
303
+ onPlay?: (payload: Event) => void;
304
+ onPlaying?: (payload: Event) => void;
305
+ onProgress?: (payload: Event) => void;
306
+ onRatechange?: (payload: Event) => void;
307
+ onSeeked?: (payload: Event) => void;
308
+ onSeeking?: (payload: Event) => void;
309
+ onStalled?: (payload: Event) => void;
310
+ onSuspend?: (payload: Event) => void;
311
+ onTimeupdate?: (payload: Event) => void;
312
+ onVolumechange?: (payload: Event) => void;
313
+ onWaiting?: (payload: Event) => void;
314
+ onSelect?: (payload: Event) => void;
315
+ onScroll?: (payload: UIEvent) => void;
316
+ onTouchcancel?: (payload: TouchEvent) => void;
317
+ onTouchend?: (payload: TouchEvent) => void;
318
+ onTouchmove?: (payload: TouchEvent) => void;
319
+ onTouchstart?: (payload: TouchEvent) => void;
320
+ onPointerdown?: (payload: PointerEvent) => void;
321
+ onPointermove?: (payload: PointerEvent) => void;
322
+ onPointerup?: (payload: PointerEvent) => void;
323
+ onPointercancel?: (payload: PointerEvent) => void;
324
+ onPointerenter?: (payload: PointerEvent) => void;
325
+ onPointerleave?: (payload: PointerEvent) => void;
326
+ onPointerover?: (payload: PointerEvent) => void;
327
+ onPointerout?: (payload: PointerEvent) => void;
328
+ onWheel?: (payload: WheelEvent) => void;
329
+ onAnimationstart?: (payload: AnimationEvent) => void;
330
+ onAnimationend?: (payload: AnimationEvent) => void;
331
+ onAnimationiteration?: (payload: AnimationEvent) => void;
332
+ onTransitionend?: (payload: TransitionEvent) => void;
333
+ onTransitionstart?: (payload: TransitionEvent) => void;
334
+ }>;
335
+ getContainer: () => HTMLElement;
336
+ modalStyle: import("vue").ComputedRef<{
337
+ verticalAlign: string;
338
+ }>;
339
+ modalWith: import("vue").ComputedRef<string>;
340
+ isFullModal: import("vue").ComputedRef<string | boolean | {
341
+ [key: string]: any;
342
+ }[]>;
343
+ style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
344
+ visible: import("vue").Ref<boolean>;
345
+ showModal: () => void;
346
+ onOk: () => void;
347
+ onCancel: () => void;
348
+ isFullWidth: import("vue").ComputedRef<boolean>;
349
+ wrapClassName: import("vue").ComputedRef<string>;
350
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
351
+ id: {
352
+ type?: undefined;
353
+ default?: undefined;
354
+ } | {
355
+ type: any;
356
+ default: string | boolean | {
357
+ [key: string]: any;
358
+ }[];
359
+ };
360
+ type: {
361
+ type?: undefined;
362
+ default?: undefined;
363
+ } | {
364
+ type: any;
365
+ default: string | boolean | {
366
+ [key: string]: any;
367
+ }[];
368
+ };
369
+ width: {
370
+ type?: undefined;
371
+ default?: undefined;
372
+ } | {
373
+ type: any;
374
+ default: string | boolean | {
375
+ [key: string]: any;
376
+ }[];
377
+ };
378
+ height: {
379
+ type?: undefined;
380
+ default?: undefined;
381
+ } | {
382
+ type: any;
383
+ default: string | boolean | {
384
+ [key: string]: any;
385
+ }[];
386
+ };
387
+ title: {
388
+ type?: undefined;
389
+ default?: undefined;
390
+ } | {
391
+ type: any;
392
+ default: string | boolean | {
393
+ [key: string]: any;
394
+ }[];
395
+ };
396
+ titleFontSize: {
397
+ type?: undefined;
398
+ default?: undefined;
399
+ } | {
400
+ type: any;
401
+ default: string | boolean | {
402
+ [key: string]: any;
403
+ }[];
404
+ };
405
+ titleColor: {
406
+ type?: undefined;
407
+ default?: undefined;
408
+ } | {
409
+ type: any;
410
+ default: string | boolean | {
411
+ [key: string]: any;
412
+ }[];
413
+ };
414
+ backgroundColor: {
415
+ type?: undefined;
416
+ default?: undefined;
417
+ } | {
418
+ type: any;
419
+ default: string | boolean | {
420
+ [key: string]: any;
421
+ }[];
422
+ };
423
+ backgroundImage: {
424
+ type?: undefined;
425
+ default?: undefined;
426
+ } | {
427
+ type: any;
428
+ default: string | boolean | {
429
+ [key: string]: any;
430
+ }[];
431
+ };
432
+ backgroundSize: {
433
+ type?: undefined;
434
+ default?: undefined;
435
+ } | {
436
+ type: any;
437
+ default: string | boolean | {
438
+ [key: string]: any;
439
+ }[];
440
+ };
441
+ keyName: {
442
+ type?: undefined;
443
+ default?: undefined;
444
+ } | {
445
+ type: any;
446
+ default: string | boolean | {
447
+ [key: string]: any;
448
+ }[];
449
+ };
450
+ componentList: {
451
+ type?: undefined;
452
+ default?: undefined;
453
+ } | {
454
+ type: any;
455
+ default: string | boolean | {
456
+ [key: string]: any;
457
+ }[];
458
+ };
459
+ fullModal: {
460
+ type?: undefined;
461
+ default?: undefined;
462
+ } | {
463
+ type: any;
464
+ default: string | boolean | {
465
+ [key: string]: any;
466
+ }[];
467
+ };
468
+ originalWidth: {
469
+ type?: undefined;
470
+ default?: undefined;
471
+ } | {
472
+ type: any;
473
+ default: string | boolean | {
474
+ [key: string]: any;
475
+ }[];
476
+ };
477
+ originalHeight: {
478
+ type?: undefined;
479
+ default?: undefined;
480
+ } | {
481
+ type: any;
482
+ default: string | boolean | {
483
+ [key: string]: any;
484
+ }[];
485
+ };
486
+ destroyOnClose: {
487
+ type?: undefined;
488
+ default?: undefined;
489
+ } | {
490
+ type: any;
491
+ default: string | boolean | {
492
+ [key: string]: any;
493
+ }[];
494
+ };
495
+ position: {
496
+ type?: undefined;
497
+ default?: undefined;
498
+ } | {
499
+ type: any;
500
+ default: string | boolean | {
501
+ [key: string]: any;
502
+ }[];
503
+ };
504
+ }>>, {}>;
505
+ export default _sfc_main;