ru.coon 2.7.20 → 2.7.22
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,6 +1,16 @@
|
|
|
1
|
+
# Version 2.7.22, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/44122a0527f68e71a21175a4e497157b5ac18b3b)
|
|
2
|
+
* ## Fixes
|
|
3
|
+
* <span style='color:red'>fix function call</span> ([70df27], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/70df27e80e9798056bb565c1683b09ee2f3d0ce5))
|
|
4
|
+
|
|
5
|
+
* update: CHANGELOG.md ([ba2358], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/ba23583139793904a15e6c2b8b1c52a7e62b4939))
|
|
6
|
+
|
|
7
|
+
# Version 2.7.21, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/0dee5b7b0d46ea4aa23fc331e69d4fa4700cc767)
|
|
8
|
+
* update: CHANGELOG.md ([d3afa0], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/d3afa0140acb4f44e51200cb0577051436e419f0))
|
|
9
|
+
|
|
1
10
|
# Version 2.7.20, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/9c18ce767386a88eac213195958715c31f23b6df)
|
|
2
11
|
* ## Fixes
|
|
3
12
|
* <span style='color:red'>fix HT-8655, ReportPropertiesGridController.addDescriptions, will check commandProperties definition</span> ([ddf290], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/ddf290e8ca91ca2b443a89c96b77b81611ae603e))
|
|
13
|
+
* <span style='color:red'> up extjs_iconpack version. Closes HT-8076.</span> ([1fef22], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/1fef2229dc42be8045e3c9daf8d07b7fb39e82a5))
|
|
4
14
|
|
|
5
15
|
* update: CHANGELOG.md ([6d76d7], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/6d76d7df04a5d952c35e4685855111bf6acb24eb))
|
|
6
16
|
|
|
@@ -24,6 +34,7 @@
|
|
|
24
34
|
* <span style='color:red'> HT-8477 overriding the method clearInput text after set value</span> ([65ee44], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/65ee4462502177dd22a9d938135913abc93152af))
|
|
25
35
|
* <span style='color:red'> HT-8477 overriding the method clearInput text after set value</span> ([eeb0f6], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/eeb0f6731c804dc2a2581ca669747a835d6681bf))
|
|
26
36
|
|
|
37
|
+
* add requires ([e47e73], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/e47e73e14a7ed40678eb7364e9040ce63cf3a81b))
|
|
27
38
|
* update: CHANGELOG.md ([3a4dfb], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/3a4dfba9c4337ec6e50034a4d08a32f040fada4a))
|
|
28
39
|
|
|
29
40
|
# Version 2.7.17, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/8cb0e275496ba8cadce344aa25b16c66cb56251d)
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"name": "ru.coon"
|
|
5
5
|
},
|
|
6
6
|
"description": "",
|
|
7
|
-
"version": "2.7.
|
|
7
|
+
"version": "2.7.22",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
10
|
"url": "git+http://gitlab-dbr.sigma-it.local/dbr/ru.coon"
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"ace-diff": "^3.0.3",
|
|
28
28
|
"decimal.js-light": "^2.5.1",
|
|
29
29
|
"echarts": "^5.3.3",
|
|
30
|
-
"extjs_iconpack": "1.3.
|
|
30
|
+
"extjs_iconpack": "1.3.23",
|
|
31
31
|
"json5": "2.2.3",
|
|
32
32
|
"object-hash": "^3.0.0",
|
|
33
33
|
"sigma-printjs": "^1.0.1",
|
|
@@ -196,7 +196,7 @@ Ext.define('Coon.report.component.settings.ReportPropertiesGridController', {
|
|
|
196
196
|
const commandClass = Ext.ClassManager.getByAlias('command.' + commandName).prototype;
|
|
197
197
|
|
|
198
198
|
const commandProperties = typeof commandClass.commandProperties === 'function' ?
|
|
199
|
-
commandClass.commandProperties :
|
|
199
|
+
commandClass.commandProperties() :
|
|
200
200
|
[];
|
|
201
201
|
|
|
202
202
|
const descriptions = commandProperties.reduce((acc, property) => {
|
package/src/version.js
CHANGED