ru.coon 2.7.64 → 2.7.65
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,6 @@
|
|
|
1
|
+
# Version 2.7.65, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/575aaa8ea4982726ce21f98300e95aa55ecbb906)
|
|
2
|
+
* update: CHANGELOG.md ([72d780], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/72d7808927b07eb6ce33080c2b2e808b9b9a4a55))
|
|
3
|
+
|
|
1
4
|
# Version 2.7.64, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/8b0b9a392f1f27837b2ef59a39ab5e0cfb4c6167)
|
|
2
5
|
* ## Fixes
|
|
3
6
|
* <span style='color:red'> TR-68748: set aceEditor value on render editor</span> ([91d6a5], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/91d6a540b1c59bf30fc9b137d713dab6fd10f23c))
|
|
@@ -104,7 +107,10 @@ This reverts commit b3524303e203486f1c393f2174967c652d2f8c33.</span> ([0bfe61],
|
|
|
104
107
|
* <span style='color:green'>feat: TR-69015: css</span> ([ecd879], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/ecd87930a535ff13b0ad42eba28df9d1ed91cd2a))
|
|
105
108
|
|
|
106
109
|
* ## Fixes
|
|
110
|
+
* <span style='color:red'> HT-7916 ExportReportDataToFilePluginConfigPanel fix display checkboxes</span> ([4971af], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/4971af01b9196a138c382f04090bb681d11b40aa))
|
|
107
111
|
* <span style='color:red'> HT-9084 ReportColumnStatePlugin column width</span> ([b10a75], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/b10a75f78f92262543be268863961fda1113d9d5))
|
|
112
|
+
* <span style='color:red'> HT-7916 ExportReportDataToFilePluginConfigPanel fix display checkboxes</span> ([a32fb4], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/a32fb45007cdc8a1a32cb958a92ac490ab081fd9))
|
|
113
|
+
* <span style='color:red'> HT-7916 ExportReportDataToFilePluginConfigPanel fix displya checkboxes</span> ([a56d49], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/a56d4938522370475d73072188ac72851a2c010f))
|
|
108
114
|
|
|
109
115
|
* improve custom panel plugin tracing ([ed6206], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/ed62065b34ebb04520b62f6fce269e4d4cbb6d21))
|
|
110
116
|
* upd ([57157a], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/57157acdd88c0fa6702e5c5cbd321bc89d840d09))
|
package/package.json
CHANGED
|
@@ -179,9 +179,7 @@ Ext.define('Coon.report.plugin.configPanel.ExportReportDataToFilePluginConfigPan
|
|
|
179
179
|
|
|
180
180
|
doInit: function(config) {
|
|
181
181
|
this.callParent(arguments);
|
|
182
|
-
|
|
183
|
-
this.columnList = config.columnList;
|
|
184
|
-
}
|
|
182
|
+
this.columnList = config && config.columnList && Coon.util.parseJSON5(config.columnList) || [];
|
|
185
183
|
if (config.exportConfig) {
|
|
186
184
|
this.down('UiAceEditor').setValue(config.exportConfig);
|
|
187
185
|
}
|
|
@@ -201,7 +199,7 @@ Ext.define('Coon.report.plugin.configPanel.ExportReportDataToFilePluginConfigPan
|
|
|
201
199
|
return {
|
|
202
200
|
reportField: field[ns.$reportField],
|
|
203
201
|
description: field[ns.$description],
|
|
204
|
-
checkbox:
|
|
202
|
+
checkbox: this.columnList.find((col) => col.reportField === field[ns.$reportField]),
|
|
205
203
|
};
|
|
206
204
|
});
|
|
207
205
|
|
package/src/version.js
CHANGED