@wizleap-inc/wiz-ui-next 0.6.1 → 0.6.3

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