@syncfusion/ej2-multicolumn-combobox 29.2.4 → 30.1.37

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 : 29.2.4
3
+ * version : 30.1.37
4
4
  * Copyright Syncfusion Inc. 2001 - 2024. 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,62 +1,27 @@
1
1
  {
2
- "_from": "@syncfusion/ej2-multicolumn-combobox@*",
3
- "_id": "@syncfusion/ej2-multicolumn-combobox@29.1.40",
4
- "_inBundle": false,
5
- "_integrity": "sha512-VLAfsH/NyGm5CPBaNYfPdkU2zmbK4Q9+ZZ6QFvNnbZ+F2sChCSGsHLjJJ+CbNA9RvB3fGuTXCQB/5zff6VRQFA==",
6
- "_location": "/@syncfusion/ej2-multicolumn-combobox",
7
- "_phantomChildren": {},
8
- "_requested": {
9
- "type": "range",
10
- "registry": true,
11
- "raw": "@syncfusion/ej2-multicolumn-combobox@*",
12
- "name": "@syncfusion/ej2-multicolumn-combobox",
13
- "escapedName": "@syncfusion%2fej2-multicolumn-combobox",
14
- "scope": "@syncfusion",
15
- "rawSpec": "*",
16
- "saveSpec": null,
17
- "fetchSpec": "*"
18
- },
19
- "_requiredBy": [
20
- "/",
21
- "/@syncfusion/ej2",
22
- "/@syncfusion/ej2-angular-multicolumn-combobox",
23
- "/@syncfusion/ej2-react-multicolumn-combobox",
24
- "/@syncfusion/ej2-vue-multicolumn-combobox"
25
- ],
26
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-multicolumn-combobox/-/ej2-multicolumn-combobox-29.1.40.tgz",
27
- "_shasum": "3b87153c8da9c1646200aaf3ed8b6142eb39a246",
28
- "_spec": "@syncfusion/ej2-multicolumn-combobox@*",
29
- "_where": "/jenkins/workspace/elease-automation_release_29.1.1/packages/included",
30
- "author": {
31
- "name": "Syncfusion Inc."
32
- },
33
- "bugs": {
34
- "url": "https://github.com/syncfusion/ej2-multicolumn-combobox-component/issues"
35
- },
36
- "bundleDependencies": false,
2
+ "name": "@syncfusion/ej2-multicolumn-combobox",
3
+ "version": "30.1.37",
4
+ "description": "Essential JS 2 Component",
5
+ "author": "Syncfusion Inc.",
6
+ "license": "SEE LICENSE IN license",
7
+ "main": "./dist/ej2-multicolumn-combobox.umd.min.js",
8
+ "module": "./index.js",
9
+ "es2015": "./dist/es6/ej2-multicolumn-combobox.es5.js",
10
+ "typings": "index.d.ts",
37
11
  "dependencies": {
38
- "@syncfusion/ej2-base": "~29.2.4",
39
- "@syncfusion/ej2-grids": "~29.2.4"
12
+ "@syncfusion/ej2-base": "~30.1.37",
13
+ "@syncfusion/ej2-grids": "~30.1.37"
40
14
  },
41
- "deprecated": false,
42
- "description": "Essential JS 2 Component",
43
15
  "devDependencies": {},
44
- "es2015": "./dist/es6/ej2-multicolumn-combobox.es5.js",
45
- "homepage": "https://www.syncfusion.com/javascript-ui-controls",
46
16
  "keywords": [
47
17
  "ej2",
48
18
  "syncfusion",
49
19
  "ej2-multicolumn-combobox"
50
20
  ],
51
- "license": "SEE LICENSE IN license",
52
- "main": "./dist/ej2-multicolumn-combobox.umd.min.js",
53
- "module": "./index.js",
54
- "name": "@syncfusion/ej2-multicolumn-combobox",
55
21
  "repository": {
56
22
  "type": "git",
57
- "url": "git+https://github.com/syncfusion/ej2-multicolumn-combobox-component.git"
23
+ "url": "https://github.com/syncfusion/ej2-multicolumn-combobox-component.git"
58
24
  },
59
- "typings": "index.d.ts",
60
- "version": "29.2.4",
61
- "sideEffects": false
25
+ "sideEffects": false,
26
+ "homepage": "https://www.syncfusion.com/javascript-ui-controls"
62
27
  }
@@ -783,6 +783,7 @@ export declare class MultiColumnComboBox extends Component<HTMLElement> implemen
783
783
  private selectedRowIndex;
784
784
  private isShowSpinner;
785
785
  private hiddenElement;
786
+ private isLocaleChanged;
786
787
  /**
787
788
  * *Constructor for creating the component
788
789
  *
@@ -548,6 +548,11 @@ var MultiColumnComboBox = /** @class */ (function (_super) {
548
548
  };
549
549
  MultiColumnComboBox.prototype.onDataBound = function () {
550
550
  var _this = this;
551
+ if (this.isLocaleChanged) {
552
+ this.isLocaleChanged = false;
553
+ this.unWireEvents();
554
+ this.wireEvents();
555
+ }
551
556
  var dataCount = this.dataSource.length;
552
557
  var popupChild = this.popupDiv.querySelector('.' + MULTICOLUMNGRID);
553
558
  var hasNoDataClass = this.popupDiv.classList.contains(NODATA);
@@ -1914,6 +1919,9 @@ var MultiColumnComboBox = /** @class */ (function (_super) {
1914
1919
  this.gridObj.columns = gridColumns;
1915
1920
  }
1916
1921
  break;
1922
+ case 'locale':
1923
+ this.isLocaleChanged = true;
1924
+ break;
1917
1925
  }
1918
1926
  }
1919
1927
  };