You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looks like there also needs to be a check if autoComplete is enabled in the _chipKeydown method whenever this.focus() is called 4 total.
Example
case LEFT_ARROW:
/** Check to see if left arrow was pressed while focusing the first chip to focus input next */
if (index === 0 && this.autoComplete) {
this.focus();
event.stopPropagation();
}
feature
Feature Request: Turn off autocomplete for chips
Currently, chips are only available with autocomplete, while this a great feature sometimes it can be overkill for curtain use cases.
Example Template HTML
where the autoComplete is type boolean to turn on or off the auto complete feature. [autoComplete]="autoComplete"
chips.component.html
chips.component.ts
Example
The text was updated successfully, but these errors were encountered: