@syncfusion/ej2-multicolumn-combobox 30.2.4 → 31.1.17

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/package.json CHANGED
@@ -1,27 +1,62 @@
1
1
  {
2
- "name": "@syncfusion/ej2-multicolumn-combobox",
3
- "version": "30.2.4",
4
- "description": "Essential JS 2 Component",
5
- "author": "Syncfusion Inc.",
6
- "license": "SEE LICENSE IN license",
7
- "main": "./dist/ej2-multicolumn-combobox.umd.min.js",
8
- "module": "./index.js",
9
- "es2015": "./dist/es6/ej2-multicolumn-combobox.es5.js",
10
- "typings": "index.d.ts",
2
+ "_from": "@syncfusion/ej2-multicolumn-combobox@*",
3
+ "_id": "@syncfusion/ej2-multicolumn-combobox@29.2.0",
4
+ "_inBundle": false,
5
+ "_integrity": "sha512-Q1tfL7MR14Az2tRY+2tQOl2qUCrDguxbpq7VrVybAKGLf69G3quZANzIjXIG3PpwImg6xI/RwRfBNQLelAOs6w==",
6
+ "_location": "/@syncfusion/ej2-multicolumn-combobox",
7
+ "_phantomChildren": {},
8
+ "_requested": {
9
+ "type": "range",
10
+ "registry": true,
11
+ "raw": "@syncfusion/ej2-multicolumn-combobox@*",
12
+ "name": "@syncfusion/ej2-multicolumn-combobox",
13
+ "escapedName": "@syncfusion%2fej2-multicolumn-combobox",
14
+ "scope": "@syncfusion",
15
+ "rawSpec": "*",
16
+ "saveSpec": null,
17
+ "fetchSpec": "*"
18
+ },
19
+ "_requiredBy": [
20
+ "/",
21
+ "/@syncfusion/ej2",
22
+ "/@syncfusion/ej2-angular-multicolumn-combobox",
23
+ "/@syncfusion/ej2-react-multicolumn-combobox",
24
+ "/@syncfusion/ej2-vue-multicolumn-combobox"
25
+ ],
26
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-development/@syncfusion/ej2-multicolumn-combobox/-/ej2-multicolumn-combobox-29.2.0.tgz",
27
+ "_shasum": "0d6df6625a725739cbf297f785163cd1765dd5de",
28
+ "_spec": "@syncfusion/ej2-multicolumn-combobox@*",
29
+ "_where": "D:\\SF3992\\WFH\\Nexus\\release",
30
+ "author": {
31
+ "name": "Syncfusion Inc."
32
+ },
33
+ "bugs": {
34
+ "url": "https://github.com/syncfusion/ej2-multicolumn-combobox-component/issues"
35
+ },
36
+ "bundleDependencies": false,
11
37
  "dependencies": {
12
- "@syncfusion/ej2-base": "~30.2.4",
13
- "@syncfusion/ej2-grids": "~30.2.4"
38
+ "@syncfusion/ej2-base": "~31.1.17",
39
+ "@syncfusion/ej2-grids": "~31.1.17"
14
40
  },
41
+ "deprecated": false,
42
+ "description": "Essential JS 2 Component",
15
43
  "devDependencies": {},
44
+ "es2015": "./dist/es6/ej2-multicolumn-combobox.es5.js",
45
+ "homepage": "https://www.syncfusion.com/javascript-ui-controls",
16
46
  "keywords": [
17
47
  "ej2",
18
48
  "syncfusion",
19
49
  "ej2-multicolumn-combobox"
20
50
  ],
51
+ "license": "SEE LICENSE IN license",
52
+ "main": "./dist/ej2-multicolumn-combobox.umd.min.js",
53
+ "module": "./index.js",
54
+ "name": "@syncfusion/ej2-multicolumn-combobox",
21
55
  "repository": {
22
56
  "type": "git",
23
- "url": "https://github.com/syncfusion/ej2-multicolumn-combobox-component.git"
57
+ "url": "git+https://github.com/syncfusion/ej2-multicolumn-combobox-component.git"
24
58
  },
25
- "sideEffects": false,
26
- "homepage": "https://www.syncfusion.com/javascript-ui-controls"
59
+ "typings": "index.d.ts",
60
+ "version": "31.1.17",
61
+ "sideEffects": false
27
62
  }
@@ -356,7 +356,6 @@ 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;
360
359
  _this.isMainDataUpdated = true;
361
360
  }
362
361
  if (_this.popupDiv) {
@@ -374,7 +373,6 @@ var MultiColumnComboBox = /** @class */ (function (_super) {
374
373
  _this.trigger('actionComplete', { result: listItems }, function (e) {
375
374
  if (!_this.isMainDataUpdated) {
376
375
  _this.mainData = _this.gridData;
377
- _this.remoteDataLength = _this.gridData.length;
378
376
  _this.isMainDataUpdated = true;
379
377
  }
380
378
  if (_this.popupDiv) {
@@ -1338,8 +1336,7 @@ var MultiColumnComboBox = /** @class */ (function (_super) {
1338
1336
  var e = mouseEvent ? mouseEvent : keyEvent;
1339
1337
  var val = isKeyDown ? this.matchedContent : this.exactMatchedContent;
1340
1338
  if (!val && e.code !== 'Enter') {
1341
- this.inputEle.value = null;
1342
- this.setProperties({ value: null, index: null, text: null }, true);
1339
+ this.inputEle.value = this.value = this.index = this.text = null;
1343
1340
  }
1344
1341
  this.hidePopup(e);
1345
1342
  if (this.matchedRowEle && !isClearValues && val) {
@@ -1611,6 +1608,12 @@ var MultiColumnComboBox = /** @class */ (function (_super) {
1611
1608
  _this.inputEle.setAttribute('aria-activedescendant', firstRow.getAttribute('data-uid'));
1612
1609
  }
1613
1610
  }
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
+ }
1614
1617
  _this.popupObj.show(new Animation(eventArgs.animation), _this.popupEle.firstElementChild);
1615
1618
  }
1616
1619
  });