@syncfusion/ej2-multicolumn-combobox 27.1.50 → 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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 27.1.50
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@27.1.48",
3
+ "_id": "@syncfusion/ej2-multicolumn-combobox@27.1.50",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-mH+FtBZH163NMhWO7mcKD5zrGGFYQwqfJHyOcKLb7lVCOTRe9IX+5/7AJqgOFKrt39fFg6mVFfnqSLyM7wPzcQ==",
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-hotfix-new/@syncfusion/ej2-multicolumn-combobox/-/ej2-multicolumn-combobox-27.1.48.tgz",
27
- "_shasum": "17f5a0f611fde0cd72e7d3a51a5d5e443b74424b",
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,8 +35,8 @@
35
35
  },
36
36
  "bundleDependencies": false,
37
37
  "dependencies": {
38
- "@syncfusion/ej2-base": "~27.1.50",
39
- "@syncfusion/ej2-grids": "~27.1.50"
38
+ "@syncfusion/ej2-base": "~27.2.2",
39
+ "@syncfusion/ej2-grids": "~27.2.2"
40
40
  },
41
41
  "deprecated": false,
42
42
  "description": "Essential JS 2 Component",
@@ -57,6 +57,6 @@
57
57
  "url": "git+https://github.com/syncfusion/ej2-multicolumn-combobox-component.git"
58
58
  },
59
59
  "typings": "index.d.ts",
60
- "version": "27.1.50",
60
+ "version": "27.2.2",
61
61
  "sideEffects": false
62
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
- // Set first column as primary key to avoid PRIMARY KEY MISSING warning.
350
- this.gridObj.columns[0].isPrimaryKey = true;
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 }] };