@wizleap-inc/wiz-ui-next 3.0.0 → 3.1.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.
- package/dist/components/custom/form/control.stories.d.ts +377 -0
- package/dist/components/custom/form/control.vue.d.ts +19 -0
- package/dist/style.css +1 -1
- package/dist/wiz-ui.es.js +1905 -1890
- package/dist/wiz-ui.umd.js +12 -12
- package/package.json +2 -2
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Meta, StoryFn } from '@storybook/vue3';
|
|
2
|
+
import { ColorKeys } from '@wizleap-inc/wiz-ui-constants';
|
|
2
3
|
declare const _default: Meta<{
|
|
3
4
|
new (...args: any[]): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
|
|
4
5
|
htmlFor: {
|
|
@@ -21,6 +22,14 @@ declare const _default: Meta<{
|
|
|
21
22
|
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
22
23
|
default: string;
|
|
23
24
|
};
|
|
25
|
+
borderLeft: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
borderColor: {
|
|
30
|
+
type: import('vue').PropType<ColorKeys>;
|
|
31
|
+
default: string;
|
|
32
|
+
};
|
|
24
33
|
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
25
34
|
htmlFor: {
|
|
26
35
|
type: StringConstructor;
|
|
@@ -42,8 +51,18 @@ declare const _default: Meta<{
|
|
|
42
51
|
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
43
52
|
default: string;
|
|
44
53
|
};
|
|
54
|
+
borderLeft: {
|
|
55
|
+
type: BooleanConstructor;
|
|
56
|
+
default: boolean;
|
|
57
|
+
};
|
|
58
|
+
borderColor: {
|
|
59
|
+
type: import('vue').PropType<ColorKeys>;
|
|
60
|
+
default: string;
|
|
61
|
+
};
|
|
45
62
|
}>>, {
|
|
46
63
|
direction: "horizontal" | "vertical";
|
|
64
|
+
borderColor: ColorKeys;
|
|
65
|
+
borderLeft: boolean;
|
|
47
66
|
required: boolean;
|
|
48
67
|
}, true, {}, {}, {
|
|
49
68
|
P: {};
|
|
@@ -73,8 +92,18 @@ declare const _default: Meta<{
|
|
|
73
92
|
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
74
93
|
default: string;
|
|
75
94
|
};
|
|
95
|
+
borderLeft: {
|
|
96
|
+
type: BooleanConstructor;
|
|
97
|
+
default: boolean;
|
|
98
|
+
};
|
|
99
|
+
borderColor: {
|
|
100
|
+
type: import('vue').PropType<ColorKeys>;
|
|
101
|
+
default: string;
|
|
102
|
+
};
|
|
76
103
|
}>>, {}, {}, {}, {}, {
|
|
77
104
|
direction: "horizontal" | "vertical";
|
|
105
|
+
borderColor: ColorKeys;
|
|
106
|
+
borderLeft: boolean;
|
|
78
107
|
required: boolean;
|
|
79
108
|
}>;
|
|
80
109
|
__isFragment?: undefined;
|
|
@@ -101,8 +130,18 @@ declare const _default: Meta<{
|
|
|
101
130
|
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
102
131
|
default: string;
|
|
103
132
|
};
|
|
133
|
+
borderLeft: {
|
|
134
|
+
type: BooleanConstructor;
|
|
135
|
+
default: boolean;
|
|
136
|
+
};
|
|
137
|
+
borderColor: {
|
|
138
|
+
type: import('vue').PropType<ColorKeys>;
|
|
139
|
+
default: string;
|
|
140
|
+
};
|
|
104
141
|
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
105
142
|
direction: "horizontal" | "vertical";
|
|
143
|
+
borderColor: ColorKeys;
|
|
144
|
+
borderLeft: boolean;
|
|
106
145
|
required: boolean;
|
|
107
146
|
}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
108
147
|
$slots: {
|
|
@@ -132,6 +171,14 @@ export declare const Default: StoryFn<{
|
|
|
132
171
|
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
133
172
|
default: string;
|
|
134
173
|
};
|
|
174
|
+
borderLeft: {
|
|
175
|
+
type: BooleanConstructor;
|
|
176
|
+
default: boolean;
|
|
177
|
+
};
|
|
178
|
+
borderColor: {
|
|
179
|
+
type: import('vue').PropType<ColorKeys>;
|
|
180
|
+
default: string;
|
|
181
|
+
};
|
|
135
182
|
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
136
183
|
htmlFor: {
|
|
137
184
|
type: StringConstructor;
|
|
@@ -153,8 +200,18 @@ export declare const Default: StoryFn<{
|
|
|
153
200
|
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
154
201
|
default: string;
|
|
155
202
|
};
|
|
203
|
+
borderLeft: {
|
|
204
|
+
type: BooleanConstructor;
|
|
205
|
+
default: boolean;
|
|
206
|
+
};
|
|
207
|
+
borderColor: {
|
|
208
|
+
type: import('vue').PropType<ColorKeys>;
|
|
209
|
+
default: string;
|
|
210
|
+
};
|
|
156
211
|
}>>, {
|
|
157
212
|
direction: "horizontal" | "vertical";
|
|
213
|
+
borderColor: ColorKeys;
|
|
214
|
+
borderLeft: boolean;
|
|
158
215
|
required: boolean;
|
|
159
216
|
}, true, {}, {}, {
|
|
160
217
|
P: {};
|
|
@@ -184,8 +241,18 @@ export declare const Default: StoryFn<{
|
|
|
184
241
|
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
185
242
|
default: string;
|
|
186
243
|
};
|
|
244
|
+
borderLeft: {
|
|
245
|
+
type: BooleanConstructor;
|
|
246
|
+
default: boolean;
|
|
247
|
+
};
|
|
248
|
+
borderColor: {
|
|
249
|
+
type: import('vue').PropType<ColorKeys>;
|
|
250
|
+
default: string;
|
|
251
|
+
};
|
|
187
252
|
}>>, {}, {}, {}, {}, {
|
|
188
253
|
direction: "horizontal" | "vertical";
|
|
254
|
+
borderColor: ColorKeys;
|
|
255
|
+
borderLeft: boolean;
|
|
189
256
|
required: boolean;
|
|
190
257
|
}>;
|
|
191
258
|
__isFragment?: undefined;
|
|
@@ -212,8 +279,18 @@ export declare const Default: StoryFn<{
|
|
|
212
279
|
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
213
280
|
default: string;
|
|
214
281
|
};
|
|
282
|
+
borderLeft: {
|
|
283
|
+
type: BooleanConstructor;
|
|
284
|
+
default: boolean;
|
|
285
|
+
};
|
|
286
|
+
borderColor: {
|
|
287
|
+
type: import('vue').PropType<ColorKeys>;
|
|
288
|
+
default: string;
|
|
289
|
+
};
|
|
215
290
|
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
216
291
|
direction: "horizontal" | "vertical";
|
|
292
|
+
borderColor: ColorKeys;
|
|
293
|
+
borderLeft: boolean;
|
|
217
294
|
required: boolean;
|
|
218
295
|
}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
219
296
|
$slots: {
|
|
@@ -242,6 +319,14 @@ export declare const Direction: StoryFn<{
|
|
|
242
319
|
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
243
320
|
default: string;
|
|
244
321
|
};
|
|
322
|
+
borderLeft: {
|
|
323
|
+
type: BooleanConstructor;
|
|
324
|
+
default: boolean;
|
|
325
|
+
};
|
|
326
|
+
borderColor: {
|
|
327
|
+
type: import('vue').PropType<ColorKeys>;
|
|
328
|
+
default: string;
|
|
329
|
+
};
|
|
245
330
|
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
246
331
|
htmlFor: {
|
|
247
332
|
type: StringConstructor;
|
|
@@ -263,8 +348,18 @@ export declare const Direction: StoryFn<{
|
|
|
263
348
|
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
264
349
|
default: string;
|
|
265
350
|
};
|
|
351
|
+
borderLeft: {
|
|
352
|
+
type: BooleanConstructor;
|
|
353
|
+
default: boolean;
|
|
354
|
+
};
|
|
355
|
+
borderColor: {
|
|
356
|
+
type: import('vue').PropType<ColorKeys>;
|
|
357
|
+
default: string;
|
|
358
|
+
};
|
|
266
359
|
}>>, {
|
|
267
360
|
direction: "horizontal" | "vertical";
|
|
361
|
+
borderColor: ColorKeys;
|
|
362
|
+
borderLeft: boolean;
|
|
268
363
|
required: boolean;
|
|
269
364
|
}, true, {}, {}, {
|
|
270
365
|
P: {};
|
|
@@ -294,8 +389,18 @@ export declare const Direction: StoryFn<{
|
|
|
294
389
|
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
295
390
|
default: string;
|
|
296
391
|
};
|
|
392
|
+
borderLeft: {
|
|
393
|
+
type: BooleanConstructor;
|
|
394
|
+
default: boolean;
|
|
395
|
+
};
|
|
396
|
+
borderColor: {
|
|
397
|
+
type: import('vue').PropType<ColorKeys>;
|
|
398
|
+
default: string;
|
|
399
|
+
};
|
|
297
400
|
}>>, {}, {}, {}, {}, {
|
|
298
401
|
direction: "horizontal" | "vertical";
|
|
402
|
+
borderColor: ColorKeys;
|
|
403
|
+
borderLeft: boolean;
|
|
299
404
|
required: boolean;
|
|
300
405
|
}>;
|
|
301
406
|
__isFragment?: undefined;
|
|
@@ -322,8 +427,18 @@ export declare const Direction: StoryFn<{
|
|
|
322
427
|
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
323
428
|
default: string;
|
|
324
429
|
};
|
|
430
|
+
borderLeft: {
|
|
431
|
+
type: BooleanConstructor;
|
|
432
|
+
default: boolean;
|
|
433
|
+
};
|
|
434
|
+
borderColor: {
|
|
435
|
+
type: import('vue').PropType<ColorKeys>;
|
|
436
|
+
default: string;
|
|
437
|
+
};
|
|
325
438
|
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
326
439
|
direction: "horizontal" | "vertical";
|
|
440
|
+
borderColor: ColorKeys;
|
|
441
|
+
borderLeft: boolean;
|
|
327
442
|
required: boolean;
|
|
328
443
|
}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
329
444
|
$slots: {
|
|
@@ -352,6 +467,14 @@ export declare const HtmlFor: StoryFn<{
|
|
|
352
467
|
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
353
468
|
default: string;
|
|
354
469
|
};
|
|
470
|
+
borderLeft: {
|
|
471
|
+
type: BooleanConstructor;
|
|
472
|
+
default: boolean;
|
|
473
|
+
};
|
|
474
|
+
borderColor: {
|
|
475
|
+
type: import('vue').PropType<ColorKeys>;
|
|
476
|
+
default: string;
|
|
477
|
+
};
|
|
355
478
|
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
356
479
|
htmlFor: {
|
|
357
480
|
type: StringConstructor;
|
|
@@ -373,8 +496,18 @@ export declare const HtmlFor: StoryFn<{
|
|
|
373
496
|
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
374
497
|
default: string;
|
|
375
498
|
};
|
|
499
|
+
borderLeft: {
|
|
500
|
+
type: BooleanConstructor;
|
|
501
|
+
default: boolean;
|
|
502
|
+
};
|
|
503
|
+
borderColor: {
|
|
504
|
+
type: import('vue').PropType<ColorKeys>;
|
|
505
|
+
default: string;
|
|
506
|
+
};
|
|
376
507
|
}>>, {
|
|
377
508
|
direction: "horizontal" | "vertical";
|
|
509
|
+
borderColor: ColorKeys;
|
|
510
|
+
borderLeft: boolean;
|
|
378
511
|
required: boolean;
|
|
379
512
|
}, true, {}, {}, {
|
|
380
513
|
P: {};
|
|
@@ -404,8 +537,18 @@ export declare const HtmlFor: StoryFn<{
|
|
|
404
537
|
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
405
538
|
default: string;
|
|
406
539
|
};
|
|
540
|
+
borderLeft: {
|
|
541
|
+
type: BooleanConstructor;
|
|
542
|
+
default: boolean;
|
|
543
|
+
};
|
|
544
|
+
borderColor: {
|
|
545
|
+
type: import('vue').PropType<ColorKeys>;
|
|
546
|
+
default: string;
|
|
547
|
+
};
|
|
407
548
|
}>>, {}, {}, {}, {}, {
|
|
408
549
|
direction: "horizontal" | "vertical";
|
|
550
|
+
borderColor: ColorKeys;
|
|
551
|
+
borderLeft: boolean;
|
|
409
552
|
required: boolean;
|
|
410
553
|
}>;
|
|
411
554
|
__isFragment?: undefined;
|
|
@@ -432,8 +575,18 @@ export declare const HtmlFor: StoryFn<{
|
|
|
432
575
|
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
433
576
|
default: string;
|
|
434
577
|
};
|
|
578
|
+
borderLeft: {
|
|
579
|
+
type: BooleanConstructor;
|
|
580
|
+
default: boolean;
|
|
581
|
+
};
|
|
582
|
+
borderColor: {
|
|
583
|
+
type: import('vue').PropType<ColorKeys>;
|
|
584
|
+
default: string;
|
|
585
|
+
};
|
|
435
586
|
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
436
587
|
direction: "horizontal" | "vertical";
|
|
588
|
+
borderColor: ColorKeys;
|
|
589
|
+
borderLeft: boolean;
|
|
437
590
|
required: boolean;
|
|
438
591
|
}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
439
592
|
$slots: {
|
|
@@ -462,6 +615,14 @@ export declare const Required: StoryFn<{
|
|
|
462
615
|
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
463
616
|
default: string;
|
|
464
617
|
};
|
|
618
|
+
borderLeft: {
|
|
619
|
+
type: BooleanConstructor;
|
|
620
|
+
default: boolean;
|
|
621
|
+
};
|
|
622
|
+
borderColor: {
|
|
623
|
+
type: import('vue').PropType<ColorKeys>;
|
|
624
|
+
default: string;
|
|
625
|
+
};
|
|
465
626
|
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
466
627
|
htmlFor: {
|
|
467
628
|
type: StringConstructor;
|
|
@@ -483,8 +644,18 @@ export declare const Required: StoryFn<{
|
|
|
483
644
|
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
484
645
|
default: string;
|
|
485
646
|
};
|
|
647
|
+
borderLeft: {
|
|
648
|
+
type: BooleanConstructor;
|
|
649
|
+
default: boolean;
|
|
650
|
+
};
|
|
651
|
+
borderColor: {
|
|
652
|
+
type: import('vue').PropType<ColorKeys>;
|
|
653
|
+
default: string;
|
|
654
|
+
};
|
|
486
655
|
}>>, {
|
|
487
656
|
direction: "horizontal" | "vertical";
|
|
657
|
+
borderColor: ColorKeys;
|
|
658
|
+
borderLeft: boolean;
|
|
488
659
|
required: boolean;
|
|
489
660
|
}, true, {}, {}, {
|
|
490
661
|
P: {};
|
|
@@ -514,8 +685,18 @@ export declare const Required: StoryFn<{
|
|
|
514
685
|
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
515
686
|
default: string;
|
|
516
687
|
};
|
|
688
|
+
borderLeft: {
|
|
689
|
+
type: BooleanConstructor;
|
|
690
|
+
default: boolean;
|
|
691
|
+
};
|
|
692
|
+
borderColor: {
|
|
693
|
+
type: import('vue').PropType<ColorKeys>;
|
|
694
|
+
default: string;
|
|
695
|
+
};
|
|
517
696
|
}>>, {}, {}, {}, {}, {
|
|
518
697
|
direction: "horizontal" | "vertical";
|
|
698
|
+
borderColor: ColorKeys;
|
|
699
|
+
borderLeft: boolean;
|
|
519
700
|
required: boolean;
|
|
520
701
|
}>;
|
|
521
702
|
__isFragment?: undefined;
|
|
@@ -542,8 +723,18 @@ export declare const Required: StoryFn<{
|
|
|
542
723
|
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
543
724
|
default: string;
|
|
544
725
|
};
|
|
726
|
+
borderLeft: {
|
|
727
|
+
type: BooleanConstructor;
|
|
728
|
+
default: boolean;
|
|
729
|
+
};
|
|
730
|
+
borderColor: {
|
|
731
|
+
type: import('vue').PropType<ColorKeys>;
|
|
732
|
+
default: string;
|
|
733
|
+
};
|
|
545
734
|
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
546
735
|
direction: "horizontal" | "vertical";
|
|
736
|
+
borderColor: ColorKeys;
|
|
737
|
+
borderLeft: boolean;
|
|
547
738
|
required: boolean;
|
|
548
739
|
}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
549
740
|
$slots: {
|
|
@@ -572,6 +763,14 @@ export declare const Error: StoryFn<{
|
|
|
572
763
|
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
573
764
|
default: string;
|
|
574
765
|
};
|
|
766
|
+
borderLeft: {
|
|
767
|
+
type: BooleanConstructor;
|
|
768
|
+
default: boolean;
|
|
769
|
+
};
|
|
770
|
+
borderColor: {
|
|
771
|
+
type: import('vue').PropType<ColorKeys>;
|
|
772
|
+
default: string;
|
|
773
|
+
};
|
|
575
774
|
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
576
775
|
htmlFor: {
|
|
577
776
|
type: StringConstructor;
|
|
@@ -593,8 +792,18 @@ export declare const Error: StoryFn<{
|
|
|
593
792
|
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
594
793
|
default: string;
|
|
595
794
|
};
|
|
795
|
+
borderLeft: {
|
|
796
|
+
type: BooleanConstructor;
|
|
797
|
+
default: boolean;
|
|
798
|
+
};
|
|
799
|
+
borderColor: {
|
|
800
|
+
type: import('vue').PropType<ColorKeys>;
|
|
801
|
+
default: string;
|
|
802
|
+
};
|
|
596
803
|
}>>, {
|
|
597
804
|
direction: "horizontal" | "vertical";
|
|
805
|
+
borderColor: ColorKeys;
|
|
806
|
+
borderLeft: boolean;
|
|
598
807
|
required: boolean;
|
|
599
808
|
}, true, {}, {}, {
|
|
600
809
|
P: {};
|
|
@@ -624,8 +833,18 @@ export declare const Error: StoryFn<{
|
|
|
624
833
|
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
625
834
|
default: string;
|
|
626
835
|
};
|
|
836
|
+
borderLeft: {
|
|
837
|
+
type: BooleanConstructor;
|
|
838
|
+
default: boolean;
|
|
839
|
+
};
|
|
840
|
+
borderColor: {
|
|
841
|
+
type: import('vue').PropType<ColorKeys>;
|
|
842
|
+
default: string;
|
|
843
|
+
};
|
|
627
844
|
}>>, {}, {}, {}, {}, {
|
|
628
845
|
direction: "horizontal" | "vertical";
|
|
846
|
+
borderColor: ColorKeys;
|
|
847
|
+
borderLeft: boolean;
|
|
629
848
|
required: boolean;
|
|
630
849
|
}>;
|
|
631
850
|
__isFragment?: undefined;
|
|
@@ -652,8 +871,166 @@ export declare const Error: StoryFn<{
|
|
|
652
871
|
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
653
872
|
default: string;
|
|
654
873
|
};
|
|
874
|
+
borderLeft: {
|
|
875
|
+
type: BooleanConstructor;
|
|
876
|
+
default: boolean;
|
|
877
|
+
};
|
|
878
|
+
borderColor: {
|
|
879
|
+
type: import('vue').PropType<ColorKeys>;
|
|
880
|
+
default: string;
|
|
881
|
+
};
|
|
882
|
+
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
883
|
+
direction: "horizontal" | "vertical";
|
|
884
|
+
borderColor: ColorKeys;
|
|
885
|
+
borderLeft: boolean;
|
|
886
|
+
required: boolean;
|
|
887
|
+
}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
888
|
+
$slots: {
|
|
889
|
+
default?(_: {}): any;
|
|
890
|
+
};
|
|
891
|
+
})>;
|
|
892
|
+
export declare const BorderLeft: StoryFn<{
|
|
893
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
|
|
894
|
+
htmlFor: {
|
|
895
|
+
type: StringConstructor;
|
|
896
|
+
required: false;
|
|
897
|
+
};
|
|
898
|
+
label: {
|
|
899
|
+
type: StringConstructor;
|
|
900
|
+
required: true;
|
|
901
|
+
};
|
|
902
|
+
required: {
|
|
903
|
+
type: BooleanConstructor;
|
|
904
|
+
default: boolean;
|
|
905
|
+
};
|
|
906
|
+
error: {
|
|
907
|
+
type: StringConstructor;
|
|
908
|
+
required: false;
|
|
909
|
+
};
|
|
910
|
+
direction: {
|
|
911
|
+
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
912
|
+
default: string;
|
|
913
|
+
};
|
|
914
|
+
borderLeft: {
|
|
915
|
+
type: BooleanConstructor;
|
|
916
|
+
default: boolean;
|
|
917
|
+
};
|
|
918
|
+
borderColor: {
|
|
919
|
+
type: import('vue').PropType<ColorKeys>;
|
|
920
|
+
default: string;
|
|
921
|
+
};
|
|
922
|
+
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
923
|
+
htmlFor: {
|
|
924
|
+
type: StringConstructor;
|
|
925
|
+
required: false;
|
|
926
|
+
};
|
|
927
|
+
label: {
|
|
928
|
+
type: StringConstructor;
|
|
929
|
+
required: true;
|
|
930
|
+
};
|
|
931
|
+
required: {
|
|
932
|
+
type: BooleanConstructor;
|
|
933
|
+
default: boolean;
|
|
934
|
+
};
|
|
935
|
+
error: {
|
|
936
|
+
type: StringConstructor;
|
|
937
|
+
required: false;
|
|
938
|
+
};
|
|
939
|
+
direction: {
|
|
940
|
+
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
941
|
+
default: string;
|
|
942
|
+
};
|
|
943
|
+
borderLeft: {
|
|
944
|
+
type: BooleanConstructor;
|
|
945
|
+
default: boolean;
|
|
946
|
+
};
|
|
947
|
+
borderColor: {
|
|
948
|
+
type: import('vue').PropType<ColorKeys>;
|
|
949
|
+
default: string;
|
|
950
|
+
};
|
|
951
|
+
}>>, {
|
|
952
|
+
direction: "horizontal" | "vertical";
|
|
953
|
+
borderColor: ColorKeys;
|
|
954
|
+
borderLeft: boolean;
|
|
955
|
+
required: boolean;
|
|
956
|
+
}, true, {}, {}, {
|
|
957
|
+
P: {};
|
|
958
|
+
B: {};
|
|
959
|
+
D: {};
|
|
960
|
+
C: {};
|
|
961
|
+
M: {};
|
|
962
|
+
Defaults: {};
|
|
963
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
964
|
+
htmlFor: {
|
|
965
|
+
type: StringConstructor;
|
|
966
|
+
required: false;
|
|
967
|
+
};
|
|
968
|
+
label: {
|
|
969
|
+
type: StringConstructor;
|
|
970
|
+
required: true;
|
|
971
|
+
};
|
|
972
|
+
required: {
|
|
973
|
+
type: BooleanConstructor;
|
|
974
|
+
default: boolean;
|
|
975
|
+
};
|
|
976
|
+
error: {
|
|
977
|
+
type: StringConstructor;
|
|
978
|
+
required: false;
|
|
979
|
+
};
|
|
980
|
+
direction: {
|
|
981
|
+
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
982
|
+
default: string;
|
|
983
|
+
};
|
|
984
|
+
borderLeft: {
|
|
985
|
+
type: BooleanConstructor;
|
|
986
|
+
default: boolean;
|
|
987
|
+
};
|
|
988
|
+
borderColor: {
|
|
989
|
+
type: import('vue').PropType<ColorKeys>;
|
|
990
|
+
default: string;
|
|
991
|
+
};
|
|
992
|
+
}>>, {}, {}, {}, {}, {
|
|
993
|
+
direction: "horizontal" | "vertical";
|
|
994
|
+
borderColor: ColorKeys;
|
|
995
|
+
borderLeft: boolean;
|
|
996
|
+
required: boolean;
|
|
997
|
+
}>;
|
|
998
|
+
__isFragment?: undefined;
|
|
999
|
+
__isTeleport?: undefined;
|
|
1000
|
+
__isSuspense?: undefined;
|
|
1001
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
1002
|
+
htmlFor: {
|
|
1003
|
+
type: StringConstructor;
|
|
1004
|
+
required: false;
|
|
1005
|
+
};
|
|
1006
|
+
label: {
|
|
1007
|
+
type: StringConstructor;
|
|
1008
|
+
required: true;
|
|
1009
|
+
};
|
|
1010
|
+
required: {
|
|
1011
|
+
type: BooleanConstructor;
|
|
1012
|
+
default: boolean;
|
|
1013
|
+
};
|
|
1014
|
+
error: {
|
|
1015
|
+
type: StringConstructor;
|
|
1016
|
+
required: false;
|
|
1017
|
+
};
|
|
1018
|
+
direction: {
|
|
1019
|
+
type: import('vue').PropType<"horizontal" | "vertical">;
|
|
1020
|
+
default: string;
|
|
1021
|
+
};
|
|
1022
|
+
borderLeft: {
|
|
1023
|
+
type: BooleanConstructor;
|
|
1024
|
+
default: boolean;
|
|
1025
|
+
};
|
|
1026
|
+
borderColor: {
|
|
1027
|
+
type: import('vue').PropType<ColorKeys>;
|
|
1028
|
+
default: string;
|
|
1029
|
+
};
|
|
655
1030
|
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
656
1031
|
direction: "horizontal" | "vertical";
|
|
1032
|
+
borderColor: ColorKeys;
|
|
1033
|
+
borderLeft: boolean;
|
|
657
1034
|
required: boolean;
|
|
658
1035
|
}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
659
1036
|
$slots: {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ColorKeys } from '@wizleap-inc/wiz-ui-constants';
|
|
1
2
|
import { PropType } from 'vue';
|
|
2
3
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
3
4
|
htmlFor: {
|
|
@@ -20,6 +21,14 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
20
21
|
type: PropType<"horizontal" | "vertical">;
|
|
21
22
|
default: string;
|
|
22
23
|
};
|
|
24
|
+
borderLeft: {
|
|
25
|
+
type: BooleanConstructor;
|
|
26
|
+
default: boolean;
|
|
27
|
+
};
|
|
28
|
+
borderColor: {
|
|
29
|
+
type: PropType<ColorKeys>;
|
|
30
|
+
default: string;
|
|
31
|
+
};
|
|
23
32
|
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
24
33
|
htmlFor: {
|
|
25
34
|
type: StringConstructor;
|
|
@@ -41,8 +50,18 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
41
50
|
type: PropType<"horizontal" | "vertical">;
|
|
42
51
|
default: string;
|
|
43
52
|
};
|
|
53
|
+
borderLeft: {
|
|
54
|
+
type: BooleanConstructor;
|
|
55
|
+
default: boolean;
|
|
56
|
+
};
|
|
57
|
+
borderColor: {
|
|
58
|
+
type: PropType<ColorKeys>;
|
|
59
|
+
default: string;
|
|
60
|
+
};
|
|
44
61
|
}>>, {
|
|
45
62
|
direction: "horizontal" | "vertical";
|
|
63
|
+
borderColor: ColorKeys;
|
|
64
|
+
borderLeft: boolean;
|
|
46
65
|
required: boolean;
|
|
47
66
|
}, {}>, {
|
|
48
67
|
default?(_: {}): any;
|