ru.coon 2.7.7 → 2.7.8
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.7.8, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/360535550b87a8cfd8a9186d1264809edd226ada)
|
|
2
|
+
* ## Features
|
|
3
|
+
* <span style='color:green'>feat: HT-8397: publish state properties grid on change</span> ([9d65e5], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/9d65e5e871e9778c9ec1d9770ee2e8804b229b47))
|
|
4
|
+
|
|
5
|
+
* update: CHANGELOG.md ([52f34d], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/52f34db2ead3febb4225a85f3c2a1522d536a9e7))
|
|
6
|
+
|
|
1
7
|
# Version 2.7.7, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/f0c25945de971960d59df2b576e159e08fb535ef)
|
|
2
8
|
* HT-7850 fix: В FilterConditionToolbar убрано отображение чипов для скрытых полей фильтра. ([8b16f9], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/8b16f9de62121e0d9d562dcd6e032655d100a417))
|
|
3
9
|
* update: CHANGELOG.md ([e0b4b0], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/e0b4b04a9ddfe329cdcbb440f61d33219ce1cf73))
|
package/package.json
CHANGED
|
@@ -99,6 +99,7 @@ Ext.define('Coon.report.component.settings.property.ReportPropertiesPanelControl
|
|
|
99
99
|
this.lookup('propertyValueContainer').removeAll();
|
|
100
100
|
|
|
101
101
|
this.propertySelectPanel.close();
|
|
102
|
+
this.getView().fireEvent('propertyChanged');
|
|
102
103
|
return;
|
|
103
104
|
},
|
|
104
105
|
|
|
@@ -162,6 +163,7 @@ Ext.define('Coon.report.component.settings.property.ReportPropertiesPanelControl
|
|
|
162
163
|
const value = vm.get('editorValue');
|
|
163
164
|
const record = vm.get('propertyGrid.selection');
|
|
164
165
|
record.set('value', value);
|
|
166
|
+
this.getView().fireEvent('propertyChanged');
|
|
165
167
|
},
|
|
166
168
|
|
|
167
169
|
onShowContextMenu: function(_, record, __, ___, e) {
|
|
@@ -207,6 +209,7 @@ Ext.define('Coon.report.component.settings.property.ReportPropertiesPanelControl
|
|
|
207
209
|
}
|
|
208
210
|
this.lookup('descriptionField').reset();
|
|
209
211
|
this.lookup('propertyValueContainer').removeAll();
|
|
212
|
+
this.getView().fireEvent('propertyChanged');
|
|
210
213
|
},
|
|
211
214
|
|
|
212
215
|
onAddHandler() {
|
package/src/version.js
CHANGED