@uzum-tech/ui 1.9.1 → 1.10.1

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 (149) hide show
  1. package/dist/index.js +5316 -804
  2. package/dist/index.prod.js +12 -3
  3. package/es/_internal/scrollbar/src/Scrollbar.js +19 -38
  4. package/es/auto-complete/src/AutoComplete.d.ts +1 -1
  5. package/es/cascader/src/Cascader.d.ts +1 -1
  6. package/es/chat/src/ChatListItems.js +16 -1
  7. package/es/chat/src/ChatParts/MainArea.js +31 -21
  8. package/es/components.d.ts +2 -0
  9. package/es/components.js +2 -0
  10. package/es/config-provider/src/internal-interface.d.ts +4 -0
  11. package/es/crop/index.d.ts +3 -0
  12. package/es/crop/index.js +1 -0
  13. package/es/crop/src/Crop.d.ts +222 -0
  14. package/es/crop/src/Crop.js +157 -0
  15. package/es/crop/src/interface.d.ts +6 -0
  16. package/es/crop/src/interface.js +7 -0
  17. package/es/crop/src/styles/index.cssr.d.ts +2 -0
  18. package/es/crop/src/styles/index.cssr.js +333 -0
  19. package/es/crop/styles/_common.d.ts +4 -0
  20. package/es/crop/styles/_common.js +3 -0
  21. package/es/crop/styles/dark.d.ts +3 -0
  22. package/es/crop/styles/dark.js +9 -0
  23. package/es/crop/styles/index.d.ts +3 -0
  24. package/es/crop/styles/index.js +2 -0
  25. package/es/crop/styles/light.d.ts +14 -0
  26. package/es/crop/styles/light.js +14 -0
  27. package/es/date-picker/src/panel/panelMonth.d.ts +1 -1
  28. package/es/date-picker/src/panel/panelYear.d.ts +1 -1
  29. package/es/dynamic-tags/src/DynamicTags.d.ts +30 -0
  30. package/es/dynamic-tags/styles/light.d.ts +3 -0
  31. package/es/infinite-scroll/src/InfiniteScroll.d.ts +16 -0
  32. package/es/infinite-scroll/src/InfiniteScroll.js +45 -12
  33. package/es/input/src/Input.d.ts +1 -1
  34. package/es/input-number/src/InputNumber.d.ts +1 -1
  35. package/es/legacy-transfer/src/Transfer.d.ts +1 -1
  36. package/es/modal-fullscreen/index.d.ts +2 -0
  37. package/es/modal-fullscreen/index.js +1 -0
  38. package/es/modal-fullscreen/src/ModalFull.d.ts +953 -0
  39. package/es/modal-fullscreen/src/ModalFull.js +250 -0
  40. package/es/modal-fullscreen/src/interface.d.ts +0 -0
  41. package/es/modal-fullscreen/src/interface.js +1 -0
  42. package/es/modal-fullscreen/src/styles/index.cssr.d.ts +2 -0
  43. package/es/modal-fullscreen/src/styles/index.cssr.js +85 -0
  44. package/es/modal-fullscreen/styles/_common.d.ts +12 -0
  45. package/es/modal-fullscreen/styles/_common.js +11 -0
  46. package/es/modal-fullscreen/styles/dark.d.ts +3 -0
  47. package/es/modal-fullscreen/styles/dark.js +14 -0
  48. package/es/modal-fullscreen/styles/index.d.ts +3 -0
  49. package/es/modal-fullscreen/styles/index.js +2 -0
  50. package/es/modal-fullscreen/styles/light.d.ts +100 -0
  51. package/es/modal-fullscreen/styles/light.js +19 -0
  52. package/es/rate/src/Rate.d.ts +1 -1
  53. package/es/select/src/Select.d.ts +1 -1
  54. package/es/slider/src/Slider.d.ts +1 -1
  55. package/es/switch/src/Switch.d.ts +1 -1
  56. package/es/tag/index.d.ts +2 -0
  57. package/es/tag/index.js +1 -0
  58. package/es/tag/src/Tag.d.ts +40 -0
  59. package/es/tag/src/Tag.js +3 -0
  60. package/es/tag/src/TagGroup.d.ts +644 -0
  61. package/es/tag/src/TagGroup.js +109 -0
  62. package/es/tag/src/styles/index.cssr.d.ts +1 -0
  63. package/es/tag/src/styles/index.cssr.js +8 -1
  64. package/es/tag/styles/light.d.ts +3 -0
  65. package/es/tag/styles/light.js +5 -0
  66. package/es/themes/dark.js +5 -1
  67. package/es/themes/light.js +5 -1
  68. package/es/time-picker/src/TimePicker.d.ts +1 -1
  69. package/es/transfer/src/Transfer.d.ts +1 -1
  70. package/es/tree-select/src/TreeSelect.d.ts +1 -1
  71. package/es/version.d.ts +1 -1
  72. package/es/version.js +1 -1
  73. package/es/virtual-list/index.d.ts +1 -1
  74. package/es/virtual-list/index.js +1 -1
  75. package/lib/_internal/scrollbar/src/Scrollbar.js +19 -38
  76. package/lib/auto-complete/src/AutoComplete.d.ts +1 -1
  77. package/lib/cascader/src/Cascader.d.ts +1 -1
  78. package/lib/chat/src/ChatListItems.js +16 -1
  79. package/lib/chat/src/ChatParts/MainArea.js +31 -21
  80. package/lib/components.d.ts +2 -0
  81. package/lib/components.js +2 -0
  82. package/lib/config-provider/src/internal-interface.d.ts +4 -0
  83. package/lib/crop/index.d.ts +3 -0
  84. package/lib/crop/index.js +9 -0
  85. package/lib/crop/src/Crop.d.ts +222 -0
  86. package/lib/crop/src/Crop.js +163 -0
  87. package/lib/crop/src/interface.d.ts +6 -0
  88. package/lib/crop/src/interface.js +10 -0
  89. package/lib/crop/src/styles/index.cssr.d.ts +2 -0
  90. package/lib/crop/src/styles/index.cssr.js +338 -0
  91. package/lib/crop/styles/_common.d.ts +4 -0
  92. package/lib/crop/styles/_common.js +5 -0
  93. package/lib/crop/styles/dark.d.ts +3 -0
  94. package/lib/crop/styles/dark.js +11 -0
  95. package/lib/crop/styles/index.d.ts +3 -0
  96. package/lib/crop/styles/index.js +10 -0
  97. package/lib/crop/styles/light.d.ts +14 -0
  98. package/lib/crop/styles/light.js +21 -0
  99. package/lib/date-picker/src/panel/panelMonth.d.ts +1 -1
  100. package/lib/date-picker/src/panel/panelYear.d.ts +1 -1
  101. package/lib/dynamic-tags/src/DynamicTags.d.ts +30 -0
  102. package/lib/dynamic-tags/styles/light.d.ts +3 -0
  103. package/lib/infinite-scroll/src/InfiniteScroll.d.ts +16 -0
  104. package/lib/infinite-scroll/src/InfiniteScroll.js +44 -11
  105. package/lib/input/src/Input.d.ts +1 -1
  106. package/lib/input-number/src/InputNumber.d.ts +1 -1
  107. package/lib/legacy-transfer/src/Transfer.d.ts +1 -1
  108. package/lib/modal-fullscreen/index.d.ts +2 -0
  109. package/lib/modal-fullscreen/index.js +9 -0
  110. package/lib/modal-fullscreen/src/ModalFull.d.ts +953 -0
  111. package/lib/modal-fullscreen/src/ModalFull.js +256 -0
  112. package/lib/modal-fullscreen/src/interface.d.ts +0 -0
  113. package/lib/modal-fullscreen/src/interface.js +1 -0
  114. package/lib/modal-fullscreen/src/styles/index.cssr.d.ts +2 -0
  115. package/lib/modal-fullscreen/src/styles/index.cssr.js +90 -0
  116. package/lib/modal-fullscreen/styles/_common.d.ts +12 -0
  117. package/lib/modal-fullscreen/styles/_common.js +13 -0
  118. package/lib/modal-fullscreen/styles/dark.d.ts +3 -0
  119. package/lib/modal-fullscreen/styles/dark.js +16 -0
  120. package/lib/modal-fullscreen/styles/index.d.ts +3 -0
  121. package/lib/modal-fullscreen/styles/index.js +10 -0
  122. package/lib/modal-fullscreen/styles/light.d.ts +100 -0
  123. package/lib/modal-fullscreen/styles/light.js +26 -0
  124. package/lib/rate/src/Rate.d.ts +1 -1
  125. package/lib/select/src/Select.d.ts +1 -1
  126. package/lib/slider/src/Slider.d.ts +1 -1
  127. package/lib/switch/src/Switch.d.ts +1 -1
  128. package/lib/tag/index.d.ts +2 -0
  129. package/lib/tag/index.js +3 -1
  130. package/lib/tag/src/Tag.d.ts +40 -0
  131. package/lib/tag/src/Tag.js +3 -0
  132. package/lib/tag/src/TagGroup.d.ts +644 -0
  133. package/lib/tag/src/TagGroup.js +112 -0
  134. package/lib/tag/src/styles/index.cssr.d.ts +1 -0
  135. package/lib/tag/src/styles/index.cssr.js +9 -1
  136. package/lib/tag/styles/light.d.ts +3 -0
  137. package/lib/tag/styles/light.js +5 -0
  138. package/lib/themes/dark.js +5 -1
  139. package/lib/themes/light.js +5 -1
  140. package/lib/time-picker/src/TimePicker.d.ts +1 -1
  141. package/lib/transfer/src/Transfer.d.ts +1 -1
  142. package/lib/tree-select/src/TreeSelect.d.ts +1 -1
  143. package/lib/version.d.ts +1 -1
  144. package/lib/version.js +1 -1
  145. package/lib/virtual-list/index.d.ts +1 -1
  146. package/lib/virtual-list/index.js +2 -2
  147. package/package.json +7 -6
  148. package/volar.d.ts +4 -0
  149. package/web-types.json +387 -1
@@ -0,0 +1,953 @@
1
+ import { PropType, ExtractPublicPropTypes } from 'vue';
2
+ import { MaybeArray } from '../../_utils';
3
+ export declare const modalFullscreenProps: {
4
+ to: PropType<string | HTMLElement>;
5
+ show: BooleanConstructor;
6
+ zIndex: NumberConstructor;
7
+ title: StringConstructor;
8
+ subtitle: StringConstructor;
9
+ backgroundImage: StringConstructor;
10
+ fixed: {
11
+ type: BooleanConstructor;
12
+ default: boolean;
13
+ };
14
+ displayDirective: {
15
+ type: PropType<"if" | "show">;
16
+ default: string;
17
+ };
18
+ transformOrigin: {
19
+ type: PropType<"center" | "mouse">;
20
+ default: string;
21
+ };
22
+ autoFocus: {
23
+ type: BooleanConstructor;
24
+ default: boolean;
25
+ };
26
+ trapFocus: {
27
+ type: BooleanConstructor;
28
+ default: boolean;
29
+ };
30
+ closeOnEsc: {
31
+ type: BooleanConstructor;
32
+ default: boolean;
33
+ };
34
+ blockScroll: {
35
+ type: BooleanConstructor;
36
+ default: boolean;
37
+ };
38
+ onEsc: PropType<() => void>;
39
+ onClose: PropType<() => Promise<boolean> | boolean | any>;
40
+ onAfterEnter: PropType<() => void>;
41
+ onBeforeLeave: PropType<() => void>;
42
+ onAfterLeave: PropType<() => void>;
43
+ onUpdateShow: PropType<MaybeArray<(value: boolean) => void>>;
44
+ 'onUpdate:show': PropType<MaybeArray<(value: boolean) => void>>;
45
+ theme: PropType<import("../../_mixins").Theme<"ModalFullscreen", {
46
+ modalBg: string;
47
+ textColor: string;
48
+ closeColorHover: string;
49
+ closeColorPressed: string;
50
+ closeIconColor: string;
51
+ closeIconColorHover: string;
52
+ closeIconColorPressed: string;
53
+ closeIconSize: string;
54
+ closeSize: string;
55
+ subtitleColor: string;
56
+ headerPadding: string;
57
+ bodyPadding: string;
58
+ footerPadding: string;
59
+ headerBg: string;
60
+ bodyBg: string;
61
+ footerBg: string;
62
+ closeMargin: string;
63
+ closeMarginIconTop: string;
64
+ closeBorderRadius: string;
65
+ }, {
66
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
67
+ height: string;
68
+ width: string;
69
+ borderRadius: string;
70
+ color: string;
71
+ colorHover: string;
72
+ railInsetHorizontalBottom: string;
73
+ railInsetHorizontalTop: string;
74
+ railInsetVerticalRight: string;
75
+ railInsetVerticalLeft: string;
76
+ railColor: string;
77
+ }, any>;
78
+ Card: import("../../_mixins").Theme<"Card", {
79
+ titleFontSizeSmall: string;
80
+ titleFontSizeMedium: string;
81
+ titleFontSizeLarge: string;
82
+ titleFontSizeHuge: string;
83
+ titleLineHeightSmall: string;
84
+ titleLineHeightMedium: string;
85
+ titleLineHeightLarge: string;
86
+ titleLineHeightHuge: string;
87
+ titleFontWeight: string;
88
+ fontSizeSmall: string;
89
+ fontSizeMedium: string;
90
+ fontSizeLarge: string;
91
+ fontSizeHuge: string;
92
+ lineHeightSmall: string;
93
+ lineHeightMedium: string;
94
+ lineHeightLarge: string;
95
+ lineHeightHuge: string;
96
+ fontWeight: string;
97
+ closeIconSize: string;
98
+ closeSize: string;
99
+ color: string;
100
+ colorTarget: string;
101
+ colorEmbedded: string;
102
+ textColor: string;
103
+ titleTextColor: string;
104
+ borderColor: string;
105
+ actionColor: string;
106
+ closeColorHover: string;
107
+ closeColorPressed: string;
108
+ closeIconColor: string;
109
+ closeIconColorHover: string;
110
+ closeIconColorPressed: string;
111
+ closeBorderRadius: string;
112
+ boxShadow: string;
113
+ borderRadius: string;
114
+ paddingSmall: string;
115
+ paddingMedium: string;
116
+ paddingLarge: string;
117
+ paddingHuge: string;
118
+ }, any>;
119
+ }>>;
120
+ themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"ModalFullscreen", {
121
+ modalBg: string;
122
+ textColor: string;
123
+ closeColorHover: string;
124
+ closeColorPressed: string;
125
+ closeIconColor: string;
126
+ closeIconColorHover: string;
127
+ closeIconColorPressed: string;
128
+ closeIconSize: string;
129
+ closeSize: string;
130
+ subtitleColor: string;
131
+ headerPadding: string;
132
+ bodyPadding: string;
133
+ footerPadding: string;
134
+ headerBg: string;
135
+ bodyBg: string;
136
+ footerBg: string;
137
+ closeMargin: string;
138
+ closeMarginIconTop: string;
139
+ closeBorderRadius: string;
140
+ }, {
141
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
142
+ height: string;
143
+ width: string;
144
+ borderRadius: string;
145
+ color: string;
146
+ colorHover: string;
147
+ railInsetHorizontalBottom: string;
148
+ railInsetHorizontalTop: string;
149
+ railInsetVerticalRight: string;
150
+ railInsetVerticalLeft: string;
151
+ railColor: string;
152
+ }, any>;
153
+ Card: import("../../_mixins").Theme<"Card", {
154
+ titleFontSizeSmall: string;
155
+ titleFontSizeMedium: string;
156
+ titleFontSizeLarge: string;
157
+ titleFontSizeHuge: string;
158
+ titleLineHeightSmall: string;
159
+ titleLineHeightMedium: string;
160
+ titleLineHeightLarge: string;
161
+ titleLineHeightHuge: string;
162
+ titleFontWeight: string;
163
+ fontSizeSmall: string;
164
+ fontSizeMedium: string;
165
+ fontSizeLarge: string;
166
+ fontSizeHuge: string;
167
+ lineHeightSmall: string;
168
+ lineHeightMedium: string;
169
+ lineHeightLarge: string;
170
+ lineHeightHuge: string;
171
+ fontWeight: string;
172
+ closeIconSize: string;
173
+ closeSize: string;
174
+ color: string;
175
+ colorTarget: string;
176
+ colorEmbedded: string;
177
+ textColor: string;
178
+ titleTextColor: string;
179
+ borderColor: string;
180
+ actionColor: string;
181
+ closeColorHover: string;
182
+ closeColorPressed: string;
183
+ closeIconColor: string;
184
+ closeIconColorHover: string;
185
+ closeIconColorPressed: string;
186
+ closeBorderRadius: string;
187
+ boxShadow: string;
188
+ borderRadius: string;
189
+ paddingSmall: string;
190
+ paddingMedium: string;
191
+ paddingLarge: string;
192
+ paddingHuge: string;
193
+ }, any>;
194
+ }>>>;
195
+ builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"ModalFullscreen", {
196
+ modalBg: string;
197
+ textColor: string;
198
+ closeColorHover: string;
199
+ closeColorPressed: string;
200
+ closeIconColor: string;
201
+ closeIconColorHover: string;
202
+ closeIconColorPressed: string;
203
+ closeIconSize: string;
204
+ closeSize: string;
205
+ subtitleColor: string;
206
+ headerPadding: string;
207
+ bodyPadding: string;
208
+ footerPadding: string;
209
+ headerBg: string;
210
+ bodyBg: string;
211
+ footerBg: string;
212
+ closeMargin: string;
213
+ closeMarginIconTop: string;
214
+ closeBorderRadius: string;
215
+ }, {
216
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
217
+ height: string;
218
+ width: string;
219
+ borderRadius: string;
220
+ color: string;
221
+ colorHover: string;
222
+ railInsetHorizontalBottom: string;
223
+ railInsetHorizontalTop: string;
224
+ railInsetVerticalRight: string;
225
+ railInsetVerticalLeft: string;
226
+ railColor: string;
227
+ }, any>;
228
+ Card: import("../../_mixins").Theme<"Card", {
229
+ titleFontSizeSmall: string;
230
+ titleFontSizeMedium: string;
231
+ titleFontSizeLarge: string;
232
+ titleFontSizeHuge: string;
233
+ titleLineHeightSmall: string;
234
+ titleLineHeightMedium: string;
235
+ titleLineHeightLarge: string;
236
+ titleLineHeightHuge: string;
237
+ titleFontWeight: string;
238
+ fontSizeSmall: string;
239
+ fontSizeMedium: string;
240
+ fontSizeLarge: string;
241
+ fontSizeHuge: string;
242
+ lineHeightSmall: string;
243
+ lineHeightMedium: string;
244
+ lineHeightLarge: string;
245
+ lineHeightHuge: string;
246
+ fontWeight: string;
247
+ closeIconSize: string;
248
+ closeSize: string;
249
+ color: string;
250
+ colorTarget: string;
251
+ colorEmbedded: string;
252
+ textColor: string;
253
+ titleTextColor: string;
254
+ borderColor: string;
255
+ actionColor: string;
256
+ closeColorHover: string;
257
+ closeColorPressed: string;
258
+ closeIconColor: string;
259
+ closeIconColorHover: string;
260
+ closeIconColorPressed: string;
261
+ closeBorderRadius: string;
262
+ boxShadow: string;
263
+ borderRadius: string;
264
+ paddingSmall: string;
265
+ paddingMedium: string;
266
+ paddingLarge: string;
267
+ paddingHuge: string;
268
+ }, any>;
269
+ }>>>;
270
+ };
271
+ export type ModalFullscreenProps = ExtractPublicPropTypes<typeof modalFullscreenProps>;
272
+ declare const _default: import("vue").DefineComponent<{
273
+ to: PropType<string | HTMLElement>;
274
+ show: BooleanConstructor;
275
+ zIndex: NumberConstructor;
276
+ title: StringConstructor;
277
+ subtitle: StringConstructor;
278
+ backgroundImage: StringConstructor;
279
+ fixed: {
280
+ type: BooleanConstructor;
281
+ default: boolean;
282
+ };
283
+ displayDirective: {
284
+ type: PropType<"if" | "show">;
285
+ default: string;
286
+ };
287
+ transformOrigin: {
288
+ type: PropType<"center" | "mouse">;
289
+ default: string;
290
+ };
291
+ autoFocus: {
292
+ type: BooleanConstructor;
293
+ default: boolean;
294
+ };
295
+ trapFocus: {
296
+ type: BooleanConstructor;
297
+ default: boolean;
298
+ };
299
+ closeOnEsc: {
300
+ type: BooleanConstructor;
301
+ default: boolean;
302
+ };
303
+ blockScroll: {
304
+ type: BooleanConstructor;
305
+ default: boolean;
306
+ };
307
+ onEsc: PropType<() => void>;
308
+ onClose: PropType<() => Promise<boolean> | boolean | any>;
309
+ onAfterEnter: PropType<() => void>;
310
+ onBeforeLeave: PropType<() => void>;
311
+ onAfterLeave: PropType<() => void>;
312
+ onUpdateShow: PropType<MaybeArray<(value: boolean) => void>>;
313
+ 'onUpdate:show': PropType<MaybeArray<(value: boolean) => void>>;
314
+ theme: PropType<import("../../_mixins").Theme<"ModalFullscreen", {
315
+ modalBg: string;
316
+ textColor: string;
317
+ closeColorHover: string;
318
+ closeColorPressed: string;
319
+ closeIconColor: string;
320
+ closeIconColorHover: string;
321
+ closeIconColorPressed: string;
322
+ closeIconSize: string;
323
+ closeSize: string;
324
+ subtitleColor: string;
325
+ headerPadding: string;
326
+ bodyPadding: string;
327
+ footerPadding: string;
328
+ headerBg: string;
329
+ bodyBg: string;
330
+ footerBg: string;
331
+ closeMargin: string;
332
+ closeMarginIconTop: string;
333
+ closeBorderRadius: string;
334
+ }, {
335
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
336
+ height: string;
337
+ width: string;
338
+ borderRadius: string;
339
+ color: string;
340
+ colorHover: string;
341
+ railInsetHorizontalBottom: string;
342
+ railInsetHorizontalTop: string;
343
+ railInsetVerticalRight: string;
344
+ railInsetVerticalLeft: string;
345
+ railColor: string;
346
+ }, any>;
347
+ Card: import("../../_mixins").Theme<"Card", {
348
+ titleFontSizeSmall: string;
349
+ titleFontSizeMedium: string;
350
+ titleFontSizeLarge: string;
351
+ titleFontSizeHuge: string;
352
+ titleLineHeightSmall: string;
353
+ titleLineHeightMedium: string;
354
+ titleLineHeightLarge: string;
355
+ titleLineHeightHuge: string;
356
+ titleFontWeight: string;
357
+ fontSizeSmall: string;
358
+ fontSizeMedium: string;
359
+ fontSizeLarge: string;
360
+ fontSizeHuge: string;
361
+ lineHeightSmall: string;
362
+ lineHeightMedium: string;
363
+ lineHeightLarge: string;
364
+ lineHeightHuge: string;
365
+ fontWeight: string;
366
+ closeIconSize: string;
367
+ closeSize: string;
368
+ color: string;
369
+ colorTarget: string;
370
+ colorEmbedded: string;
371
+ textColor: string;
372
+ titleTextColor: string;
373
+ borderColor: string;
374
+ actionColor: string;
375
+ closeColorHover: string;
376
+ closeColorPressed: string;
377
+ closeIconColor: string;
378
+ closeIconColorHover: string;
379
+ closeIconColorPressed: string;
380
+ closeBorderRadius: string;
381
+ boxShadow: string;
382
+ borderRadius: string;
383
+ paddingSmall: string;
384
+ paddingMedium: string;
385
+ paddingLarge: string;
386
+ paddingHuge: string;
387
+ }, any>;
388
+ }>>;
389
+ themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"ModalFullscreen", {
390
+ modalBg: string;
391
+ textColor: string;
392
+ closeColorHover: string;
393
+ closeColorPressed: string;
394
+ closeIconColor: string;
395
+ closeIconColorHover: string;
396
+ closeIconColorPressed: string;
397
+ closeIconSize: string;
398
+ closeSize: string;
399
+ subtitleColor: string;
400
+ headerPadding: string;
401
+ bodyPadding: string;
402
+ footerPadding: string;
403
+ headerBg: string;
404
+ bodyBg: string;
405
+ footerBg: string;
406
+ closeMargin: string;
407
+ closeMarginIconTop: string;
408
+ closeBorderRadius: string;
409
+ }, {
410
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
411
+ height: string;
412
+ width: string;
413
+ borderRadius: string;
414
+ color: string;
415
+ colorHover: string;
416
+ railInsetHorizontalBottom: string;
417
+ railInsetHorizontalTop: string;
418
+ railInsetVerticalRight: string;
419
+ railInsetVerticalLeft: string;
420
+ railColor: string;
421
+ }, any>;
422
+ Card: import("../../_mixins").Theme<"Card", {
423
+ titleFontSizeSmall: string;
424
+ titleFontSizeMedium: string;
425
+ titleFontSizeLarge: string;
426
+ titleFontSizeHuge: string;
427
+ titleLineHeightSmall: string;
428
+ titleLineHeightMedium: string;
429
+ titleLineHeightLarge: string;
430
+ titleLineHeightHuge: string;
431
+ titleFontWeight: string;
432
+ fontSizeSmall: string;
433
+ fontSizeMedium: string;
434
+ fontSizeLarge: string;
435
+ fontSizeHuge: string;
436
+ lineHeightSmall: string;
437
+ lineHeightMedium: string;
438
+ lineHeightLarge: string;
439
+ lineHeightHuge: string;
440
+ fontWeight: string;
441
+ closeIconSize: string;
442
+ closeSize: string;
443
+ color: string;
444
+ colorTarget: string;
445
+ colorEmbedded: string;
446
+ textColor: string;
447
+ titleTextColor: string;
448
+ borderColor: string;
449
+ actionColor: string;
450
+ closeColorHover: string;
451
+ closeColorPressed: string;
452
+ closeIconColor: string;
453
+ closeIconColorHover: string;
454
+ closeIconColorPressed: string;
455
+ closeBorderRadius: string;
456
+ boxShadow: string;
457
+ borderRadius: string;
458
+ paddingSmall: string;
459
+ paddingMedium: string;
460
+ paddingLarge: string;
461
+ paddingHuge: string;
462
+ }, any>;
463
+ }>>>;
464
+ builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"ModalFullscreen", {
465
+ modalBg: string;
466
+ textColor: string;
467
+ closeColorHover: string;
468
+ closeColorPressed: string;
469
+ closeIconColor: string;
470
+ closeIconColorHover: string;
471
+ closeIconColorPressed: string;
472
+ closeIconSize: string;
473
+ closeSize: string;
474
+ subtitleColor: string;
475
+ headerPadding: string;
476
+ bodyPadding: string;
477
+ footerPadding: string;
478
+ headerBg: string;
479
+ bodyBg: string;
480
+ footerBg: string;
481
+ closeMargin: string;
482
+ closeMarginIconTop: string;
483
+ closeBorderRadius: string;
484
+ }, {
485
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
486
+ height: string;
487
+ width: string;
488
+ borderRadius: string;
489
+ color: string;
490
+ colorHover: string;
491
+ railInsetHorizontalBottom: string;
492
+ railInsetHorizontalTop: string;
493
+ railInsetVerticalRight: string;
494
+ railInsetVerticalLeft: string;
495
+ railColor: string;
496
+ }, any>;
497
+ Card: import("../../_mixins").Theme<"Card", {
498
+ titleFontSizeSmall: string;
499
+ titleFontSizeMedium: string;
500
+ titleFontSizeLarge: string;
501
+ titleFontSizeHuge: string;
502
+ titleLineHeightSmall: string;
503
+ titleLineHeightMedium: string;
504
+ titleLineHeightLarge: string;
505
+ titleLineHeightHuge: string;
506
+ titleFontWeight: string;
507
+ fontSizeSmall: string;
508
+ fontSizeMedium: string;
509
+ fontSizeLarge: string;
510
+ fontSizeHuge: string;
511
+ lineHeightSmall: string;
512
+ lineHeightMedium: string;
513
+ lineHeightLarge: string;
514
+ lineHeightHuge: string;
515
+ fontWeight: string;
516
+ closeIconSize: string;
517
+ closeSize: string;
518
+ color: string;
519
+ colorTarget: string;
520
+ colorEmbedded: string;
521
+ textColor: string;
522
+ titleTextColor: string;
523
+ borderColor: string;
524
+ actionColor: string;
525
+ closeColorHover: string;
526
+ closeColorPressed: string;
527
+ closeIconColor: string;
528
+ closeIconColorHover: string;
529
+ closeIconColorPressed: string;
530
+ closeBorderRadius: string;
531
+ boxShadow: string;
532
+ borderRadius: string;
533
+ paddingSmall: string;
534
+ paddingMedium: string;
535
+ paddingLarge: string;
536
+ paddingHuge: string;
537
+ }, any>;
538
+ }>>>;
539
+ }, {
540
+ containerRef: import("vue").Ref<HTMLElement | null>;
541
+ scrollbarRef: import("vue").Ref<{
542
+ $el: HTMLElement;
543
+ containerRef: HTMLElement | null;
544
+ contentRef: HTMLElement | null;
545
+ containerScrollTop: number;
546
+ syncUnifiedContainer: () => void;
547
+ scrollTo: import("../../_internal/scrollbar/src/Scrollbar").ScrollTo;
548
+ scrollBy: import("../../_internal/scrollbar/src/Scrollbar").ScrollBy;
549
+ sync: () => void;
550
+ handleMouseEnterWrapper: () => void;
551
+ handleMouseLeaveWrapper: () => void;
552
+ } | null>;
553
+ mergedClsPrefix: import("vue").Ref<string>;
554
+ namespace: import("vue").ComputedRef<string | undefined>;
555
+ cssVars: import("vue").ComputedRef<{
556
+ '--u-bezier-ease-out': string;
557
+ '--u-text-color': string;
558
+ '--u-close-margin': string;
559
+ '--u-close-size': string;
560
+ '--u-close-icon-size': string;
561
+ '--u-close-border-radius': string;
562
+ '--u-close-color-hover': string;
563
+ '--u-close-color-pressed': string;
564
+ '--u-close-icon-color': string;
565
+ '--u-close-icon-color-hover': string;
566
+ '--u-close-icon-color-pressed': string;
567
+ '--u-header-padding': string;
568
+ '--u-subtitle-color': string;
569
+ '--u-body-padding': string;
570
+ '--u-footer-padding': string;
571
+ '--u-modal-bg': string;
572
+ '--u-header-bg': string;
573
+ '--u-body-bg': string;
574
+ '--u-footer-bg': string;
575
+ }> | undefined;
576
+ themeClass: import("vue").Ref<string> | undefined;
577
+ themeRef: import("vue").ComputedRef<{
578
+ common: import("../..").ThemeCommonVars;
579
+ self: {
580
+ modalBg: string;
581
+ textColor: string;
582
+ closeColorHover: string;
583
+ closeColorPressed: string;
584
+ closeIconColor: string;
585
+ closeIconColorHover: string;
586
+ closeIconColorPressed: string;
587
+ closeIconSize: string;
588
+ closeSize: string;
589
+ subtitleColor: string;
590
+ headerPadding: string;
591
+ bodyPadding: string;
592
+ footerPadding: string;
593
+ headerBg: string;
594
+ bodyBg: string;
595
+ footerBg: string;
596
+ closeMargin: string;
597
+ closeMarginIconTop: string;
598
+ closeBorderRadius: string;
599
+ };
600
+ peers: {
601
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
602
+ height: string;
603
+ width: string;
604
+ borderRadius: string;
605
+ color: string;
606
+ colorHover: string;
607
+ railInsetHorizontalBottom: string;
608
+ railInsetHorizontalTop: string;
609
+ railInsetVerticalRight: string;
610
+ railInsetVerticalLeft: string;
611
+ railColor: string;
612
+ }, any>;
613
+ Card: import("../../_mixins").Theme<"Card", {
614
+ titleFontSizeSmall: string;
615
+ titleFontSizeMedium: string;
616
+ titleFontSizeLarge: string;
617
+ titleFontSizeHuge: string;
618
+ titleLineHeightSmall: string;
619
+ titleLineHeightMedium: string;
620
+ titleLineHeightLarge: string;
621
+ titleLineHeightHuge: string;
622
+ titleFontWeight: string;
623
+ fontSizeSmall: string;
624
+ fontSizeMedium: string;
625
+ fontSizeLarge: string;
626
+ fontSizeHuge: string;
627
+ lineHeightSmall: string;
628
+ lineHeightMedium: string;
629
+ lineHeightLarge: string;
630
+ lineHeightHuge: string;
631
+ fontWeight: string;
632
+ closeIconSize: string;
633
+ closeSize: string;
634
+ color: string;
635
+ colorTarget: string;
636
+ colorEmbedded: string;
637
+ textColor: string;
638
+ titleTextColor: string;
639
+ borderColor: string;
640
+ actionColor: string;
641
+ closeColorHover: string;
642
+ closeColorPressed: string;
643
+ closeIconColor: string;
644
+ closeIconColorHover: string;
645
+ closeIconColorPressed: string;
646
+ closeBorderRadius: string;
647
+ boxShadow: string;
648
+ borderRadius: string;
649
+ paddingSmall: string;
650
+ paddingMedium: string;
651
+ paddingLarge: string;
652
+ paddingHuge: string;
653
+ }, any>;
654
+ };
655
+ peerOverrides: {
656
+ Scrollbar?: {
657
+ peers?: {
658
+ [x: string]: any;
659
+ } | undefined;
660
+ } | undefined;
661
+ Card?: {
662
+ peers?: {
663
+ [x: string]: any;
664
+ } | undefined;
665
+ } | undefined;
666
+ };
667
+ }>;
668
+ isMounted: Readonly<import("vue").Ref<boolean>>;
669
+ isDisplayed: import("vue").Ref<boolean>;
670
+ handleEnter: (element: HTMLElement) => void;
671
+ handleBeforeLeave: (element: HTMLElement) => void;
672
+ handleAfterLeave: () => void;
673
+ handleEsc: (event: KeyboardEvent) => void;
674
+ handleCloseClick: () => void;
675
+ onRender: (() => void) | undefined;
676
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
677
+ to: PropType<string | HTMLElement>;
678
+ show: BooleanConstructor;
679
+ zIndex: NumberConstructor;
680
+ title: StringConstructor;
681
+ subtitle: StringConstructor;
682
+ backgroundImage: StringConstructor;
683
+ fixed: {
684
+ type: BooleanConstructor;
685
+ default: boolean;
686
+ };
687
+ displayDirective: {
688
+ type: PropType<"if" | "show">;
689
+ default: string;
690
+ };
691
+ transformOrigin: {
692
+ type: PropType<"center" | "mouse">;
693
+ default: string;
694
+ };
695
+ autoFocus: {
696
+ type: BooleanConstructor;
697
+ default: boolean;
698
+ };
699
+ trapFocus: {
700
+ type: BooleanConstructor;
701
+ default: boolean;
702
+ };
703
+ closeOnEsc: {
704
+ type: BooleanConstructor;
705
+ default: boolean;
706
+ };
707
+ blockScroll: {
708
+ type: BooleanConstructor;
709
+ default: boolean;
710
+ };
711
+ onEsc: PropType<() => void>;
712
+ onClose: PropType<() => Promise<boolean> | boolean | any>;
713
+ onAfterEnter: PropType<() => void>;
714
+ onBeforeLeave: PropType<() => void>;
715
+ onAfterLeave: PropType<() => void>;
716
+ onUpdateShow: PropType<MaybeArray<(value: boolean) => void>>;
717
+ 'onUpdate:show': PropType<MaybeArray<(value: boolean) => void>>;
718
+ theme: PropType<import("../../_mixins").Theme<"ModalFullscreen", {
719
+ modalBg: string;
720
+ textColor: string;
721
+ closeColorHover: string;
722
+ closeColorPressed: string;
723
+ closeIconColor: string;
724
+ closeIconColorHover: string;
725
+ closeIconColorPressed: string;
726
+ closeIconSize: string;
727
+ closeSize: string;
728
+ subtitleColor: string;
729
+ headerPadding: string;
730
+ bodyPadding: string;
731
+ footerPadding: string;
732
+ headerBg: string;
733
+ bodyBg: string;
734
+ footerBg: string;
735
+ closeMargin: string;
736
+ closeMarginIconTop: string;
737
+ closeBorderRadius: string;
738
+ }, {
739
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
740
+ height: string;
741
+ width: string;
742
+ borderRadius: string;
743
+ color: string;
744
+ colorHover: string;
745
+ railInsetHorizontalBottom: string;
746
+ railInsetHorizontalTop: string;
747
+ railInsetVerticalRight: string;
748
+ railInsetVerticalLeft: string;
749
+ railColor: string;
750
+ }, any>;
751
+ Card: import("../../_mixins").Theme<"Card", {
752
+ titleFontSizeSmall: string;
753
+ titleFontSizeMedium: string;
754
+ titleFontSizeLarge: string;
755
+ titleFontSizeHuge: string;
756
+ titleLineHeightSmall: string;
757
+ titleLineHeightMedium: string;
758
+ titleLineHeightLarge: string;
759
+ titleLineHeightHuge: string;
760
+ titleFontWeight: string;
761
+ fontSizeSmall: string;
762
+ fontSizeMedium: string;
763
+ fontSizeLarge: string;
764
+ fontSizeHuge: string;
765
+ lineHeightSmall: string;
766
+ lineHeightMedium: string;
767
+ lineHeightLarge: string;
768
+ lineHeightHuge: string;
769
+ fontWeight: string;
770
+ closeIconSize: string;
771
+ closeSize: string;
772
+ color: string;
773
+ colorTarget: string;
774
+ colorEmbedded: string;
775
+ textColor: string;
776
+ titleTextColor: string;
777
+ borderColor: string;
778
+ actionColor: string;
779
+ closeColorHover: string;
780
+ closeColorPressed: string;
781
+ closeIconColor: string;
782
+ closeIconColorHover: string;
783
+ closeIconColorPressed: string;
784
+ closeBorderRadius: string;
785
+ boxShadow: string;
786
+ borderRadius: string;
787
+ paddingSmall: string;
788
+ paddingMedium: string;
789
+ paddingLarge: string;
790
+ paddingHuge: string;
791
+ }, any>;
792
+ }>>;
793
+ themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"ModalFullscreen", {
794
+ modalBg: string;
795
+ textColor: string;
796
+ closeColorHover: string;
797
+ closeColorPressed: string;
798
+ closeIconColor: string;
799
+ closeIconColorHover: string;
800
+ closeIconColorPressed: string;
801
+ closeIconSize: string;
802
+ closeSize: string;
803
+ subtitleColor: string;
804
+ headerPadding: string;
805
+ bodyPadding: string;
806
+ footerPadding: string;
807
+ headerBg: string;
808
+ bodyBg: string;
809
+ footerBg: string;
810
+ closeMargin: string;
811
+ closeMarginIconTop: string;
812
+ closeBorderRadius: string;
813
+ }, {
814
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
815
+ height: string;
816
+ width: string;
817
+ borderRadius: string;
818
+ color: string;
819
+ colorHover: string;
820
+ railInsetHorizontalBottom: string;
821
+ railInsetHorizontalTop: string;
822
+ railInsetVerticalRight: string;
823
+ railInsetVerticalLeft: string;
824
+ railColor: string;
825
+ }, any>;
826
+ Card: import("../../_mixins").Theme<"Card", {
827
+ titleFontSizeSmall: string;
828
+ titleFontSizeMedium: string;
829
+ titleFontSizeLarge: string;
830
+ titleFontSizeHuge: string;
831
+ titleLineHeightSmall: string;
832
+ titleLineHeightMedium: string;
833
+ titleLineHeightLarge: string;
834
+ titleLineHeightHuge: string;
835
+ titleFontWeight: string;
836
+ fontSizeSmall: string;
837
+ fontSizeMedium: string;
838
+ fontSizeLarge: string;
839
+ fontSizeHuge: string;
840
+ lineHeightSmall: string;
841
+ lineHeightMedium: string;
842
+ lineHeightLarge: string;
843
+ lineHeightHuge: string;
844
+ fontWeight: string;
845
+ closeIconSize: string;
846
+ closeSize: string;
847
+ color: string;
848
+ colorTarget: string;
849
+ colorEmbedded: string;
850
+ textColor: string;
851
+ titleTextColor: string;
852
+ borderColor: string;
853
+ actionColor: string;
854
+ closeColorHover: string;
855
+ closeColorPressed: string;
856
+ closeIconColor: string;
857
+ closeIconColorHover: string;
858
+ closeIconColorPressed: string;
859
+ closeBorderRadius: string;
860
+ boxShadow: string;
861
+ borderRadius: string;
862
+ paddingSmall: string;
863
+ paddingMedium: string;
864
+ paddingLarge: string;
865
+ paddingHuge: string;
866
+ }, any>;
867
+ }>>>;
868
+ builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"ModalFullscreen", {
869
+ modalBg: string;
870
+ textColor: string;
871
+ closeColorHover: string;
872
+ closeColorPressed: string;
873
+ closeIconColor: string;
874
+ closeIconColorHover: string;
875
+ closeIconColorPressed: string;
876
+ closeIconSize: string;
877
+ closeSize: string;
878
+ subtitleColor: string;
879
+ headerPadding: string;
880
+ bodyPadding: string;
881
+ footerPadding: string;
882
+ headerBg: string;
883
+ bodyBg: string;
884
+ footerBg: string;
885
+ closeMargin: string;
886
+ closeMarginIconTop: string;
887
+ closeBorderRadius: string;
888
+ }, {
889
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
890
+ height: string;
891
+ width: string;
892
+ borderRadius: string;
893
+ color: string;
894
+ colorHover: string;
895
+ railInsetHorizontalBottom: string;
896
+ railInsetHorizontalTop: string;
897
+ railInsetVerticalRight: string;
898
+ railInsetVerticalLeft: string;
899
+ railColor: string;
900
+ }, any>;
901
+ Card: import("../../_mixins").Theme<"Card", {
902
+ titleFontSizeSmall: string;
903
+ titleFontSizeMedium: string;
904
+ titleFontSizeLarge: string;
905
+ titleFontSizeHuge: string;
906
+ titleLineHeightSmall: string;
907
+ titleLineHeightMedium: string;
908
+ titleLineHeightLarge: string;
909
+ titleLineHeightHuge: string;
910
+ titleFontWeight: string;
911
+ fontSizeSmall: string;
912
+ fontSizeMedium: string;
913
+ fontSizeLarge: string;
914
+ fontSizeHuge: string;
915
+ lineHeightSmall: string;
916
+ lineHeightMedium: string;
917
+ lineHeightLarge: string;
918
+ lineHeightHuge: string;
919
+ fontWeight: string;
920
+ closeIconSize: string;
921
+ closeSize: string;
922
+ color: string;
923
+ colorTarget: string;
924
+ colorEmbedded: string;
925
+ textColor: string;
926
+ titleTextColor: string;
927
+ borderColor: string;
928
+ actionColor: string;
929
+ closeColorHover: string;
930
+ closeColorPressed: string;
931
+ closeIconColor: string;
932
+ closeIconColorHover: string;
933
+ closeIconColorPressed: string;
934
+ closeBorderRadius: string;
935
+ boxShadow: string;
936
+ borderRadius: string;
937
+ paddingSmall: string;
938
+ paddingMedium: string;
939
+ paddingLarge: string;
940
+ paddingHuge: string;
941
+ }, any>;
942
+ }>>>;
943
+ }>>, {
944
+ fixed: boolean;
945
+ transformOrigin: "center" | "mouse";
946
+ show: boolean;
947
+ displayDirective: "show" | "if";
948
+ trapFocus: boolean;
949
+ autoFocus: boolean;
950
+ blockScroll: boolean;
951
+ closeOnEsc: boolean;
952
+ }, {}>;
953
+ export default _default;