ru.coon 3.0.44 → 3.0.46

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/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ # Version 3.0.46, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/6feb5506104ee6d9dcca9e829363f387ff566dcf)
2
+ * ## Fixes
3
+ * <span style='color:red'> ThreeStateCheckColumn, getGrid</span> ([0b4fab], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/0b4fabcd5365e978b332f1b2685a39c805b1b267))
4
+
5
+ * update: CHANGELOG.md ([f23acb], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/f23acb967ec5865f64fed4f02738ef9efbc9d8aa))
6
+
7
+ # Version 3.0.45, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/4c1123590a85594273d7f6afb2bcf3533dcf9e84)
8
+ * add file ([a2c901], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/a2c9013f432fb69b32407f8edcb728b4646b38ed))
9
+ * update: CHANGELOG.md ([ab3e68], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/ab3e68df0b8af065a249d525f8b0b94d0c13d7d1))
10
+
1
11
  # Version 3.0.44, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/756720c821a0d995e730a59515674c414c9c3a14)
2
12
  * HT-13021 feat: Рефакторинг SelectionModelPlugin ([431870], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/431870ce07d71eb0d366c1407e7c4a6cf11672e3))
3
13
  * update: CHANGELOG.md ([bdfcd8], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/bdfcd820035ddda767868813dca5d0a1d1f5a87f))
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "name": "ru.coon"
5
5
  },
6
6
  "description": "",
7
- "version": "3.0.44",
7
+ "version": "3.0.46",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "git+http://gitlab-dbr.sigma-it.local/dbr/ru.coon"
@@ -83,7 +83,7 @@ Ext.define('Coon.report.column.ThreeStateCheckColumn', {
83
83
 
84
84
  getGrid() {
85
85
  if (!this.grid) {
86
- this.grid = this.up('grid');
86
+ this.grid = this.up('ReportTree,ReportGrid');
87
87
  }
88
88
  return this.grid;
89
89
  },
@@ -1007,7 +1007,13 @@ Ext.define('Coon.report.component.ReportPanel', {
1007
1007
 
1008
1008
  const widget = Ext.widget(
1009
1009
  this.getIsTree() ? 'ReportTree' : 'ReportGrid',
1010
- Ext.apply(defaultGridConfig, this.gridProperties, {reportId: reportBean[ns.$reportId]})
1010
+ Ext.apply(
1011
+ defaultGridConfig,
1012
+ this.gridProperties,
1013
+ {
1014
+ reportId: reportBean[ns.$reportId],
1015
+ }
1016
+ )
1011
1017
  );
1012
1018
 
1013
1019
  if (widget.contextMenu) {
package/src/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  Ext.define('Coon.version', {
2
2
  singleton: true,
3
- number: '3.0.44',
3
+ number: '3.0.46',
4
4
  });