@schukai/monster 3.111.0 → 3.112.1

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 (30) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/package.json +1 -1
  3. package/source/components/content/camera.mjs +339 -329
  4. package/source/components/content/stylesheet/camera-capture.mjs +13 -6
  5. package/source/components/datatable/status.mjs +175 -177
  6. package/source/components/form/reload.mjs +1 -2
  7. package/source/components/form/util/fetch.mjs +5 -2
  8. package/source/components/layout/popper.mjs +1 -1
  9. package/source/components/layout/slider.mjs +1 -1
  10. package/source/components/time/month-calendar.mjs +824 -0
  11. package/source/components/time/style/month-calendar.pcss +100 -0
  12. package/source/components/time/stylesheet/month-calendar.mjs +38 -0
  13. package/source/components/time/timeline/collection.mjs +218 -0
  14. package/source/components/time/timeline/item.mjs +192 -0
  15. package/source/components/time/timeline/segment.mjs +169 -0
  16. package/source/components/time/timeline/style/segment.pcss +18 -0
  17. package/source/components/time/timeline/stylesheet/segment.mjs +38 -0
  18. package/source/components/tree-menu/tree-menu.mjs +36 -20
  19. package/source/data/datasource/server/restapi/data-fetch-error.mjs +3 -3
  20. package/source/data/datasource/server/restapi.mjs +1 -1
  21. package/source/data/transformer.mjs +60 -0
  22. package/source/monster.mjs +4 -0
  23. package/source/text/bracketed-key-value-hash.mjs +187 -187
  24. package/source/types/base.mjs +6 -5
  25. package/source/types/basewithoptions.mjs +4 -1
  26. package/source/types/internal.mjs +1 -1
  27. package/source/types/version.mjs +1 -1
  28. package/test/cases/monster.mjs +1 -1
  29. package/test/web/test.html +2 -2
  30. package/test/web/tests.js +1139 -977
package/CHANGELOG.md CHANGED
@@ -2,6 +2,30 @@
2
2
 
3
3
 
4
4
 
5
+ ## [3.112.1] - 2025-03-07
6
+
7
+ ### Bug Fixes
8
+
9
+ - update test and optimize tree-menu
10
+
11
+
12
+
13
+ ## [3.112.0] - 2025-03-06
14
+
15
+ ### Add Features
16
+
17
+ - introduce new calendar control [#296](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/296)
18
+ - new calendar control [#296](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/296)
19
+ - new calendar control [#296](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/296)
20
+ ### Bug Fixes
21
+
22
+ - add part to slider
23
+ ### Changes
24
+
25
+ - new vite directory list and node und nix update
26
+
27
+
28
+
5
29
  ## [3.111.0] - 2025-02-22
6
30
 
7
31
  ### Add Features
package/package.json CHANGED
@@ -1 +1 @@
1
- {"author":"schukai GmbH","dependencies":{"@floating-ui/dom":"^1.6.13","@popperjs/core":"^2.11.8","buffer":"^6.0.3"},"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.111.0"}
1
+ {"author":"schukai GmbH","dependencies":{"@floating-ui/dom":"^1.6.13","@popperjs/core":"^2.11.8","buffer":"^6.0.3"},"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.112.1"}