@angular/cdk/keycodes#COMMA TypeScript Examples

The following examples show how to use @angular/cdk/keycodes#COMMA. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: queryable-input.component.ts    From Smersh with MIT License 5 votes vote down vote up
separators: number[] = [ENTER, COMMA];
Example #2
Source File: emote-create.component.ts    From App with MIT License 5 votes vote down vote up
tagInputSeparationKeys = [ENTER, SPACE, COMMA];
Example #3
Source File: basic-info-form.component.ts    From careydevelopmentcrm with MIT License 5 votes vote down vote up
readonly separatorKeysCodes: number[] = [ENTER, COMMA];
Example #4
Source File: list-edit.component.ts    From attack-workbench-frontend with Apache License 2.0 5 votes vote down vote up
readonly separatorKeysCodes: number[] = [ENTER, COMMA];
Example #5
Source File: json-schema-form.component.ts    From json-schema-form with Apache License 2.0 5 votes vote down vote up
/**
   * complete chip entry with enter or comma
   */
  readonly separatorKeysCodes: number[] = [ENTER, COMMA, TAB];
Example #6
Source File: approver-dialog.component.ts    From fyle-mobile-app with MIT License 5 votes vote down vote up
getSeparatorKeysCodes() {
    return [ENTER, COMMA];
  }
Example #7
Source File: fy-multiselect-modal.component.ts    From fyle-mobile-app with MIT License 5 votes vote down vote up
getSeparatorKeysCodes() {
    return [ENTER, COMMA];
  }
Example #8
Source File: fy-userlist-modal.component.ts    From fyle-mobile-app with MIT License 5 votes vote down vote up
getSeparatorKeysCodes() {
    return [ENTER, COMMA];
  }
Example #9
Source File: edit-workflow.component.ts    From workflow-editor with Educational Community License v2.0 5 votes vote down vote up
separatorKeysCodes: number[] = [COMMA, TAB];
Example #10
Source File: autocomplete-chip.component.ts    From matx-angular with MIT License 5 votes vote down vote up
separatorKeysCodes: number[] = [ENTER, COMMA];
Example #11
Source File: input-chip.component.ts    From matx-angular with MIT License 5 votes vote down vote up
readonly separatorKeysCodes: number[] = [ENTER, COMMA];