@syncfusion/ej2-dropdowns 20.1.50 → 20.1.51

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.50
3
+ * version : 20.1.51
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.47",
3
+ "_id": "@syncfusion/ej2-dropdowns@20.1.50",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-O84aLNrIKc+M8pYK06yf2/qlKv39Q4M7KdWQeEuXlRo6V0+OLg0HcIC1tls0H0v7ZKT9J7szMBn8GONty/VE2A==",
5
+ "_integrity": "sha512-42Na+hugdkCNsRVtXmVZOYhn0yKFOJSd5UZcM+Jp4nCAL/QINQ+d9Q8wGoUe6t5fQpa/LDnud77tKVzrBcs+KA==",
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.47.tgz",
37
- "_shasum": "37eea260b24af18c9082962fbb7796b8fc6a5b40",
36
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-dropdowns/-/ej2-dropdowns-20.1.50.tgz",
37
+ "_shasum": "d83ce921a44211784a755b3f4fca309370e950d4",
38
38
  "_spec": "@syncfusion/ej2-dropdowns@*",
39
39
  "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
40
40
  "author": {
@@ -46,7 +46,7 @@
46
46
  "@syncfusion/ej2-data": "~20.1.47",
47
47
  "@syncfusion/ej2-inputs": "~20.1.48",
48
48
  "@syncfusion/ej2-lists": "~20.1.47",
49
- "@syncfusion/ej2-navigations": "~20.1.48",
49
+ "@syncfusion/ej2-navigations": "~20.1.51",
50
50
  "@syncfusion/ej2-popups": "~20.1.47"
51
51
  },
52
52
  "deprecated": false,
@@ -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.50",
75
+ "version": "20.1.51",
76
76
  "sideEffects": false
77
77
  }
@@ -888,6 +888,7 @@ var DropDownBase = /** @class */ (function (_super) {
888
888
  dataSource = this.selectData;
889
889
  }
890
890
  }
891
+ dataSource = this.getModuleName() === 'combobox' && this.selectData && dataSource instanceof Array && dataSource.length < this.selectData.length ? this.selectData : dataSource;
891
892
  this.setListData(dataSource, fields, query);
892
893
  }
893
894
  };
@@ -1054,7 +1054,7 @@ var ListBox = /** @class */ (function (_super) {
1054
1054
  var filterQuery = query ? query.clone() : this.query ? this.query.clone() : new Query();
1055
1055
  if (this.allowFiltering) {
1056
1056
  var filterType = this.inputString === '' ? 'contains' : this.filterType;
1057
- var dataType = this.typeOfData(this.dataSource).typeof;
1057
+ var dataType = this.typeOfData(this.jsonData).typeof;
1058
1058
  if (!(this.dataSource instanceof DataManager) && dataType === 'string' || dataType === 'number') {
1059
1059
  filterQuery.where('', filterType, this.inputString, this.ignoreCase, this.ignoreAccent);
1060
1060
  }