@schukai/monster 3.80.0 → 3.80.2
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 +19 -0
- package/package.json +1 -1
- package/source/components/content/copy.mjs +1 -1
- package/source/components/layout/collapse.mjs +4 -4
- package/source/components/style/space.pcss +1 -1
- package/source/components/tree-menu/dragable-tree-menu.mjs +664 -664
- package/source/components/tree-menu/tree-menu.mjs +1 -24
- package/source/data/datasource/server/restapi/data-fetch-error.mjs +0 -1
- package/source/dom/customcontrol.mjs +0 -25
- package/source/dom/customelement.mjs +1 -9
- package/source/i18n/formatter.mjs +0 -2
- package/source/i18n/locale.mjs +0 -2
- package/source/i18n/provider.mjs +0 -2
- package/source/i18n/translations.mjs +0 -1
- package/source/logging/handler/console.mjs +0 -1
- package/source/logging/handler.mjs +0 -1
- package/source/logging/logger.mjs +2 -11
- package/source/monster.mjs +0 -1
- package/source/net/webconnect/message.mjs +0 -1
- package/source/types/base.mjs +1 -3
- package/source/types/basewithoptions.mjs +1 -2
- package/source/types/nodelist.mjs +0 -1
- package/source/types/noderecursiveiterator.mjs +1 -5
- package/source/types/observablequeue.mjs +0 -4
- package/source/types/observer.mjs +0 -3
- package/source/types/observerlist.mjs +0 -2
- package/source/types/proxyobserver.mjs +0 -2
- package/source/types/queue.mjs +0 -3
- package/source/types/randomid.mjs +0 -1
- package/source/types/regex.mjs +0 -1
- package/source/types/stack.mjs +1 -2
- package/source/types/tokenlist.mjs +0 -2
- package/source/types/typeof.mjs +0 -2
- package/source/types/uniquequeue.mjs +0 -1
- package/source/types/uuid.mjs +1 -2
- package/source/types/version.mjs +2 -5
- package/source/util/processing/callback.mjs +56 -0
- package/source/util/processing.mjs +2 -40
- package/test/web/test.html +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
+
## [3.80.2] - 2024-10-07
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- wrong css property [#250](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/250)
|
|
10
|
+
### Documentation
|
|
11
|
+
|
|
12
|
+
- some optimisations
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## [3.80.1] - 2024-10-06
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
- remove dragable-tree-menu because it is broken
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
5
24
|
## [3.80.0] - 2024-10-06
|
|
6
25
|
|
|
7
26
|
### Add Features
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"author":"schukai GmbH","dependencies":{"@floating-ui/dom":"^1.6.11","@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.80.
|
|
1
|
+
{"author":"schukai GmbH","dependencies":{"@floating-ui/dom":"^1.6.11","@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.80.2"}
|
|
@@ -201,8 +201,8 @@ class Collapse extends CustomElement {
|
|
|
201
201
|
/**
|
|
202
202
|
* Open the collapse
|
|
203
203
|
* @returns {Collapse}
|
|
204
|
-
* @fires
|
|
205
|
-
* @fires
|
|
204
|
+
* @fires monster-collapse-before-open
|
|
205
|
+
* @fires monster-collapse-open
|
|
206
206
|
*/
|
|
207
207
|
open() {
|
|
208
208
|
let node;
|
|
@@ -245,8 +245,8 @@ class Collapse extends CustomElement {
|
|
|
245
245
|
/**
|
|
246
246
|
* Close the collapse
|
|
247
247
|
* @returns {Collapse}
|
|
248
|
-
* @fires
|
|
249
|
-
* @fires
|
|
248
|
+
* @fires monster-collapse-before-close
|
|
249
|
+
* @fires monster-collapse-closed
|
|
250
250
|
*/
|
|
251
251
|
close() {
|
|
252
252
|
if (!this[detailsElementSymbol].classList.contains("active")) {
|