@schukai/monster 3.79.0 → 3.80.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/package.json +1 -1
  3. package/source/components/content/copy.mjs +314 -312
  4. package/source/components/content/stylesheet/copy.mjs +13 -6
  5. package/source/components/form/field-set.mjs +1 -2
  6. package/source/components/form/select.mjs +1945 -1957
  7. package/source/components/form/stylesheet/field-set.mjs +13 -6
  8. package/source/components/form/toggle-switch.mjs +319 -319
  9. package/source/components/layout/collapse.mjs +351 -351
  10. package/source/components/layout/details.mjs +1 -1
  11. package/source/components/layout/iframe.mjs +1 -1
  12. package/source/components/layout/width-toggle.mjs +2 -3
  13. package/source/components/state/log.mjs +151 -152
  14. package/source/components/state/state.mjs +1 -1
  15. package/source/components/stylesheet/form.mjs +13 -6
  16. package/source/components/tree-menu/dragable-tree-menu.mjs +664 -664
  17. package/source/components/tree-menu/tree-menu.mjs +3 -27
  18. package/source/dom/customelement.mjs +18 -1
  19. package/source/monster.mjs +1 -1
  20. package/source/types/base.mjs +1 -3
  21. package/source/types/nodelist.mjs +0 -1
  22. package/source/types/proxyobserver.mjs +0 -2
  23. package/source/types/queue.mjs +0 -2
  24. package/source/types/randomid.mjs +0 -1
  25. package/source/types/regex.mjs +0 -1
  26. package/source/types/stack.mjs +1 -2
  27. package/source/types/tokenlist.mjs +0 -2
  28. package/source/types/typeof.mjs +0 -2
  29. package/source/types/uniquequeue.mjs +0 -1
  30. package/source/types/uuid.mjs +1 -2
  31. package/source/types/version.mjs +3 -6
  32. package/test/cases/monster.mjs +1 -1
  33. package/test/util/jsdom.mjs +0 -2
  34. package/test/web/test.html +2 -2
  35. package/test/web/tests.js +7455 -8361
package/CHANGELOG.md CHANGED
@@ -2,6 +2,28 @@
2
2
 
3
3
 
4
4
 
5
+ ## [3.80.1] - 2024-10-06
6
+
7
+ ### Bug Fixes
8
+
9
+ - remove dragable-tree-menu because it is broken
10
+
11
+
12
+
13
+ ## [3.80.0] - 2024-10-06
14
+
15
+ ### Add Features
16
+
17
+ - CustomElement now supprt format marker for template mapping [#249](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/249)
18
+ ### Bug Fixes
19
+
20
+ - self is not defined! [#249](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/249)
21
+ ### Changes
22
+
23
+ - update packages
24
+
25
+
26
+
5
27
  ## [3.79.0] - 2024-10-04
6
28
 
7
29
  ### Add Features
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.79.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.80.1"}