ru.coon 3.0.75 → 3.0.77

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,9 +1,19 @@
1
+ # Version 3.0.77, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/d15ddab76fd455fb8b9b82cbff864158bbf9a462)
2
+ * ## Features
3
+ * <span style='color:green'>feat: move new tab after current</span> ([775c5f], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/775c5fd4ffc07e70db7b3524c260410448b21d4a))
4
+
5
+ * update: CHANGELOG.md ([ee60b0], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/ee60b048f763cbf3d45439a54fbab4c370bb954f))
6
+
7
+ # Version 3.0.76, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/fcaeb8313f0e64d8f380e69efed2665ba4b4a6d6)
8
+ * update: CHANGELOG.md ([640dc5], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/640dc51e5601eba349bc14c91ec0641c4a8d1d86))
9
+
1
10
  # Version 3.0.75, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/bca8dfcc721f5bf5f9150e54f382e6224565f427)
2
11
  * ## Fixes
3
12
  * <span style='color:red'> исправление в PeriodPickerPlugin сообщений minText и maxText</span> ([552b34], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/552b3430b8535edf87c420f54cc16f8d5dc03011))
4
13
 
5
14
  * HT-14725: исправление работы BindCustomPanelPlugin ([26547e], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/26547e340cec89c0019b98ddf5c3ecd6a8b24438))
6
15
  * HT-14681 исправление ошибки редактирования характеристик ([bb5a7a], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/bb5a7acab1af722623ef497234221bd3762a7b50))
16
+ * HT-15077 В отчете убран scroll в начало при событии afterlayout. ([fb6b97], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/fb6b975dd1bdd2352e3523db862af420aa34eea4))
7
17
  * HT-15218: исправление ошибки формирования itemId ([b233ed], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/b233ed8ba44305ca10acc8a1062573bbe7250124))
8
18
  * update: CHANGELOG.md ([c0892b], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/c0892bd2441c94e5168773b008a262b28a31b39d))
9
19
 
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "name": "ru.coon"
5
5
  },
6
6
  "description": "",
7
- "version": "3.0.75",
7
+ "version": "3.0.77",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "git+http://gitlab-dbr.sigma-it.local/dbr/ru.coon"
@@ -122,12 +122,14 @@ Ext.define('Coon.app.viewPort.CenterView', {
122
122
  if (isComponentExist) {
123
123
  return this.setActiveTab(isComponentExist);
124
124
  }
125
+
126
+ this.add(component);
127
+
125
128
  if (previousView) {
126
129
  component.prevComponentContextId = previousView.componentContextId;
130
+ this.moveAfter(component, previousView);
127
131
  }
128
132
 
129
- this.add(component);
130
-
131
133
  component.on('titlechange', function(_, title) {
132
134
  title = title || Coon.format.withHint('', 'заголовок не задан');
133
135
  if (typeof title !== 'string') {
@@ -438,24 +438,11 @@ Ext.define('Coon.report.component.ReportPanel', {
438
438
  }
439
439
  }
440
440
 
441
- this.eventDestroier = Ext.on('rezise', this.onWindowResize, this);
441
+ Ext.on('rezise', this.onWindowResize, this);
442
442
  this.onWindowResize(Ext.Element.getViewportWidth(), Ext.Element.getViewportHeight());
443
443
  this.on('afterrender', function() {
444
444
  this.el && this.el.dom && this.el.dom.setAttribute('data-report', this.r_id || this.reportId);
445
445
  }, this);
446
- this.on('afterlayout', function() {
447
- if (!this.grid || this.grid.destroyed) {
448
- return;
449
- }
450
- setTimeout(function() {
451
- if (!this.grid || this.grid.destroyed) {
452
- return;
453
- }
454
- if (this.grid.viewConfig) {
455
- this.grid.scrollTo(0, 0);
456
- }
457
- }.bind(this), 500);
458
- }, this);
459
446
  this.on('invalidateCache', this.filterHandler.bind(this, true));
460
447
  },
461
448
 
package/src/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  Ext.define('Coon.version', {
2
2
  singleton: true,
3
- number: '3.0.75',
3
+ number: '3.0.77',
4
4
  });