@schukai/monster 4.43.1 → 4.43.3

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 (29) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +1 -1
  3. package/source/components/accessibility/locale-picker.mjs +538 -538
  4. package/source/components/accessibility/locale-select.mjs +172 -172
  5. package/source/components/content/viewer.mjs +823 -823
  6. package/source/components/datatable/constants.mjs +15 -15
  7. package/source/components/datatable/datatable/header.mjs +253 -253
  8. package/source/components/datatable/datatable.mjs +1284 -1284
  9. package/source/components/datatable/filter.mjs +1339 -1342
  10. package/source/components/datatable/pagination.mjs +502 -502
  11. package/source/components/datatable/stylesheet/datatable.mjs +13 -6
  12. package/source/components/form/quantity.mjs +229 -229
  13. package/source/components/form/select.mjs +2963 -2963
  14. package/source/components/form/stylesheet/quantity.mjs +13 -6
  15. package/source/components/form/stylesheet/select.mjs +13 -6
  16. package/source/components/navigation/site-navigation.mjs +383 -210
  17. package/source/components/navigation/style/site-navigation.pcss +103 -15
  18. package/source/components/navigation/stylesheet/site-navigation.mjs +14 -7
  19. package/source/components/style/typography.css +4 -2
  20. package/source/dom/customelement.mjs +959 -963
  21. package/source/dom/slotted.mjs +87 -87
  22. package/source/i18n/util.mjs +149 -149
  23. package/source/monster.mjs +3 -0
  24. package/source/types/is.mjs +64 -64
  25. package/source/types/typeof.mjs +16 -16
  26. package/source/types/version.mjs +1 -1
  27. package/test/cases/monster.mjs +1 -1
  28. package/test/web/test.html +2 -2
  29. package/test/web/tests.js +2724 -1287
package/CHANGELOG.md CHANGED
@@ -2,6 +2,22 @@
2
2
 
3
3
 
4
4
 
5
+ ## [4.43.3] - 2025-10-03
6
+
7
+ ### Bug Fixes
8
+
9
+ - update monster.mjs
10
+
11
+
12
+
13
+ ## [4.43.2] - 2025-10-03
14
+
15
+ ### Bug Fixes
16
+
17
+ - update navigation [#336](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/336)
18
+
19
+
20
+
5
21
  ## [4.43.1] - 2025-10-02
6
22
 
7
23
  ### Bug Fixes
package/package.json CHANGED
@@ -1 +1 @@
1
- {"author":"schukai GmbH","dependencies":{"@floating-ui/dom":"^1.7.4","@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":"4.43.1"}
1
+ {"author":"schukai GmbH","dependencies":{"@floating-ui/dom":"^1.7.4","@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":"4.43.3"}