@wizleap-inc/wiz-ui-next 0.7.4 → 0.7.6

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 (49) hide show
  1. package/dist/components/base/accordion/accordion.vue.d.ts +582 -0
  2. package/dist/components/base/accordion/animation-configuration.d.ts +14 -0
  3. package/dist/components/base/accordion/index.d.ts +1 -0
  4. package/dist/components/base/anchor/anchor.vue.d.ts +4 -3
  5. package/dist/components/base/buttons/text/text.vue.d.ts +4 -3
  6. package/dist/components/base/buttons/tiny/tiny.vue.d.ts +4 -3
  7. package/dist/components/base/buttons/toggle/toggle.vue.d.ts +4 -3
  8. package/dist/components/base/calendar/calendar.vue.d.ts +22 -13
  9. package/dist/components/base/calendar/types.d.ts +5 -0
  10. package/dist/components/base/card/card.vue.d.ts +1 -1
  11. package/dist/components/base/dialog/dialog.vue.d.ts +1 -1
  12. package/dist/components/base/dropdown/dropdown-item.vue.d.ts +4 -3
  13. package/dist/components/base/icon/icon.vue.d.ts +4 -3
  14. package/dist/components/base/index.d.ts +2 -0
  15. package/dist/components/base/inputs/{datepicker → date-picker}/date-picker.vue.d.ts +161 -133
  16. package/dist/components/base/inputs/date-range-picker/date-range-picker.vue.d.ts +1067 -0
  17. package/dist/components/base/inputs/date-range-picker/index.d.ts +1 -0
  18. package/dist/components/base/inputs/date-range-picker/types.d.ts +8 -0
  19. package/dist/components/base/inputs/index.d.ts +2 -1
  20. package/dist/components/base/inputs/password/password.vue.d.ts +7 -2
  21. package/dist/components/base/inputs/search/search-popup.vue.d.ts +4 -3
  22. package/dist/components/base/inputs/search/search.vue.d.ts +8 -6
  23. package/dist/components/base/inputs/search-selector/search-selector.vue.d.ts +836 -9
  24. package/dist/components/base/inputs/timepicker/time-picker.vue.d.ts +4 -3
  25. package/dist/components/base/menu/menu-item.vue.d.ts +5 -4
  26. package/dist/components/base/navigation/item.vue.d.ts +61 -1
  27. package/dist/components/base/popup-button-group/index.d.ts +1 -0
  28. package/dist/components/base/popup-button-group/popup-button-group.vue.d.ts +818 -0
  29. package/dist/components/base/popup-button-group/types.d.ts +21 -0
  30. package/dist/components/base/progress-bar/progress-bar.vue.d.ts +12 -0
  31. package/dist/components/base/snackbar/snackbar-controller.vue.d.ts +16 -3
  32. package/dist/components/base/snackbar/snackbar.vue.d.ts +16 -3
  33. package/dist/components/base/tables/card/table.vue.d.ts +25 -2
  34. package/dist/components/base/tables/flat/table.vue.d.ts +25 -2
  35. package/dist/components/base/tables/unstyled/table.vue.d.ts +20 -0
  36. package/dist/components/base/tag/tag.vue.d.ts +4 -3
  37. package/dist/components/base/text/text.vue.d.ts +12 -0
  38. package/dist/components/custom/chat/card/chat-card.vue.d.ts +38 -11
  39. package/dist/components/custom/chat/item/chat-item.vue.d.ts +17 -4
  40. package/dist/components/custom/form/control.vue.d.ts +16 -3
  41. package/dist/components/custom/notification/list/list.vue.d.ts +28 -3
  42. package/dist/components/custom/notification/notification.vue.d.ts +28 -3
  43. package/dist/components/custom/notification/panel/panel.vue.d.ts +16 -3
  44. package/dist/index.d.ts +1 -1
  45. package/dist/style.css +1 -1
  46. package/dist/wiz-ui.es.js +3310 -2716
  47. package/dist/wiz-ui.umd.js +10 -10
  48. package/package.json +2 -1
  49. /package/dist/components/base/inputs/{datepicker → date-picker}/index.d.ts +0 -0
@@ -0,0 +1,582 @@
1
+ import { ColorKeys } from "@wizleap-inc/wiz-ui-constants";
2
+ import { PropType } from "vue";
3
+ declare const _sfc_main: import("vue").DefineComponent<{
4
+ isOpen: {
5
+ type: BooleanConstructor;
6
+ required: true;
7
+ };
8
+ openMessage: {
9
+ type: StringConstructor;
10
+ required: false;
11
+ default: string;
12
+ };
13
+ closeMessage: {
14
+ type: StringConstructor;
15
+ required: false;
16
+ default: string;
17
+ };
18
+ backgroundColor: {
19
+ type: PropType<"gray" | "white">;
20
+ required: false;
21
+ default: string;
22
+ };
23
+ width: {
24
+ type: StringConstructor;
25
+ required: false;
26
+ default: string;
27
+ };
28
+ }, {
29
+ props: any;
30
+ emit: (e: "toggle") => void;
31
+ iconColor: import("vue").ComputedRef<ColorKeys>;
32
+ contentRef: import("vue").Ref<HTMLElement | undefined>;
33
+ isAnimating: import("vue").Ref<boolean>;
34
+ onClick: (event: MouseEvent) => void;
35
+ readonly accordionMessageVariantStyle: Record<"gray" | "white", string>;
36
+ readonly accordionDetailsStyle: Record<"gray" | "white", string>;
37
+ readonly accordionContentStyle: string;
38
+ readonly accordionSummaryStyle: string;
39
+ readonly accordionExpandIconStyle: string;
40
+ readonly accordionRotateIconStyle: string;
41
+ readonly WizHStack: import("vue").DefineComponent<{
42
+ align: {
43
+ type: PropType<"stretch" | "center" | "end" | "start">;
44
+ required: false;
45
+ };
46
+ justify: {
47
+ type: PropType<"center" | "end" | "start" | "between" | "around" | "evenly">;
48
+ required: false;
49
+ };
50
+ wrap: {
51
+ type: BooleanConstructor;
52
+ required: false;
53
+ };
54
+ gap: {
55
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
56
+ required: false;
57
+ };
58
+ gx: {
59
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
60
+ required: false;
61
+ };
62
+ gy: {
63
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
64
+ required: false;
65
+ };
66
+ p: {
67
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
68
+ required: false;
69
+ };
70
+ pt: {
71
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
72
+ required: false;
73
+ };
74
+ pr: {
75
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
76
+ required: false;
77
+ };
78
+ pb: {
79
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
80
+ required: false;
81
+ };
82
+ pl: {
83
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
84
+ required: false;
85
+ };
86
+ px: {
87
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
88
+ required: false;
89
+ };
90
+ py: {
91
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
92
+ required: false;
93
+ };
94
+ m: {
95
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
96
+ required: false;
97
+ };
98
+ mt: {
99
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
100
+ required: false;
101
+ };
102
+ mr: {
103
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
104
+ required: false;
105
+ };
106
+ mb: {
107
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
108
+ required: false;
109
+ };
110
+ ml: {
111
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
112
+ required: false;
113
+ };
114
+ mx: {
115
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
116
+ required: false;
117
+ };
118
+ my: {
119
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
120
+ required: false;
121
+ };
122
+ width: {
123
+ type: StringConstructor;
124
+ required: false;
125
+ };
126
+ height: {
127
+ type: StringConstructor;
128
+ required: false;
129
+ };
130
+ overflow: {
131
+ type: StringConstructor;
132
+ required: false;
133
+ };
134
+ reverse: {
135
+ type: BooleanConstructor;
136
+ required: false;
137
+ };
138
+ position: {
139
+ type: PropType<"absolute" | "relative" | "fixed" | "sticky" | "static">;
140
+ required: false;
141
+ };
142
+ }, {
143
+ readonly WizStack: import("vue").DefineComponent<{
144
+ direction: {
145
+ type: PropType<"horizontal" | "vertical">;
146
+ required: false;
147
+ default: string;
148
+ };
149
+ align: {
150
+ type: PropType<"stretch" | "center" | "end" | "start">;
151
+ required: false;
152
+ default: string;
153
+ };
154
+ justify: {
155
+ type: PropType<"center" | "end" | "start" | "between" | "around" | "evenly">;
156
+ required: false;
157
+ default: string;
158
+ };
159
+ wrap: {
160
+ type: BooleanConstructor;
161
+ required: false;
162
+ default: boolean;
163
+ };
164
+ gap: {
165
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
166
+ required: false;
167
+ };
168
+ gx: {
169
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
170
+ required: false;
171
+ };
172
+ gy: {
173
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
174
+ required: false;
175
+ };
176
+ p: {
177
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
178
+ required: false;
179
+ };
180
+ pt: {
181
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
182
+ required: false;
183
+ };
184
+ pr: {
185
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
186
+ required: false;
187
+ };
188
+ pb: {
189
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
190
+ required: false;
191
+ };
192
+ pl: {
193
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
194
+ required: false;
195
+ };
196
+ px: {
197
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
198
+ required: false;
199
+ };
200
+ py: {
201
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
202
+ required: false;
203
+ };
204
+ m: {
205
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
206
+ required: false;
207
+ };
208
+ mt: {
209
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
210
+ required: false;
211
+ };
212
+ mr: {
213
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
214
+ required: false;
215
+ };
216
+ mb: {
217
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
218
+ required: false;
219
+ };
220
+ ml: {
221
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
222
+ required: false;
223
+ };
224
+ mx: {
225
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
226
+ required: false;
227
+ };
228
+ my: {
229
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
230
+ required: false;
231
+ };
232
+ width: {
233
+ type: StringConstructor;
234
+ required: false;
235
+ default: string;
236
+ };
237
+ height: {
238
+ type: StringConstructor;
239
+ required: false;
240
+ default: string;
241
+ };
242
+ overflow: {
243
+ type: StringConstructor;
244
+ required: false;
245
+ default: string;
246
+ };
247
+ reverse: {
248
+ type: BooleanConstructor;
249
+ required: false;
250
+ };
251
+ position: {
252
+ type: PropType<"absolute" | "relative" | "fixed" | "sticky" | "static">;
253
+ required: false;
254
+ };
255
+ }, {
256
+ props: any;
257
+ computedDirection: import("vue").ComputedRef<"horizontal" | "vertical" | "horizontalReverse" | "verticalReverse">;
258
+ readonly stackStyle: string;
259
+ readonly stackDirectionStyle: Record<"horizontal" | "vertical" | "horizontalReverse" | "verticalReverse", string>;
260
+ readonly stackJustifyStyle: Record<"center" | "end" | "start" | "between" | "around" | "evenly", string>;
261
+ readonly stackAlignStyle: Record<"stretch" | "center" | "end" | "start", string>;
262
+ readonly stackWrapStyle: string;
263
+ readonly stackPositionStyle: Record<"absolute" | "relative" | "fixed" | "sticky" | "static", string>;
264
+ readonly gapStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
265
+ readonly gapXStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
266
+ readonly gapYStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
267
+ readonly marginStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
268
+ readonly marginXStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
269
+ readonly marginYStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
270
+ readonly marginTopStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
271
+ readonly marginRightStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
272
+ readonly marginBottomStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
273
+ readonly marginLeftStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
274
+ readonly paddingStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
275
+ readonly paddingXStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
276
+ readonly paddingYStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
277
+ readonly paddingTopStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
278
+ readonly paddingRightStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
279
+ readonly paddingBottomStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
280
+ readonly paddingLeftStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
281
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
282
+ direction: {
283
+ type: PropType<"horizontal" | "vertical">;
284
+ required: false;
285
+ default: string;
286
+ };
287
+ align: {
288
+ type: PropType<"stretch" | "center" | "end" | "start">;
289
+ required: false;
290
+ default: string;
291
+ };
292
+ justify: {
293
+ type: PropType<"center" | "end" | "start" | "between" | "around" | "evenly">;
294
+ required: false;
295
+ default: string;
296
+ };
297
+ wrap: {
298
+ type: BooleanConstructor;
299
+ required: false;
300
+ default: boolean;
301
+ };
302
+ gap: {
303
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
304
+ required: false;
305
+ };
306
+ gx: {
307
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
308
+ required: false;
309
+ };
310
+ gy: {
311
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
312
+ required: false;
313
+ };
314
+ p: {
315
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
316
+ required: false;
317
+ };
318
+ pt: {
319
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
320
+ required: false;
321
+ };
322
+ pr: {
323
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
324
+ required: false;
325
+ };
326
+ pb: {
327
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
328
+ required: false;
329
+ };
330
+ pl: {
331
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
332
+ required: false;
333
+ };
334
+ px: {
335
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
336
+ required: false;
337
+ };
338
+ py: {
339
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
340
+ required: false;
341
+ };
342
+ m: {
343
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
344
+ required: false;
345
+ };
346
+ mt: {
347
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
348
+ required: false;
349
+ };
350
+ mr: {
351
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
352
+ required: false;
353
+ };
354
+ mb: {
355
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
356
+ required: false;
357
+ };
358
+ ml: {
359
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
360
+ required: false;
361
+ };
362
+ mx: {
363
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
364
+ required: false;
365
+ };
366
+ my: {
367
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
368
+ required: false;
369
+ };
370
+ width: {
371
+ type: StringConstructor;
372
+ required: false;
373
+ default: string;
374
+ };
375
+ height: {
376
+ type: StringConstructor;
377
+ required: false;
378
+ default: string;
379
+ };
380
+ overflow: {
381
+ type: StringConstructor;
382
+ required: false;
383
+ default: string;
384
+ };
385
+ reverse: {
386
+ type: BooleanConstructor;
387
+ required: false;
388
+ };
389
+ position: {
390
+ type: PropType<"absolute" | "relative" | "fixed" | "sticky" | "static">;
391
+ required: false;
392
+ };
393
+ }>>, {
394
+ reverse: boolean;
395
+ width: string;
396
+ height: string;
397
+ overflow: string;
398
+ direction: "horizontal" | "vertical";
399
+ wrap: boolean;
400
+ justify: "center" | "end" | "start" | "between" | "around" | "evenly";
401
+ align: "stretch" | "center" | "end" | "start";
402
+ }>;
403
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
404
+ align: {
405
+ type: PropType<"stretch" | "center" | "end" | "start">;
406
+ required: false;
407
+ };
408
+ justify: {
409
+ type: PropType<"center" | "end" | "start" | "between" | "around" | "evenly">;
410
+ required: false;
411
+ };
412
+ wrap: {
413
+ type: BooleanConstructor;
414
+ required: false;
415
+ };
416
+ gap: {
417
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
418
+ required: false;
419
+ };
420
+ gx: {
421
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
422
+ required: false;
423
+ };
424
+ gy: {
425
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
426
+ required: false;
427
+ };
428
+ p: {
429
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
430
+ required: false;
431
+ };
432
+ pt: {
433
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
434
+ required: false;
435
+ };
436
+ pr: {
437
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
438
+ required: false;
439
+ };
440
+ pb: {
441
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
442
+ required: false;
443
+ };
444
+ pl: {
445
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
446
+ required: false;
447
+ };
448
+ px: {
449
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
450
+ required: false;
451
+ };
452
+ py: {
453
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
454
+ required: false;
455
+ };
456
+ m: {
457
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
458
+ required: false;
459
+ };
460
+ mt: {
461
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
462
+ required: false;
463
+ };
464
+ mr: {
465
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
466
+ required: false;
467
+ };
468
+ mb: {
469
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
470
+ required: false;
471
+ };
472
+ ml: {
473
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
474
+ required: false;
475
+ };
476
+ mx: {
477
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
478
+ required: false;
479
+ };
480
+ my: {
481
+ type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
482
+ required: false;
483
+ };
484
+ width: {
485
+ type: StringConstructor;
486
+ required: false;
487
+ };
488
+ height: {
489
+ type: StringConstructor;
490
+ required: false;
491
+ };
492
+ overflow: {
493
+ type: StringConstructor;
494
+ required: false;
495
+ };
496
+ reverse: {
497
+ type: BooleanConstructor;
498
+ required: false;
499
+ };
500
+ position: {
501
+ type: PropType<"absolute" | "relative" | "fixed" | "sticky" | "static">;
502
+ required: false;
503
+ };
504
+ }>>, {
505
+ reverse: boolean;
506
+ wrap: boolean;
507
+ }>;
508
+ readonly WizIcon: import("vue").DefineComponent<{
509
+ icon: {
510
+ type: PropType<import('../../../components').TIcon>;
511
+ required: true;
512
+ };
513
+ color: {
514
+ type: PropType<ColorKeys | "inherit">;
515
+ required: false;
516
+ default: string;
517
+ };
518
+ size: {
519
+ type: PropType<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6">;
520
+ required: false;
521
+ default: string;
522
+ };
523
+ }, {
524
+ readonly iconStyle: string;
525
+ readonly iconSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
526
+ readonly iconDefaultStyle: string;
527
+ readonly fillStyle: Record<ColorKeys, string>;
528
+ readonly fontSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
529
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
530
+ icon: {
531
+ type: PropType<import('../../../components').TIcon>;
532
+ required: true;
533
+ };
534
+ color: {
535
+ type: PropType<ColorKeys | "inherit">;
536
+ required: false;
537
+ default: string;
538
+ };
539
+ size: {
540
+ type: PropType<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6">;
541
+ required: false;
542
+ default: string;
543
+ };
544
+ }>>, {
545
+ color: ColorKeys | "inherit";
546
+ size: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
547
+ }>;
548
+ readonly WizIExpandMore: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
549
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "toggle"[], "toggle", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
550
+ isOpen: {
551
+ type: BooleanConstructor;
552
+ required: true;
553
+ };
554
+ openMessage: {
555
+ type: StringConstructor;
556
+ required: false;
557
+ default: string;
558
+ };
559
+ closeMessage: {
560
+ type: StringConstructor;
561
+ required: false;
562
+ default: string;
563
+ };
564
+ backgroundColor: {
565
+ type: PropType<"gray" | "white">;
566
+ required: false;
567
+ default: string;
568
+ };
569
+ width: {
570
+ type: StringConstructor;
571
+ required: false;
572
+ default: string;
573
+ };
574
+ }>> & {
575
+ onToggle?: ((...args: any[]) => any) | undefined;
576
+ }, {
577
+ openMessage: string;
578
+ closeMessage: string;
579
+ backgroundColor: "gray" | "white";
580
+ width: string;
581
+ }>;
582
+ export default _sfc_main;
@@ -0,0 +1,14 @@
1
+ export declare const ANIMATION_CONFIGURATION: {
2
+ duration: number;
3
+ easing: string;
4
+ };
5
+ export declare const closingAnimationKeyframes: (content: HTMLElement) => ({
6
+ height: string;
7
+ } | {
8
+ height: number;
9
+ })[];
10
+ export declare const openingAnimationKeyframes: (content: HTMLElement) => ({
11
+ height: number;
12
+ } | {
13
+ height: string;
14
+ })[];
@@ -0,0 +1 @@
1
+ export { default as WizAccordion } from "./accordion.vue";
@@ -55,7 +55,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
55
55
  required: true;
56
56
  };
57
57
  color: {
58
- type: PropType<ColorKeys>;
58
+ type: PropType<ColorKeys | "inherit">;
59
59
  required: false;
60
60
  default: string;
61
61
  };
@@ -67,6 +67,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
67
67
  }, {
68
68
  readonly iconStyle: string;
69
69
  readonly iconSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
70
+ readonly iconDefaultStyle: string;
70
71
  readonly fillStyle: Record<ColorKeys, string>;
71
72
  readonly fontSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
72
73
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -75,7 +76,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
75
76
  required: true;
76
77
  };
77
78
  color: {
78
- type: PropType<ColorKeys>;
79
+ type: PropType<ColorKeys | "inherit">;
79
80
  required: false;
80
81
  default: string;
81
82
  };
@@ -85,7 +86,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
85
86
  default: string;
86
87
  };
87
88
  }>>, {
88
- color: ColorKeys;
89
+ color: ColorKeys | "inherit";
89
90
  size: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
90
91
  }>;
91
92
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{