@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.
- package/CHANGELOG.md +8 -0
- package/dist/ej2-dropdowns.umd.min.js +2 -2
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +2 -1
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +2 -1
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +2 -2
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +6 -6
- package/src/drop-down-base/drop-down-base.js +1 -0
- package/src/list-box/list-box.js +1 -1
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 20.1.
|
|
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.
|
|
3
|
+
"_id": "@syncfusion/ej2-dropdowns@20.1.50",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
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.
|
|
37
|
-
"_shasum": "
|
|
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.
|
|
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.
|
|
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
|
};
|
package/src/list-box/list-box.js
CHANGED
|
@@ -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.
|
|
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
|
}
|