@syncfusion/ej2-multicolumn-combobox 33.1.46 → 33.2.3

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 : 33.1.46
3
+ * version : 33.2.3
4
4
  * Copyright Syncfusion Inc. 2001 - 2025. 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,6 +1,6 @@
1
1
  {
2
2
  "name": "@syncfusion/ej2-multicolumn-combobox",
3
- "version": "33.1.46",
3
+ "version": "33.2.3",
4
4
  "description": "Essential JS 2 Component",
5
5
  "author": "Syncfusion Inc.",
6
6
  "license": "SEE LICENSE IN license",
@@ -9,8 +9,8 @@
9
9
  "es2015": "./dist/es6/ej2-multicolumn-combobox.es5.js",
10
10
  "typings": "index.d.ts",
11
11
  "dependencies": {
12
- "@syncfusion/ej2-base": "~33.1.45",
13
- "@syncfusion/ej2-grids": "~33.1.46"
12
+ "@syncfusion/ej2-base": "~33.2.3",
13
+ "@syncfusion/ej2-grids": "~33.2.3"
14
14
  },
15
15
  "devDependencies": {},
16
16
  "keywords": [
@@ -532,6 +532,13 @@ var MultiColumnComboBox = /** @class */ (function (_super) {
532
532
  this.updateGridHeight(true, true);
533
533
  }
534
534
  this.popupObj.refreshPosition();
535
+ if (args.requestType === 'refresh') {
536
+ setTimeout(function () {
537
+ if (_this.popupObj && _this.isPopupOpen) {
538
+ _this.popupObj.refreshPosition();
539
+ }
540
+ }, 0);
541
+ }
535
542
  this.gridObj.element.querySelector('.e-content').scrollTop = 0;
536
543
  };
537
544
  MultiColumnComboBox.prototype.handleKeyPressed = function (args) {