@schukai/monster 1.25.0 → 1.26.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 +15 -0
- package/README.md +3 -3
- package/dist/modules/constants.js +1 -1
- package/dist/modules/constraints/abstract.js +1 -1
- package/dist/modules/constraints/abstractoperator.js +1 -1
- package/dist/modules/constraints/andoperator.js +1 -1
- package/dist/modules/constraints/invalid.js +1 -1
- package/dist/modules/constraints/isarray.js +1 -1
- package/dist/modules/constraints/isobject.js +1 -1
- package/dist/modules/constraints/namespace.js +1 -1
- package/dist/modules/constraints/oroperator.js +1 -1
- package/dist/modules/constraints/valid.js +1 -1
- package/dist/modules/data/buildmap.js +2 -2
- package/dist/modules/data/buildtree.js +2 -0
- package/dist/modules/data/datasource/namespace.js +1 -1
- package/dist/modules/data/datasource/restapi/writeerror.js +1 -1
- package/dist/modules/data/datasource/restapi.js +1 -1
- package/dist/modules/data/datasource/storage/localstorage.js +1 -1
- package/dist/modules/data/datasource/storage/namespace.js +1 -1
- package/dist/modules/data/datasource/storage/sessionstorage.js +1 -1
- package/dist/modules/data/datasource/storage.js +1 -1
- package/dist/modules/data/datasource.js +1 -1
- package/dist/modules/data/diff.js +1 -1
- package/dist/modules/data/extend.js +1 -1
- package/dist/modules/data/namespace.js +1 -1
- package/dist/modules/data/pathfinder.js +1 -1
- package/dist/modules/data/pipe.js +1 -1
- package/dist/modules/data/transformer.js +1 -1
- package/dist/modules/dom/assembler.js +1 -1
- package/dist/modules/dom/attributes.js +1 -1
- package/dist/modules/dom/constants.js +1 -1
- package/dist/modules/dom/customcontrol.js +1 -1
- package/dist/modules/dom/customelement.js +1 -1
- package/dist/modules/dom/events.js +1 -1
- package/dist/modules/dom/focusmanager.js +1 -1
- package/dist/modules/dom/locale.js +1 -1
- package/dist/modules/dom/namespace.js +1 -1
- package/dist/modules/dom/resource/data.js +1 -1
- package/dist/modules/dom/resource/link/stylesheet.js +1 -1
- package/dist/modules/dom/resource/link.js +1 -1
- package/dist/modules/dom/resource/script.js +1 -1
- package/dist/modules/dom/resource.js +1 -1
- package/dist/modules/dom/resourcemanager.js +1 -1
- package/dist/modules/dom/template.js +1 -1
- package/dist/modules/dom/theme.js +1 -1
- package/dist/modules/dom/updater.js +2 -2
- package/dist/modules/dom/util.js +1 -1
- package/dist/modules/dom/worker/factory.js +1 -1
- package/dist/modules/i18n/formatter.js +2 -0
- package/dist/modules/i18n/locale.js +1 -1
- package/dist/modules/i18n/namespace.js +1 -1
- package/dist/modules/i18n/provider.js +1 -1
- package/dist/modules/i18n/providers/fetch.js +1 -1
- package/dist/modules/i18n/providers/namespace.js +1 -1
- package/dist/modules/i18n/translations.js +1 -1
- package/dist/modules/logging/handler/console.js +1 -1
- package/dist/modules/logging/handler/namespace.js +1 -1
- package/dist/modules/logging/handler.js +1 -1
- package/dist/modules/logging/logentry.js +1 -1
- package/dist/modules/logging/logger.js +1 -1
- package/dist/modules/logging/namespace.js +1 -1
- package/dist/modules/math/namespace.js +1 -1
- package/dist/modules/math/random.js +1 -1
- package/dist/modules/monster.js +1 -1
- package/dist/modules/namespace.js +1 -1
- package/dist/modules/text/formatter.js +2 -2
- package/dist/modules/text/namespace.js +1 -1
- package/dist/modules/types/base.js +1 -1
- package/dist/modules/types/basewithoptions.js +1 -1
- package/dist/modules/types/binary.js +1 -1
- package/dist/modules/types/dataurl.js +1 -1
- package/dist/modules/types/global.js +1 -1
- package/dist/modules/types/id.js +1 -1
- package/dist/modules/types/is.js +2 -2
- package/dist/modules/types/mediatype.js +1 -1
- package/dist/modules/types/namespace.js +1 -1
- package/dist/modules/types/node.js +2 -0
- package/dist/modules/types/nodelist.js +2 -0
- package/dist/modules/types/noderecursiveiterator.js +2 -0
- package/dist/modules/types/observer.js +1 -1
- package/dist/modules/types/observerlist.js +1 -1
- package/dist/modules/types/proxyobserver.js +1 -1
- package/dist/modules/types/queue.js +1 -1
- package/dist/modules/types/randomid.js +1 -1
- package/dist/modules/types/regex.js +2 -0
- package/dist/modules/types/stack.js +1 -1
- package/dist/modules/types/tokenlist.js +1 -1
- package/dist/modules/types/typeof.js +1 -1
- package/dist/modules/types/uniquequeue.js +1 -1
- package/dist/modules/types/uuid.js +1 -1
- package/dist/modules/types/validate.js +1 -1
- package/dist/modules/types/version.js +2 -2
- package/dist/modules/util/clone.js +1 -1
- package/dist/modules/util/comparator.js +1 -1
- package/dist/modules/util/freeze.js +1 -1
- package/dist/modules/util/namespace.js +1 -1
- package/dist/modules/util/processing.js +1 -1
- package/dist/modules/util/trimspaces.js +1 -1
- package/dist/monster.dev.js +620 -361
- package/dist/monster.dev.js.map +1 -1
- package/dist/monster.js +2 -2
- package/package.json +13 -2
- package/source/constraints/abstract.js +5 -0
- package/source/constraints/abstractoperator.js +5 -0
- package/source/constraints/andoperator.js +10 -5
- package/source/constraints/invalid.js +8 -3
- package/source/constraints/isarray.js +9 -4
- package/source/constraints/isobject.js +8 -3
- package/source/constraints/oroperator.js +10 -5
- package/source/constraints/valid.js +8 -3
- package/source/data/buildmap.js +25 -9
- package/source/data/buildtree.js +95 -0
- package/source/data/datasource/restapi.js +3 -3
- package/source/data/datasource/storage/localstorage.js +2 -2
- package/source/data/datasource/storage/sessionstorage.js +2 -2
- package/source/data/datasource/storage.js +3 -3
- package/source/data/datasource.js +3 -3
- package/source/data/diff.js +3 -3
- package/source/data/extend.js +2 -2
- package/source/data/pathfinder.js +4 -4
- package/source/data/pipe.js +3 -3
- package/source/data/transformer.js +3 -3
- package/source/dom/assembler.js +2 -2
- package/source/dom/attributes.js +24 -24
- package/source/dom/customcontrol.js +1 -1
- package/source/dom/customelement.js +1 -1
- package/source/dom/events.js +4 -4
- package/source/dom/focusmanager.js +6 -7
- package/source/dom/locale.js +8 -4
- package/source/dom/resource/data.js +2 -2
- package/source/dom/resource/link/stylesheet.js +2 -2
- package/source/dom/resource/link.js +2 -2
- package/source/dom/resource/script.js +2 -2
- package/source/dom/resource.js +2 -2
- package/source/dom/resourcemanager.js +2 -2
- package/source/dom/template.js +5 -5
- package/source/dom/theme.js +3 -3
- package/source/dom/updater.js +5 -5
- package/source/dom/util.js +6 -6
- package/source/dom/worker/factory.js +2 -2
- package/source/i18n/formatter.js +140 -0
- package/source/i18n/locale.js +6 -4
- package/source/i18n/provider.js +2 -2
- package/source/i18n/providers/fetch.js +18 -3
- package/source/i18n/translations.js +18 -9
- package/source/logging/handler/console.js +2 -2
- package/source/logging/handler.js +2 -2
- package/source/logging/logentry.js +2 -2
- package/source/logging/logger.js +2 -2
- package/source/math/random.js +2 -2
- package/source/namespace.js +1 -1
- package/source/text/formatter.js +190 -48
- package/source/types/base.js +2 -2
- package/source/types/basewithoptions.js +2 -2
- package/source/types/binary.js +4 -4
- package/source/types/dataurl.js +4 -4
- package/source/types/global.js +4 -4
- package/source/types/id.js +6 -3
- package/source/types/is.js +100 -82
- package/source/types/mediatype.js +4 -4
- package/source/types/node.js +179 -0
- package/source/types/nodelist.js +125 -0
- package/source/types/noderecursiveiterator.js +126 -0
- package/source/types/observer.js +3 -3
- package/source/types/observerlist.js +2 -2
- package/source/types/proxyobserver.js +5 -5
- package/source/types/queue.js +4 -4
- package/source/types/randomid.js +2 -2
- package/source/types/regex.js +49 -0
- package/source/types/stack.js +2 -2
- package/source/types/tokenlist.js +2 -2
- package/source/types/typeof.js +3 -3
- package/source/types/uniquequeue.js +2 -2
- package/source/types/uuid.js +2 -2
- package/source/types/validate.js +20 -20
- package/source/types/version.js +6 -6
- package/source/util/clone.js +2 -2
- package/source/util/comparator.js +3 -3
- package/source/util/freeze.js +2 -2
- package/source/util/processing.js +3 -3
- package/source/util/trimspaces.js +2 -2
- package/test/cases/data/buildtree.js +149 -0
- package/test/cases/dom/attributes.js +18 -14
- package/test/cases/dom/resource/link/stylesheet.js +1 -1
- package/test/cases/i18n/formatter.js +66 -0
- package/test/cases/monster.js +1 -1
- package/test/cases/text/formatter.js +36 -5
- package/test/cases/types/node.js +196 -0
- package/test/cases/types/nodelist.js +64 -0
- package/test/cases/types/noderecursiveiterator.js +54 -0
- package/test/cases/types/regex.js +32 -0
- package/test/util/jsdom.js +0 -1
- package/test/web/import.js +6 -0
- package/test/web/monster-dev.html +3 -3
- package/test/web/monster.html +2 -2
- package/test/web/test.html +2 -2
- package/test/web/tests.js +3 -3
package/source/data/extend.js
CHANGED
|
@@ -15,7 +15,7 @@ import {typeOf} from "../types/typeof.js";
|
|
|
15
15
|
*
|
|
16
16
|
* ```
|
|
17
17
|
* <script type="module">
|
|
18
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
18
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
19
19
|
* Monster.Data.extend(a, b)
|
|
20
20
|
* </script>
|
|
21
21
|
* ```
|
|
@@ -24,7 +24,7 @@ import {typeOf} from "../types/typeof.js";
|
|
|
24
24
|
*
|
|
25
25
|
* ```
|
|
26
26
|
* <script type="module">
|
|
27
|
-
* import {extend} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
27
|
+
* import {extend} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/data/extend.js';
|
|
28
28
|
* extend(a, b)
|
|
29
29
|
* </script>
|
|
30
30
|
* ```
|
|
@@ -27,7 +27,7 @@ export const WILDCARD = '*';
|
|
|
27
27
|
*
|
|
28
28
|
* ```
|
|
29
29
|
* <script type="module">
|
|
30
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
30
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
31
31
|
* console.log(new Monster.Data.Pathfinder())
|
|
32
32
|
* </script>
|
|
33
33
|
* ```
|
|
@@ -36,7 +36,7 @@ export const WILDCARD = '*';
|
|
|
36
36
|
*
|
|
37
37
|
* ```
|
|
38
38
|
* <script type="module">
|
|
39
|
-
* import {Pathfinder} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
39
|
+
* import {Pathfinder} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/data/pathfinder.js';
|
|
40
40
|
* console.log(new Pathfinder())
|
|
41
41
|
* </script>
|
|
42
42
|
* ```
|
|
@@ -78,7 +78,7 @@ export const WILDCARD = '*';
|
|
|
78
78
|
*
|
|
79
79
|
* @example
|
|
80
80
|
*
|
|
81
|
-
* import {Pathfinder} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
81
|
+
* import {Pathfinder} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/data/pathfinder.js';
|
|
82
82
|
*
|
|
83
83
|
* let value = new Pathfinder({
|
|
84
84
|
* a: {
|
|
@@ -104,7 +104,7 @@ export const WILDCARD = '*';
|
|
|
104
104
|
*
|
|
105
105
|
* @example
|
|
106
106
|
*
|
|
107
|
-
* import {Pathfinder} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
107
|
+
* import {Pathfinder} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/data/pathfinder.js';
|
|
108
108
|
*
|
|
109
109
|
* let p = new Pathfinder({
|
|
110
110
|
* a: {
|
package/source/data/pipe.js
CHANGED
|
@@ -19,7 +19,7 @@ const DELIMITER = '|';
|
|
|
19
19
|
*
|
|
20
20
|
* ```
|
|
21
21
|
* <script type="module">
|
|
22
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
22
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
23
23
|
* new Monster.Data.Pipe()
|
|
24
24
|
* </script>
|
|
25
25
|
* ```
|
|
@@ -28,7 +28,7 @@ const DELIMITER = '|';
|
|
|
28
28
|
*
|
|
29
29
|
* ```
|
|
30
30
|
* <script type="module">
|
|
31
|
-
* import {Pipe} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
31
|
+
* import {Pipe} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/data/pipe.js';
|
|
32
32
|
* new Pipe()
|
|
33
33
|
* </script>
|
|
34
34
|
* ```
|
|
@@ -39,7 +39,7 @@ const DELIMITER = '|';
|
|
|
39
39
|
* the word is then converted to uppercase letters and a prefix Hello is added. the two backslash safe the space char.
|
|
40
40
|
*
|
|
41
41
|
* @example
|
|
42
|
-
* import {Pipe} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
42
|
+
* import {Pipe} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/data/pipe.js';
|
|
43
43
|
*
|
|
44
44
|
* let obj = {
|
|
45
45
|
* a: {
|
|
@@ -25,7 +25,7 @@ import {Pathfinder} from "./pathfinder.js";
|
|
|
25
25
|
*
|
|
26
26
|
* ```
|
|
27
27
|
* <script type="module">
|
|
28
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
28
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
29
29
|
* new Monster.Data.Transformer()
|
|
30
30
|
* </script>
|
|
31
31
|
* ```
|
|
@@ -34,7 +34,7 @@ import {Pathfinder} from "./pathfinder.js";
|
|
|
34
34
|
*
|
|
35
35
|
* ```
|
|
36
36
|
* <script type="module">
|
|
37
|
-
* import {Transformer} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
37
|
+
* import {Transformer} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/data/transformer.js';
|
|
38
38
|
* new Transformer()
|
|
39
39
|
* </script>
|
|
40
40
|
* ```
|
|
@@ -120,7 +120,7 @@ import {Pathfinder} from "./pathfinder.js";
|
|
|
120
120
|
*
|
|
121
121
|
* @example
|
|
122
122
|
*
|
|
123
|
-
* import {Transformer} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
123
|
+
* import {Transformer} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/data/transformer.js';
|
|
124
124
|
*
|
|
125
125
|
* const transformer = new Transformer("tolower")
|
|
126
126
|
*
|
package/source/dom/assembler.js
CHANGED
|
@@ -23,7 +23,7 @@ const ATTRIBUTEPREFIX = "data-monster-";
|
|
|
23
23
|
*
|
|
24
24
|
* ```
|
|
25
25
|
* <script type="module">
|
|
26
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
26
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
27
27
|
* console.log(new Monster.DOM.Assembler())
|
|
28
28
|
* </script>
|
|
29
29
|
* ```
|
|
@@ -32,7 +32,7 @@ const ATTRIBUTEPREFIX = "data-monster-";
|
|
|
32
32
|
*
|
|
33
33
|
* ```
|
|
34
34
|
* <script type="module">
|
|
35
|
-
* import {Assembler} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
35
|
+
* import {Assembler} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/dom/assembler.js';
|
|
36
36
|
* console.log(new Assembler())
|
|
37
37
|
* </script>
|
|
38
38
|
* ```
|
package/source/dom/attributes.js
CHANGED
|
@@ -20,7 +20,7 @@ import {ATTRIBUTE_OBJECTLINK} from "./constants.js";
|
|
|
20
20
|
*
|
|
21
21
|
* ```
|
|
22
22
|
* <script type="module">
|
|
23
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
23
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
24
24
|
* console.log(Monster.DOM.findClosestObjectLink())
|
|
25
25
|
* </script>
|
|
26
26
|
* ```
|
|
@@ -29,7 +29,7 @@ import {ATTRIBUTE_OBJECTLINK} from "./constants.js";
|
|
|
29
29
|
*
|
|
30
30
|
* ```
|
|
31
31
|
* <script type="module">
|
|
32
|
-
* import {getUpdaterFromNode} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
32
|
+
* import {getUpdaterFromNode} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/dom/updater.js';
|
|
33
33
|
* console.log(findClosestObjectLink())
|
|
34
34
|
* </script>
|
|
35
35
|
* ```
|
|
@@ -50,7 +50,7 @@ function findClosestObjectLink(element) {
|
|
|
50
50
|
*
|
|
51
51
|
* ```
|
|
52
52
|
* <script type="module">
|
|
53
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
53
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
54
54
|
* Monster.DOM.addToObjectLink();
|
|
55
55
|
* </script>
|
|
56
56
|
* ```
|
|
@@ -59,7 +59,7 @@ function findClosestObjectLink(element) {
|
|
|
59
59
|
*
|
|
60
60
|
* ```
|
|
61
61
|
* <script type="module">
|
|
62
|
-
* import {addToObjectLink} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
62
|
+
* import {addToObjectLink} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/dom/attributes.js';
|
|
63
63
|
* addToObjectLink();
|
|
64
64
|
* </script>
|
|
65
65
|
* ```
|
|
@@ -92,7 +92,7 @@ function addToObjectLink(element, symbol, object) {
|
|
|
92
92
|
*
|
|
93
93
|
* ```
|
|
94
94
|
* <script type="module">
|
|
95
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
95
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
96
96
|
* Monster.DOM.removeObjectLink();
|
|
97
97
|
* </script>
|
|
98
98
|
* ```
|
|
@@ -101,7 +101,7 @@ function addToObjectLink(element, symbol, object) {
|
|
|
101
101
|
*
|
|
102
102
|
* ```
|
|
103
103
|
* <script type="module">
|
|
104
|
-
* import {removeObjectLink} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
104
|
+
* import {removeObjectLink} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/dom/attributes.js';
|
|
105
105
|
* removeObjectLink();
|
|
106
106
|
* </script>
|
|
107
107
|
* ```
|
|
@@ -134,7 +134,7 @@ function removeObjectLink(element, symbol) {
|
|
|
134
134
|
*
|
|
135
135
|
* ```
|
|
136
136
|
* <script type="module">
|
|
137
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
137
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
138
138
|
* Monster.DOM.hasObjectLink();
|
|
139
139
|
* </script>
|
|
140
140
|
* ```
|
|
@@ -143,7 +143,7 @@ function removeObjectLink(element, symbol) {
|
|
|
143
143
|
*
|
|
144
144
|
* ```
|
|
145
145
|
* <script type="module">
|
|
146
|
-
* import {hasObjectLink} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
146
|
+
* import {hasObjectLink} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/dom/attributes.js';
|
|
147
147
|
* hasObjectLink();
|
|
148
148
|
* </script>
|
|
149
149
|
* ```
|
|
@@ -180,7 +180,7 @@ function hasObjectLink(element, symbol) {
|
|
|
180
180
|
*
|
|
181
181
|
* ```
|
|
182
182
|
* <script type="module">
|
|
183
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
183
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
184
184
|
* Monster.DOM.getLinkedObjects();
|
|
185
185
|
* </script>
|
|
186
186
|
* ```
|
|
@@ -189,7 +189,7 @@ function hasObjectLink(element, symbol) {
|
|
|
189
189
|
*
|
|
190
190
|
* ```
|
|
191
191
|
* <script type="module">
|
|
192
|
-
* import {getLinkedObjects} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
192
|
+
* import {getLinkedObjects} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/dom/attributes.js';
|
|
193
193
|
* getLinkedObjects();
|
|
194
194
|
* </script>
|
|
195
195
|
* ```
|
|
@@ -225,7 +225,7 @@ function getLinkedObjects(element, symbol) {
|
|
|
225
225
|
*
|
|
226
226
|
* ```
|
|
227
227
|
* <script type="module">
|
|
228
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
228
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
229
229
|
* Monster.DOM.toggleAttributeToken();
|
|
230
230
|
* </script>
|
|
231
231
|
* ```
|
|
@@ -234,7 +234,7 @@ function getLinkedObjects(element, symbol) {
|
|
|
234
234
|
*
|
|
235
235
|
* ```
|
|
236
236
|
* <script type="module">
|
|
237
|
-
* import {toggleAttributeToken} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
237
|
+
* import {toggleAttributeToken} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/dom/attributes.js';
|
|
238
238
|
* toggleAttributeToken();
|
|
239
239
|
* </script>
|
|
240
240
|
* ```
|
|
@@ -269,7 +269,7 @@ function toggleAttributeToken(element, key, token) {
|
|
|
269
269
|
*
|
|
270
270
|
* ```
|
|
271
271
|
* <script type="module">
|
|
272
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
272
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
273
273
|
* Monster.DOM.addAttributeToken();
|
|
274
274
|
* </script>
|
|
275
275
|
* ```
|
|
@@ -278,7 +278,7 @@ function toggleAttributeToken(element, key, token) {
|
|
|
278
278
|
*
|
|
279
279
|
* ```
|
|
280
280
|
* <script type="module">
|
|
281
|
-
* import {addAttributeToken} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
281
|
+
* import {addAttributeToken} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/dom/attributes.js';
|
|
282
282
|
* addAttributeToken();
|
|
283
283
|
* </script>
|
|
284
284
|
* ```
|
|
@@ -315,7 +315,7 @@ function addAttributeToken(element, key, token) {
|
|
|
315
315
|
*
|
|
316
316
|
* ```
|
|
317
317
|
* <script type="module">
|
|
318
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
318
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
319
319
|
* Monster.DOM.removeAttributeToken();
|
|
320
320
|
* </script>
|
|
321
321
|
* ```
|
|
@@ -324,7 +324,7 @@ function addAttributeToken(element, key, token) {
|
|
|
324
324
|
*
|
|
325
325
|
* ```
|
|
326
326
|
* <script type="module">
|
|
327
|
-
* import {removeAttributeToken} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
327
|
+
* import {removeAttributeToken} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/dom/attributes.js';
|
|
328
328
|
* removeAttributeToken();
|
|
329
329
|
* </script>
|
|
330
330
|
* ```
|
|
@@ -360,7 +360,7 @@ function removeAttributeToken(element, key, token) {
|
|
|
360
360
|
*
|
|
361
361
|
* ```
|
|
362
362
|
* <script type="module">
|
|
363
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
363
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
364
364
|
* Monster.DOM.containsAttributeToken();
|
|
365
365
|
* </script>
|
|
366
366
|
* ```
|
|
@@ -369,7 +369,7 @@ function removeAttributeToken(element, key, token) {
|
|
|
369
369
|
*
|
|
370
370
|
* ```
|
|
371
371
|
* <script type="module">
|
|
372
|
-
* import {containsAttributeToken} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
372
|
+
* import {containsAttributeToken} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/dom/attributes.js';
|
|
373
373
|
* containsAttributeToken();
|
|
374
374
|
* </script>
|
|
375
375
|
* ```
|
|
@@ -402,7 +402,7 @@ function containsAttributeToken(element, key, token) {
|
|
|
402
402
|
*
|
|
403
403
|
* ```
|
|
404
404
|
* <script type="module">
|
|
405
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
405
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
406
406
|
* Monster.DOM.replaceAttributeToken();
|
|
407
407
|
* </script>
|
|
408
408
|
* ```
|
|
@@ -411,7 +411,7 @@ function containsAttributeToken(element, key, token) {
|
|
|
411
411
|
*
|
|
412
412
|
* ```
|
|
413
413
|
* <script type="module">
|
|
414
|
-
* import {replaceAttributeToken} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
414
|
+
* import {replaceAttributeToken} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/dom/attributes.js';
|
|
415
415
|
* replaceAttributeToken();
|
|
416
416
|
* </script>
|
|
417
417
|
* ```
|
|
@@ -447,7 +447,7 @@ function replaceAttributeToken(element, key, from, to) {
|
|
|
447
447
|
*
|
|
448
448
|
* ```
|
|
449
449
|
* <script type="module">
|
|
450
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
450
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
451
451
|
* Monster.DOM.clearAttributeTokens();
|
|
452
452
|
* </script>
|
|
453
453
|
* ```
|
|
@@ -456,7 +456,7 @@ function replaceAttributeToken(element, key, from, to) {
|
|
|
456
456
|
*
|
|
457
457
|
* ```
|
|
458
458
|
* <script type="module">
|
|
459
|
-
* import {clearAttributeTokens} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
459
|
+
* import {clearAttributeTokens} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/dom/attributes.js';
|
|
460
460
|
* clearAttributeTokens();
|
|
461
461
|
* </script>
|
|
462
462
|
* ```
|
|
@@ -486,7 +486,7 @@ function clearAttributeTokens(element, key) {
|
|
|
486
486
|
*
|
|
487
487
|
* ```
|
|
488
488
|
* <script type="module">
|
|
489
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
489
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
490
490
|
* Monster.DOM.findClosestByAttribute();
|
|
491
491
|
* </script>
|
|
492
492
|
* ```
|
|
@@ -495,7 +495,7 @@ function clearAttributeTokens(element, key) {
|
|
|
495
495
|
*
|
|
496
496
|
* ```
|
|
497
497
|
* <script type="module">
|
|
498
|
-
* import {findClosestByAttribute} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
498
|
+
* import {findClosestByAttribute} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/dom/attributes.js';
|
|
499
499
|
* findClosestByAttribute();
|
|
500
500
|
* </script>
|
|
501
501
|
* ```
|
|
@@ -30,7 +30,7 @@ const attachedInternalSymbol = Symbol('attachedInternal');
|
|
|
30
30
|
*
|
|
31
31
|
* ```
|
|
32
32
|
* <script type="module">
|
|
33
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
33
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
34
34
|
* document.createElement('monster-')
|
|
35
35
|
* </script>
|
|
36
36
|
* ```
|
|
@@ -96,7 +96,7 @@ const attributeObserverSymbol = Symbol('attributeObserver');
|
|
|
96
96
|
*
|
|
97
97
|
* ```
|
|
98
98
|
* <script type="module">
|
|
99
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
99
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
100
100
|
* document.createElement('monster-')
|
|
101
101
|
* </script>
|
|
102
102
|
* ```
|
package/source/dom/events.js
CHANGED
|
@@ -13,7 +13,7 @@ import {getDocument} from "./util.js";
|
|
|
13
13
|
*
|
|
14
14
|
* ```
|
|
15
15
|
* <script type="module">
|
|
16
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
16
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
17
17
|
* console.log(new Monster.DOM.fireEvent())
|
|
18
18
|
* </script>
|
|
19
19
|
* ```
|
|
@@ -22,7 +22,7 @@ import {getDocument} from "./util.js";
|
|
|
22
22
|
*
|
|
23
23
|
* ```
|
|
24
24
|
* <script type="module">
|
|
25
|
-
* import {fireEvent} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
25
|
+
* import {fireEvent} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/dom/events.js';
|
|
26
26
|
* console.log(fireEvent())
|
|
27
27
|
* </script>
|
|
28
28
|
* ```
|
|
@@ -73,7 +73,7 @@ function fireEvent(element, type) {
|
|
|
73
73
|
*
|
|
74
74
|
* ```
|
|
75
75
|
* <script type="module">
|
|
76
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
76
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
77
77
|
* console.log(new Monster.DOM.findTargetElementFromEvent())
|
|
78
78
|
* </script>
|
|
79
79
|
* ```
|
|
@@ -82,7 +82,7 @@ function fireEvent(element, type) {
|
|
|
82
82
|
*
|
|
83
83
|
* ```
|
|
84
84
|
* <script type="module">
|
|
85
|
-
* import {findTargetElementFromEvent} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
85
|
+
* import {findTargetElementFromEvent} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/dom/events.js';
|
|
86
86
|
* console.log(findTargetElementFromEvent())
|
|
87
87
|
* </script>
|
|
88
88
|
* ```
|
|
@@ -35,23 +35,22 @@ const stackSymbol = Symbol('stack');
|
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
/**
|
|
38
|
-
* With
|
|
39
|
-
* For this the attribute `lang` in the html tag is read. If no attribute is set, `en` is used as default.
|
|
38
|
+
* With the focusmanager the focus can be stored in a document, recalled and moved.
|
|
40
39
|
*
|
|
41
|
-
* You can create the
|
|
40
|
+
* You can create the object via the monster namespace `new Monster.DOM.FocusManager()`.
|
|
42
41
|
*
|
|
43
42
|
* ```
|
|
44
43
|
* <script type="module">
|
|
45
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
44
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
46
45
|
* new Monster.DOM.FocusManager()
|
|
47
46
|
* </script>
|
|
48
47
|
* ```
|
|
49
48
|
*
|
|
50
|
-
* Alternatively, you can also integrate this
|
|
49
|
+
* Alternatively, you can also integrate this object individually.
|
|
51
50
|
*
|
|
52
51
|
* ```
|
|
53
52
|
* <script type="module">
|
|
54
|
-
* import {FocusManager} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
53
|
+
* import {FocusManager} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/dom/focusmanager.js';
|
|
55
54
|
* new FocusManager()
|
|
56
55
|
* </script>
|
|
57
56
|
* ```
|
|
@@ -60,7 +59,7 @@ const stackSymbol = Symbol('stack');
|
|
|
60
59
|
* @copyright schukai GmbH
|
|
61
60
|
* @memberOf Monster.DOM
|
|
62
61
|
* @throws {Error} unsupported locale
|
|
63
|
-
* @summary
|
|
62
|
+
* @summary Handle the focus
|
|
64
63
|
*/
|
|
65
64
|
class FocusManager extends BaseWithOptions {
|
|
66
65
|
|
package/source/dom/locale.js
CHANGED
|
@@ -17,13 +17,17 @@ const DEFAULT_LANGUAGE = 'en';
|
|
|
17
17
|
/**
|
|
18
18
|
* With this function you can read the language version set by the document.
|
|
19
19
|
* For this the attribute `lang` in the html tag is read. If no attribute is set, `en` is used as default.
|
|
20
|
+
*
|
|
21
|
+
* ```html
|
|
22
|
+
* <html lang="en">
|
|
23
|
+
* ```
|
|
20
24
|
*
|
|
21
25
|
* You can call the function via the monster namespace `new Monster.DOM.getLocaleOfDocument()`.
|
|
22
26
|
*
|
|
23
27
|
* ```
|
|
24
28
|
* <script type="module">
|
|
25
|
-
* import {
|
|
26
|
-
*
|
|
29
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
30
|
+
* new Monster.DOM.getLocaleOfDocument()
|
|
27
31
|
* </script>
|
|
28
32
|
* ```
|
|
29
33
|
*
|
|
@@ -31,8 +35,8 @@ const DEFAULT_LANGUAGE = 'en';
|
|
|
31
35
|
*
|
|
32
36
|
* ```
|
|
33
37
|
* <script type="module">
|
|
34
|
-
* import {getLocaleOfDocument} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
35
|
-
*
|
|
38
|
+
* import {getLocaleOfDocument} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/dom/locale.js';
|
|
39
|
+
* new getLocaleOfDocument()
|
|
36
40
|
* </script>
|
|
37
41
|
* ```
|
|
38
42
|
*
|
|
@@ -27,7 +27,7 @@ import {KEY_DOCUMENT, KEY_QUERY, referenceSymbol, Resource} from "../resource.js
|
|
|
27
27
|
*
|
|
28
28
|
* ```
|
|
29
29
|
* <script type="module">
|
|
30
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
30
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
31
31
|
* new Monster.DOM.Resource.Data()
|
|
32
32
|
* </script>
|
|
33
33
|
* ```
|
|
@@ -36,7 +36,7 @@ import {KEY_DOCUMENT, KEY_QUERY, referenceSymbol, Resource} from "../resource.js
|
|
|
36
36
|
*
|
|
37
37
|
* ```
|
|
38
38
|
* <script type="module">
|
|
39
|
-
* import {Data} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
39
|
+
* import {Data} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/dom/resource/data.js';
|
|
40
40
|
* new Data()
|
|
41
41
|
* </script>
|
|
42
42
|
* ```
|
|
@@ -16,7 +16,7 @@ import {Link} from "../link.js";
|
|
|
16
16
|
*
|
|
17
17
|
* ```
|
|
18
18
|
* <script type="module">
|
|
19
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
19
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
20
20
|
* new Monster.DOM.Resource.Link.Stylesheet()
|
|
21
21
|
* </script>
|
|
22
22
|
* ```
|
|
@@ -25,7 +25,7 @@ import {Link} from "../link.js";
|
|
|
25
25
|
*
|
|
26
26
|
* ```
|
|
27
27
|
* <script type="module">
|
|
28
|
-
* import {Style} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
28
|
+
* import {Style} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/dom/resource/link/stylesheet.js';
|
|
29
29
|
* new Stylesheet()
|
|
30
30
|
* </script>
|
|
31
31
|
* ```
|
|
@@ -24,7 +24,7 @@ import {KEY_DOCUMENT, referenceSymbol, Resource} from "../resource.js";
|
|
|
24
24
|
*
|
|
25
25
|
* ```
|
|
26
26
|
* <script type="module">
|
|
27
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
27
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
28
28
|
* new Monster.DOM.Resource.Link()
|
|
29
29
|
* </script>
|
|
30
30
|
* ```
|
|
@@ -33,7 +33,7 @@ import {KEY_DOCUMENT, referenceSymbol, Resource} from "../resource.js";
|
|
|
33
33
|
*
|
|
34
34
|
* ```
|
|
35
35
|
* <script type="module">
|
|
36
|
-
* import {Link} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
36
|
+
* import {Link} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/dom/resource/link.js';
|
|
37
37
|
* new Link()
|
|
38
38
|
* </script>
|
|
39
39
|
* ```
|
|
@@ -25,7 +25,7 @@ import {KEY_DOCUMENT, referenceSymbol, Resource} from "../resource.js";
|
|
|
25
25
|
*
|
|
26
26
|
* ```
|
|
27
27
|
* <script type="module">
|
|
28
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
28
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
29
29
|
* new Monster.DOM.Resource.Script()
|
|
30
30
|
* </script>
|
|
31
31
|
* ```
|
|
@@ -34,7 +34,7 @@ import {KEY_DOCUMENT, referenceSymbol, Resource} from "../resource.js";
|
|
|
34
34
|
*
|
|
35
35
|
* ```
|
|
36
36
|
* <script type="module">
|
|
37
|
-
* import {Script} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
37
|
+
* import {Script} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/dom/resource/script.js';
|
|
38
38
|
* new Script()
|
|
39
39
|
* </script>
|
|
40
40
|
* ```
|
package/source/dom/resource.js
CHANGED
|
@@ -47,7 +47,7 @@ export const referenceSymbol = Symbol('reference');
|
|
|
47
47
|
*
|
|
48
48
|
* ```
|
|
49
49
|
* <script type="module">
|
|
50
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
50
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
51
51
|
* new Monster.DOM.Resource()
|
|
52
52
|
* </script>
|
|
53
53
|
* ```
|
|
@@ -56,7 +56,7 @@ export const referenceSymbol = Symbol('reference');
|
|
|
56
56
|
*
|
|
57
57
|
* ```
|
|
58
58
|
* <script type="module">
|
|
59
|
-
* import {Resource} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
59
|
+
* import {Resource} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/dom/resource.js';
|
|
60
60
|
* new Resource()
|
|
61
61
|
* </script>
|
|
62
62
|
* ```
|
|
@@ -21,7 +21,7 @@ import {Script} from "./resource/script.js";
|
|
|
21
21
|
*
|
|
22
22
|
* ```
|
|
23
23
|
* <script type="module">
|
|
24
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
24
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
25
25
|
* new Monster.DOM.ResourceManager()
|
|
26
26
|
* </script>
|
|
27
27
|
* ```
|
|
@@ -30,7 +30,7 @@ import {Script} from "./resource/script.js";
|
|
|
30
30
|
*
|
|
31
31
|
* ```
|
|
32
32
|
* <script type="module">
|
|
33
|
-
* import {Resource} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
33
|
+
* import {Resource} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/dom/resourcemanager.js';
|
|
34
34
|
* new ResourceManager()
|
|
35
35
|
* </script>
|
|
36
36
|
* ```
|
package/source/dom/template.js
CHANGED
|
@@ -14,7 +14,7 @@ import {getDocumentTheme} from "./theme.js";
|
|
|
14
14
|
*
|
|
15
15
|
* ```
|
|
16
16
|
* <script type="module">
|
|
17
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
17
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
18
18
|
* new Monster.DOM.Template()
|
|
19
19
|
* </script>
|
|
20
20
|
* ```
|
|
@@ -23,7 +23,7 @@ import {getDocumentTheme} from "./theme.js";
|
|
|
23
23
|
*
|
|
24
24
|
* ```
|
|
25
25
|
* <script type="module">
|
|
26
|
-
* import {Template} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
26
|
+
* import {Template} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/dom/template.js';
|
|
27
27
|
* new Template()
|
|
28
28
|
* </script>
|
|
29
29
|
* ```
|
|
@@ -85,7 +85,7 @@ class Template extends Base {
|
|
|
85
85
|
*
|
|
86
86
|
* ```
|
|
87
87
|
* <script type="module">
|
|
88
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
88
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/monster.js';
|
|
89
89
|
* Monster.DOM.findDocumentTemplate()
|
|
90
90
|
* </script>
|
|
91
91
|
* ```
|
|
@@ -94,14 +94,14 @@ class Template extends Base {
|
|
|
94
94
|
*
|
|
95
95
|
* ```
|
|
96
96
|
* <script type="module">
|
|
97
|
-
* import {findTemplate} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
97
|
+
* import {findTemplate} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/dom/template.js';
|
|
98
98
|
* findDocumentTemplate()
|
|
99
99
|
* </script>
|
|
100
100
|
* ```
|
|
101
101
|
*
|
|
102
102
|
* @example
|
|
103
103
|
*
|
|
104
|
-
* import { findDocumentTemplate } from "https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
|
104
|
+
* import { findDocumentTemplate } from "https://cdn.jsdelivr.net/npm/@schukai/monster@1.26.0/dist/modules/dom/template.js";
|
|
105
105
|
*
|
|
106
106
|
* const template = document.createElement("template");
|
|
107
107
|
* template.id = "myTemplate";
|