@schukai/monster 3.75.0 → 3.76.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. package/CHANGELOG.md +21 -8
  2. package/package.json +1 -1
  3. package/source/components/layout/collapse.mjs +361 -395
  4. package/source/components/layout/details.mjs +10 -40
  5. package/source/components/layout/iframe.mjs +358 -0
  6. package/source/components/layout/panel.mjs +10 -25
  7. package/source/components/layout/slider.mjs +11 -11
  8. package/source/components/layout/split-panel.mjs +7 -39
  9. package/source/components/layout/style/iframe.pcss +39 -0
  10. package/source/components/layout/style/panel.pcss +10 -3
  11. package/source/components/layout/style/split-panel.pcss +2 -0
  12. package/source/components/layout/stylesheet/iframe.mjs +38 -0
  13. package/source/components/layout/stylesheet/panel.mjs +1 -1
  14. package/source/components/layout/tabs.mjs +6 -35
  15. package/source/components/layout/width-toggle.mjs +10 -31
  16. package/source/components/tree-menu/tree-menu.mjs +16 -12
  17. package/source/math/random.mjs +2 -3
  18. package/source/monster.mjs +2 -1
  19. package/test/cases/components/form/button.mjs +2 -1
  20. package/test/cases/components/form/confirm-button.mjs +1 -1
  21. package/test/cases/components/form/form.mjs +1 -1
  22. package/test/cases/components/form/reload.mjs +1 -1
  23. package/test/cases/components/form/select.mjs +1 -1
  24. package/test/cases/components/form/state-button.mjs +1 -1
  25. package/test/cases/components/form/template.mjs +1 -1
  26. package/test/cases/components/form/toggle-switch.mjs +1 -1
  27. package/test/cases/components/form/tree-select.mjs +1 -1
  28. package/test/cases/components/host/details.mjs +1 -1
  29. package/test/cases/components/host/host.mjs +1 -1
  30. package/test/cases/components/host/overlay.mjs +1 -1
  31. package/test/cases/components/layout/panel.mjs +1 -1
  32. package/test/cases/components/layout/slit-panel.mjs +1 -1
  33. package/test/cases/components/layout/tabs.mjs +1 -1
  34. package/test/cases/components/notify/message.mjs +1 -1
  35. package/test/cases/components/notify/notify.mjs +1 -1
  36. package/test/cases/dom/customcontrol.mjs +1 -1
  37. package/test/cases/dom/customelement-initfromscripthost.mjs +1 -1
  38. package/test/cases/dom/customelement.mjs +1 -1
  39. package/test/cases/dom/resource/data.mjs +1 -1
  40. package/test/cases/dom/resource/link/stylesheet.mjs +1 -1
  41. package/test/cases/dom/resource/link.mjs +1 -1
  42. package/test/cases/dom/resource/script.mjs +1 -1
  43. package/test/cases/dom/updater.mjs +1 -1
package/CHANGELOG.md CHANGED
@@ -2,33 +2,47 @@
2
2
 
3
3
 
4
4
 
5
+ ## [3.76.0] - 2024-10-01
6
+
7
+ ### Add Features
8
+
9
+ - new iframe control [#243](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/243)
10
+ ### Bug Fixes
11
+
12
+ - chai import
13
+ - change order and fix detail-label [#245](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/245)
14
+ ### Changes
15
+
16
+ - update nix and node
17
+
18
+
19
+
5
20
  ## [3.75.0] - 2024-09-23
6
21
 
7
22
  ### Add Features
8
23
 
9
24
  - marker for select filter [#240](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/240)
25
+
10
26
  ### Changes
11
27
 
12
28
  - remove unused files
13
29
  - run webtests
14
30
  - new development cert
31
+
15
32
  ### Documentation
16
33
 
17
34
  - fix some small issues
18
35
 
19
-
20
-
21
36
  ## [3.74.0] - 2024-09-18
22
37
 
23
38
  ### Add Features
24
39
 
25
40
  - new slider [#237](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/237)
41
+
26
42
  ### Bug Fixes
27
43
 
28
44
  - performance tweak [#235](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/235)
29
45
 
30
-
31
-
32
46
  ## [3.73.9] - 2024-09-15
33
47
 
34
48
  ### Bug Fixes
@@ -36,32 +50,31 @@
36
50
  - error handling [#234](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/234)
37
51
  - build css
38
52
  - Replace `sleep` with `requestAnimationFrame` for smoother UI [#234](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/234)
53
+
39
54
  ### Changes
40
55
 
41
56
  - some small code tweaks
42
57
  - code format
43
58
  - update versions
44
59
  - add issue example [#233](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/233)
60
+
45
61
  ### Documentation
46
62
 
47
63
  - wip update document for new monsterjs.org site
48
64
 
49
-
50
-
51
65
  ## [3.73.8] - 2024-08-01
52
66
 
53
67
  ### Bug Fixes
54
68
 
55
69
  - test pipeline
56
70
 
57
-
58
-
59
71
  ## [3.73.7] - 2024-08-01
60
72
 
61
73
  ### Bug Fixes
62
74
 
63
75
  - update layout for filter and datatable [#232](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/232)
64
76
  - new algorithm for calculating the position of the toc control. [#231](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/231)
77
+
65
78
  ### Changes
66
79
 
67
80
  - check tests [#232](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/232)
package/package.json CHANGED
@@ -1 +1 @@
1
- {"author":"schukai GmbH","dependencies":{"@floating-ui/dom":"^1.6.11","@popperjs/core":"^2.11.8"},"description":"Monster is a simple library for creating fast, robust and lightweight websites.","homepage":"https://monsterjs.org/","keywords":["framework","web","dom","css","sass","mobile-first","app","front-end","templates","schukai","core","shopcloud","alvine","monster","buildmap","stack","observer","observable","uuid","node","nodelist","css-in-js","logger","log","theme"],"license":"AGPL 3.0","main":"source/monster.mjs","module":"source/monster.mjs","name":"@schukai/monster","repository":{"type":"git","url":"https://gitlab.schukai.com/oss/libraries/javascript/monster.git"},"type":"module","version":"3.75.0"}
1
+ {"author":"schukai GmbH","dependencies":{"@floating-ui/dom":"^1.6.11","@popperjs/core":"^2.11.8"},"description":"Monster is a simple library for creating fast, robust and lightweight websites.","homepage":"https://monsterjs.org/","keywords":["framework","web","dom","css","sass","mobile-first","app","front-end","templates","schukai","core","shopcloud","alvine","monster","buildmap","stack","observer","observable","uuid","node","nodelist","css-in-js","logger","log","theme"],"license":"AGPL 3.0","main":"source/monster.mjs","module":"source/monster.mjs","name":"@schukai/monster","repository":{"type":"git","url":"https://gitlab.schukai.com/oss/libraries/javascript/monster.git"},"type":"module","version":"3.76.0"}