@syncfusion/ej2-multicolumn-combobox 30.1.39 → 30.2.4
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/dist/ej2-multicolumn-combobox.umd.min.js +2 -2
- package/dist/ej2-multicolumn-combobox.umd.min.js.map +1 -1
- package/dist/es6/ej2-multicolumn-combobox.es2015.js +4 -7
- package/dist/es6/ej2-multicolumn-combobox.es2015.js.map +1 -1
- package/dist/es6/ej2-multicolumn-combobox.es5.js +4 -7
- package/dist/es6/ej2-multicolumn-combobox.es5.js.map +1 -1
- package/dist/global/ej2-multicolumn-combobox.min.js +2 -2
- package/dist/global/ej2-multicolumn-combobox.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +3 -3
- package/src/multicolumn-combobox/multi-column-combo-box.js +4 -7
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 30.
|
|
3
|
+
* version : 30.2.4
|
|
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.
|
|
3
|
+
"version": "30.2.4",
|
|
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": "~30.
|
|
13
|
-
"@syncfusion/ej2-grids": "~30.
|
|
12
|
+
"@syncfusion/ej2-base": "~30.2.4",
|
|
13
|
+
"@syncfusion/ej2-grids": "~30.2.4"
|
|
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 =
|
|
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
|
});
|