@wizleap-inc/wiz-ui-next 3.4.1 → 3.5.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/base/inputs/base/base.vue.d.ts +6 -0
- package/dist/components/base/inputs/date-range-picker/date-range-picker.stories.d.ts +77 -0
- package/dist/components/base/inputs/date-range-picker/date-range-picker.vue.d.ts +17 -0
- package/dist/components/base/inputs/password/password.stories.d.ts +15 -0
- package/dist/components/base/inputs/password/password.vue.d.ts +9 -0
- package/dist/components/base/inputs/search-input/search-input.vue.d.ts +3 -0
- package/dist/components/base/inputs/search-selector/search-selector.vue.d.ts +3 -0
- package/dist/components/base/inputs/selectbox/selectbox.vue.d.ts +3 -0
- package/dist/components/base/inputs/text/text.stories.d.ts +21 -0
- package/dist/components/base/inputs/text/text.vue.d.ts +9 -0
- package/dist/style.css +1 -1
- package/dist/wiz-ui.es.js +2292 -2271
- package/dist/wiz-ui.umd.js +13 -13
- package/package.json +2 -2
|
@@ -17,6 +17,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
17
17
|
type: BooleanConstructor;
|
|
18
18
|
required: false;
|
|
19
19
|
};
|
|
20
|
+
/**
|
|
21
|
+
* @deprecated このプロパティは将来のバージョンで削除される予定です。代わりに `width="100%"` を使用してください。
|
|
22
|
+
*/
|
|
20
23
|
expand: {
|
|
21
24
|
type: BooleanConstructor;
|
|
22
25
|
required: false;
|
|
@@ -65,6 +68,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
65
68
|
type: BooleanConstructor;
|
|
66
69
|
required: false;
|
|
67
70
|
};
|
|
71
|
+
/**
|
|
72
|
+
* @deprecated このプロパティは将来のバージョンで削除される予定です。代わりに `width="100%"` を使用してください。
|
|
73
|
+
*/
|
|
68
74
|
expand: {
|
|
69
75
|
type: BooleanConstructor;
|
|
70
76
|
required: false;
|
|
@@ -13,6 +13,11 @@ export declare const Default: StoryFn<import('vue').DefineComponent<{
|
|
|
13
13
|
required: false;
|
|
14
14
|
default: boolean;
|
|
15
15
|
};
|
|
16
|
+
width: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
required: false;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
16
21
|
disabled: {
|
|
17
22
|
type: BooleanConstructor;
|
|
18
23
|
required: false;
|
|
@@ -69,6 +74,11 @@ export declare const Default: StoryFn<import('vue').DefineComponent<{
|
|
|
69
74
|
required: false;
|
|
70
75
|
default: boolean;
|
|
71
76
|
};
|
|
77
|
+
width: {
|
|
78
|
+
type: StringConstructor;
|
|
79
|
+
required: false;
|
|
80
|
+
default: string;
|
|
81
|
+
};
|
|
72
82
|
disabled: {
|
|
73
83
|
type: BooleanConstructor;
|
|
74
84
|
required: false;
|
|
@@ -116,6 +126,7 @@ export declare const Default: StoryFn<import('vue').DefineComponent<{
|
|
|
116
126
|
"onUpdate:isOpen"?: ((value: boolean) => any) | undefined;
|
|
117
127
|
"onUpdate:selectBoxValue"?: ((value: string) => any) | undefined;
|
|
118
128
|
}, {
|
|
129
|
+
width: string;
|
|
119
130
|
disabled: boolean;
|
|
120
131
|
expand: boolean;
|
|
121
132
|
variant: "regular" | "mini";
|
|
@@ -134,6 +145,11 @@ export declare const Disabled: StoryFn<import('vue').DefineComponent<{
|
|
|
134
145
|
required: false;
|
|
135
146
|
default: boolean;
|
|
136
147
|
};
|
|
148
|
+
width: {
|
|
149
|
+
type: StringConstructor;
|
|
150
|
+
required: false;
|
|
151
|
+
default: string;
|
|
152
|
+
};
|
|
137
153
|
disabled: {
|
|
138
154
|
type: BooleanConstructor;
|
|
139
155
|
required: false;
|
|
@@ -190,6 +206,11 @@ export declare const Disabled: StoryFn<import('vue').DefineComponent<{
|
|
|
190
206
|
required: false;
|
|
191
207
|
default: boolean;
|
|
192
208
|
};
|
|
209
|
+
width: {
|
|
210
|
+
type: StringConstructor;
|
|
211
|
+
required: false;
|
|
212
|
+
default: string;
|
|
213
|
+
};
|
|
193
214
|
disabled: {
|
|
194
215
|
type: BooleanConstructor;
|
|
195
216
|
required: false;
|
|
@@ -237,6 +258,7 @@ export declare const Disabled: StoryFn<import('vue').DefineComponent<{
|
|
|
237
258
|
"onUpdate:isOpen"?: ((value: boolean) => any) | undefined;
|
|
238
259
|
"onUpdate:selectBoxValue"?: ((value: string) => any) | undefined;
|
|
239
260
|
}, {
|
|
261
|
+
width: string;
|
|
240
262
|
disabled: boolean;
|
|
241
263
|
expand: boolean;
|
|
242
264
|
variant: "regular" | "mini";
|
|
@@ -256,6 +278,11 @@ export declare const DisabledDate: StoryFn<import('vue').DefineComponent<{
|
|
|
256
278
|
required: false;
|
|
257
279
|
default: boolean;
|
|
258
280
|
};
|
|
281
|
+
width: {
|
|
282
|
+
type: StringConstructor;
|
|
283
|
+
required: false;
|
|
284
|
+
default: string;
|
|
285
|
+
};
|
|
259
286
|
disabled: {
|
|
260
287
|
type: BooleanConstructor;
|
|
261
288
|
required: false;
|
|
@@ -312,6 +339,11 @@ export declare const DisabledDate: StoryFn<import('vue').DefineComponent<{
|
|
|
312
339
|
required: false;
|
|
313
340
|
default: boolean;
|
|
314
341
|
};
|
|
342
|
+
width: {
|
|
343
|
+
type: StringConstructor;
|
|
344
|
+
required: false;
|
|
345
|
+
default: string;
|
|
346
|
+
};
|
|
315
347
|
disabled: {
|
|
316
348
|
type: BooleanConstructor;
|
|
317
349
|
required: false;
|
|
@@ -359,6 +391,7 @@ export declare const DisabledDate: StoryFn<import('vue').DefineComponent<{
|
|
|
359
391
|
"onUpdate:isOpen"?: ((value: boolean) => any) | undefined;
|
|
360
392
|
"onUpdate:selectBoxValue"?: ((value: string) => any) | undefined;
|
|
361
393
|
}, {
|
|
394
|
+
width: string;
|
|
362
395
|
disabled: boolean;
|
|
363
396
|
expand: boolean;
|
|
364
397
|
variant: "regular" | "mini";
|
|
@@ -377,6 +410,11 @@ export declare const Expand: StoryFn<import('vue').DefineComponent<{
|
|
|
377
410
|
required: false;
|
|
378
411
|
default: boolean;
|
|
379
412
|
};
|
|
413
|
+
width: {
|
|
414
|
+
type: StringConstructor;
|
|
415
|
+
required: false;
|
|
416
|
+
default: string;
|
|
417
|
+
};
|
|
380
418
|
disabled: {
|
|
381
419
|
type: BooleanConstructor;
|
|
382
420
|
required: false;
|
|
@@ -433,6 +471,11 @@ export declare const Expand: StoryFn<import('vue').DefineComponent<{
|
|
|
433
471
|
required: false;
|
|
434
472
|
default: boolean;
|
|
435
473
|
};
|
|
474
|
+
width: {
|
|
475
|
+
type: StringConstructor;
|
|
476
|
+
required: false;
|
|
477
|
+
default: string;
|
|
478
|
+
};
|
|
436
479
|
disabled: {
|
|
437
480
|
type: BooleanConstructor;
|
|
438
481
|
required: false;
|
|
@@ -480,6 +523,7 @@ export declare const Expand: StoryFn<import('vue').DefineComponent<{
|
|
|
480
523
|
"onUpdate:isOpen"?: ((value: boolean) => any) | undefined;
|
|
481
524
|
"onUpdate:selectBoxValue"?: ((value: string) => any) | undefined;
|
|
482
525
|
}, {
|
|
526
|
+
width: string;
|
|
483
527
|
disabled: boolean;
|
|
484
528
|
expand: boolean;
|
|
485
529
|
variant: "regular" | "mini";
|
|
@@ -498,6 +542,11 @@ export declare const SelectBoxOptions: StoryFn<import('vue').DefineComponent<{
|
|
|
498
542
|
required: false;
|
|
499
543
|
default: boolean;
|
|
500
544
|
};
|
|
545
|
+
width: {
|
|
546
|
+
type: StringConstructor;
|
|
547
|
+
required: false;
|
|
548
|
+
default: string;
|
|
549
|
+
};
|
|
501
550
|
disabled: {
|
|
502
551
|
type: BooleanConstructor;
|
|
503
552
|
required: false;
|
|
@@ -554,6 +603,11 @@ export declare const SelectBoxOptions: StoryFn<import('vue').DefineComponent<{
|
|
|
554
603
|
required: false;
|
|
555
604
|
default: boolean;
|
|
556
605
|
};
|
|
606
|
+
width: {
|
|
607
|
+
type: StringConstructor;
|
|
608
|
+
required: false;
|
|
609
|
+
default: string;
|
|
610
|
+
};
|
|
557
611
|
disabled: {
|
|
558
612
|
type: BooleanConstructor;
|
|
559
613
|
required: false;
|
|
@@ -601,6 +655,7 @@ export declare const SelectBoxOptions: StoryFn<import('vue').DefineComponent<{
|
|
|
601
655
|
"onUpdate:isOpen"?: ((value: boolean) => any) | undefined;
|
|
602
656
|
"onUpdate:selectBoxValue"?: ((value: string) => any) | undefined;
|
|
603
657
|
}, {
|
|
658
|
+
width: string;
|
|
604
659
|
disabled: boolean;
|
|
605
660
|
expand: boolean;
|
|
606
661
|
variant: "regular" | "mini";
|
|
@@ -619,6 +674,11 @@ export declare const IsDirectionFixed: StoryFn<import('vue').DefineComponent<{
|
|
|
619
674
|
required: false;
|
|
620
675
|
default: boolean;
|
|
621
676
|
};
|
|
677
|
+
width: {
|
|
678
|
+
type: StringConstructor;
|
|
679
|
+
required: false;
|
|
680
|
+
default: string;
|
|
681
|
+
};
|
|
622
682
|
disabled: {
|
|
623
683
|
type: BooleanConstructor;
|
|
624
684
|
required: false;
|
|
@@ -675,6 +735,11 @@ export declare const IsDirectionFixed: StoryFn<import('vue').DefineComponent<{
|
|
|
675
735
|
required: false;
|
|
676
736
|
default: boolean;
|
|
677
737
|
};
|
|
738
|
+
width: {
|
|
739
|
+
type: StringConstructor;
|
|
740
|
+
required: false;
|
|
741
|
+
default: string;
|
|
742
|
+
};
|
|
678
743
|
disabled: {
|
|
679
744
|
type: BooleanConstructor;
|
|
680
745
|
required: false;
|
|
@@ -722,6 +787,7 @@ export declare const IsDirectionFixed: StoryFn<import('vue').DefineComponent<{
|
|
|
722
787
|
"onUpdate:isOpen"?: ((value: boolean) => any) | undefined;
|
|
723
788
|
"onUpdate:selectBoxValue"?: ((value: string) => any) | undefined;
|
|
724
789
|
}, {
|
|
790
|
+
width: string;
|
|
725
791
|
disabled: boolean;
|
|
726
792
|
expand: boolean;
|
|
727
793
|
variant: "regular" | "mini";
|
|
@@ -740,6 +806,11 @@ export declare const Mini: StoryFn<import('vue').DefineComponent<{
|
|
|
740
806
|
required: false;
|
|
741
807
|
default: boolean;
|
|
742
808
|
};
|
|
809
|
+
width: {
|
|
810
|
+
type: StringConstructor;
|
|
811
|
+
required: false;
|
|
812
|
+
default: string;
|
|
813
|
+
};
|
|
743
814
|
disabled: {
|
|
744
815
|
type: BooleanConstructor;
|
|
745
816
|
required: false;
|
|
@@ -796,6 +867,11 @@ export declare const Mini: StoryFn<import('vue').DefineComponent<{
|
|
|
796
867
|
required: false;
|
|
797
868
|
default: boolean;
|
|
798
869
|
};
|
|
870
|
+
width: {
|
|
871
|
+
type: StringConstructor;
|
|
872
|
+
required: false;
|
|
873
|
+
default: string;
|
|
874
|
+
};
|
|
799
875
|
disabled: {
|
|
800
876
|
type: BooleanConstructor;
|
|
801
877
|
required: false;
|
|
@@ -843,6 +919,7 @@ export declare const Mini: StoryFn<import('vue').DefineComponent<{
|
|
|
843
919
|
"onUpdate:isOpen"?: ((value: boolean) => any) | undefined;
|
|
844
920
|
"onUpdate:selectBoxValue"?: ((value: string) => any) | undefined;
|
|
845
921
|
}, {
|
|
922
|
+
width: string;
|
|
846
923
|
disabled: boolean;
|
|
847
924
|
expand: boolean;
|
|
848
925
|
variant: "regular" | "mini";
|
|
@@ -5,11 +5,19 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
5
5
|
type: PropType<DateRange>;
|
|
6
6
|
required: true;
|
|
7
7
|
};
|
|
8
|
+
/**
|
|
9
|
+
* @deprecated このプロパティは将来のバージョンで削除される予定です。代わりに `width="100%"` を使用してください。
|
|
10
|
+
*/
|
|
8
11
|
expand: {
|
|
9
12
|
type: BooleanConstructor;
|
|
10
13
|
required: false;
|
|
11
14
|
default: boolean;
|
|
12
15
|
};
|
|
16
|
+
width: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
required: false;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
13
21
|
disabled: {
|
|
14
22
|
type: BooleanConstructor;
|
|
15
23
|
required: false;
|
|
@@ -68,11 +76,19 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
68
76
|
type: PropType<DateRange>;
|
|
69
77
|
required: true;
|
|
70
78
|
};
|
|
79
|
+
/**
|
|
80
|
+
* @deprecated このプロパティは将来のバージョンで削除される予定です。代わりに `width="100%"` を使用してください。
|
|
81
|
+
*/
|
|
71
82
|
expand: {
|
|
72
83
|
type: BooleanConstructor;
|
|
73
84
|
required: false;
|
|
74
85
|
default: boolean;
|
|
75
86
|
};
|
|
87
|
+
width: {
|
|
88
|
+
type: StringConstructor;
|
|
89
|
+
required: false;
|
|
90
|
+
default: string;
|
|
91
|
+
};
|
|
76
92
|
disabled: {
|
|
77
93
|
type: BooleanConstructor;
|
|
78
94
|
required: false;
|
|
@@ -127,6 +143,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
127
143
|
"onUpdate:isOpen"?: ((value: boolean) => any) | undefined;
|
|
128
144
|
"onUpdate:selectBoxValue"?: ((value: string) => any) | undefined;
|
|
129
145
|
}, {
|
|
146
|
+
width: string;
|
|
130
147
|
disabled: boolean;
|
|
131
148
|
expand: boolean;
|
|
132
149
|
variant: "regular" | "mini";
|
|
@@ -26,6 +26,7 @@ export declare const Default: StoryFn<import('vue').DefineComponent<{
|
|
|
26
26
|
width: {
|
|
27
27
|
type: StringConstructor;
|
|
28
28
|
required: false;
|
|
29
|
+
default: string;
|
|
29
30
|
};
|
|
30
31
|
autocomplete: {
|
|
31
32
|
type: import('vue').PropType<Extract<import('@wizleap-inc/wiz-ui-constants').AutoCompleteKeys, "currentPassword" | "newPassword">>;
|
|
@@ -60,6 +61,7 @@ export declare const Default: StoryFn<import('vue').DefineComponent<{
|
|
|
60
61
|
width: {
|
|
61
62
|
type: StringConstructor;
|
|
62
63
|
required: false;
|
|
64
|
+
default: string;
|
|
63
65
|
};
|
|
64
66
|
autocomplete: {
|
|
65
67
|
type: import('vue').PropType<Extract<import('@wizleap-inc/wiz-ui-constants').AutoCompleteKeys, "currentPassword" | "newPassword">>;
|
|
@@ -71,6 +73,7 @@ export declare const Default: StoryFn<import('vue').DefineComponent<{
|
|
|
71
73
|
onFocusout?: ((value: FocusEvent) => any) | undefined;
|
|
72
74
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
73
75
|
}, {
|
|
76
|
+
width: string;
|
|
74
77
|
disabled: boolean;
|
|
75
78
|
expand: boolean;
|
|
76
79
|
autocomplete: "newPassword" | "currentPassword";
|
|
@@ -99,6 +102,7 @@ export declare const Placeholder: StoryFn<import('vue').DefineComponent<{
|
|
|
99
102
|
width: {
|
|
100
103
|
type: StringConstructor;
|
|
101
104
|
required: false;
|
|
105
|
+
default: string;
|
|
102
106
|
};
|
|
103
107
|
autocomplete: {
|
|
104
108
|
type: import('vue').PropType<Extract<import('@wizleap-inc/wiz-ui-constants').AutoCompleteKeys, "currentPassword" | "newPassword">>;
|
|
@@ -133,6 +137,7 @@ export declare const Placeholder: StoryFn<import('vue').DefineComponent<{
|
|
|
133
137
|
width: {
|
|
134
138
|
type: StringConstructor;
|
|
135
139
|
required: false;
|
|
140
|
+
default: string;
|
|
136
141
|
};
|
|
137
142
|
autocomplete: {
|
|
138
143
|
type: import('vue').PropType<Extract<import('@wizleap-inc/wiz-ui-constants').AutoCompleteKeys, "currentPassword" | "newPassword">>;
|
|
@@ -144,6 +149,7 @@ export declare const Placeholder: StoryFn<import('vue').DefineComponent<{
|
|
|
144
149
|
onFocusout?: ((value: FocusEvent) => any) | undefined;
|
|
145
150
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
146
151
|
}, {
|
|
152
|
+
width: string;
|
|
147
153
|
disabled: boolean;
|
|
148
154
|
expand: boolean;
|
|
149
155
|
autocomplete: "newPassword" | "currentPassword";
|
|
@@ -172,6 +178,7 @@ export declare const Expand: StoryFn<import('vue').DefineComponent<{
|
|
|
172
178
|
width: {
|
|
173
179
|
type: StringConstructor;
|
|
174
180
|
required: false;
|
|
181
|
+
default: string;
|
|
175
182
|
};
|
|
176
183
|
autocomplete: {
|
|
177
184
|
type: import('vue').PropType<Extract<import('@wizleap-inc/wiz-ui-constants').AutoCompleteKeys, "currentPassword" | "newPassword">>;
|
|
@@ -206,6 +213,7 @@ export declare const Expand: StoryFn<import('vue').DefineComponent<{
|
|
|
206
213
|
width: {
|
|
207
214
|
type: StringConstructor;
|
|
208
215
|
required: false;
|
|
216
|
+
default: string;
|
|
209
217
|
};
|
|
210
218
|
autocomplete: {
|
|
211
219
|
type: import('vue').PropType<Extract<import('@wizleap-inc/wiz-ui-constants').AutoCompleteKeys, "currentPassword" | "newPassword">>;
|
|
@@ -217,6 +225,7 @@ export declare const Expand: StoryFn<import('vue').DefineComponent<{
|
|
|
217
225
|
onFocusout?: ((value: FocusEvent) => any) | undefined;
|
|
218
226
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
219
227
|
}, {
|
|
228
|
+
width: string;
|
|
220
229
|
disabled: boolean;
|
|
221
230
|
expand: boolean;
|
|
222
231
|
autocomplete: "newPassword" | "currentPassword";
|
|
@@ -245,6 +254,7 @@ export declare const Disabled: StoryFn<import('vue').DefineComponent<{
|
|
|
245
254
|
width: {
|
|
246
255
|
type: StringConstructor;
|
|
247
256
|
required: false;
|
|
257
|
+
default: string;
|
|
248
258
|
};
|
|
249
259
|
autocomplete: {
|
|
250
260
|
type: import('vue').PropType<Extract<import('@wizleap-inc/wiz-ui-constants').AutoCompleteKeys, "currentPassword" | "newPassword">>;
|
|
@@ -279,6 +289,7 @@ export declare const Disabled: StoryFn<import('vue').DefineComponent<{
|
|
|
279
289
|
width: {
|
|
280
290
|
type: StringConstructor;
|
|
281
291
|
required: false;
|
|
292
|
+
default: string;
|
|
282
293
|
};
|
|
283
294
|
autocomplete: {
|
|
284
295
|
type: import('vue').PropType<Extract<import('@wizleap-inc/wiz-ui-constants').AutoCompleteKeys, "currentPassword" | "newPassword">>;
|
|
@@ -290,6 +301,7 @@ export declare const Disabled: StoryFn<import('vue').DefineComponent<{
|
|
|
290
301
|
onFocusout?: ((value: FocusEvent) => any) | undefined;
|
|
291
302
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
292
303
|
}, {
|
|
304
|
+
width: string;
|
|
293
305
|
disabled: boolean;
|
|
294
306
|
expand: boolean;
|
|
295
307
|
autocomplete: "newPassword" | "currentPassword";
|
|
@@ -318,6 +330,7 @@ export declare const Test: StoryFn<import('vue').DefineComponent<{
|
|
|
318
330
|
width: {
|
|
319
331
|
type: StringConstructor;
|
|
320
332
|
required: false;
|
|
333
|
+
default: string;
|
|
321
334
|
};
|
|
322
335
|
autocomplete: {
|
|
323
336
|
type: import('vue').PropType<Extract<import('@wizleap-inc/wiz-ui-constants').AutoCompleteKeys, "currentPassword" | "newPassword">>;
|
|
@@ -352,6 +365,7 @@ export declare const Test: StoryFn<import('vue').DefineComponent<{
|
|
|
352
365
|
width: {
|
|
353
366
|
type: StringConstructor;
|
|
354
367
|
required: false;
|
|
368
|
+
default: string;
|
|
355
369
|
};
|
|
356
370
|
autocomplete: {
|
|
357
371
|
type: import('vue').PropType<Extract<import('@wizleap-inc/wiz-ui-constants').AutoCompleteKeys, "currentPassword" | "newPassword">>;
|
|
@@ -363,6 +377,7 @@ export declare const Test: StoryFn<import('vue').DefineComponent<{
|
|
|
363
377
|
onFocusout?: ((value: FocusEvent) => any) | undefined;
|
|
364
378
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
365
379
|
}, {
|
|
380
|
+
width: string;
|
|
366
381
|
disabled: boolean;
|
|
367
382
|
expand: boolean;
|
|
368
383
|
autocomplete: "newPassword" | "currentPassword";
|
|
@@ -17,6 +17,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
17
17
|
type: BooleanConstructor;
|
|
18
18
|
required: false;
|
|
19
19
|
};
|
|
20
|
+
/**
|
|
21
|
+
* @deprecated このプロパティは将来のバージョンで削除される予定です。代わりに `width="100%"` を使用してください。
|
|
22
|
+
*/
|
|
20
23
|
expand: {
|
|
21
24
|
type: BooleanConstructor;
|
|
22
25
|
required: false;
|
|
@@ -24,6 +27,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
24
27
|
width: {
|
|
25
28
|
type: StringConstructor;
|
|
26
29
|
required: false;
|
|
30
|
+
default: string;
|
|
27
31
|
};
|
|
28
32
|
autocomplete: {
|
|
29
33
|
type: PropType<Extract<AutoCompleteKeys, "currentPassword" | "newPassword">>;
|
|
@@ -51,6 +55,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
51
55
|
type: BooleanConstructor;
|
|
52
56
|
required: false;
|
|
53
57
|
};
|
|
58
|
+
/**
|
|
59
|
+
* @deprecated このプロパティは将来のバージョンで削除される予定です。代わりに `width="100%"` を使用してください。
|
|
60
|
+
*/
|
|
54
61
|
expand: {
|
|
55
62
|
type: BooleanConstructor;
|
|
56
63
|
required: false;
|
|
@@ -58,6 +65,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
58
65
|
width: {
|
|
59
66
|
type: StringConstructor;
|
|
60
67
|
required: false;
|
|
68
|
+
default: string;
|
|
61
69
|
};
|
|
62
70
|
autocomplete: {
|
|
63
71
|
type: PropType<Extract<AutoCompleteKeys, "currentPassword" | "newPassword">>;
|
|
@@ -69,6 +77,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
69
77
|
onFocusout?: ((value: FocusEvent) => any) | undefined;
|
|
70
78
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
71
79
|
}, {
|
|
80
|
+
width: string;
|
|
72
81
|
disabled: boolean;
|
|
73
82
|
expand: boolean;
|
|
74
83
|
autocomplete: "newPassword" | "currentPassword";
|
|
@@ -15,6 +15,9 @@ declare const _default: <T extends CheckboxOption = number>(__VLS_props: NonNull
|
|
|
15
15
|
name: string;
|
|
16
16
|
placeholder?: string;
|
|
17
17
|
disabled?: boolean;
|
|
18
|
+
/**
|
|
19
|
+
* @deprecated このプロパティは将来のバージョンで削除される予定です。代わりに `inputWidth="100%"` を使用してください。
|
|
20
|
+
*/
|
|
18
21
|
expand?: boolean;
|
|
19
22
|
inputWidth?: string;
|
|
20
23
|
popupWidth?: string;
|
|
@@ -19,6 +19,9 @@ declare const _default: <T = number>(__VLS_props: NonNullable<Awaited<typeof __V
|
|
|
19
19
|
placeholder?: string;
|
|
20
20
|
width?: string;
|
|
21
21
|
disabled?: boolean;
|
|
22
|
+
/**
|
|
23
|
+
* @deprecated このプロパティは将来のバージョンで削除される予定です。代わりに `width="100%"` を使用してください。
|
|
24
|
+
*/
|
|
22
25
|
expand?: boolean;
|
|
23
26
|
multiSelectable?: boolean;
|
|
24
27
|
addable?: boolean;
|
|
@@ -10,6 +10,9 @@ declare const _default: <T = number>(__VLS_props: NonNullable<Awaited<typeof __V
|
|
|
10
10
|
placeholder?: string;
|
|
11
11
|
width?: string;
|
|
12
12
|
disabled?: boolean;
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated このプロパティは将来のバージョンで削除される予定です。代わりに `width="100%"` を使用してください。
|
|
15
|
+
*/
|
|
13
16
|
expand?: boolean;
|
|
14
17
|
isOpen?: boolean;
|
|
15
18
|
isDirectionFixed?: boolean;
|
|
@@ -23,6 +23,7 @@ export declare const Default: StoryFn<import('vue').DefineComponent<{
|
|
|
23
23
|
width: {
|
|
24
24
|
type: StringConstructor;
|
|
25
25
|
required: false;
|
|
26
|
+
default: string;
|
|
26
27
|
};
|
|
27
28
|
expand: {
|
|
28
29
|
type: BooleanConstructor;
|
|
@@ -62,6 +63,7 @@ export declare const Default: StoryFn<import('vue').DefineComponent<{
|
|
|
62
63
|
width: {
|
|
63
64
|
type: StringConstructor;
|
|
64
65
|
required: false;
|
|
66
|
+
default: string;
|
|
65
67
|
};
|
|
66
68
|
expand: {
|
|
67
69
|
type: BooleanConstructor;
|
|
@@ -81,6 +83,7 @@ export declare const Default: StoryFn<import('vue').DefineComponent<{
|
|
|
81
83
|
onFocusout?: ((value: FocusEvent) => any) | undefined;
|
|
82
84
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
83
85
|
}, {
|
|
86
|
+
width: string;
|
|
84
87
|
disabled: boolean;
|
|
85
88
|
expand: boolean;
|
|
86
89
|
autocomplete: "name" | "off" | "on" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo";
|
|
@@ -106,6 +109,7 @@ export declare const Placeholder: StoryFn<import('vue').DefineComponent<{
|
|
|
106
109
|
width: {
|
|
107
110
|
type: StringConstructor;
|
|
108
111
|
required: false;
|
|
112
|
+
default: string;
|
|
109
113
|
};
|
|
110
114
|
expand: {
|
|
111
115
|
type: BooleanConstructor;
|
|
@@ -145,6 +149,7 @@ export declare const Placeholder: StoryFn<import('vue').DefineComponent<{
|
|
|
145
149
|
width: {
|
|
146
150
|
type: StringConstructor;
|
|
147
151
|
required: false;
|
|
152
|
+
default: string;
|
|
148
153
|
};
|
|
149
154
|
expand: {
|
|
150
155
|
type: BooleanConstructor;
|
|
@@ -164,6 +169,7 @@ export declare const Placeholder: StoryFn<import('vue').DefineComponent<{
|
|
|
164
169
|
onFocusout?: ((value: FocusEvent) => any) | undefined;
|
|
165
170
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
166
171
|
}, {
|
|
172
|
+
width: string;
|
|
167
173
|
disabled: boolean;
|
|
168
174
|
expand: boolean;
|
|
169
175
|
autocomplete: "name" | "off" | "on" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo";
|
|
@@ -189,6 +195,7 @@ export declare const Expand: StoryFn<import('vue').DefineComponent<{
|
|
|
189
195
|
width: {
|
|
190
196
|
type: StringConstructor;
|
|
191
197
|
required: false;
|
|
198
|
+
default: string;
|
|
192
199
|
};
|
|
193
200
|
expand: {
|
|
194
201
|
type: BooleanConstructor;
|
|
@@ -228,6 +235,7 @@ export declare const Expand: StoryFn<import('vue').DefineComponent<{
|
|
|
228
235
|
width: {
|
|
229
236
|
type: StringConstructor;
|
|
230
237
|
required: false;
|
|
238
|
+
default: string;
|
|
231
239
|
};
|
|
232
240
|
expand: {
|
|
233
241
|
type: BooleanConstructor;
|
|
@@ -247,6 +255,7 @@ export declare const Expand: StoryFn<import('vue').DefineComponent<{
|
|
|
247
255
|
onFocusout?: ((value: FocusEvent) => any) | undefined;
|
|
248
256
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
249
257
|
}, {
|
|
258
|
+
width: string;
|
|
250
259
|
disabled: boolean;
|
|
251
260
|
expand: boolean;
|
|
252
261
|
autocomplete: "name" | "off" | "on" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo";
|
|
@@ -272,6 +281,7 @@ export declare const Disabled: StoryFn<import('vue').DefineComponent<{
|
|
|
272
281
|
width: {
|
|
273
282
|
type: StringConstructor;
|
|
274
283
|
required: false;
|
|
284
|
+
default: string;
|
|
275
285
|
};
|
|
276
286
|
expand: {
|
|
277
287
|
type: BooleanConstructor;
|
|
@@ -311,6 +321,7 @@ export declare const Disabled: StoryFn<import('vue').DefineComponent<{
|
|
|
311
321
|
width: {
|
|
312
322
|
type: StringConstructor;
|
|
313
323
|
required: false;
|
|
324
|
+
default: string;
|
|
314
325
|
};
|
|
315
326
|
expand: {
|
|
316
327
|
type: BooleanConstructor;
|
|
@@ -330,6 +341,7 @@ export declare const Disabled: StoryFn<import('vue').DefineComponent<{
|
|
|
330
341
|
onFocusout?: ((value: FocusEvent) => any) | undefined;
|
|
331
342
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
332
343
|
}, {
|
|
344
|
+
width: string;
|
|
333
345
|
disabled: boolean;
|
|
334
346
|
expand: boolean;
|
|
335
347
|
autocomplete: "name" | "off" | "on" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo";
|
|
@@ -355,6 +367,7 @@ export declare const WithIcon: StoryFn<import('vue').DefineComponent<{
|
|
|
355
367
|
width: {
|
|
356
368
|
type: StringConstructor;
|
|
357
369
|
required: false;
|
|
370
|
+
default: string;
|
|
358
371
|
};
|
|
359
372
|
expand: {
|
|
360
373
|
type: BooleanConstructor;
|
|
@@ -394,6 +407,7 @@ export declare const WithIcon: StoryFn<import('vue').DefineComponent<{
|
|
|
394
407
|
width: {
|
|
395
408
|
type: StringConstructor;
|
|
396
409
|
required: false;
|
|
410
|
+
default: string;
|
|
397
411
|
};
|
|
398
412
|
expand: {
|
|
399
413
|
type: BooleanConstructor;
|
|
@@ -413,6 +427,7 @@ export declare const WithIcon: StoryFn<import('vue').DefineComponent<{
|
|
|
413
427
|
onFocusout?: ((value: FocusEvent) => any) | undefined;
|
|
414
428
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
415
429
|
}, {
|
|
430
|
+
width: string;
|
|
416
431
|
disabled: boolean;
|
|
417
432
|
expand: boolean;
|
|
418
433
|
autocomplete: "name" | "off" | "on" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo";
|
|
@@ -438,6 +453,7 @@ export declare const Test: StoryFn<import('vue').DefineComponent<{
|
|
|
438
453
|
width: {
|
|
439
454
|
type: StringConstructor;
|
|
440
455
|
required: false;
|
|
456
|
+
default: string;
|
|
441
457
|
};
|
|
442
458
|
expand: {
|
|
443
459
|
type: BooleanConstructor;
|
|
@@ -477,6 +493,7 @@ export declare const Test: StoryFn<import('vue').DefineComponent<{
|
|
|
477
493
|
width: {
|
|
478
494
|
type: StringConstructor;
|
|
479
495
|
required: false;
|
|
496
|
+
default: string;
|
|
480
497
|
};
|
|
481
498
|
expand: {
|
|
482
499
|
type: BooleanConstructor;
|
|
@@ -496,6 +513,7 @@ export declare const Test: StoryFn<import('vue').DefineComponent<{
|
|
|
496
513
|
onFocusout?: ((value: FocusEvent) => any) | undefined;
|
|
497
514
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
498
515
|
}, {
|
|
516
|
+
width: string;
|
|
499
517
|
disabled: boolean;
|
|
500
518
|
expand: boolean;
|
|
501
519
|
autocomplete: "name" | "off" | "on" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo";
|
|
@@ -521,6 +539,7 @@ export declare const Playground: StoryFn<import('vue').DefineComponent<{
|
|
|
521
539
|
width: {
|
|
522
540
|
type: StringConstructor;
|
|
523
541
|
required: false;
|
|
542
|
+
default: string;
|
|
524
543
|
};
|
|
525
544
|
expand: {
|
|
526
545
|
type: BooleanConstructor;
|
|
@@ -560,6 +579,7 @@ export declare const Playground: StoryFn<import('vue').DefineComponent<{
|
|
|
560
579
|
width: {
|
|
561
580
|
type: StringConstructor;
|
|
562
581
|
required: false;
|
|
582
|
+
default: string;
|
|
563
583
|
};
|
|
564
584
|
expand: {
|
|
565
585
|
type: BooleanConstructor;
|
|
@@ -579,6 +599,7 @@ export declare const Playground: StoryFn<import('vue').DefineComponent<{
|
|
|
579
599
|
onFocusout?: ((value: FocusEvent) => any) | undefined;
|
|
580
600
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
581
601
|
}, {
|
|
602
|
+
width: string;
|
|
582
603
|
disabled: boolean;
|
|
583
604
|
expand: boolean;
|
|
584
605
|
autocomplete: "name" | "off" | "on" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo";
|