tryton-sao 6.4.6 → 6.6.0
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 +4 -16
- package/dist/tryton-sao.css +3 -1
- package/dist/tryton-sao.js +362 -115
- package/dist/tryton-sao.min.css +3 -1
- package/dist/tryton-sao.min.js +2 -2
- package/locale/bg.json +1 -1
- package/locale/bg.po +26 -2
- package/locale/ca.json +1 -1
- package/locale/ca.po +28 -4
- package/locale/cs.json +1 -1
- package/locale/cs.po +26 -2
- package/locale/de.json +1 -1
- package/locale/de.po +28 -4
- package/locale/es.json +1 -1
- package/locale/es.po +28 -4
- package/locale/es_419.json +1 -1
- package/locale/es_419.po +27 -2
- package/locale/et.json +1 -1
- package/locale/et.po +32 -3
- package/locale/fa.json +1 -1
- package/locale/fa.po +32 -3
- package/locale/fi.json +1 -1
- package/locale/fi.po +26 -2
- package/locale/fr.json +1 -1
- package/locale/fr.po +28 -4
- package/locale/hu.json +1 -1
- package/locale/hu.po +32 -4
- package/locale/hu_HU.json +1 -0
- package/locale/id.json +1 -1
- package/locale/id.po +27 -3
- package/locale/it.json +1 -1
- package/locale/it.po +35 -7
- package/locale/it_IT.json +1 -0
- package/locale/ja_JP.json +1 -0
- package/locale/lo.json +1 -1
- package/locale/lo.po +32 -3
- package/locale/lt.json +1 -1
- package/locale/lt.po +31 -3
- package/locale/messages.pot +26 -2
- package/locale/nl.json +1 -1
- package/locale/nl.po +28 -4
- package/locale/pl.json +1 -1
- package/locale/pl.po +32 -3
- package/locale/pt.json +1 -1
- package/locale/pt.po +32 -3
- package/locale/pt_BR.json +1 -0
- package/locale/ro.json +1 -1
- package/locale/ro.po +32 -3
- package/locale/ru.json +1 -1
- package/locale/ru.po +26 -2
- package/locale/sl.json +1 -1
- package/locale/sl.po +31 -2
- package/locale/tr.json +1 -1
- package/locale/tr.po +26 -2
- package/locale/uk.json +1 -0
- package/locale/uk.po +719 -0
- package/locale/zh_CN.json +1 -1
- package/locale/zh_CN.po +32 -3
- package/package.json +1 -1
- package/src/common.js +10 -20
- package/src/model.js +17 -2
- package/src/pyson.js +16 -6
- package/src/sao.js +92 -25
- package/src/sao.less +6 -1
- package/src/screen.js +1 -1
- package/src/session.js +176 -31
- package/src/tab.js +2 -2
- package/src/view/form.js +12 -4
- package/src/view/tree.js +17 -6
- package/src/window.js +11 -15
- package/src/wizard.js +8 -3
- package/tests/sao.js +4 -4
package/CHANGELOG
CHANGED
|
@@ -1,20 +1,8 @@
|
|
|
1
|
-
Version 6.
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
Version 6.4.5 - 2022-09-06
|
|
5
|
-
* Bug fixes (see mercurial logs for details)
|
|
6
|
-
|
|
7
|
-
Version 6.4.4 - 2022-08-17
|
|
8
|
-
* Bug fixes (see mercurial logs for details)
|
|
9
|
-
|
|
10
|
-
Version 6.4.3 - 2022-07-01
|
|
11
|
-
* Bug fixes (see mercurial logs for details)
|
|
12
|
-
|
|
13
|
-
Version 6.4.2 - 2022-06-15
|
|
14
|
-
* Bug fixes (see mercurial logs for details)
|
|
15
|
-
|
|
16
|
-
Version 6.4.1 - 2022-06-03
|
|
1
|
+
Version 6.6.0 - 2022-10-31
|
|
2
|
+
--------------------------
|
|
17
3
|
* Bug fixes (see mercurial logs for details)
|
|
4
|
+
* Support authentication services
|
|
5
|
+
* Check server version
|
|
18
6
|
|
|
19
7
|
Version 6.4.0 - 2022-05-02
|
|
20
8
|
* Bug fixes (see mercurial logs for details)
|
package/dist/tryton-sao.css
CHANGED
|
@@ -9206,6 +9206,9 @@ html[theme="default"] .carousel-caption h6 {
|
|
|
9206
9206
|
background-color: #267f82;
|
|
9207
9207
|
color: #fff;
|
|
9208
9208
|
}
|
|
9209
|
+
.modal-header .modal-title small {
|
|
9210
|
+
color: #eeeeee;
|
|
9211
|
+
}
|
|
9209
9212
|
#tablist {
|
|
9210
9213
|
display: flex;
|
|
9211
9214
|
overflow-x: auto;
|
|
@@ -10260,7 +10263,6 @@ input.column-boolean {
|
|
|
10260
10263
|
table.responsive-header > tfoot > tr > td {
|
|
10261
10264
|
/* Behave like a "row" */
|
|
10262
10265
|
border: none;
|
|
10263
|
-
border-bottom: 1px solid #ddd;
|
|
10264
10266
|
position: relative;
|
|
10265
10267
|
}
|
|
10266
10268
|
table.responsive-header > tbody > tr > td[data-title]:before,
|