@wizleap-inc/wiz-ui-next 2.7.1 → 2.8.0

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;
@@ -1123,7 +1123,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1123
1123
  required: false;
1124
1124
  default: string;
1125
1125
  };
1126
- hover: {
1126
+ isOpen: {
1127
1127
  type: BooleanConstructor;
1128
1128
  required: false;
1129
1129
  default: boolean;
@@ -1361,7 +1361,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1361
1361
  required: false;
1362
1362
  default: string;
1363
1363
  };
1364
- hover: {
1364
+ isOpen: {
1365
1365
  type: BooleanConstructor;
1366
1366
  required: false;
1367
1367
  default: boolean;
@@ -1377,9 +1377,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
1377
1377
  default: boolean;
1378
1378
  };
1379
1379
  }>>, {
1380
+ isOpen: boolean;
1380
1381
  direction: "left" | "right" | "top" | "bottom";
1381
1382
  expand: boolean;
1382
- hover: boolean;
1383
1383
  isDirectionFixed: boolean;
1384
1384
  }>;
1385
1385
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("toggle" | "setLock" | "unlock")[], "toggle" | "setLock" | "unlock", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -170,7 +170,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
170
170
  required: false;
171
171
  default: string;
172
172
  };
173
- hover: {
173
+ isOpen: {
174
174
  type: BooleanConstructor;
175
175
  required: false;
176
176
  default: boolean;
@@ -408,7 +408,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
408
408
  required: false;
409
409
  default: string;
410
410
  };
411
- hover: {
411
+ isOpen: {
412
412
  type: BooleanConstructor;
413
413
  required: false;
414
414
  default: boolean;
@@ -424,9 +424,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
424
424
  default: boolean;
425
425
  };
426
426
  }>>, {
427
+ isOpen: boolean;
427
428
  direction: "left" | "right" | "top" | "bottom";
428
429
  expand: boolean;
429
- hover: boolean;
430
430
  isDirectionFixed: boolean;
431
431
  }>;
432
432
  readonly WizProgressPoint: import("vue").DefineComponent<{
@@ -1,3 +1,4 @@
1
+ import { PropType } from "vue";
1
2
  declare const _sfc_main: import("vue").DefineComponent<{
2
3
  label: {
3
4
  type: StringConstructor;
@@ -15,6 +16,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
15
16
  type: NumberConstructor;
16
17
  required: false;
17
18
  };
19
+ badgeColor: {
20
+ type: PropType<"green" | "red">;
21
+ required: false;
22
+ default: string;
23
+ };
18
24
  width: {
19
25
  type: StringConstructor;
20
26
  required: false;
@@ -25,10 +31,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
25
31
  emit: (event: "click") => void;
26
32
  onClick: () => true | void;
27
33
  variant: import("vue").ComputedRef<"default" | "active" | "disabled">;
34
+ readonly tabPaneLabelStyle: string;
35
+ readonly tabPaneNotificationStyle: Record<"green" | "red", string>;
28
36
  readonly tabPaneStyle: string;
29
37
  readonly tabPaneVariantStyle: Record<"default" | "active" | "disabled", string>;
30
- readonly tabPaneLabelStyle: string;
31
- readonly tabPaneNotificationStyle: string;
32
38
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
33
39
  label: {
34
40
  type: StringConstructor;
@@ -46,6 +52,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
46
52
  type: NumberConstructor;
47
53
  required: false;
48
54
  };
55
+ badgeColor: {
56
+ type: PropType<"green" | "red">;
57
+ required: false;
58
+ default: string;
59
+ };
49
60
  width: {
50
61
  type: StringConstructor;
51
62
  required: false;
@@ -57,5 +68,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
57
68
  width: string;
58
69
  active: boolean;
59
70
  disabled: boolean;
71
+ badgeColor: "green" | "red";
60
72
  }>;
61
73
  export default _sfc_main;
@@ -509,6 +509,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
509
509
  type: NumberConstructor;
510
510
  required: false;
511
511
  };
512
+ badgeColor: {
513
+ type: PropType<"green" | "red">;
514
+ required: false;
515
+ default: string;
516
+ };
512
517
  width: {
513
518
  type: StringConstructor;
514
519
  required: false;
@@ -519,10 +524,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
519
524
  emit: (event: "click") => void;
520
525
  onClick: () => true | void;
521
526
  variant: import("vue").ComputedRef<"default" | "active" | "disabled">;
527
+ readonly tabPaneLabelStyle: string;
528
+ readonly tabPaneNotificationStyle: Record<"green" | "red", string>;
522
529
  readonly tabPaneStyle: string;
523
530
  readonly tabPaneVariantStyle: Record<"default" | "active" | "disabled", string>;
524
- readonly tabPaneLabelStyle: string;
525
- readonly tabPaneNotificationStyle: string;
526
531
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
527
532
  label: {
528
533
  type: StringConstructor;
@@ -540,6 +545,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
540
545
  type: NumberConstructor;
541
546
  required: false;
542
547
  };
548
+ badgeColor: {
549
+ type: PropType<"green" | "red">;
550
+ required: false;
551
+ default: string;
552
+ };
543
553
  width: {
544
554
  type: StringConstructor;
545
555
  required: false;
@@ -551,6 +561,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
551
561
  width: string;
552
562
  active: boolean;
553
563
  disabled: boolean;
564
+ badgeColor: "green" | "red";
554
565
  }>;
555
566
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
556
567
  modelValue: {