@schukai/monster 3.97.0 → 3.98.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 (34) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/package.json +1 -1
  3. package/source/components/accessibility/locale-picker.mjs +553 -482
  4. package/source/components/accessibility/stylesheet/locale-picker.mjs +13 -6
  5. package/source/components/datatable/columnbar.mjs +50 -3
  6. package/source/components/datatable/constants.mjs +7 -0
  7. package/source/components/datatable/datatable/header.mjs +1 -0
  8. package/source/components/datatable/datatable.mjs +1168 -934
  9. package/source/components/datatable/filter/date-range.mjs +145 -14
  10. package/source/components/datatable/filter/input.mjs +50 -3
  11. package/source/components/datatable/filter/range.mjs +92 -7
  12. package/source/components/datatable/filter-button.mjs +46 -3
  13. package/source/components/datatable/filter.mjs +95 -10
  14. package/source/components/datatable/pagination.mjs +82 -7
  15. package/source/components/datatable/save-button.mjs +46 -3
  16. package/source/components/datatable/style/datatable.pcss +1 -0
  17. package/source/components/datatable/stylesheet/datatable.mjs +7 -14
  18. package/source/components/form/field-set.mjs +77 -6
  19. package/source/components/form/select.mjs +149 -30
  20. package/source/components/layout/details.mjs +50 -3
  21. package/source/components/layout/tabs.mjs +50 -3
  22. package/source/components/notify/monitor-attribute-errors.mjs +235 -0
  23. package/source/components/notify/style/monitor-attribute-errors.pcss +0 -0
  24. package/source/components/notify/stylesheet/monitor-attribute-errors.mjs +38 -0
  25. package/source/dom/customelement.mjs +3 -3
  26. package/source/i18n/locale.mjs +151 -151
  27. package/source/i18n/map/languages.mjs +88 -88
  28. package/source/i18n/util.mjs +122 -114
  29. package/source/monster.mjs +1 -0
  30. package/source/types/version.mjs +1 -1
  31. package/test/cases/monster.mjs +1 -1
  32. package/test/web/import.js +1 -0
  33. package/test/web/test.html +2 -2
  34. package/test/web/tests.js +432 -13
package/CHANGELOG.md CHANGED
@@ -2,6 +2,26 @@
2
2
 
3
3
 
4
4
 
5
+ ## [3.98.0] - 2025-01-06
6
+
7
+ ### Add Features
8
+
9
+ - new monitor-atribute-errors component
10
+ ### Changes
11
+
12
+ - update nix
13
+ - update project
14
+
15
+
16
+
17
+ ## [3.97.1] - 2025-01-05
18
+
19
+ ### Bug Fixes
20
+
21
+ - optimize local-picker [#276](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/276)
22
+
23
+
24
+
5
25
  ## [3.97.0] - 2025-01-04
6
26
 
7
27
  ### Add Features
package/package.json CHANGED
@@ -1 +1 @@
1
- {"author":"schukai GmbH","dependencies":{"@floating-ui/dom":"^1.6.12","@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.97.0"}
1
+ {"author":"schukai GmbH","dependencies":{"@floating-ui/dom":"^1.6.12","@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.98.0"}