@schukai/monster 4.130.1 → 4.131.0
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/package.json +1 -1
- package/source/components/layout/board.mjs +1 -0
- package/source/components/layout/collapse.mjs +1 -0
- package/source/components/layout/full-screen.mjs +1 -0
- package/source/components/layout/iframe.mjs +1 -0
- package/source/components/layout/overlay.mjs +1 -0
- package/source/components/layout/panel.mjs +1 -0
- package/source/components/layout/split-panel.mjs +1 -0
- package/source/components/layout/width-toggle.mjs +1 -0
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"author":"Volker Schukai","dependencies":{"@floating-ui/dom":"^1.7.6"},"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":"4.
|
|
1
|
+
{"author":"Volker Schukai","dependencies":{"@floating-ui/dom":"^1.7.6"},"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":"4.131.0"}
|
|
@@ -47,6 +47,7 @@ export const parkingElementSymbol = Symbol("parkingElement");
|
|
|
47
47
|
* @fragments /fragments/components/layout/board/
|
|
48
48
|
*
|
|
49
49
|
* @example /examples/components/layout/board-simple
|
|
50
|
+
* @example /examples/components/layout/board-kanban Kanban Board
|
|
50
51
|
*
|
|
51
52
|
* @since 3.116.0
|
|
52
53
|
* @copyright Volker Schukai
|
|
@@ -98,6 +98,7 @@ const nameSymbol = Symbol("name");
|
|
|
98
98
|
* @fragments /fragments/components/layout/collapse/
|
|
99
99
|
*
|
|
100
100
|
* @example /examples/components/layout/collapse-simple
|
|
101
|
+
* @example /examples/components/layout/collapse-with-events Collapse With Events
|
|
101
102
|
*
|
|
102
103
|
* @since 3.74.0
|
|
103
104
|
* @copyright Volker Schukai
|
|
@@ -53,6 +53,7 @@ export const fullScreenExitElementSymbol = Symbol("fullScreenExitElement");
|
|
|
53
53
|
* @fragments /fragments/components/layout/full-screen/
|
|
54
54
|
*
|
|
55
55
|
* @example /examples/components/layout/full-screen-simple
|
|
56
|
+
* @example /examples/components/layout/full-screen-media Focus Media View
|
|
56
57
|
*
|
|
57
58
|
* @since 4.10.0
|
|
58
59
|
* @copyright Volker Schukai
|
|
@@ -56,6 +56,7 @@ const timerCallbackSymbol = Symbol("timerCallback");
|
|
|
56
56
|
* @fragments /fragments/components/layout/iframe/
|
|
57
57
|
*
|
|
58
58
|
* @example /examples/components/layout/iframe-simple Simple iframe
|
|
59
|
+
* @example /examples/components/layout/iframe-with-toolbar Iframe With Toolbar
|
|
59
60
|
*
|
|
60
61
|
* @since 3.76.0
|
|
61
62
|
* @copyright Volker Schukai
|
|
@@ -70,6 +70,7 @@ const ATTRIBUTE_VALUE_OVERLAY_OPEN = "overlay-open";
|
|
|
70
70
|
* @fragments /fragments/components/layout/overlay/
|
|
71
71
|
*
|
|
72
72
|
* @example /examples/components/layout/overlay-simple
|
|
73
|
+
* @example /examples/components/layout/overlay-programmatic Programmatic Overlay Control
|
|
73
74
|
*
|
|
74
75
|
* @copyright Volker Schukai
|
|
75
76
|
* @summary The Overlay component is used to show an overlay and a button to open the overlay.
|
|
@@ -49,6 +49,7 @@ const timerCallbackSymbol = Symbol("timerCallback");
|
|
|
49
49
|
* @fragments /fragments/components/layout/panel/
|
|
50
50
|
*
|
|
51
51
|
* @example /examples/components/layout/panel-simple
|
|
52
|
+
* @example /examples/components/layout/panel-command-center Command Center Panel
|
|
52
53
|
*
|
|
53
54
|
* @since 3.54.0
|
|
54
55
|
* @copyright Volker Schukai
|
|
@@ -73,6 +73,7 @@ const TYPE_HORIZONTAL = "horizontal";
|
|
|
73
73
|
* @issue https://localhost.alvine.dev:8440/development/issues/closed/184.html
|
|
74
74
|
*
|
|
75
75
|
* @example /examples/components/layout/split-panel-simple
|
|
76
|
+
* @example /examples/components/layout/split-panel-presets Split Panel Presets
|
|
76
77
|
*
|
|
77
78
|
* @since 3.54.0
|
|
78
79
|
* @copyright Volker Schukai
|
|
@@ -60,6 +60,7 @@ const MODE_WIDE = "wide";
|
|
|
60
60
|
* @fragments /fragments/components/layout/width-toggle/
|
|
61
61
|
*
|
|
62
62
|
* @example /examples/components/layout/width-toggle-simple Toggle Width
|
|
63
|
+
* @example /examples/components/layout/width-toggle-reader Reader Width Toggle
|
|
63
64
|
*
|
|
64
65
|
* @since 3.57.0
|
|
65
66
|
* @copyright Volker Schukai
|