@wizleap-inc/wiz-ui-next 2.7.0 → 2.7.2

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.
@@ -22,12 +22,484 @@ declare const _sfc_main: import("vue").DefineComponent<{
22
22
  }, {
23
23
  props: any;
24
24
  computedWidth: import("vue").ComputedRef<"default" | "expand">;
25
+ slots: Readonly<{
26
+ [name: string]: import("vue").Slot | undefined;
27
+ }>;
28
+ hasDefaultSlot: boolean;
25
29
  readonly messageBoxStyle: string;
26
30
  readonly messageBoxWidthStyle: Record<"default" | "expand", string>;
27
31
  readonly messageBoxVariantStyle: Record<"information" | "caution" | "warning", string>;
28
32
  readonly messageBoxIconStyle: string;
29
33
  readonly messageBoxIconFillStyle: Record<"information" | "caution" | "warning", string>;
30
34
  readonly messageBoxTitleStyle: string;
35
+ readonly messageBoxBodyStyle: string;
36
+ readonly WizVStack: import("vue").DefineComponent<{
37
+ align: {
38
+ type: PropType<"stretch" | "center" | "end" | "start">;
39
+ required: false;
40
+ };
41
+ justify: {
42
+ type: PropType<"center" | "end" | "start" | "between" | "around" | "evenly">;
43
+ required: false;
44
+ };
45
+ wrap: {
46
+ type: BooleanConstructor;
47
+ required: false;
48
+ };
49
+ gap: {
50
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
51
+ required: false;
52
+ };
53
+ gx: {
54
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
55
+ required: false;
56
+ };
57
+ gy: {
58
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
59
+ required: false;
60
+ };
61
+ p: {
62
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
63
+ required: false;
64
+ };
65
+ pt: {
66
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
67
+ required: false;
68
+ };
69
+ pr: {
70
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
71
+ required: false;
72
+ };
73
+ pb: {
74
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
75
+ required: false;
76
+ };
77
+ pl: {
78
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
79
+ required: false;
80
+ };
81
+ px: {
82
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
83
+ required: false;
84
+ };
85
+ py: {
86
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
87
+ required: false;
88
+ };
89
+ m: {
90
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
91
+ required: false;
92
+ };
93
+ mt: {
94
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
95
+ required: false;
96
+ };
97
+ mr: {
98
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
99
+ required: false;
100
+ };
101
+ mb: {
102
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
103
+ required: false;
104
+ };
105
+ ml: {
106
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
107
+ required: false;
108
+ };
109
+ mx: {
110
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
111
+ required: false;
112
+ };
113
+ my: {
114
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
115
+ required: false;
116
+ };
117
+ width: {
118
+ type: StringConstructor;
119
+ required: false;
120
+ };
121
+ height: {
122
+ type: StringConstructor;
123
+ required: false;
124
+ };
125
+ overflow: {
126
+ type: StringConstructor;
127
+ required: false;
128
+ };
129
+ reverse: {
130
+ type: BooleanConstructor;
131
+ required: false;
132
+ };
133
+ position: {
134
+ type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
135
+ required: false;
136
+ };
137
+ }, {
138
+ readonly WizStack: import("vue").DefineComponent<{
139
+ direction: {
140
+ type: PropType<"horizontal" | "vertical">;
141
+ required: false;
142
+ default: string;
143
+ };
144
+ align: {
145
+ type: PropType<"stretch" | "center" | "end" | "start">;
146
+ required: false;
147
+ default: string;
148
+ };
149
+ justify: {
150
+ type: PropType<"center" | "end" | "start" | "between" | "around" | "evenly">;
151
+ required: false;
152
+ default: string;
153
+ };
154
+ wrap: {
155
+ type: BooleanConstructor;
156
+ required: false;
157
+ default: boolean;
158
+ };
159
+ gap: {
160
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
161
+ required: false;
162
+ };
163
+ gx: {
164
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
165
+ required: false;
166
+ };
167
+ gy: {
168
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
169
+ required: false;
170
+ };
171
+ p: {
172
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
173
+ required: false;
174
+ };
175
+ pt: {
176
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
177
+ required: false;
178
+ };
179
+ pr: {
180
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
181
+ required: false;
182
+ };
183
+ pb: {
184
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
185
+ required: false;
186
+ };
187
+ pl: {
188
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
189
+ required: false;
190
+ };
191
+ px: {
192
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
193
+ required: false;
194
+ };
195
+ py: {
196
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
197
+ required: false;
198
+ };
199
+ m: {
200
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
201
+ required: false;
202
+ };
203
+ mt: {
204
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
205
+ required: false;
206
+ };
207
+ mr: {
208
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
209
+ required: false;
210
+ };
211
+ mb: {
212
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
213
+ required: false;
214
+ };
215
+ ml: {
216
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
217
+ required: false;
218
+ };
219
+ mx: {
220
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
221
+ required: false;
222
+ };
223
+ my: {
224
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
225
+ required: false;
226
+ };
227
+ width: {
228
+ type: StringConstructor;
229
+ required: false;
230
+ default: string;
231
+ };
232
+ height: {
233
+ type: StringConstructor;
234
+ required: false;
235
+ default: string;
236
+ };
237
+ overflow: {
238
+ type: StringConstructor;
239
+ required: false;
240
+ default: string;
241
+ };
242
+ reverse: {
243
+ type: BooleanConstructor;
244
+ required: false;
245
+ };
246
+ position: {
247
+ type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
248
+ required: false;
249
+ };
250
+ }, {
251
+ props: any;
252
+ computedDirection: import("vue").ComputedRef<"horizontal" | "vertical" | "horizontalReverse" | "verticalReverse">;
253
+ readonly stackStyle: string;
254
+ readonly stackDirectionStyle: Record<"horizontal" | "vertical" | "horizontalReverse" | "verticalReverse", string>;
255
+ readonly stackJustifyStyle: Record<"center" | "end" | "start" | "between" | "around" | "evenly", string>;
256
+ readonly stackAlignStyle: Record<"stretch" | "center" | "end" | "start", string>;
257
+ readonly stackWrapStyle: string;
258
+ readonly stackPositionStyle: Record<"fixed" | "absolute" | "relative" | "sticky" | "static", string>;
259
+ readonly gapStyle: Record<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max", string>;
260
+ readonly gapXStyle: Record<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max", string>;
261
+ readonly gapYStyle: Record<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max", string>;
262
+ readonly marginStyle: Record<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max", string>;
263
+ readonly marginXStyle: Record<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max", string>;
264
+ readonly marginYStyle: Record<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max", string>;
265
+ readonly marginTopStyle: Record<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max", string>;
266
+ readonly marginRightStyle: Record<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max", string>;
267
+ readonly marginBottomStyle: Record<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max", string>;
268
+ readonly marginLeftStyle: Record<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max", string>;
269
+ readonly paddingStyle: Record<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max", string>;
270
+ readonly paddingXStyle: Record<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max", string>;
271
+ readonly paddingYStyle: Record<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max", string>;
272
+ readonly paddingTopStyle: Record<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max", string>;
273
+ readonly paddingRightStyle: Record<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max", string>;
274
+ readonly paddingBottomStyle: Record<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max", string>;
275
+ readonly paddingLeftStyle: Record<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max", string>;
276
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
277
+ direction: {
278
+ type: PropType<"horizontal" | "vertical">;
279
+ required: false;
280
+ default: string;
281
+ };
282
+ align: {
283
+ type: PropType<"stretch" | "center" | "end" | "start">;
284
+ required: false;
285
+ default: string;
286
+ };
287
+ justify: {
288
+ type: PropType<"center" | "end" | "start" | "between" | "around" | "evenly">;
289
+ required: false;
290
+ default: string;
291
+ };
292
+ wrap: {
293
+ type: BooleanConstructor;
294
+ required: false;
295
+ default: boolean;
296
+ };
297
+ gap: {
298
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
299
+ required: false;
300
+ };
301
+ gx: {
302
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
303
+ required: false;
304
+ };
305
+ gy: {
306
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
307
+ required: false;
308
+ };
309
+ p: {
310
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
311
+ required: false;
312
+ };
313
+ pt: {
314
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
315
+ required: false;
316
+ };
317
+ pr: {
318
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
319
+ required: false;
320
+ };
321
+ pb: {
322
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
323
+ required: false;
324
+ };
325
+ pl: {
326
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
327
+ required: false;
328
+ };
329
+ px: {
330
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
331
+ required: false;
332
+ };
333
+ py: {
334
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
335
+ required: false;
336
+ };
337
+ m: {
338
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
339
+ required: false;
340
+ };
341
+ mt: {
342
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
343
+ required: false;
344
+ };
345
+ mr: {
346
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
347
+ required: false;
348
+ };
349
+ mb: {
350
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
351
+ required: false;
352
+ };
353
+ ml: {
354
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
355
+ required: false;
356
+ };
357
+ mx: {
358
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
359
+ required: false;
360
+ };
361
+ my: {
362
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
363
+ required: false;
364
+ };
365
+ width: {
366
+ type: StringConstructor;
367
+ required: false;
368
+ default: string;
369
+ };
370
+ height: {
371
+ type: StringConstructor;
372
+ required: false;
373
+ default: string;
374
+ };
375
+ overflow: {
376
+ type: StringConstructor;
377
+ required: false;
378
+ default: string;
379
+ };
380
+ reverse: {
381
+ type: BooleanConstructor;
382
+ required: false;
383
+ };
384
+ position: {
385
+ type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
386
+ required: false;
387
+ };
388
+ }>>, {
389
+ reverse: boolean;
390
+ width: string;
391
+ height: string;
392
+ overflow: string;
393
+ direction: "horizontal" | "vertical";
394
+ wrap: boolean;
395
+ justify: "center" | "end" | "start" | "between" | "around" | "evenly";
396
+ align: "stretch" | "center" | "end" | "start";
397
+ }>;
398
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
399
+ align: {
400
+ type: PropType<"stretch" | "center" | "end" | "start">;
401
+ required: false;
402
+ };
403
+ justify: {
404
+ type: PropType<"center" | "end" | "start" | "between" | "around" | "evenly">;
405
+ required: false;
406
+ };
407
+ wrap: {
408
+ type: BooleanConstructor;
409
+ required: false;
410
+ };
411
+ gap: {
412
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
413
+ required: false;
414
+ };
415
+ gx: {
416
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
417
+ required: false;
418
+ };
419
+ gy: {
420
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
421
+ required: false;
422
+ };
423
+ p: {
424
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
425
+ required: false;
426
+ };
427
+ pt: {
428
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
429
+ required: false;
430
+ };
431
+ pr: {
432
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
433
+ required: false;
434
+ };
435
+ pb: {
436
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
437
+ required: false;
438
+ };
439
+ pl: {
440
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
441
+ required: false;
442
+ };
443
+ px: {
444
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
445
+ required: false;
446
+ };
447
+ py: {
448
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
449
+ required: false;
450
+ };
451
+ m: {
452
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
453
+ required: false;
454
+ };
455
+ mt: {
456
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
457
+ required: false;
458
+ };
459
+ mr: {
460
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
461
+ required: false;
462
+ };
463
+ mb: {
464
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
465
+ required: false;
466
+ };
467
+ ml: {
468
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
469
+ required: false;
470
+ };
471
+ mx: {
472
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
473
+ required: false;
474
+ };
475
+ my: {
476
+ type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
477
+ required: false;
478
+ };
479
+ width: {
480
+ type: StringConstructor;
481
+ required: false;
482
+ };
483
+ height: {
484
+ type: StringConstructor;
485
+ required: false;
486
+ };
487
+ overflow: {
488
+ type: StringConstructor;
489
+ required: false;
490
+ };
491
+ reverse: {
492
+ type: BooleanConstructor;
493
+ required: false;
494
+ };
495
+ position: {
496
+ type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
497
+ required: false;
498
+ };
499
+ }>>, {
500
+ reverse: boolean;
501
+ wrap: boolean;
502
+ }>;
31
503
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
32
504
  title: {
33
505
  type: StringConstructor;