@@ -13,7 +13,9 @@ export default {
13
13
14
14
export const AAAOverview : Story = props =>
15
15
html `< uui-textarea
16
- style ="--uui-textarea-min-height: ${ props [ '--uui-textarea-min-height' ] } ; --uui-textarea-max-height: ${ props [ '--uui-textarea-max-height' ] } "
16
+ style ="--uui-textarea-min-height: ${ props [
17
+ '--uui-textarea-min-height'
18
+ ] } ; --uui-textarea-max-height: ${ props [ '--uui-textarea-max-height' ] } "
17
19
.label =${ props . label }
18
20
?auto-height =${ props . autoHeight }
19
21
.minLength=${ props . minLength }
@@ -46,9 +48,10 @@ AAAOverview.parameters = {
46
48
} ,
47
49
} ;
48
50
49
-
50
51
export const MaxLength : Story = props =>
51
- html `< uui-textarea label ="Label " maxLength =${ props . maxLength } > </ uui-textarea > ` ;
52
+ html `< uui-textarea
53
+ label ="Label "
54
+ maxLength =${ props . maxLength } > </ uui-textarea > ` ;
52
55
53
56
MaxLength . args = { maxLength : 20 } ;
54
57
MaxLength . parameters = {
@@ -61,7 +64,9 @@ MaxLength.parameters = {
61
64
} ;
62
65
63
66
export const MinLength : Story = props =>
64
- html `< uui-textarea label ="Label " minLength =${ props . minLength } > </ uui-textarea > ` ;
67
+ html `< uui-textarea
68
+ label ="Label "
69
+ minLength =${ props . minLength } > </ uui-textarea > ` ;
65
70
66
71
MinLength . args = { minLength : 20 } ;
67
72
MinLength . parameters = {
@@ -106,23 +111,31 @@ Placeholder.parameters = {
106
111
} ;
107
112
108
113
export const AutoHeight : Story = props =>
109
- html `
110
- < uui-textarea
111
- label ="Label "
112
- style ="--uui-textarea-min-height: ${ props [ '--uui-textarea-min-height' ] } ; --uui-textarea-max-height: ${ props [ '--uui-textarea-max-height' ] } "
113
- ?auto-height =${ props . autoHeight } > </ uui-textarea > ` ;
114
+ html ` < uui-textarea
115
+ label ="Label "
116
+ style ="--uui-textarea-min-height: ${ props [
117
+ '--uui-textarea-min-height'
118
+ ] } ; --uui-textarea-max-height: ${ props [ '--uui-textarea-max-height' ] } "
119
+ ?auto-height =${ props . autoHeight } > </ uui-textarea > ` ;
114
120
115
- AutoHeight . args = {
121
+ AutoHeight . args = {
116
122
autoHeight : true ,
117
123
'--uui-textarea-min-height' : '100px' ,
118
124
'--uui-textarea-max-height' : '300px' ,
119
125
} ;
120
126
121
127
AutoHeight . parameters = {
122
- controls : { include : [ 'autoHeight' , '--uui-textarea-min-height' , '--uui-textarea-max-height' ] } ,
128
+ controls : {
129
+ include : [
130
+ 'autoHeight' ,
131
+ '--uui-textarea-min-height' ,
132
+ '--uui-textarea-max-height' ,
133
+ ] ,
134
+ } ,
123
135
docs : {
124
136
description : {
125
- story : "The height will confine itself within the max and min height if defined"
137
+ story :
138
+ 'The height will confine itself within the max and min height if defined' ,
126
139
} ,
127
140
source : {
128
141
code : `<uui-textarea label="Label" style="--uui-textarea-min-height: 100px; --uui-textarea-max-height: 300px;" auto-height></uui-textarea>` ,
0 commit comments