ru.coon 3.0.21 → 3.0.23

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,13 @@
1
+ # Version 3.0.23, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/8c2e07ade525ae0bd4a8e71f881c06d44e51ecb3)
2
+ * ## Fixes
3
+ * <span style='color:red'>HT-13007 fix BindCustomPanelPlugin addSidePanel order</span> ([c8b5e0], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/c8b5e0281a47b03aaccfc7716d85cb7686992c5c))
4
+
5
+ * update: CHANGELOG.md ([1414f1], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/1414f1c83b7abada29361077e77c67f6b3dc7bf2))
6
+
7
+ # Version 3.0.22, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/1d912ab5696d127c149567f6875999afcfda9ea1)
8
+ * upd ([cb2cb5], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/cb2cb5871bf381f424c32e05c115c37b449ac9dd))
9
+ * update: CHANGELOG.md ([d189c0], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/d189c0d707920198a9f33999cf00a0b7c9f143d4))
10
+
1
11
  # Version 3.0.21, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/04ed8df15fcf0a73809d76a9054aefd9e62f470a)
2
12
  * ## Fixes
3
13
  * <span style='color:red'>fix</span> ([bad5b1], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/bad5b17120217a291a1f87f9e9e52ded91396f3c))
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "name": "ru.coon"
5
5
  },
6
6
  "description": "",
7
- "version": "3.0.21",
7
+ "version": "3.0.23",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "git+http://gitlab-dbr.sigma-it.local/dbr/ru.coon"
@@ -62,7 +62,7 @@ Ext.define('Coon.report.plugin.grid.ReportContainerPlugin', {
62
62
  panel.clear = Ext.bind(function() {
63
63
  if (typeof panelClear === 'function') {
64
64
  deferedArguments = null;
65
- panel.clear.apply(panel, arguments);
65
+ panelClear.apply(panel, arguments);
66
66
  }
67
67
  }, this);
68
68
 
@@ -60,7 +60,7 @@ Ext.define('Coon.report.plugin.grid.ReportTabContainerPlugin', {
60
60
  panel.clear = Ext.bind(function() {
61
61
  deferedArguments = null;
62
62
  if (typeof panelClear === 'function') {
63
- panel.clear.apply(panel, arguments);
63
+ panelClear.apply(panel, arguments);
64
64
  }
65
65
  }, this);
66
66
 
@@ -44,24 +44,16 @@ Ext.define('Coon.report.plugin.report.BindCustomPanelPlugin', {
44
44
  'convertAdvancedProperties' : 'convertProperties'](this.properties));
45
45
 
46
46
  if (this.panelXType === 'UiCustomPanel') {
47
- const UiCPEntity = Ext.create('Coon.uielement.UiCPEntity');
48
- UiCPEntity.load(properties.uiElementCd).then((me) => {
49
- if (!me.isLoadError) {
50
- this.panel = Ext.widget('UiCustomPanel', Ext.apply(properties, me.getConfig()));
51
- this.afterCreatePanel(config);
52
- }
53
- }).catch((e) => {
54
- Coon.log.error(e);
55
- });
47
+ this.panel = Ext.widget('UICPWrapper', properties);
56
48
  } else {
57
49
  this.panel = Ext.widget(this.panelXType, properties);
58
- this.afterCreatePanel(config);
59
50
  }
51
+ this.report.addSidePanel(this.panel, this.position, config);
52
+ this.afterCreatePanel(config);
60
53
  }, this);
61
54
  },
62
55
 
63
56
  afterCreatePanel: function(config) {
64
- this.report.addSidePanel(this.panel, this.position, config);
65
57
  this.component.getStore().on('load', this.initHandler, this);
66
58
  if (this.dependOnGridRow) {
67
59
  this.component.getSelectionModel().on('select', this.initHandler, this);
@@ -0,0 +1,26 @@
1
+ .UiCPConfigPanel {
2
+ .errorsCountMsg, .errorsCountBtn span[data-ref="btnInnerEl"] {
3
+ color: red !important;
4
+ }
5
+
6
+ .errorsCountBtn, .warningCountBtn {
7
+ font-size: 15px !important;
8
+ background-color: white !important;
9
+ }
10
+
11
+ .warningCountBtn span[data-ref="btnInnerEl"] {
12
+ color: #b9b92d !important;
13
+ }
14
+
15
+ .errorsCountMsg {
16
+ margin-top: 12px !important;
17
+ }
18
+
19
+ .x-warningCountBtn-focus {
20
+ background-color: white !important;
21
+ }
22
+
23
+ .x-warningCountMenuItem-focus a[data-ref="itemEl"] {
24
+ background-color: #d0d0d0 !important;
25
+ }
26
+ }
package/src/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  Ext.define('Coon.version', {
2
2
  singleton: true,
3
- number: '3.0.21',
3
+ number: '3.0.23',
4
4
  });