@syncfusion/ej2-dropdowns 20.1.57 → 20.1.58
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/CHANGELOG.md +8 -0
- package/dist/ej2-dropdowns.umd.min.js +2 -2
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +3 -3
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +3 -3
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +2 -2
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +9 -9
- package/src/auto-complete/auto-complete.d.ts +1 -1
- package/src/auto-complete/auto-complete.js +2 -2
- package/src/combo-box/combo-box.js +1 -1
|
@@ -7745,7 +7745,7 @@ let ComboBox = class ComboBox extends DropDownList {
|
|
|
7745
7745
|
else if (this.isTyped && !this.isSelected && isNullOrUndefined(li)) {
|
|
7746
7746
|
this.customValue(e);
|
|
7747
7747
|
}
|
|
7748
|
-
this.hidePopup();
|
|
7748
|
+
this.hidePopup(e);
|
|
7749
7749
|
}
|
|
7750
7750
|
setHoverList(li) {
|
|
7751
7751
|
this.removeSelection();
|
|
@@ -8387,8 +8387,8 @@ let AutoComplete = class AutoComplete extends ComboBox {
|
|
|
8387
8387
|
*
|
|
8388
8388
|
* @returns {void}
|
|
8389
8389
|
*/
|
|
8390
|
-
hidePopup() {
|
|
8391
|
-
super.hidePopup();
|
|
8390
|
+
hidePopup(e) {
|
|
8391
|
+
super.hidePopup(e);
|
|
8392
8392
|
this.activeIndex = -1;
|
|
8393
8393
|
}
|
|
8394
8394
|
/**
|