Skip to content

Commit 2b4652a

Browse files
committed
wip enum options changes
1 parent 86c843e commit 2b4652a

File tree

2 files changed

+3
-16
lines changed

2 files changed

+3
-16
lines changed

src/components/stepper/stepper.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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
*

src/components/textarea/textarea.ts

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)