@syncfusion/ej2-multicolumn-combobox 29.1.34 → 29.1.41

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.
@@ -1248,7 +1248,7 @@ let MultiColumnComboBox = class MultiColumnComboBox extends Component {
1248
1248
  updateValuesOnInput(mouseEvent, keyEvent, isClearValues, isKeyDown = false) {
1249
1249
  const e = mouseEvent ? mouseEvent : keyEvent;
1250
1250
  const val = isKeyDown ? this.matchedContent : this.exactMatchedContent;
1251
- if (!val) {
1251
+ if (!val && e.code !== 'Enter') {
1252
1252
  this.inputEle.value = this.value = this.index = this.text = null;
1253
1253
  }
1254
1254
  this.hidePopup(e);