ru.coon 3.0.13 → 3.0.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,13 @@
1
+ # Version 3.0.14, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/890e3c097991d881753655efc63741eefbc1b780)
2
+ * ## Features
3
+ * <span style='color:green'>feat: HT-12659 Разработка единого нижнего тулбара с информацией о начитанных строках в репортах</span> ([05f449], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/05f449f4169bb1986be6e4eb1cda5c4ccbc1f06d))
4
+
5
+ * ## Fixes
6
+ * <span style='color:red'> HT-12659 upd</span> ([5919b7], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/5919b7f01a2fd29751491b35bb333b89b8fd022b))
7
+
8
+ * add browserDefaultTitle property support ([a71954], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/a7195469d5c2c1dde8a01e864c7732b4400d034d))
9
+ * update: CHANGELOG.md ([9cb7b5], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/9cb7b563a79abfa6f41043a6900c05aa94d9904f))
10
+
1
11
  # Version 3.0.13, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/69daa3a3eded1749d18511d789e78fb16183c688)
2
12
  * update: CHANGELOG.md ([eb9d44], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/eb9d449ea27de953433b6b94e08da7d06acf3365))
3
13
 
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "name": "ru.coon"
5
5
  },
6
6
  "description": "",
7
- "version": "3.0.13",
7
+ "version": "3.0.14",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "git+http://gitlab-dbr.sigma-it.local/dbr/ru.coon"
@@ -9,6 +9,12 @@ Ext.define('Coon.app.Application', {
9
9
 
10
10
  init() {
11
11
  this.appRouter = Coon.app.Router;
12
+ Coon.SystemProperties.fetch('browserDefaultTitle').then((title) => {
13
+ if (!title) {
14
+ return;
15
+ }
16
+ window.document.title = title;
17
+ });
12
18
  },
13
19
 
14
20
  onLogout: function() {
@@ -67,7 +67,7 @@ Ext.define('Coon.nav.AppNavigationPanelController', {
67
67
  if (!item) {
68
68
  return;
69
69
  }
70
- document.title = item.text;
70
+ // document.title = item.text;
71
71
  Ext.fireEvent('nav:menuitemchange', item, this);
72
72
  this.changeWorkSpace(item.WORKSPACE_CD);
73
73
  },
@@ -842,6 +842,7 @@ Ext.define('Coon.report.component.ReportPanel', {
842
842
  }
843
843
  return 0;
844
844
  },
845
+
845
846
  checkGroupFeature(gridConfig, plugins) {
846
847
  const groupRowsPlugin = plugins.find((plugin) => plugin.ptype === 'GroupRowsPlugin');
847
848
  if (groupRowsPlugin && groupRowsPlugin.addGrouping && groupRowsPlugin.groupField) {
@@ -910,7 +911,8 @@ Ext.define('Coon.report.component.ReportPanel', {
910
911
  {ptype: 'GridContextMenu'},
911
912
  {ptype: 'gridexporter'},
912
913
  {ptype: 'AddFilterConditionPlugin'},
913
- {ptype: 'CalculatorPlugin'}
914
+ {ptype: 'CalculatorPlugin'},
915
+ {ptype: 'GridRowCountPlugin'}
914
916
  ]);
915
917
  plugins.sort(this.raiseUpGroupButton);
916
918
 
package/src/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  Ext.define('Coon.version', {
2
2
  singleton: true,
3
- number: '3.0.13',
3
+ number: '3.0.14',
4
4
  });