ru.coon 3.0.91 → 3.0.93
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.
|
@@ -4,7 +4,14 @@
|
|
|
4
4
|
"Bash(for dir in /Users/dsl/Code/ru.coon/src/*/)",
|
|
5
5
|
"Bash(grep:*)",
|
|
6
6
|
"Bash(npx eslint:*)",
|
|
7
|
-
"WebFetch(domain:docs.sencha.com)"
|
|
7
|
+
"WebFetch(domain:docs.sencha.com)",
|
|
8
|
+
"Bash(find:*)",
|
|
9
|
+
"Bash(test:*)",
|
|
10
|
+
"Bash(python3:*)",
|
|
11
|
+
"Bash(for file in /Users/dsl/Code/ru.coon/src/report/plugin/configPanel/ControlColumnByParamPluginConfigPanelGrid.js /Users/dsl/Code/ru.coon/src/report/plugin/configPanel/OpenApiButtonPluginConfigPanel.js /Users/dsl/Code/ru.coon/src/report/plugin/configPanel/ReportCharacteristicBindPluginConfig.js /Users/dsl/Code/ru.coon/src/report/plugin/configPanel/SummaryPluginConfigPanelSummaryGrid.js /Users/dsl/Code/ru.coon/src/report/plugin/configPanel/openCustomPanelButtonPlugin/ReportFormContextXTypeMappingGrid.js)",
|
|
12
|
+
"Bash(done)",
|
|
13
|
+
"Bash(for:*)",
|
|
14
|
+
"Bash(do sed -i '' \"s/ui: ''/uiDef: ''/g\" \"$file\")"
|
|
8
15
|
]
|
|
9
16
|
}
|
|
10
17
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# Version 3.0.93, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/47cc3e043f48b66f05b72348416ea0baa9a225b8)
|
|
2
|
+
* ## Fixes
|
|
3
|
+
* <span style='color:red'> [ControlColumnByParamPlugin] Добавлено единое описание, исправлена отсутствующая вертикальная прокрутка в гриде. Closes NEVA-1043.</span> ([5d8afb], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/5d8afb29a53cc441d7f86c367a0448439fd79b27))
|
|
4
|
+
|
|
5
|
+
* update: CHANGELOG.md ([c55739], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/c55739df4b405c926ed338c3801b0fba451d6335))
|
|
6
|
+
|
|
7
|
+
# Version 3.0.92, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/5481110abc2c1acf1fe75b094c027c1e2b33625f)
|
|
8
|
+
* ## Fixes
|
|
9
|
+
* <span style='color:red'> HT-15708, validate upload on status code</span> ([749d98], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/749d98b93fd0be09bf753718bb9fc6f52e59061e))
|
|
10
|
+
|
|
11
|
+
* update: CHANGELOG.md ([200928], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/200928422e42676e032216246cd9abb5c81814ad))
|
|
12
|
+
|
|
1
13
|
# Version 3.0.91, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/5f39a79a9aef0657afb88db535f0232e36860beb)
|
|
2
14
|
* ## Features
|
|
3
15
|
* <span style='color:green'>feat: add hardcoded column properties dictionary with ExtJS 7 descriptions
|
package/package.json
CHANGED
|
@@ -240,7 +240,7 @@ Ext.define('Coon.common.panel.MainUploadPanel', {
|
|
|
240
240
|
*/
|
|
241
241
|
extractResponse: async function({responseText, status, statusText}) {
|
|
242
242
|
return {
|
|
243
|
-
ok:
|
|
243
|
+
ok: Number.isInteger(status) && status >= 200 && status < 300,
|
|
244
244
|
status,
|
|
245
245
|
statusText,
|
|
246
246
|
isJsonFormat: this.isJsonFormat(responseText),
|
|
@@ -5,13 +5,19 @@ Ext.define('Coon.report.plugin.configPanel.ControlColumnByParamPluginConfigPanel
|
|
|
5
5
|
requires: [],
|
|
6
6
|
alternateClassName: 'Sigma.common.plugins.configPanel.ControlColumnByParamPluginConfigPanel',
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
descr: [
|
|
9
9
|
'Плагин отображает/скрывает колонки в зависимости от значения параметра',
|
|
10
10
|
'Варианты указания параметров: ',
|
|
11
11
|
'- Строка (TEST_VALUE)',
|
|
12
|
+
'- Несколько строк через запятую (TEST_VALUE_1, TEST_VALUE_2)',
|
|
12
13
|
'- Логический (true|false)',
|
|
13
14
|
'- Диапазон (1-5), числа через запятую (1,3,5), одиночное число (5)'
|
|
14
|
-
]
|
|
15
|
+
],
|
|
16
|
+
|
|
17
|
+
get description() {
|
|
18
|
+
return this.descr.join('<br>');
|
|
19
|
+
},
|
|
20
|
+
|
|
15
21
|
tags: ['Поведение', 'Отображение', 'Колонки'],
|
|
16
22
|
|
|
17
23
|
config: {
|
|
@@ -28,6 +34,7 @@ Ext.define('Coon.report.plugin.configPanel.ControlColumnByParamPluginConfigPanel
|
|
|
28
34
|
'opacity:.8;background-color:lightgrey;font-size:.7rem;padding:2px 4px;';
|
|
29
35
|
this.grid = Ext.create('Coon.report.plugin.configPanel.ControlColumnByParamPluginConfigPanelGrid', {
|
|
30
36
|
flex: 1,
|
|
37
|
+
region: 'center',
|
|
31
38
|
columnNameEditor: this.createFieldColumns({
|
|
32
39
|
anchor: '100%',
|
|
33
40
|
name: 'columnName',
|
|
@@ -70,19 +77,17 @@ Ext.define('Coon.report.plugin.configPanel.ControlColumnByParamPluginConfigPanel
|
|
|
70
77
|
return [
|
|
71
78
|
{
|
|
72
79
|
xtype: 'panel',
|
|
80
|
+
layout: 'border',
|
|
81
|
+
scrollable: true,
|
|
82
|
+
flex: 1,
|
|
73
83
|
items: [
|
|
74
84
|
{
|
|
75
85
|
xtype: 'displayfield',
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
'- Несколько строк через запятую (TEST_VALUE_1, TEST_VALUE_2)',
|
|
81
|
-
'- Логический (true|false)',
|
|
82
|
-
'- Диапазон (1-5), числа через запятую (1,3,5), одиночное число (5)'
|
|
83
|
-
].join('\n'),
|
|
86
|
+
height: 50,
|
|
87
|
+
region: 'north',
|
|
88
|
+
width: '100%',
|
|
89
|
+
value: this.descr.join(' '),
|
|
84
90
|
style: {
|
|
85
|
-
// fontWeight: 'bold',
|
|
86
91
|
fontSize: '1.2rem',
|
|
87
92
|
margin: '8px',
|
|
88
93
|
},
|
package/src/version.js
CHANGED