ru.coon 3.0.71 → 3.0.72

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,11 @@
1
+ # Version 3.0.72, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/c2f5896748cca4a1467fa9dedd00ed69b950c033)
2
+ * ## Fixes
3
+ * <span style='color:red'> исправление отображения кнопок репорта</span> ([45f49f], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/45f49ff03cfd18a299ba92a73f415fc86f9c6bbf))
4
+
5
+ * remove span if no title ([33c3f7], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/33c3f713cbee011f31de9a68216b5f615477fb0d))
6
+ * HT-14867 fix: Исправление подсветки выделенной строки. Отключение черезполосной раскраски строки при наличии плагина GridRowStylePlugin. ([650840], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/6508409dac9bffbdfd672f2befd4f52e0d7dc40c))
7
+ * update: CHANGELOG.md ([7c81a0], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/7c81a089d558f6788dd14582814325cd1d331e9c))
8
+
1
9
  # Version 3.0.71, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/c392614cffea74a4f5b5886307e26be5fffcb14a)
2
10
  * update: CHANGELOG.md ([f10394], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/f10394bec0b7055bc79a4716495bc9049e994758))
3
11
 
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "name": "ru.coon"
5
5
  },
6
6
  "description": "",
7
- "version": "3.0.71",
7
+ "version": "3.0.72",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "git+http://gitlab-dbr.sigma-it.local/dbr/ru.coon"
@@ -129,7 +129,7 @@ Ext.define('Coon.app.viewPort.CenterView', {
129
129
  this.add(component);
130
130
 
131
131
  component.on('titlechange', function(_, title) {
132
- title = title || Coon.format.withHint('<span style="color:red">---</span>', 'заголовок не задан');
132
+ title = title || Coon.format.withHint('', 'заголовок не задан');
133
133
  if (typeof title !== 'string') {
134
134
  if (typeof title.getTitle !== 'function') {
135
135
  return;
@@ -162,7 +162,7 @@ Ext.define('Coon.common.panel.WindowWrap', {
162
162
  }, this);
163
163
 
164
164
  this.content.on('titlechange', function(_, title) {
165
- title = title || Coon.format.withHint('<span style="color:red">---</span>', 'заголовок не задан');
165
+ title = title || Coon.format.withHint('', 'заголовок не задан');
166
166
  if (typeof title !== 'string') {
167
167
  if (typeof title.getTitle !== 'function') {
168
168
  return;
@@ -866,11 +866,6 @@ Ext.define('Coon.report.component.ReportPanel', {
866
866
  }
867
867
  config[prefix + 'type'] = plugin[ns.$uiElement].xtype || plugin[ns.$xtype];
868
868
  config[ns.$sortSequence] = plugin[ns.$sortSequence] || null;
869
- config.pluginConfig = {
870
- properties: Object.assign({}, config),
871
- type,
872
- name: prefix + 'type',
873
- };
874
869
  return config;
875
870
  });
876
871
  },
@@ -54,8 +54,10 @@
54
54
  .x-grid-cell.filtered-cell {
55
55
  //background-color: #fff6e8;
56
56
  }
57
+ }
58
+ .ReportGrid:not(.gridrowstyleplugin) {
57
59
  .x-grid-with-row-lines.enable-striped-rows {
58
- .x-grid-item-alt:not(.inheritParentBgColor, .x-grid-item-over) {
60
+ .x-grid-item-alt:not(.x-grid-item-selected, .x-grid-item-over) {
59
61
  background-color: rgba(137, 204, 198, 0.07);
60
62
  }
61
63
  }
@@ -271,7 +271,6 @@ Ext.define('Coon.report.plugin.grid.GridRowStylePlugin', {
271
271
  if (uniqCls) {
272
272
  grid.addCls(uniqCls);
273
273
  }
274
- grid.addCls('gridrowstyleplugin');
275
274
  }
276
275
  if (this.treeNodesColors !== false && this.treeNodesColors !== '') {
277
276
  const proto = Ext.ClassManager.classes[Ext.ClassManager.aliasToName['widget.'+grid.xtype]].prototype;
@@ -153,7 +153,7 @@ Ext.define('Coon.uielement.component.UiCustomController', {
153
153
  if (!typeof title === 'string') {
154
154
  return;
155
155
  }
156
- title = title || Coon.format.withHint('<span style="color:red">---</span>', 'заголовок не задан');
156
+ title = title || Coon.format.withHint('', 'заголовок не задан');
157
157
  view.titleText = title;
158
158
  if (
159
159
  view.tab && typeof view.tab.setTooltip === 'function'
package/src/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  Ext.define('Coon.version', {
2
2
  singleton: true,
3
- number: '3.0.71',
3
+ number: '3.0.72',
4
4
  });