ru.coon 3.0.32 → 3.0.34
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,15 @@
|
|
|
1
|
+
# Version 3.0.34, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/8a5a139a0d175b04071d997f3148975b245f2204)
|
|
2
|
+
* ## Fixes
|
|
3
|
+
* <span style='color:red'>HT-12713: fix viewModel create in UiCustomPanel</span> ([4327d0], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/4327d004933254cb409ca0f97a7194155542e1ea))
|
|
4
|
+
|
|
5
|
+
* update: CHANGELOG.md ([089c03], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/089c03c9164a661f1e13b2a9aac75aec5e5d82c3))
|
|
6
|
+
|
|
7
|
+
# Version 3.0.33, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/b59e8a5376f5c5d21b6f9c5d049683ab612c5a9b)
|
|
8
|
+
* ## Fixes
|
|
9
|
+
* <span style='color:red'>NEVA-947 fix UiCustomPanel reloadFrame</span> ([fa11cb], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/fa11cb33bf25866bf8a49035dd0121830cd9f5e3))
|
|
10
|
+
|
|
11
|
+
* update: CHANGELOG.md ([0b19f1], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/0b19f173f5285306bd642141ea01e5472782e44f))
|
|
12
|
+
|
|
1
13
|
# Version 3.0.32, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/54a1adc38f21829b195830d3eced818bf79b9ae8)
|
|
2
14
|
* HT-13143 feat: Доработка функционала тулбара ([143359], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/14335922547e88e2da04be44ecd90b62b10ba9bb))
|
|
3
15
|
* upd ([bfda87], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/bfda878d1063c5c85d7e606457e925186fe99c02))
|
package/package.json
CHANGED
|
@@ -62,9 +62,8 @@ Ext.define('Coon.uielement.component.UiCustomPanel', {
|
|
|
62
62
|
});
|
|
63
63
|
if (!this.inheritViewModel) {
|
|
64
64
|
data = Ext.applyIf(data, this.getViewModelData());
|
|
65
|
-
this.viewModel = Ext.create('Ext.app.ViewModel'
|
|
66
|
-
|
|
67
|
-
});
|
|
65
|
+
this.viewModel = Ext.create('Ext.app.ViewModel');
|
|
66
|
+
this.viewModel.setRoot(data);
|
|
68
67
|
}
|
|
69
68
|
this.callParent();
|
|
70
69
|
},
|
|
@@ -27,7 +27,7 @@ Ext.define('Coon.uielement.component.settings.UiCustomPanelEditorController', {
|
|
|
27
27
|
|
|
28
28
|
receiveMessage(event) {
|
|
29
29
|
if (event.data == 'give me elements') {
|
|
30
|
-
if (!this.getView()) {
|
|
30
|
+
if (!this.getView() || !this.isMyMessage(event)) {
|
|
31
31
|
return;
|
|
32
32
|
}
|
|
33
33
|
this.getViewModel().set('iframeIsFirstLoad', true);
|
|
@@ -42,6 +42,10 @@ Ext.define('Coon.uielement.component.settings.UiCustomPanelEditorController', {
|
|
|
42
42
|
}
|
|
43
43
|
},
|
|
44
44
|
|
|
45
|
+
isMyMessage(event) {
|
|
46
|
+
return event.source.frameElement && this.getView().getEl().getById(event.source.frameElement.id) || this.newPageRef;
|
|
47
|
+
},
|
|
48
|
+
|
|
45
49
|
init(view) {
|
|
46
50
|
view.doInit = this.doInit.bind(this);
|
|
47
51
|
this.lookup('pluginPanel').fireEvent('load', []);
|
package/src/version.js
CHANGED