ru.coon 2.8.0 → 2.8.1
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,7 @@
|
|
|
1
|
+
# Version 2.8.1, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/88c146ad577ce2a14d194c245e3d5151081af6af)
|
|
2
|
+
* add unconditional versioning ([187668], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/187668ff86c8e91b440ce9b8a1052a191a7989d6))
|
|
3
|
+
* update: CHANGELOG.md ([8386a7], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/8386a79fae89b882f1a3baf81849bb08ffd7a298))
|
|
4
|
+
|
|
1
5
|
# Version 2.8.0, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/74558cb55135099e1cc4ba5ec585ac75e12cbd83)
|
|
2
6
|
* update: CHANGELOG.md ([46e9bc], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/46e9bc47a9ddb94057c101cc12e5061ba7cf22ce))
|
|
3
7
|
|
package/package.json
CHANGED
|
@@ -8,12 +8,7 @@ Ext.define('Coon.report.component.settings.AddVersioningTab', {
|
|
|
8
8
|
},
|
|
9
9
|
|
|
10
10
|
initAction: function() {
|
|
11
|
-
|
|
12
|
-
this.getView().add({xtype: 'ReportFormHistoryPanel'});
|
|
13
|
-
}
|
|
11
|
+
this.getView().add({xtype: 'ReportFormHistoryPanel'});
|
|
14
12
|
},
|
|
15
13
|
|
|
16
|
-
isEnabled: function() {
|
|
17
|
-
return Coon.setup.getOption('reportVersioning');
|
|
18
|
-
},
|
|
19
14
|
});
|
|
@@ -8,19 +8,13 @@ Ext.define('Coon.uielement.component.settings.AddVersioningTab', {
|
|
|
8
8
|
},
|
|
9
9
|
|
|
10
10
|
initAction: function() {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
});
|
|
19
|
-
}
|
|
20
|
-
},
|
|
21
|
-
|
|
22
|
-
isEnabled: function() {
|
|
23
|
-
return Coon.setup.getOption('customPanelVersioning');
|
|
11
|
+
this.getView().down('tabpanel').add({
|
|
12
|
+
xtype: 'UiCPVersionPanel',
|
|
13
|
+
title: 'версии',
|
|
14
|
+
bind: {
|
|
15
|
+
uiElement: '{uiElement}',
|
|
16
|
+
},
|
|
17
|
+
});
|
|
24
18
|
},
|
|
25
19
|
|
|
26
20
|
});
|
package/src/version.js
CHANGED