tryton-sao 7.4.10 → 7.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.
Files changed (73) hide show
  1. package/CHANGELOG +6 -47
  2. package/Gruntfile.js +1 -0
  3. package/bower.json +1 -4
  4. package/dist/tryton-sao.css +298 -85
  5. package/dist/tryton-sao.js +813 -170
  6. package/dist/tryton-sao.min.css +10525 -0
  7. package/images/tryton-chat.svg +1 -0
  8. package/images/tryton-note.svg +1 -4
  9. package/index.html +6 -1
  10. package/locale/bg.json +1 -1
  11. package/locale/bg.po +21 -0
  12. package/locale/ca.json +1 -1
  13. package/locale/ca.po +22 -0
  14. package/locale/cs.json +1 -1
  15. package/locale/cs.po +21 -0
  16. package/locale/de.json +1 -1
  17. package/locale/de.po +23 -2
  18. package/locale/es.json +1 -1
  19. package/locale/es.po +21 -0
  20. package/locale/es_419.json +1 -1
  21. package/locale/es_419.po +22 -0
  22. package/locale/et.json +1 -1
  23. package/locale/et.po +22 -0
  24. package/locale/fa.json +1 -1
  25. package/locale/fa.po +22 -0
  26. package/locale/fi.json +1 -1
  27. package/locale/fi.po +21 -0
  28. package/locale/fr.json +1 -1
  29. package/locale/fr.po +21 -0
  30. package/locale/hu.json +1 -1
  31. package/locale/hu.po +22 -0
  32. package/locale/id.json +1 -1
  33. package/locale/id.po +21 -0
  34. package/locale/it.json +1 -1
  35. package/locale/it.po +22 -0
  36. package/locale/lo.json +1 -1
  37. package/locale/lo.po +22 -0
  38. package/locale/lt.json +1 -1
  39. package/locale/lt.po +22 -0
  40. package/locale/messages.pot +21 -0
  41. package/locale/nl.json +1 -1
  42. package/locale/nl.po +21 -0
  43. package/locale/pl.json +1 -1
  44. package/locale/pl.po +22 -0
  45. package/locale/pt.json +1 -1
  46. package/locale/pt.po +126 -146
  47. package/locale/ro.json +1 -1
  48. package/locale/ro.po +22 -0
  49. package/locale/ru.json +1 -1
  50. package/locale/ru.po +21 -0
  51. package/locale/sl.json +1 -1
  52. package/locale/sl.po +22 -0
  53. package/locale/tr.json +1 -1
  54. package/locale/tr.po +21 -0
  55. package/locale/uk.json +1 -1
  56. package/locale/uk.po +22 -0
  57. package/locale/zh_CN.json +1 -1
  58. package/locale/zh_CN.po +22 -0
  59. package/package.json +12 -11
  60. package/src/bus.js +63 -26
  61. package/src/chat.js +149 -0
  62. package/src/common.js +34 -1
  63. package/src/model.js +35 -18
  64. package/src/sao.js +1 -1
  65. package/src/sao.less +286 -67
  66. package/src/screen.js +56 -5
  67. package/src/tab.js +64 -22
  68. package/src/theme.less +32 -21
  69. package/src/view/form.js +117 -32
  70. package/src/view/tree.js +212 -37
  71. package/src/window.js +83 -30
  72. package/tests/index.html +3 -3
  73. package/tests/sao.js +475 -569
package/CHANGELOG CHANGED
@@ -1,53 +1,12 @@
1
1
 
2
- Version 7.4.10 - 2025-05-02
3
- ---------------------------
4
- * Bug fixes (see mercurial logs for details)
5
-
6
-
7
- Version 7.4.9 - 2025-04-26
8
- --------------------------
9
- * Bug fixes (see mercurial logs for details)
10
-
11
-
12
- Version 7.4.8 - 2025-04-02
13
- --------------------------
14
- * Bug fixes (see mercurial logs for details)
15
-
16
-
17
- Version 7.4.7 - 2025-03-15
18
- --------------------------
19
- * Bug fixes (see mercurial logs for details)
20
-
21
-
22
- Version 7.4.6 - 2025-03-04
23
- --------------------------
24
- * Bug fixes (see mercurial logs for details)
25
-
26
-
27
- Version 7.4.5 - 2025-02-16
28
- --------------------------
29
- * Bug fixes (see mercurial logs for details)
30
-
31
-
32
- Version 7.4.4 - 2025-01-16
33
- --------------------------
34
- * Bug fixes (see mercurial logs for details)
35
-
36
-
37
- Version 7.4.3 - 2025-01-01
2
+ Version 7.6.0 - 2025-04-28
38
3
  --------------------------
39
4
  * Bug fixes (see mercurial logs for details)
40
-
41
-
42
- Version 7.4.2 - 2024-12-16
43
- --------------------------
44
- * Bug fixes (see mercurial logs for details)
45
-
46
-
47
- Version 7.4.1 - 2024-12-01
48
- --------------------------
49
- * Bug fixes (see mercurial logs for details)
50
-
5
+ * Allow column widths to be reset
6
+ * Allow column resizing
7
+ * Add simple chat widget on sidebar
8
+ * Support color as type of icon and image
9
+ * Support color widget on form view
51
10
 
52
11
  Version 7.4.0 - 2024-11-04
53
12
  --------------------------
package/Gruntfile.js CHANGED
@@ -23,6 +23,7 @@ module.exports = function(grunt) {
23
23
  'src/wizard.js',
24
24
  'src/board.js',
25
25
  'src/bus.js',
26
+ 'src/chat.js',
26
27
  'src/plugins.js',
27
28
  'src/html_sanitizer.js'
28
29
  ];
package/bower.json CHANGED
@@ -18,15 +18,12 @@
18
18
  "jquery": "^3",
19
19
  "bootstrap": "^3.3.7",
20
20
  "moment": "^2.10",
21
- "gettext.js": "^0.7",
21
+ "gettext.js": "^2",
22
22
  "c3": "^0.7",
23
23
  "papaparse": "^5.0",
24
24
  "fullcalendar": "^3.10.2",
25
25
  "mousetrap": "^1.6",
26
26
  "bootstrap-rtl-ondemand": "^3.3.4-ondemand",
27
27
  "Sortable": "sortablejs#^1.8.4"
28
- },
29
- "devDependencies": {
30
- "qunit": "^1.18"
31
28
  }
32
29
  }