ru.coon 2.8.13 → 2.8.14
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 2.8.14, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/dcae10177e3289827d597b883c0e7be99ff45e98)
|
|
2
|
+
* ## Fixes
|
|
3
|
+
* <span style='color:red'>fix ClearFiltersButton visible status, HT-10125</span> ([689462], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/6894624e9d2cc0ba572308e2ac4c366a626432c8))
|
|
4
|
+
|
|
5
|
+
* update: CHANGELOG.md ([8bda50], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/8bda502e40800b08f934d9642f7089f5c71e343c))
|
|
6
|
+
|
|
1
7
|
# Version 2.8.13, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/33ee197b3f9236825df8a0fca08d2b6d8b873d65)
|
|
2
8
|
* TR-69125 feat: плагин ExecuteReportPlugin ([9950bc], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/9950bce3518c8edb9512d5125c3c0a7bca284c21))
|
|
3
9
|
* update: CHANGELOG.md ([d117f3], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/d117f322365a1d8d5399cb1031edc2a1d9579caf))
|
package/package.json
CHANGED
|
@@ -4,10 +4,10 @@ Ext.define('Coon.report.component.ClearFiltersButton', {
|
|
|
4
4
|
cls: 'ClearFiltersButton',
|
|
5
5
|
itemId: 'actionButton',
|
|
6
6
|
position: 998,
|
|
7
|
-
disabled: true,
|
|
8
7
|
focusOnToFront: false,
|
|
9
8
|
focusable: false,
|
|
10
9
|
allowDepress: false,
|
|
10
|
+
hidden: true,
|
|
11
11
|
iconCls: 'svg-icon svg-icon-filter-alt-off',
|
|
12
12
|
tooltip: 'Отключить фильтры в колонках',
|
|
13
13
|
toolbar: null,
|
|
@@ -26,7 +26,7 @@ Ext.define('Coon.report.component.ClearFiltersButton', {
|
|
|
26
26
|
ReportPanel && ReportPanel.grid;
|
|
27
27
|
this.grid = ReportPanel.grid;
|
|
28
28
|
this.grid.getStore().on('filterchange', (store) => {
|
|
29
|
-
this.
|
|
29
|
+
this.setHidden(!store.getFilters().length);
|
|
30
30
|
}, this);
|
|
31
31
|
};
|
|
32
32
|
if (this.toolbar) {
|
package/src/version.js
CHANGED