tryton-sao 6.0.9 → 6.2.2
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 +9 -21
- package/dist/tryton-sao.css +35 -7
- package/dist/tryton-sao.js +559 -195
- package/dist/tryton-sao.min.css +35 -7
- package/dist/tryton-sao.min.js +2 -2
- package/images/tryton-unfold-less.svg +1 -0
- package/images/tryton-unfold-more.svg +1 -0
- package/locale/bg.json +1 -1
- package/locale/bg.po +27 -0
- package/locale/ca.json +1 -1
- package/locale/ca.po +32 -4
- package/locale/cs.json +1 -1
- package/locale/cs.po +27 -0
- package/locale/de.json +1 -1
- package/locale/de.po +33 -20
- package/locale/es.json +1 -1
- package/locale/es.po +47 -4
- package/locale/es_419.json +1 -1
- package/locale/es_419.po +27 -0
- package/locale/et.json +1 -1
- package/locale/et.po +29 -0
- package/locale/fa.json +1 -1
- package/locale/fa.po +29 -0
- package/locale/fi.json +1 -1
- package/locale/fi.po +27 -0
- package/locale/fr.json +1 -1
- package/locale/fr.po +30 -19
- package/locale/hu.json +1 -1
- package/locale/hu.po +33 -21
- package/locale/id.json +1 -1
- package/locale/id.po +29 -1
- package/locale/it.json +1 -1
- package/locale/it.po +30 -17
- package/locale/lo.json +1 -1
- package/locale/lo.po +30 -14
- package/locale/lt.json +1 -1
- package/locale/lt.po +28 -0
- package/locale/messages.pot +28 -1
- package/locale/nl.json +1 -1
- package/locale/nl.po +47 -6
- package/locale/pl.json +1 -1
- package/locale/pl.po +29 -0
- package/locale/pt.json +1 -1
- package/locale/pt.po +29 -0
- package/locale/ro.json +1 -1
- package/locale/ro.po +43 -17
- package/locale/ru.json +1 -1
- package/locale/ru.po +28 -8
- package/locale/sl.json +1 -1
- package/locale/sl.po +29 -0
- package/locale/tr.json +1 -1
- package/locale/tr.po +27 -0
- package/locale/zh_CN.json +1 -1
- package/locale/zh_CN.po +29 -0
- package/package.json +1 -1
- package/src/action.js +5 -1
- package/src/common.js +104 -32
- package/src/model.js +40 -13
- package/src/rpc.js +2 -21
- package/src/sao.js +7 -0
- package/src/sao.less +47 -7
- package/src/screen.js +11 -6
- package/src/session.js +2 -1
- package/src/tab.js +12 -9
- package/src/view/form.js +207 -66
- package/src/view/tree.js +104 -16
- package/src/view.js +1 -1
- package/src/window.js +64 -29
- package/tests/sao.js +10 -0
package/CHANGELOG
CHANGED
|
@@ -1,29 +1,17 @@
|
|
|
1
|
-
Version 6.
|
|
1
|
+
Version 6.2.2 - 2022-01-01
|
|
2
2
|
* Bug fixes (see mercurial logs for details)
|
|
3
3
|
|
|
4
|
-
Version 6.
|
|
4
|
+
Version 6.2.1 - 2021-12-03
|
|
5
5
|
* Bug fixes (see mercurial logs for details)
|
|
6
6
|
|
|
7
|
-
Version 6.0
|
|
8
|
-
* Bug fixes (see mercurial logs for details)
|
|
9
|
-
|
|
10
|
-
Version 6.0.6 - 2021-09-16
|
|
11
|
-
* Bug fixes (see mercurial logs for details)
|
|
12
|
-
|
|
13
|
-
Version 6.0.5 - 2021-09-01
|
|
14
|
-
* Bug fixes (see mercurial logs for details)
|
|
15
|
-
|
|
16
|
-
Version 6.0.4 - 2021-08-05
|
|
17
|
-
* Bug fixes (see mercurial logs for details)
|
|
18
|
-
|
|
19
|
-
Version 6.0.3 - 2021-07-21
|
|
20
|
-
* Bug fixes (see mercurial logs for details)
|
|
21
|
-
|
|
22
|
-
Version 6.0.2 - 2021-07-01
|
|
23
|
-
* Bug fixes (see mercurial logs for details)
|
|
24
|
-
|
|
25
|
-
Version 6.0.1 - 2021-06-17
|
|
7
|
+
Version 6.2.0 - 2021-11-01
|
|
26
8
|
* Bug fixes (see mercurial logs for details)
|
|
9
|
+
* Support grouping attribute
|
|
10
|
+
* Add expander on tree to fold or unfold selected rows
|
|
11
|
+
* Support monetary and symbol field attributes
|
|
12
|
+
* Support digits from relation field
|
|
13
|
+
* Add accesskey to widgets and buttons
|
|
14
|
+
* Support Binary field in CSV import/export
|
|
27
15
|
|
|
28
16
|
Version 6.0.0 - 2021-05-03
|
|
29
17
|
* Bug fixes (see mercurial logs for details)
|
package/dist/tryton-sao.css
CHANGED
|
@@ -9161,6 +9161,10 @@ html[theme="default"] .carousel-caption h6 {
|
|
|
9161
9161
|
content: "";
|
|
9162
9162
|
background-color: rgba(0, 0, 0, 0);
|
|
9163
9163
|
}
|
|
9164
|
+
button {
|
|
9165
|
+
overflow-y: hidden;
|
|
9166
|
+
text-overflow: ellipsis;
|
|
9167
|
+
}
|
|
9164
9168
|
.navbar-inverse .close {
|
|
9165
9169
|
color: #6dd1d4;
|
|
9166
9170
|
}
|
|
@@ -9385,6 +9389,35 @@ button.list-group-item-selected.active:focus {
|
|
|
9385
9389
|
.table-hover > tbody > tr.danger:hover > th {
|
|
9386
9390
|
background-color: #ebcccc;
|
|
9387
9391
|
}
|
|
9392
|
+
html.accesskey *[accesskey] + span[data-accesskey]:after,
|
|
9393
|
+
html.accesskey *[accesskey]:after {
|
|
9394
|
+
background-color: #71bdc1;
|
|
9395
|
+
color: #fff;
|
|
9396
|
+
font-size: x-small;
|
|
9397
|
+
padding: 0 2px;
|
|
9398
|
+
position: absolute;
|
|
9399
|
+
text-transform: uppercase;
|
|
9400
|
+
margin: 0 -1em;
|
|
9401
|
+
z-index: 5;
|
|
9402
|
+
}
|
|
9403
|
+
html.accesskey input[accesskey][type="checkbox"]:after {
|
|
9404
|
+
background-color: initial;
|
|
9405
|
+
}
|
|
9406
|
+
html.accesskey *[accesskey] + span[data-accesskey] {
|
|
9407
|
+
float: right;
|
|
9408
|
+
position: relative;
|
|
9409
|
+
}
|
|
9410
|
+
html.accesskey *[accesskey] + span[data-accesskey]:after {
|
|
9411
|
+
content: attr(data-accesskey);
|
|
9412
|
+
}
|
|
9413
|
+
html.accesskey *[accesskey]:after {
|
|
9414
|
+
content: attr(accesskey);
|
|
9415
|
+
}
|
|
9416
|
+
html.accesskey input[accesskey][type="checkbox"] + span[data-accesskey],
|
|
9417
|
+
html.accesskey input[accesskey][type="checkbox"] + span[data-accesskey],
|
|
9418
|
+
html.accesskey select[accesskey] + span[data-accesskey] {
|
|
9419
|
+
bottom: 1em;
|
|
9420
|
+
}
|
|
9388
9421
|
.tab-form nav.toolbar,
|
|
9389
9422
|
.tab-board nav.toolbar {
|
|
9390
9423
|
position: -webkit-sticky;
|
|
@@ -9827,10 +9860,6 @@ img.icon {
|
|
|
9827
9860
|
.form .form-many2one > .input-group {
|
|
9828
9861
|
width: 100%;
|
|
9829
9862
|
}
|
|
9830
|
-
.form td.form-one2many,
|
|
9831
|
-
.form td.form-many2many {
|
|
9832
|
-
vertical-align: top;
|
|
9833
|
-
}
|
|
9834
9863
|
.form .form-one2many-menu::after,
|
|
9835
9864
|
.form .form-many2many-menu::after {
|
|
9836
9865
|
content: "";
|
|
@@ -9899,9 +9928,8 @@ img.icon {
|
|
|
9899
9928
|
margin-top: 0;
|
|
9900
9929
|
margin-bottom: 5px;
|
|
9901
9930
|
}
|
|
9902
|
-
.form .form-
|
|
9903
|
-
width:
|
|
9904
|
-
height: 4em;
|
|
9931
|
+
.form .form-image .caption {
|
|
9932
|
+
min-width: 120px;
|
|
9905
9933
|
}
|
|
9906
9934
|
.form .form-document object {
|
|
9907
9935
|
object-fit: scale-down;
|