@schukai/monster 3.88.1 → 3.89.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.
- package/CHANGELOG.md +21 -0
- package/package.json +1 -1
- package/source/components/datatable/style/datatable.pcss +1 -1
- package/source/components/datatable/stylesheet/datatable.mjs +1 -1
- package/source/components/form/api-button.mjs +419 -419
- package/source/components/form/button-bar.mjs +19 -7
- package/source/components/form/input-group.mjs +105 -0
- package/source/components/form/password.mjs +268 -0
- package/source/components/form/style/input-group.pcss +53 -0
- package/source/components/form/style/password.pcss +15 -0
- package/source/components/form/stylesheet/input-group.mjs +38 -0
- package/source/components/form/stylesheet/password.mjs +38 -0
- package/source/components/style/form.pcss +1 -1
- package/source/components/stylesheet/common.mjs +13 -6
- package/source/components/stylesheet/mixin/property.mjs +13 -6
- package/source/components/stylesheet/normalize.mjs +13 -6
- package/source/components/tree-menu/stylesheet/tree-menu.mjs +13 -6
- package/source/monster.mjs +2 -0
- package/source/types/is.mjs +2 -2
- 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 +3 -3
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,27 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
+
## [3.89.1] - 2024-12-11
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
- **datatable:** hide feature.copyAll [#266](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/266)
|
10
|
+
- **password:** missing import
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
## [3.89.0] - 2024-12-04
|
15
|
+
|
16
|
+
### Add Features
|
17
|
+
|
18
|
+
- input group and password field [#265](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/265)
|
19
|
+
- new input-group and password field [#265](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/265)
|
20
|
+
### Changes
|
21
|
+
|
22
|
+
- code format
|
23
|
+
|
24
|
+
|
25
|
+
|
5
26
|
## [3.88.1] - 2024-11-25
|
6
27
|
|
7
28
|
### Bug Fixes
|
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.
|
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.89.1"}
|