@syncfusion/ej2-multicolumn-combobox 27.2.4 → 27.2.5

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.2.4
3
+ * version : 27.2.5
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.2.3",
3
+ "_id": "@syncfusion/ej2-multicolumn-combobox@27.2.4",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-CkUV8XpzLeT7Q3yc5z5TpX0LW8o/TU3uSkv0MR8iLizOiwey/6vvZuDtMb+109OZSMSHGvE8j1yvaxpHUNFIYw==",
5
+ "_integrity": "sha512-GnM9DL0XEo5WHlt4uf78P2Mzr7WAbgb6jY+0hKBw0Fu7B6666Fa8mdF8T4qka3ttiqx2vo3CdSiPcpxBUWHWsw==",
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.2.3.tgz",
27
- "_shasum": "31dc86ead9867dad09ea2231e6a0c57b96931507",
26
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-multicolumn-combobox/-/ej2-multicolumn-combobox-27.2.4.tgz",
27
+ "_shasum": "f28af60fb8ce6bbab674a87562a8f8975740ab0a",
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.2.2",
39
- "@syncfusion/ej2-grids": "~27.2.4"
38
+ "@syncfusion/ej2-base": "~27.2.5",
39
+ "@syncfusion/ej2-grids": "~27.2.5"
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.2.4",
60
+ "version": "27.2.5",
61
61
  "sideEffects": false
62
62
  }
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Ribbon modules
2
+ * MultiColumn ComboBox modules
3
3
  */
4
4
  export * from './multi-column-combo-box';
5
5
  export * from './multi-column-combo-box-model';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Ribbon modules
2
+ * MultiColumn ComboBox modules
3
3
  */
4
4
  export * from './multi-column-combo-box';
5
5
  export { Sort, VirtualScroll, Group, Edit } from '@syncfusion/ej2-grids';
@@ -343,9 +343,21 @@ var MultiColumnComboBox = /** @class */ (function (_super) {
343
343
  _this.gridKeyActionHandler(args, true);
344
344
  }
345
345
  },
346
- resizing: function (args) { _this.gridSettings.resizing(args); },
347
- resizeStart: function (args) { _this.gridSettings.resizeStart(args); },
348
- resizeStop: function (args) { _this.gridSettings.resizeStop(args); }
346
+ resizing: function (args) {
347
+ if (_this.gridSettings.resizing) {
348
+ _this.gridSettings.resizing.call(_this, args);
349
+ }
350
+ },
351
+ resizeStart: function (args) {
352
+ if (_this.gridSettings.resizeStart) {
353
+ _this.gridSettings.resizeStart.call(_this, args);
354
+ }
355
+ },
356
+ resizeStop: function (args) {
357
+ if (_this.gridSettings.resizeStop) {
358
+ _this.gridSettings.resizeStop.call(_this, args);
359
+ }
360
+ }
349
361
  });
350
362
  this.gridEle = this.createElement('div', { id: getUniqueID('grid'), className: MULTICOLUMNGRID });
351
363
  this.updateGroupByField();