@schukai/monster 3.55.3 → 3.55.5
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +19 -0
- package/package.json +4 -3
- package/source/components/datatable/datatable.mjs +600 -586
- package/source/components/datatable/filter/select.mjs +2 -3
- package/source/components/datatable/stylesheet/column-bar.mjs +1 -1
- package/source/components/datatable/stylesheet/dataset.mjs +1 -1
- package/source/components/datatable/stylesheet/datatable.mjs +1 -1
- package/source/components/datatable/stylesheet/embedded-pagination.mjs +1 -1
- package/source/components/datatable/stylesheet/filter.mjs +1 -1
- package/source/components/datatable/stylesheet/pagination.mjs +1 -1
- package/source/components/datatable/stylesheet/select-filter.mjs +1 -1
- package/source/components/datatable/stylesheet/status.mjs +1 -1
- package/source/components/form/state-button.mjs +3 -1
- package/source/components/form/style/state-button.pcss +6 -0
- package/source/components/form/stylesheet/action-button.mjs +1 -1
- package/source/components/form/stylesheet/button-bar.mjs +1 -1
- package/source/components/form/stylesheet/button.mjs +1 -1
- package/source/components/form/stylesheet/confirm-button.mjs +1 -1
- package/source/components/form/stylesheet/form.mjs +1 -1
- package/source/components/form/stylesheet/select.mjs +1 -1
- package/source/components/form/stylesheet/state-button.mjs +1 -1
- package/source/components/form/stylesheet/tabs.mjs +1 -1
- package/source/components/host/stylesheet/call-button.mjs +1 -1
- package/source/components/host/stylesheet/collapse.mjs +1 -1
- package/source/components/host/stylesheet/details.mjs +1 -1
- package/source/components/host/stylesheet/host.mjs +1 -1
- package/source/components/host/stylesheet/overlay.mjs +1 -1
- package/source/components/host/stylesheet/toggle-button.mjs +1 -1
- package/source/components/host/stylesheet/viewer.mjs +1 -1
- package/source/components/notify/stylesheet/message.mjs +1 -1
- package/source/components/notify/stylesheet/notify.mjs +1 -1
- package/source/components/state/stylesheet/log.mjs +1 -1
- package/source/components/state/stylesheet/state.mjs +1 -1
- package/source/components/style/normalize.pcss +3 -3
- package/source/components/stylesheet/border.mjs +1 -1
- package/source/components/stylesheet/card.mjs +1 -1
- package/source/components/stylesheet/form.mjs +1 -1
- package/source/components/stylesheet/icons.mjs +1 -1
- package/source/components/stylesheet/normalize.mjs +1 -1
- package/source/components/stylesheet/typography.mjs +1 -1
- 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 +5 -0
package/CHANGELOG.md
CHANGED
@@ -1,4 +1,20 @@
|
|
1
1
|
|
2
|
+
## [3.55.5] - 2024-01-24
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
- predefine order in datatable [#138](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/138)
|
7
|
+
|
8
|
+
## [3.55.4] - 2024-01-24
|
9
|
+
|
10
|
+
### Bug Fixes
|
11
|
+
|
12
|
+
- add gap to button [#137](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/137)
|
13
|
+
### Changes
|
14
|
+
|
15
|
+
- release and publish to npm new version 3.55.4
|
16
|
+
- update tests
|
17
|
+
|
2
18
|
## [3.55.3] - 2024-01-23
|
3
19
|
|
4
20
|
### Bug Fixes
|
@@ -6,6 +22,9 @@
|
|
6
22
|
- fix loading select [#135](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/135)
|
7
23
|
- reset config [#136](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/136)
|
8
24
|
- reset config [#136](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/136)
|
25
|
+
### Changes
|
26
|
+
|
27
|
+
- release and publish to npm new version 3.55.3
|
9
28
|
|
10
29
|
## [3.55.2] - 2024-01-22
|
11
30
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@schukai/monster",
|
3
|
-
"version": "3.55.
|
3
|
+
"version": "3.55.5",
|
4
4
|
"description": "Monster is a simple library for creating fast, robust and lightweight websites.",
|
5
5
|
"keywords": [
|
6
6
|
"framework",
|
@@ -40,7 +40,8 @@
|
|
40
40
|
"author": "schukai GmbH",
|
41
41
|
"license": "AGPL 3.0",
|
42
42
|
"dependencies": {
|
43
|
-
"@floating-ui/dom": "^1.5.
|
44
|
-
"@popperjs/core": "^2.11.8"
|
43
|
+
"@floating-ui/dom": "^1.5.4",
|
44
|
+
"@popperjs/core": "^2.11.8",
|
45
|
+
"vite-plugin-directory-index": "^3.0.1"
|
45
46
|
}
|
46
47
|
}
|