ru.coon 3.0.45 → 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,9 @@
|
|
|
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
|
+
|
|
1
7
|
# Version 3.0.45, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/4c1123590a85594273d7f6afb2bcf3533dcf9e84)
|
|
2
8
|
* add file ([a2c901], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/a2c9013f432fb69b32407f8edcb728b4646b38ed))
|
|
3
9
|
* update: CHANGELOG.md ([ab3e68], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/ab3e68df0b8af065a249d525f8b0b94d0c13d7d1))
|
package/package.json
CHANGED
|
@@ -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(
|
|
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