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.
Files changed (69) hide show
  1. package/CHANGELOG +9 -21
  2. package/dist/tryton-sao.css +35 -7
  3. package/dist/tryton-sao.js +559 -195
  4. package/dist/tryton-sao.min.css +35 -7
  5. package/dist/tryton-sao.min.js +2 -2
  6. package/images/tryton-unfold-less.svg +1 -0
  7. package/images/tryton-unfold-more.svg +1 -0
  8. package/locale/bg.json +1 -1
  9. package/locale/bg.po +27 -0
  10. package/locale/ca.json +1 -1
  11. package/locale/ca.po +32 -4
  12. package/locale/cs.json +1 -1
  13. package/locale/cs.po +27 -0
  14. package/locale/de.json +1 -1
  15. package/locale/de.po +33 -20
  16. package/locale/es.json +1 -1
  17. package/locale/es.po +47 -4
  18. package/locale/es_419.json +1 -1
  19. package/locale/es_419.po +27 -0
  20. package/locale/et.json +1 -1
  21. package/locale/et.po +29 -0
  22. package/locale/fa.json +1 -1
  23. package/locale/fa.po +29 -0
  24. package/locale/fi.json +1 -1
  25. package/locale/fi.po +27 -0
  26. package/locale/fr.json +1 -1
  27. package/locale/fr.po +30 -19
  28. package/locale/hu.json +1 -1
  29. package/locale/hu.po +33 -21
  30. package/locale/id.json +1 -1
  31. package/locale/id.po +29 -1
  32. package/locale/it.json +1 -1
  33. package/locale/it.po +30 -17
  34. package/locale/lo.json +1 -1
  35. package/locale/lo.po +30 -14
  36. package/locale/lt.json +1 -1
  37. package/locale/lt.po +28 -0
  38. package/locale/messages.pot +28 -1
  39. package/locale/nl.json +1 -1
  40. package/locale/nl.po +47 -6
  41. package/locale/pl.json +1 -1
  42. package/locale/pl.po +29 -0
  43. package/locale/pt.json +1 -1
  44. package/locale/pt.po +29 -0
  45. package/locale/ro.json +1 -1
  46. package/locale/ro.po +43 -17
  47. package/locale/ru.json +1 -1
  48. package/locale/ru.po +28 -8
  49. package/locale/sl.json +1 -1
  50. package/locale/sl.po +29 -0
  51. package/locale/tr.json +1 -1
  52. package/locale/tr.po +27 -0
  53. package/locale/zh_CN.json +1 -1
  54. package/locale/zh_CN.po +29 -0
  55. package/package.json +1 -1
  56. package/src/action.js +5 -1
  57. package/src/common.js +104 -32
  58. package/src/model.js +40 -13
  59. package/src/rpc.js +2 -21
  60. package/src/sao.js +7 -0
  61. package/src/sao.less +47 -7
  62. package/src/screen.js +11 -6
  63. package/src/session.js +2 -1
  64. package/src/tab.js +12 -9
  65. package/src/view/form.js +207 -66
  66. package/src/view/tree.js +104 -16
  67. package/src/view.js +1 -1
  68. package/src/window.js +64 -29
  69. package/tests/sao.js +10 -0
package/CHANGELOG CHANGED
@@ -1,29 +1,17 @@
1
- Version 6.0.9 - 2021-11-04
1
+ Version 6.2.2 - 2022-01-01
2
2
  * Bug fixes (see mercurial logs for details)
3
3
 
4
- Version 6.0.8 - 2021-10-15
4
+ Version 6.2.1 - 2021-12-03
5
5
  * Bug fixes (see mercurial logs for details)
6
6
 
7
- Version 6.0.7 - 2021-10-01
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)
@@ -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-image_ img {
9903
- width: 4em;
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;