@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
|
@@ -7863,7 +7863,7 @@ var ComboBox = /** @__PURE__ @class */ (function (_super) {
|
|
|
7863
7863
|
else if (this.isTyped && !this.isSelected && isNullOrUndefined(li)) {
|
|
7864
7864
|
this.customValue(e);
|
|
7865
7865
|
}
|
|
7866
|
-
this.hidePopup();
|
|
7866
|
+
this.hidePopup(e);
|
|
7867
7867
|
};
|
|
7868
7868
|
ComboBox.prototype.setHoverList = function (li) {
|
|
7869
7869
|
this.removeSelection();
|
|
@@ -8525,8 +8525,8 @@ var AutoComplete = /** @__PURE__ @class */ (function (_super) {
|
|
|
8525
8525
|
*
|
|
8526
8526
|
* @returns {void}
|
|
8527
8527
|
*/
|
|
8528
|
-
AutoComplete.prototype.hidePopup = function () {
|
|
8529
|
-
_super.prototype.hidePopup.call(this);
|
|
8528
|
+
AutoComplete.prototype.hidePopup = function (e) {
|
|
8529
|
+
_super.prototype.hidePopup.call(this, e);
|
|
8530
8530
|
this.activeIndex = -1;
|
|
8531
8531
|
};
|
|
8532
8532
|
/**
|