ru.coon 2.7.69 → 2.7.71
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 +12 -0
- package/package.json +1 -1
- package/src/common/component/editor/CharacteristicGridEditor.js +1 -1
- package/src/report/component/reportpanel/NorthPanel.js +2 -2
- package/src/report/component/reportpanel/NorthPanel.scss +55 -0
- package/src/report/component/reportpanel/ReportGrid.scss +16 -1
- package/src/research/command/GetUiStructure.js +4 -0
- package/src/version.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,19 @@
|
|
|
1
|
+
# Version 2.7.71, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/71f09381b29db031d26baa580e8c18fc436a5a81)
|
|
2
|
+
* ## Fixes
|
|
3
|
+
* <span style='color:red'>fix GetUIStructure
|
|
4
|
+
feat CharacteristicGridEditor: add toolbarItems property</span> ([f17c77], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/f17c77399b0837727f61ef30e480988bec05ad6b))
|
|
5
|
+
|
|
6
|
+
* update: CHANGELOG.md ([33ad55], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/33ad5587e168875b0d301cea8534201f4d45e972))
|
|
7
|
+
|
|
8
|
+
# Version 2.7.70, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/59a687854e0184fdab48da4903012073767af558)
|
|
9
|
+
* update: CHANGELOG.md ([2e7e20], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/2e7e206f80da14f38108122ade650952c40ba565))
|
|
10
|
+
|
|
1
11
|
# Version 2.7.69, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/9d58f22601dbf5121b56d8fa32a6316c64b48a22)
|
|
2
12
|
* ## Fixes
|
|
3
13
|
* <span style='color:red'> PropertyDataParser.js : check if node is object before generating id.</span> ([e40912], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/e409122912b679d8c5dcf41d57f9e031f96cf1b7))
|
|
4
14
|
|
|
5
15
|
* TR-69409 Добавить возможность в ExecuteCommandPlugin выводить подтверждающее сообщение как Ext.toast ([524553], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/524553f5861fc4438f800edbe4bb92ede80ccdf4))
|
|
16
|
+
* HT-9896 Нет разделителей у верхних групп заголовков отчета ([f680da], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/f680daf403af3e77743264972ccbae1f9e578701))
|
|
6
17
|
* update: CHANGELOG.md ([9064f2], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/9064f2d31af96906452b2d8e8d9818f7b85831e8))
|
|
7
18
|
|
|
8
19
|
# Version 2.7.68, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/474af33a28e0c286c4e3d7e2b85eda7f2af80211)
|
|
@@ -23,6 +34,7 @@
|
|
|
23
34
|
|
|
24
35
|
* remove getCircularReplacer ([9fea84], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/9fea8459fda6fd3fcaa5889828cf4cd0b6f509a7))
|
|
25
36
|
* HT-9879 fix: Исправление OpenURLButtonPlugin в части проверки наличия в url знака вопроса ([56a5db], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/56a5db0b7084db2439e67f3c1eb9b6c0dab8539b))
|
|
37
|
+
* TR-68836 feat: Доработки по оформлению UI-элементов ([c20de4], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/c20de44ef7c46753eb37b3e6c6e18cb56a352f2a))
|
|
26
38
|
* update: CHANGELOG.md ([107df2], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/107df2d447bec0a2698a306cbb1ac3b5093bed74))
|
|
27
39
|
|
|
28
40
|
# Version 2.7.65, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/575aaa8ea4982726ce21f98300e95aa55ecbb906)
|
package/package.json
CHANGED
|
@@ -74,7 +74,7 @@ Ext.define('Coon.common.component.editor.CharacteristicGridEditor', {
|
|
|
74
74
|
this.tbar = {
|
|
75
75
|
xtype: 'toolbar',
|
|
76
76
|
overflowHandler: 'menu',
|
|
77
|
-
items: this.tbarItems,
|
|
77
|
+
items: (this.tbarItems || []).concat(this.toolbarItems || []),
|
|
78
78
|
layout: {
|
|
79
79
|
type: 'hbox',
|
|
80
80
|
align: 'stretch',
|
|
@@ -81,7 +81,7 @@ Ext.define('Coon.report.component.report.NorthPanel', {
|
|
|
81
81
|
},
|
|
82
82
|
initComponent() {
|
|
83
83
|
this.searchButton = Ext.widget('splitbutton', Ext.apply({
|
|
84
|
-
ui: 'orange-button',
|
|
84
|
+
ui: 'orange-button-ext',
|
|
85
85
|
text: 'Поиск',
|
|
86
86
|
}, this.findButtonConfig || {}));
|
|
87
87
|
|
|
@@ -92,7 +92,7 @@ Ext.define('Coon.report.component.report.NorthPanel', {
|
|
|
92
92
|
};
|
|
93
93
|
|
|
94
94
|
this.clearButton = Ext.widget('button', Ext.apply({
|
|
95
|
-
ui: 'green-button',
|
|
95
|
+
ui: 'green-button-ext',
|
|
96
96
|
text: 'Очистить',
|
|
97
97
|
}, this.clearButtonConfig || {}));
|
|
98
98
|
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
|
|
1
2
|
.NorthPanel{
|
|
2
3
|
.activeToggle{
|
|
3
4
|
color: #A9A9A9;
|
|
@@ -15,4 +16,58 @@
|
|
|
15
16
|
.UiCFCell{
|
|
16
17
|
margin: 0px 2px !important;
|
|
17
18
|
}
|
|
19
|
+
|
|
20
|
+
@include sigma-button-small-ui(
|
|
21
|
+
$ui: 'orange-button-ext',
|
|
22
|
+
$background-color: $base-color-light,
|
|
23
|
+
$border-radius: 6px,
|
|
24
|
+
$border-width: 1px,
|
|
25
|
+
$border-color: $base-color-light,
|
|
26
|
+
$border-color-disabled: lighten($base-color-light, 20%),
|
|
27
|
+
$background-color-over: $base-color-light,
|
|
28
|
+
$background-color-focus: $base-color-light,
|
|
29
|
+
$background-color-pressed: $base-color-light,
|
|
30
|
+
$background-color-focus-over: $base-color-light,
|
|
31
|
+
$background-color-focus-pressed: $base-color-light,
|
|
32
|
+
$border-color-focus-pressed: $base-color-light,
|
|
33
|
+
$background-color-disabled: lighten($base-color-light, 20%),
|
|
34
|
+
$icon-size: 16px,
|
|
35
|
+
$font-size: 12px,
|
|
36
|
+
$padding: 6px 12px,
|
|
37
|
+
//$text-padding: 2px
|
|
38
|
+
);
|
|
39
|
+
|
|
40
|
+
@include sigma-button-small-ui(
|
|
41
|
+
$ui: 'green-button-ext',
|
|
42
|
+
$background-color: transparent,
|
|
43
|
+
$color : $base-color-light,
|
|
44
|
+
$iconColor : $base-color-light,
|
|
45
|
+
$border-width: 1px,
|
|
46
|
+
$inner-border-width-focus: 2px,
|
|
47
|
+
$border-radius: 6px,
|
|
48
|
+
$border-color: $base-color-light,
|
|
49
|
+
$border-color-disabled: lighten($base-color-light, 20%),
|
|
50
|
+
$color-over: white,
|
|
51
|
+
$color-focus: $base-color-light,
|
|
52
|
+
$color-focus-over: $base-color-light,
|
|
53
|
+
$color-pressed: white,
|
|
54
|
+
$color-focus-pressed: white,
|
|
55
|
+
$color-disabled: lighten($base-color-light, 20%),
|
|
56
|
+
$background-color-over: $base-color-light,
|
|
57
|
+
$background-color-focus: transparent,
|
|
58
|
+
$background-color-pressed: $base-color-light,
|
|
59
|
+
$background-color-focus-over: $base-color-light,
|
|
60
|
+
$background-color-focus-pressed: $base-color-light,
|
|
61
|
+
$background-color-disabled: transparent,
|
|
62
|
+
$icon-size: 16px,
|
|
63
|
+
$font-size: 12px,
|
|
64
|
+
$padding: 6px 12px,
|
|
65
|
+
);
|
|
66
|
+
.x-btn-icon-el-green-button-ext-small,
|
|
67
|
+
.x-btn-icon-el-orange-button-ext-small {
|
|
68
|
+
min-width: 16px !important;
|
|
69
|
+
min-height: 16px !important;
|
|
70
|
+
mask-size: 16px !important;
|
|
71
|
+
}
|
|
72
|
+
|
|
18
73
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
.ReportGrid {
|
|
2
2
|
.x-grid-header-ct {
|
|
3
3
|
|
|
4
|
-
.x-column-header-group {
|
|
4
|
+
.x-column-header-group, .x-column-header-sub-group {
|
|
5
5
|
border-right: 1px solid $panel-header-background-color !important;
|
|
6
6
|
}
|
|
7
7
|
|
|
@@ -34,4 +34,19 @@
|
|
|
34
34
|
bottom: 0;
|
|
35
35
|
margin: auto 0;
|
|
36
36
|
}
|
|
37
|
+
|
|
38
|
+
.x-btn-icon-el-blue-button-small,
|
|
39
|
+
.x-btn-icon-el-blue-text-button-small,
|
|
40
|
+
.x-btn-icon-el-blue-text-button-border-small,
|
|
41
|
+
.x-btn-icon-el-primary-with-icon-small,
|
|
42
|
+
.x-btn-icon-el-default-toolbar-small,
|
|
43
|
+
.x-btn-icon-el-green-button-small,
|
|
44
|
+
.x-btn-icon-el-orange-button-small {
|
|
45
|
+
min-width: 16px !important;
|
|
46
|
+
min-height: 16px !important;
|
|
47
|
+
mask-size: 16px !important;
|
|
48
|
+
&.x-fa {
|
|
49
|
+
font-size: 16px !important
|
|
50
|
+
}
|
|
51
|
+
}
|
|
37
52
|
}
|
|
@@ -5,6 +5,9 @@ Ext.define('Coon.research.command.GetUIStructure', {
|
|
|
5
5
|
decode(ui) {
|
|
6
6
|
const rootName = `<b>CustomPanel</b> ${ui.id}`;
|
|
7
7
|
const parse = (cfg, acc = {name: rootName, children: [], expanded: true}) => {
|
|
8
|
+
if (typeof cfg === 'string') {
|
|
9
|
+
return acc;
|
|
10
|
+
}
|
|
8
11
|
cfg.expanded = true;
|
|
9
12
|
cfg.source = 'editor';
|
|
10
13
|
if (Array.isArray(cfg)) {
|
|
@@ -102,6 +105,7 @@ Ext.define('Coon.research.command.GetUIStructure', {
|
|
|
102
105
|
});
|
|
103
106
|
}
|
|
104
107
|
} catch (ex) {
|
|
108
|
+
console.error('GetUIStructure error: ', ex);
|
|
105
109
|
result = {
|
|
106
110
|
name: 'Error parsing ui "propertyData"',
|
|
107
111
|
isParsingError: true,
|
package/src/version.js
CHANGED