Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wip enum options changes #1513

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/components/stepper/stepper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand Down
18 changes: 2 additions & 16 deletions src/components/textarea/textarea.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
Expand Down
Loading