File tree Expand file tree Collapse file tree 2 files changed +3
-16
lines changed
Expand file tree Collapse file tree 2 files changed +3
-16
lines changed Original file line number Diff line number Diff line change @@ -121,6 +121,7 @@ export default class IgcStepperComponent extends EventEmitterMixin<
121121 @property ( { attribute : 'animation-duration' , type : Number } )
122122 public animationDuration = 320 ;
123123
124+ // TODO: none option :(
124125 /**
125126 * Get/Set the position of the steps title.
126127 *
Original file line number Diff line number Diff line change @@ -134,13 +134,7 @@ export default class IgcTextareaComponent extends FormAssociatedRequiredMixin(
134134 * @attr
135135 */
136136 @property ( )
137- public override autocapitalize ! :
138- | 'off'
139- | 'none'
140- | 'on'
141- | 'sentences'
142- | 'words'
143- | 'characters' ;
137+ public override autocapitalize ! : string ;
144138
145139 /**
146140 * Hints at the type of data that might be entered by the user while editing the element or its contents.
@@ -151,15 +145,7 @@ export default class IgcTextareaComponent extends FormAssociatedRequiredMixin(
151145 * @attr inputmode
152146 */
153147 @property ( { attribute : 'inputmode' } )
154- public override inputMode ! :
155- | 'none'
156- | 'text'
157- | 'decimal'
158- | 'numeric'
159- | 'tel'
160- | 'search'
161- | 'email'
162- | 'url' ;
148+ public override inputMode ! : string ;
163149
164150 /**
165151 * The label for the control.
You can’t perform that action at this time.
0 commit comments