@fundamental-ngx/platform 0.57.4-rc.10 → 0.57.4-rc.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -28,7 +28,7 @@ import { CheckboxComponent as CheckboxComponent$1 } from '@fundamental-ngx/core/
28
28
  import { FdCalendarViewEnum } from '@fundamental-ngx/core/calendar';
29
29
  import { DatePickerComponent } from '@fundamental-ngx/core/date-picker';
30
30
  import { DatetimeAdapter, DATE_TIME_FORMATS } from '@fundamental-ngx/core/datetime';
31
- import { DELETE, BACKSPACE, ESCAPE, ENTER, CONTROL, TAB, SHIFT, UP_ARROW, RIGHT_ARROW, DOWN_ARROW, LEFT_ARROW, ALT, NUMPAD_ZERO, NUMPAD_ONE, NUMPAD_TWO, NUMPAD_THREE, NUMPAD_FOUR, NUMPAD_FIVE, NUMPAD_SIX, NUMPAD_SEVEN, NUMPAD_EIGHT, NUMPAD_NINE, SPACE, A, PAGE_UP, PAGE_DOWN } from '@angular/cdk/keycodes';
31
+ import { DELETE, BACKSPACE, ESCAPE, ENTER, CONTROL, TAB, SHIFT, UP_ARROW, RIGHT_ARROW, DOWN_ARROW, LEFT_ARROW, ALT, NUMPAD_ZERO, NUMPAD_ONE, NUMPAD_TWO, NUMPAD_THREE, NUMPAD_FOUR, NUMPAD_FIVE, NUMPAD_SIX, NUMPAD_SEVEN, NUMPAD_EIGHT, NUMPAD_NINE, A, SPACE, PAGE_UP, PAGE_DOWN } from '@angular/cdk/keycodes';
32
32
  import { FdTranslatePipe, FD_LANGUAGE, TranslationResolver } from '@fundamental-ngx/i18n';
33
33
  import * as i1$2 from '@fundamental-ngx/core/dialog';
34
34
  import { DialogConfig, DialogModule } from '@fundamental-ngx/core/dialog';
@@ -6417,15 +6417,6 @@ class BaseCombobox extends CollectionBaseInput {
6417
6417
  if (!KeyUtil.isKeyCode(event, this._numberPadNumberKeys)) {
6418
6418
  this.isOpenChangeHandle(true);
6419
6419
  }
6420
- const acceptedKeys = !KeyUtil.isKeyCode(event, BACKSPACE) &&
6421
- !KeyUtil.isKeyCode(event, SPACE) &&
6422
- !KeyUtil.isKeyType(event, 'alphabetical') &&
6423
- !KeyUtil.isKeyType(event, 'numeric') &&
6424
- !KeyUtil.isKeyType(event, 'ime') &&
6425
- !KeyUtil.isKeyCode(event, this._numberPadNumberKeys);
6426
- if (this.isEmptyValue && acceptedKeys) {
6427
- this.listComponent?.setItemActive(0);
6428
- }
6429
6420
  }
6430
6421
  }
6431
6422
  /** Method passed to list component */