@syncfusion/ej2-multicolumn-combobox 30.1.39 → 30.1.40

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 : 30.1.39
3
+ * version : 30.1.40
4
4
  * Copyright Syncfusion Inc. 2001 - 2024. 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": "30.1.39",
3
+ "version": "30.1.40",
4
4
  "description": "Essential JS 2 Component",
5
5
  "author": "Syncfusion Inc.",
6
6
  "license": "SEE LICENSE IN license",
@@ -10,7 +10,7 @@
10
10
  "typings": "index.d.ts",
11
11
  "dependencies": {
12
12
  "@syncfusion/ej2-base": "~30.1.38",
13
- "@syncfusion/ej2-grids": "~30.1.39"
13
+ "@syncfusion/ej2-grids": "~30.1.40"
14
14
  },
15
15
  "devDependencies": {},
16
16
  "keywords": [
@@ -356,6 +356,7 @@ var MultiColumnComboBox = /** @class */ (function (_super) {
356
356
  _this.showHideSpinner(false);
357
357
  if (!_this.isMainDataUpdated) {
358
358
  _this.mainData = _this.gridData;
359
+ _this.remoteDataLength = _this.gridData.length;
359
360
  _this.isMainDataUpdated = true;
360
361
  }
361
362
  if (_this.popupDiv) {
@@ -373,6 +374,7 @@ var MultiColumnComboBox = /** @class */ (function (_super) {
373
374
  _this.trigger('actionComplete', { result: listItems }, function (e) {
374
375
  if (!_this.isMainDataUpdated) {
375
376
  _this.mainData = _this.gridData;
377
+ _this.remoteDataLength = _this.gridData.length;
376
378
  _this.isMainDataUpdated = true;
377
379
  }
378
380
  if (_this.popupDiv) {
@@ -1336,7 +1338,8 @@ var MultiColumnComboBox = /** @class */ (function (_super) {
1336
1338
  var e = mouseEvent ? mouseEvent : keyEvent;
1337
1339
  var val = isKeyDown ? this.matchedContent : this.exactMatchedContent;
1338
1340
  if (!val && e.code !== 'Enter') {
1339
- this.inputEle.value = this.value = this.index = this.text = null;
1341
+ this.inputEle.value = null;
1342
+ this.setProperties({ value: null, index: null, text: null }, true);
1340
1343
  }
1341
1344
  this.hidePopup(e);
1342
1345
  if (this.matchedRowEle && !isClearValues && val) {
@@ -1608,12 +1611,6 @@ var MultiColumnComboBox = /** @class */ (function (_super) {
1608
1611
  _this.inputEle.setAttribute('aria-activedescendant', firstRow.getAttribute('data-uid'));
1609
1612
  }
1610
1613
  }
1611
- if (!isNOU(_this.dataSource) && _this.dataSource instanceof DataManager) {
1612
- _this.dataSource.executeQuery(new Query).then(function (e) {
1613
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
1614
- _this.remoteDataLength = e.result.length;
1615
- });
1616
- }
1617
1614
  _this.popupObj.show(new Animation(eventArgs.animation), _this.popupEle.firstElementChild);
1618
1615
  }
1619
1616
  });