@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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 20.1.57
3
+ * version : 20.1.58
4
4
  * Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-dropdowns@*",
3
- "_id": "@syncfusion/ej2-dropdowns@20.1.56",
3
+ "_id": "@syncfusion/ej2-dropdowns@20.1.57",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-In0wEvT1i7Ix8cwjr9i5DqPsUXGhjXAP14hxxFgEWCfSUAmtD0PYlt7HMcT9yldBNRYDbT+ajm8ouhTuxqd6pg==",
5
+ "_integrity": "sha512-YT/SVksfrteGQ4MLVTgCNbBfIWmkoYFYcdA92UgRv2XN2pcZOiAohaWpzAUGAWN4VNzPuxG8lvZLToqMJpfhjg==",
6
6
  "_location": "/@syncfusion/ej2-dropdowns",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -33,8 +33,8 @@
33
33
  "/@syncfusion/ej2-spreadsheet",
34
34
  "/@syncfusion/ej2-vue-dropdowns"
35
35
  ],
36
- "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-dropdowns/-/ej2-dropdowns-20.1.56.tgz",
37
- "_shasum": "2863338809c7a7578df8277bf92660180b110519",
36
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-dropdowns/-/ej2-dropdowns-20.1.57.tgz",
37
+ "_shasum": "bf1f98dea47b77f896503a8901e3e3e1d0f473e2",
38
38
  "_spec": "@syncfusion/ej2-dropdowns@*",
39
39
  "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
40
40
  "author": {
@@ -42,12 +42,12 @@
42
42
  },
43
43
  "bundleDependencies": false,
44
44
  "dependencies": {
45
- "@syncfusion/ej2-base": "~20.1.56",
45
+ "@syncfusion/ej2-base": "~20.1.57",
46
46
  "@syncfusion/ej2-data": "~20.1.55",
47
- "@syncfusion/ej2-inputs": "~20.1.55",
47
+ "@syncfusion/ej2-inputs": "~20.1.58",
48
48
  "@syncfusion/ej2-lists": "~20.1.55",
49
- "@syncfusion/ej2-navigations": "~20.1.57",
50
- "@syncfusion/ej2-popups": "~20.1.57"
49
+ "@syncfusion/ej2-navigations": "~20.1.58",
50
+ "@syncfusion/ej2-popups": "~20.1.58"
51
51
  },
52
52
  "deprecated": false,
53
53
  "description": "Essential JS 2 DropDown Components",
@@ -72,6 +72,6 @@
72
72
  "module": "./index.js",
73
73
  "name": "@syncfusion/ej2-dropdowns",
74
74
  "typings": "index.d.ts",
75
- "version": "20.1.57",
75
+ "version": "20.1.58",
76
76
  "sideEffects": false
77
77
  }
@@ -252,7 +252,7 @@ export declare class AutoComplete extends ComboBox {
252
252
  *
253
253
  * @returns {void}
254
254
  */
255
- hidePopup(): void;
255
+ hidePopup(e?: KeyboardEventArgs): void;
256
256
  /**
257
257
  * Dynamically change the value of properties.
258
258
  *
@@ -285,8 +285,8 @@ var AutoComplete = /** @class */ (function (_super) {
285
285
  *
286
286
  * @returns {void}
287
287
  */
288
- AutoComplete.prototype.hidePopup = function () {
289
- _super.prototype.hidePopup.call(this);
288
+ AutoComplete.prototype.hidePopup = function (e) {
289
+ _super.prototype.hidePopup.call(this, e);
290
290
  this.activeIndex = -1;
291
291
  };
292
292
  /**
@@ -472,7 +472,7 @@ var ComboBox = /** @class */ (function (_super) {
472
472
  else if (this.isTyped && !this.isSelected && isNullOrUndefined(li)) {
473
473
  this.customValue(e);
474
474
  }
475
- this.hidePopup();
475
+ this.hidePopup(e);
476
476
  };
477
477
  ComboBox.prototype.setHoverList = function (li) {
478
478
  this.removeSelection();