@fundamental-ngx/core 0.43.51 → 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.
- package/esm2020/multi-combobox/multi-combobox.component.mjs +4 -2
- package/fesm2015/fundamental-ngx-core-multi-combobox.mjs +3 -1
- package/fesm2015/fundamental-ngx-core-multi-combobox.mjs.map +1 -1
- package/fesm2020/fundamental-ngx-core-multi-combobox.mjs +3 -1
- package/fesm2020/fundamental-ngx-core-multi-combobox.mjs.map +1 -1
- package/fundamental-ngx-core-v0.43.52.tgz +0 -0
- package/package.json +3 -3
- package/schematics/add-dependencies/index.js +4 -4
- package/fundamental-ngx-core-v0.43.51.tgz +0 -0
|
@@ -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') &&
|
|
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(() => {
|