ru.coon 3.0.13 → 3.0.15

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,19 @@
1
+ # Version 3.0.15, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/ebec3e2f599580e97ee0ced7b29786d721c0e40e)
2
+ * ## Fixes
3
+ * <span style='color:red'> move browserDefaultTitle support after authorize</span> ([f95450], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/f95450d8a72afa7e69ccaef8a3835654051f516a))
4
+
5
+ * update: CHANGELOG.md ([70df28], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/70df2856670efb45ad2d8f4411db4d3a4383d451))
6
+
7
+ # Version 3.0.14, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/890e3c097991d881753655efc63741eefbc1b780)
8
+ * ## Features
9
+ * <span style='color:green'>feat: HT-12659 Разработка единого нижнего тулбара с информацией о начитанных строках в репортах</span> ([05f449], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/05f449f4169bb1986be6e4eb1cda5c4ccbc1f06d))
10
+
11
+ * ## Fixes
12
+ * <span style='color:red'> HT-12659 upd</span> ([5919b7], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/5919b7f01a2fd29751491b35bb333b89b8fd022b))
13
+
14
+ * add browserDefaultTitle property support ([a71954], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/a7195469d5c2c1dde8a01e864c7732b4400d034d))
15
+ * update: CHANGELOG.md ([9cb7b5], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/9cb7b563a79abfa6f41043a6900c05aa94d9904f))
16
+
1
17
  # Version 3.0.13, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/69daa3a3eded1749d18511d789e78fb16183c688)
2
18
  * update: CHANGELOG.md ([eb9d44], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/eb9d449ea27de953433b6b94e08da7d06acf3365))
3
19
 
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.15",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "git+http://gitlab-dbr.sigma-it.local/dbr/ru.coon"
@@ -11,6 +11,15 @@ Ext.define('Coon.app.Application', {
11
11
  this.appRouter = Coon.app.Router;
12
12
  },
13
13
 
14
+ setDefaultWindowTitle() {
15
+ Coon.SystemProperties.fetch('browserDefaultTitle').then((title) => {
16
+ if (!title) {
17
+ return;
18
+ }
19
+ window.document.title = title;
20
+ }).catch((error) => console.error('setDefaultWindowTitle', error));
21
+ },
22
+
14
23
  onLogout: function() {
15
24
  Ext.Msg.show({
16
25
  title: 'Сообщение системы',
@@ -190,6 +199,7 @@ Ext.define('Coon.app.Application', {
190
199
  }).then((res) => {
191
200
  if (Ext.isString(res.responseText)) {
192
201
  this.setUserData(res.responseText);
202
+ this.setDefaultWindowTitle();
193
203
  }
194
204
  }).catch((res) => {
195
205
  if (res.status === 401) {
@@ -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.15',
4
4
  });