File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -64,6 +64,14 @@ export const AAAOverview: Story = {
64
64
} ;
65
65
66
66
export const PatternAndInputmode : Story = {
67
+ render : props => html `
68
+ < uui-input
69
+ .placeholder =${ props . placeholder }
70
+ .inputMode =${ props . inputMode }
71
+ .pattern=${ props . pattern }
72
+ .errorMessage=${ props . errorMessage } >
73
+ </ uui-input >
74
+ ` ,
67
75
args : {
68
76
placeholder : 'Enter email' ,
69
77
inputMode : 'email' ,
@@ -73,6 +81,14 @@ export const PatternAndInputmode: Story = {
73
81
} ;
74
82
75
83
export const MinMaxLength : Story = {
84
+ render : props => html `
85
+ < uui-input
86
+ .minlength =${ props . minlength }
87
+ .maxlength =${ props . maxlength }
88
+ .minlengthMessage=${ props . minlengthMessage }
89
+ .maxlengthMessage=${ props . maxlengthMessage } >
90
+ </ uui-input >
91
+ ` ,
76
92
args : {
77
93
minlength : 3 ,
78
94
maxlength : 4 ,
You can’t perform that action at this time.
0 commit comments