@schukai/monster 3.86.0 → 3.86.2
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +16 -0
- package/package.json +1 -1
- package/source/components/content/copy.mjs +357 -359
- package/source/components/datatable/columnbar.mjs +5 -8
- package/source/components/datatable/datasource/dom.mjs +0 -1
- package/source/components/datatable/datatable.mjs +741 -741
- package/source/components/datatable/style/column-bar.pcss +27 -19
- package/source/components/datatable/style/datatable.pcss +6 -1
- package/source/components/datatable/stylesheet/column-bar.mjs +1 -1
- package/source/components/datatable/stylesheet/datatable.mjs +14 -7
- package/source/components/datatable/util.mjs +0 -1
- package/source/components/form/button-bar.mjs +1 -3
- package/source/components/form/style/field-set.pcss +41 -56
- package/source/components/form/stylesheet/button-bar.mjs +13 -6
- package/source/components/form/stylesheet/button.mjs +13 -6
- package/source/components/form/stylesheet/confirm-button.mjs +13 -6
- package/source/components/form/stylesheet/field-set.mjs +1 -1
- package/source/components/form/stylesheet/message-state-button.mjs +13 -6
- package/source/components/form/stylesheet/popper-button.mjs +13 -6
- package/source/components/form/stylesheet/select.mjs +13 -6
- package/source/components/form/stylesheet/state-button.mjs +13 -6
- package/source/components/layout/details.mjs +2 -2
- package/source/components/layout/stylesheet/panel.mjs +13 -6
- package/source/types/version.mjs +1 -1
- package/test/cases/monster.mjs +1 -1
- package/test/web/test.html +2 -2
- package/test/web/tests.js +192 -270
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,22 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
+
## [3.86.2] - 2024-11-14
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
- update the behavour of the datatable in terms of width [#262](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/262)
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
## [3.86.1] - 2024-11-13
|
14
|
+
|
15
|
+
### Bug Fixes
|
16
|
+
|
17
|
+
- update css for datatable and field-set [#259](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/259) [#260](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/260) [#261](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/261)
|
18
|
+
|
19
|
+
|
20
|
+
|
5
21
|
## [3.86.0] - 2024-11-13
|
6
22
|
|
7
23
|
### 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.86.
|
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.86.2"}
|