@fundamental-ngx/core 0.43.50 → 0.43.52

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.
@@ -1235,7 +1235,9 @@ class MultiComboboxComponent extends BaseMultiCombobox {
1235
1235
  }
1236
1236
  else if (!KeyUtil.isKeyCode(event, [...this._nonOpeningKeys, CONTROL])) {
1237
1237
  this._showList(true);
1238
- const acceptedKeys = !KeyUtil.isKeyType(event, 'alphabetical') && !KeyUtil.isKeyType(event, 'numeric');
1238
+ const acceptedKeys = !KeyUtil.isKeyType(event, 'alphabetical') &&
1239
+ !KeyUtil.isKeyType(event, 'numeric') &&
1240
+ !KeyUtil.isKeyType(event, 'ime');
1239
1241
  if (acceptedKeys) {
1240
1242
  // SetTimeout is needed for input to receive new value.
1241
1243
  setTimeout(() => {