@syncfusion/ej2-multicolumn-combobox 27.1.48 → 27.2.2
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 -2
- package/dist/es6/ej2-multicolumn-combobox.es2015.js.map +1 -1
- package/dist/es6/ej2-multicolumn-combobox.es5.js +4 -2
- 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 +7 -8
- package/src/multicolumn-combobox/multi-column-combo-box.js +4 -2
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 27.
|
|
3
|
+
* version : 27.2.2
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2023. 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-multicolumn-combobox@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-multicolumn-combobox@
|
|
3
|
+
"_id": "@syncfusion/ej2-multicolumn-combobox@27.1.50",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-EOofLYL5/E3dbDSlmJDXjMWYY7pDlBOWu7XDJgsLZIdRoSpMi0k/qMQXoCkCC6LKhmZzJlv6ft9W+v2BeH5t8Q==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-multicolumn-combobox",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"/@syncfusion/ej2-react-multicolumn-combobox",
|
|
24
24
|
"/@syncfusion/ej2-vue-multicolumn-combobox"
|
|
25
25
|
],
|
|
26
|
-
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-
|
|
27
|
-
"_shasum": "
|
|
26
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-multicolumn-combobox/-/ej2-multicolumn-combobox-27.1.50.tgz",
|
|
27
|
+
"_shasum": "ed0fd49d62ea9ae2daa5ff23abfea820aaed40e5",
|
|
28
28
|
"_spec": "@syncfusion/ej2-multicolumn-combobox@*",
|
|
29
29
|
"_where": "/jenkins/workspace/elease-automation_release_27.1.1/packages/included",
|
|
30
30
|
"author": {
|
|
@@ -35,9 +35,8 @@
|
|
|
35
35
|
},
|
|
36
36
|
"bundleDependencies": false,
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@syncfusion/ej2-base": "~27.
|
|
39
|
-
"@syncfusion/ej2-grids": "~27.
|
|
40
|
-
"markdown-spellcheck": "^1.3.1"
|
|
38
|
+
"@syncfusion/ej2-base": "~27.2.2",
|
|
39
|
+
"@syncfusion/ej2-grids": "~27.2.2"
|
|
41
40
|
},
|
|
42
41
|
"deprecated": false,
|
|
43
42
|
"description": "Essential JS 2 Component",
|
|
@@ -58,6 +57,6 @@
|
|
|
58
57
|
"url": "git+https://github.com/syncfusion/ej2-multicolumn-combobox-component.git"
|
|
59
58
|
},
|
|
60
59
|
"typings": "index.d.ts",
|
|
61
|
-
"version": "27.
|
|
60
|
+
"version": "27.2.2",
|
|
62
61
|
"sideEffects": false
|
|
63
62
|
}
|
|
@@ -346,8 +346,10 @@ var MultiColumnComboBox = /** @class */ (function (_super) {
|
|
|
346
346
|
this.gridEle = this.createElement('div', { id: getUniqueID('grid'), className: MULTICOLUMNGRID });
|
|
347
347
|
this.updateGroupByField();
|
|
348
348
|
var sortOrder = this.sortOrder.toString().toLowerCase();
|
|
349
|
-
|
|
350
|
-
|
|
349
|
+
if (gridColumns.length > 0) {
|
|
350
|
+
// Set first column as primary key to avoid PRIMARY KEY MISSING warning.
|
|
351
|
+
this.gridObj.columns[0].isPrimaryKey = true;
|
|
352
|
+
}
|
|
351
353
|
if (sortOrder !== 'none') {
|
|
352
354
|
this.gridObj.sortSettings = { columns: [{ field: this.fields.text, direction: sortOrder === 'ascending' ?
|
|
353
355
|
SortOrder.Ascending : SortOrder.Descending }] };
|