@fundamental-ngx/platform 0.55.2-rc.4 → 0.55.2-rc.6
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.
|
@@ -6410,6 +6410,7 @@ class BaseCombobox extends CollectionBaseInput {
|
|
|
6410
6410
|
!KeyUtil.isKeyCode(event, SPACE) &&
|
|
6411
6411
|
!KeyUtil.isKeyType(event, 'alphabetical') &&
|
|
6412
6412
|
!KeyUtil.isKeyType(event, 'numeric') &&
|
|
6413
|
+
!KeyUtil.isKeyType(event, 'ime') &&
|
|
6413
6414
|
!KeyUtil.isKeyCode(event, this._numberPadNumberKeys);
|
|
6414
6415
|
if (this.isEmptyValue && acceptedKeys) {
|
|
6415
6416
|
this.listComponent?.setItemActive(0);
|
|
@@ -8733,7 +8734,9 @@ class BaseMultiCombobox extends CollectionBaseInput {
|
|
|
8733
8734
|
}
|
|
8734
8735
|
else if (!KeyUtil.isKeyCode(event, [...this._nonOpeningKeys, CONTROL])) {
|
|
8735
8736
|
this.showList(true);
|
|
8736
|
-
const acceptedKeys = !KeyUtil.isKeyType(event, 'alphabetical') &&
|
|
8737
|
+
const acceptedKeys = !KeyUtil.isKeyType(event, 'alphabetical') &&
|
|
8738
|
+
!KeyUtil.isKeyType(event, 'numeric') &&
|
|
8739
|
+
!KeyUtil.isKeyType(event, 'ime');
|
|
8737
8740
|
if (acceptedKeys) {
|
|
8738
8741
|
// SetTimeout is needed for input to receive new value.
|
|
8739
8742
|
setTimeout(() => {
|