@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.
- package/.eslintrc.json +2 -0
- 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 +8 -0
- package/dist/es6/ej2-multicolumn-combobox.es2015.js.map +1 -1
- package/dist/es6/ej2-multicolumn-combobox.es5.js +8 -0
- 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 +14 -49
- package/src/multicolumn-combobox/multi-column-combo-box.d.ts +1 -0
- package/src/multicolumn-combobox/multi-column-combo-box.js +8 -0
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version :
|
|
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
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
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": "~
|
|
39
|
-
"@syncfusion/ej2-grids": "~
|
|
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": "
|
|
23
|
+
"url": "https://github.com/syncfusion/ej2-multicolumn-combobox-component.git"
|
|
58
24
|
},
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"sideEffects": false
|
|
25
|
+
"sideEffects": false,
|
|
26
|
+
"homepage": "https://www.syncfusion.com/javascript-ui-controls"
|
|
62
27
|
}
|
|
@@ -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
|
};
|