@schukai/monster 4.62.0 → 4.64.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/CHANGELOG.md +26 -0
- package/package.json +1 -1
- package/source/components/accessibility/locale-select.mjs +4 -0
- package/source/components/form/dropzone.mjs +2 -1
- package/source/components/form/style/variant-select.pcss +79 -0
- package/source/components/form/stylesheet/variant-select.mjs +31 -0
- package/source/components/form/variant-select.mjs +1483 -0
- package/source/components/host/call-button.mjs +4 -0
- package/source/components/host/config-manager.mjs +4 -0
- package/source/components/host/host.mjs +4 -0
- package/source/components/host/toggle-button.mjs +4 -0
- package/source/components/layout/iframe.mjs +1 -1
- package/source/components/navigation/table-of-content.mjs +2 -2
- package/source/components/tree-menu/html-tree-menu.mjs +1319 -0
- package/source/components/tree-menu/tree-menu.mjs +4 -0
- package/source/monster.mjs +1 -0
|
@@ -43,6 +43,10 @@ const ATTRIBUTE_CALL = `${ATTRIBUTE_PREFIX}call`;
|
|
|
43
43
|
/**
|
|
44
44
|
* The call button component is used to call a method of another element.
|
|
45
45
|
*
|
|
46
|
+
* @fragments /fragments/components/host/call-button/
|
|
47
|
+
*
|
|
48
|
+
* @example /examples/components/host/call-button-simple Call button
|
|
49
|
+
*
|
|
46
50
|
* @copyright Volker Schukai
|
|
47
51
|
* @summary A call button component that can call a method of another element.
|
|
48
52
|
*/
|
|
@@ -50,6 +50,10 @@ const MODE_READ_WRITE = "readwrite";
|
|
|
50
50
|
/**
|
|
51
51
|
* The Config Manager component is used to encapsulate the configuration of the application.
|
|
52
52
|
*
|
|
53
|
+
* @fragments /fragments/components/host/config-manager/
|
|
54
|
+
*
|
|
55
|
+
* @example /examples/components/host/config-manager-simple Config manager
|
|
56
|
+
*
|
|
53
57
|
* @copyright Volker Schukai
|
|
54
58
|
* @summary A config manager component
|
|
55
59
|
*/
|
|
@@ -71,6 +71,10 @@ const resourceManagerSymbol = Symbol("resourceManager");
|
|
|
71
71
|
/**
|
|
72
72
|
* The Host component is used to encapsulate the content of a web app.
|
|
73
73
|
*
|
|
74
|
+
* @fragments /fragments/components/host/host/
|
|
75
|
+
*
|
|
76
|
+
* @example /examples/components/host/host-simple Host container
|
|
77
|
+
*
|
|
74
78
|
* @copyright Volker Schukai
|
|
75
79
|
* @summary A simple host component
|
|
76
80
|
* @fires monster-host-connected
|
|
@@ -21,6 +21,10 @@ export { ToggleButton };
|
|
|
21
21
|
/**
|
|
22
22
|
* The Toggle Button component is used toggle a other element wich has a method called toggle.
|
|
23
23
|
*
|
|
24
|
+
* @fragments /fragments/components/host/toggle-button/
|
|
25
|
+
*
|
|
26
|
+
* @example /examples/components/host/toggle-button-simple Toggle button
|
|
27
|
+
*
|
|
24
28
|
* @copyright Volker Schukai
|
|
25
29
|
* @summary A toggle button
|
|
26
30
|
*/
|
|
@@ -55,7 +55,7 @@ const timerCallbackSymbol = Symbol("timerCallback");
|
|
|
55
55
|
*
|
|
56
56
|
* @fragments /fragments/components/layout/iframe/
|
|
57
57
|
*
|
|
58
|
-
* @example /examples/components/layout/iframe-simple
|
|
58
|
+
* @example /examples/components/layout/iframe-simple Simple iframe
|
|
59
59
|
*
|
|
60
60
|
* @since 3.76.0
|
|
61
61
|
* @copyright Volker Schukai
|
|
@@ -71,9 +71,9 @@ const scrollableEventHandlerSymbol = Symbol("scrollableEventHandler");
|
|
|
71
71
|
/**
|
|
72
72
|
* A TableOfContent
|
|
73
73
|
*
|
|
74
|
-
* @fragments /fragments/components/
|
|
74
|
+
* @fragments /fragments/components/navigation/table-of-content/
|
|
75
75
|
*
|
|
76
|
-
* @example /examples/components/
|
|
76
|
+
* @example /examples/components/navigation/table-of-content-simple Table of content
|
|
77
77
|
*
|
|
78
78
|
* @since 3.65.0
|
|
79
79
|
* @copyright Volker Schukai
|