diff --git a/src/components/stepper/stepper.ts b/src/components/stepper/stepper.ts index bb67d82d7..c8932aa77 100644 --- a/src/components/stepper/stepper.ts +++ b/src/components/stepper/stepper.ts @@ -121,6 +121,7 @@ export default class IgcStepperComponent extends EventEmitterMixin< @property({ attribute: 'animation-duration', type: Number }) public animationDuration = 320; + // TODO: none option :( /** * Get/Set the position of the steps title. * diff --git a/src/components/textarea/textarea.ts b/src/components/textarea/textarea.ts index 89397ed70..b1bafd4f3 100644 --- a/src/components/textarea/textarea.ts +++ b/src/components/textarea/textarea.ts @@ -134,13 +134,7 @@ export default class IgcTextareaComponent extends FormAssociatedRequiredMixin( * @attr */ @property() - public override autocapitalize!: - | 'off' - | 'none' - | 'on' - | 'sentences' - | 'words' - | 'characters'; + public override autocapitalize!: string; /** * 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( * @attr inputmode */ @property({ attribute: 'inputmode' }) - public override inputMode!: - | 'none' - | 'text' - | 'decimal' - | 'numeric' - | 'tel' - | 'search' - | 'email' - | 'url'; + public override inputMode!: string; /** * The label for the control.