@schukai/monster 1.20.0 → 1.21.1
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG +24 -0
- package/README.md +4 -4
- 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 +1 -1
- package/dist/modules/data/diff.js +1 -1
- package/dist/modules/data/extend.js +2 -2
- 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 +2 -2
- package/dist/modules/dom/events.js +1 -1
- package/dist/modules/dom/locale.js +1 -1
- package/dist/modules/dom/namespace.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 +1 -1
- package/dist/modules/dom/util.js +1 -1
- 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 +1 -1
- 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 +1 -1
- package/dist/modules/types/mediatype.js +1 -1
- package/dist/modules/types/namespace.js +1 -1
- 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/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/validate.js +1 -1
- package/dist/modules/types/version.js +2 -2
- package/dist/modules/util/clone.js +2 -2
- 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 +2 -0
- package/dist/monster.dev.js +389 -308
- package/dist/monster.dev.js.map +1 -1
- package/dist/monster.js +2 -2
- package/package.json +1 -5
- package/source/constraints/andoperator.js +5 -5
- package/source/constraints/invalid.js +3 -3
- package/source/constraints/isarray.js +3 -3
- package/source/constraints/isobject.js +3 -3
- package/source/constraints/oroperator.js +5 -5
- package/source/constraints/valid.js +3 -3
- package/source/data/buildmap.js +4 -4
- package/source/data/diff.js +3 -3
- package/source/data/extend.js +9 -9
- package/source/data/pathfinder.js +4 -4
- package/source/data/pipe.js +3 -3
- package/source/data/transformer.js +4 -4
- package/source/dom/assembler.js +2 -2
- package/source/dom/attributes.js +24 -24
- package/source/dom/customcontrol.js +2 -2
- package/source/dom/customelement.js +61 -4
- package/source/dom/events.js +4 -4
- package/source/dom/locale.js +2 -2
- package/source/dom/template.js +4 -4
- package/source/dom/theme.js +3 -3
- package/source/dom/updater.js +3 -3
- package/source/dom/util.js +6 -6
- package/source/i18n/locale.js +4 -4
- package/source/i18n/provider.js +2 -2
- package/source/i18n/providers/fetch.js +2 -2
- package/source/i18n/translations.js +2 -2
- 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 +2 -2
- 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 +2 -2
- package/source/types/is.js +20 -20
- package/source/types/mediatype.js +4 -4
- 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 +3 -3
- package/source/types/randomid.js +2 -2
- 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/validate.js +20 -20
- package/source/types/version.js +6 -6
- package/source/util/clone.js +16 -6
- package/source/util/comparator.js +3 -3
- package/source/util/freeze.js +2 -2
- package/source/util/processing.js +197 -0
- package/test/cases/data/extend.js +9 -0
- package/test/cases/monster.js +1 -1
- package/test/cases/util/clone.js +31 -0
- package/test/cases/util/freeze.js +25 -0
- package/test/cases/util/processing.js +110 -0
- package/test/web/import.js +2 -0
- package/test/web/monster-dev.html +3 -3
- package/test/web/monster.html +2 -2
- package/test/web/test.html +3 -3
- package/test/web/tests.js +3 -3
@@ -29,7 +29,7 @@ const internalSymbol = Symbol('internalSymbol');
|
|
29
29
|
*
|
30
30
|
* ```
|
31
31
|
* <script type="module">
|
32
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
32
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/dom/customcontrol.js';
|
33
33
|
* console.log(new Monster.DOM.CustomControl())
|
34
34
|
* </script>
|
35
35
|
* ```
|
@@ -38,7 +38,7 @@ const internalSymbol = Symbol('internalSymbol');
|
|
38
38
|
*
|
39
39
|
* ```
|
40
40
|
* <script type="module">
|
41
|
-
* import {CustomControl} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
41
|
+
* import {CustomControl} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/dom/customcontrol.js';
|
42
42
|
* console.log(new CustomControl())
|
43
43
|
* </script>
|
44
44
|
* ```
|
@@ -9,7 +9,7 @@ import {Pathfinder} from "../data/pathfinder.js";
|
|
9
9
|
import {assignToNamespace, Monster} from '../namespace.js';
|
10
10
|
import {parseDataURL} from "../types/dataurl.js";
|
11
11
|
import {getGlobalObject} from "../types/global.js";
|
12
|
-
import {isArray, isString} from "../types/is.js";
|
12
|
+
import {isArray, isObject, isString} from "../types/is.js";
|
13
13
|
import {Observer} from "../types/observer.js";
|
14
14
|
import {ProxyObserver} from "../types/proxyobserver.js";
|
15
15
|
import {validateFunction, validateInstance, validateObject} from "../types/validate.js";
|
@@ -100,7 +100,7 @@ const assembleMethodSymbol = Symbol('assembleMethodSymbol');
|
|
100
100
|
*
|
101
101
|
* ```
|
102
102
|
* <script type="module">
|
103
|
-
* import {CustomElement} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
103
|
+
* import {CustomElement} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/dom/customelement.js';
|
104
104
|
* console.log(new Monster.DOM.CustomElement())
|
105
105
|
* </script>
|
106
106
|
* ```
|
@@ -109,7 +109,7 @@ const assembleMethodSymbol = Symbol('assembleMethodSymbol');
|
|
109
109
|
*
|
110
110
|
* ```
|
111
111
|
* <script type="module">
|
112
|
-
* import {CustomElement} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
112
|
+
* import {CustomElement} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/dom/customelement.js';
|
113
113
|
* console.log(new CustomElement())
|
114
114
|
* </script>
|
115
115
|
* ```
|
@@ -254,6 +254,7 @@ class CustomElement extends HTMLElement {
|
|
254
254
|
* })),'application/json',true).toString()
|
255
255
|
* ```
|
256
256
|
*
|
257
|
+
* @property {boolean} disabled=false Object The Boolean disabled attribute, when present, makes the element not mutable, focusable, or even submitted with the form.
|
257
258
|
* @property {string} shadowMode=open `open` Elements of the shadow root are accessible from JavaScript outside the root, for example using. `close` Denies access to the node(s) of a closed shadow root from JavaScript outside it
|
258
259
|
* @property {Boolean} delegatesFocus=true A boolean that, when set to true, specifies behavior that mitigates custom element issues around focusability. When a non-focusable part of the shadow DOM is clicked, the first focusable part is given focus, and the shadow host is given any available :focus styling.
|
259
260
|
* @property {Object} templates Templates
|
@@ -265,6 +266,7 @@ class CustomElement extends HTMLElement {
|
|
265
266
|
*/
|
266
267
|
get defaults() {
|
267
268
|
return {
|
269
|
+
disabled: false,
|
268
270
|
shadowMode: 'open',
|
269
271
|
delegatesFocus: true,
|
270
272
|
templates: {
|
@@ -394,6 +396,7 @@ class CustomElement extends HTMLElement {
|
|
394
396
|
}
|
395
397
|
|
396
398
|
/**
|
399
|
+
* Is called once via the constructor
|
397
400
|
*
|
398
401
|
* @return {CustomElement}
|
399
402
|
* @since 1.8.0
|
@@ -403,6 +406,7 @@ class CustomElement extends HTMLElement {
|
|
403
406
|
}
|
404
407
|
|
405
408
|
/**
|
409
|
+
* Is called once when the object is included in the DOM for the first time.
|
406
410
|
*
|
407
411
|
* @return {CustomElement}
|
408
412
|
* @since 1.8.0
|
@@ -447,9 +451,14 @@ class CustomElement extends HTMLElement {
|
|
447
451
|
|
448
452
|
}
|
449
453
|
|
454
|
+
if (this.hasAttribute('disabled')) {
|
455
|
+
self.setOption('disabled', true);
|
456
|
+
}
|
457
|
+
|
450
458
|
return this;
|
451
459
|
}
|
452
460
|
|
461
|
+
|
453
462
|
/**
|
454
463
|
* Called every time the element is inserted into the DOM. Useful for running setup code, such as
|
455
464
|
* fetching resources or rendering. Generally, you should try to delay work until this time.
|
@@ -505,7 +514,7 @@ class CustomElement extends HTMLElement {
|
|
505
514
|
}
|
506
515
|
|
507
516
|
/**
|
508
|
-
*
|
517
|
+
*
|
509
518
|
* @param {Node} node
|
510
519
|
* @return {boolean}
|
511
520
|
* @throws {TypeError} value is not an instance of
|
@@ -561,6 +570,30 @@ function containChildNode(node) {
|
|
561
570
|
function initOptionObserver() {
|
562
571
|
const self = this;
|
563
572
|
|
573
|
+
let lastDisabledValue = undefined;
|
574
|
+
self.attachObserver(new Observer(function () {
|
575
|
+
const flag = self.getOption('disabled');
|
576
|
+
|
577
|
+
if (flag === lastDisabledValue) {
|
578
|
+
return;
|
579
|
+
}
|
580
|
+
|
581
|
+
if (self.shadowRoot instanceof ShadowRoot) {
|
582
|
+
const found = self.shadowRoot.querySelectorAll('button, command, fieldset, keygen, optgroup, option, select, textarea, input, [data-monster-objectlink]');
|
583
|
+
for (const [, element] of Object.entries(found)) {
|
584
|
+
if (flag === true) {
|
585
|
+
element.setAttribute('disabled', '');
|
586
|
+
} else {
|
587
|
+
element.removeAttribute('disabled');
|
588
|
+
}
|
589
|
+
|
590
|
+
}
|
591
|
+
}
|
592
|
+
|
593
|
+
lastDisabledValue = flag;
|
594
|
+
|
595
|
+
}));
|
596
|
+
|
564
597
|
self.attachObserver(new Observer(function () {
|
565
598
|
|
566
599
|
// not initialised
|
@@ -579,6 +612,30 @@ function initOptionObserver() {
|
|
579
612
|
|
580
613
|
}));
|
581
614
|
|
615
|
+
const observer = new MutationObserver(function (mutationsList, observer) {
|
616
|
+
|
617
|
+
for (const mutation of mutationsList) {
|
618
|
+
if (mutation.type === 'attributes') {
|
619
|
+
|
620
|
+
switch (mutation?.attributeName) {
|
621
|
+
case 'disabled':
|
622
|
+
self.setOption('disabled', self.hasAttribute('disabled') ? true : undefined);
|
623
|
+
break;
|
624
|
+
case ATTRIBUTE_OPTIONS:
|
625
|
+
const options = getOptionsFromAttributes.call(self);
|
626
|
+
if (isObject(options)) {
|
627
|
+
self.setOptions(options);
|
628
|
+
}
|
629
|
+
|
630
|
+
break;
|
631
|
+
}
|
632
|
+
|
633
|
+
}
|
634
|
+
}
|
635
|
+
});
|
636
|
+
|
637
|
+
observer.observe(this, {attributes: true, attributeOldValue: true, childList: false, subtree: false});
|
638
|
+
|
582
639
|
}
|
583
640
|
|
584
641
|
/**
|
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.21.1/dist/modules/dom/events.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.21.1/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.21.1/dist/modules/dom/events.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.21.1/dist/modules/dom/events.js';
|
86
86
|
* console.log(findTargetElementFromEvent())
|
87
87
|
* </script>
|
88
88
|
* ```
|
package/source/dom/locale.js
CHANGED
@@ -21,7 +21,7 @@ const DEFAULT_LANGUAGE = 'en';
|
|
21
21
|
*
|
22
22
|
* ```
|
23
23
|
* <script type="module">
|
24
|
-
* import {getLocaleOfDocument} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
24
|
+
* import {getLocaleOfDocument} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/dom/locale.js';
|
25
25
|
* console.log(new Monster.DOM.getLocaleOfDocument())
|
26
26
|
* </script>
|
27
27
|
* ```
|
@@ -30,7 +30,7 @@ const DEFAULT_LANGUAGE = 'en';
|
|
30
30
|
*
|
31
31
|
* ```
|
32
32
|
* <script type="module">
|
33
|
-
* import {getLocaleOfDocument} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
33
|
+
* import {getLocaleOfDocument} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/dom/locale.js';
|
34
34
|
* console.log(new getLocaleOfDocument())
|
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.21.1/dist/modules/dom/template.js';
|
18
18
|
* console.log(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.21.1/dist/modules/dom/template.js';
|
27
27
|
* console.log(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.21.1/dist/modules/dom/template.js';
|
89
89
|
* console.log(Monster.DOM.findDocumentTemplate())
|
90
90
|
* </script>
|
91
91
|
* ```
|
@@ -94,7 +94,7 @@ 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.21.1/dist/modules/dom/template.js';
|
98
98
|
* console.log(findDocumentTemplate())
|
99
99
|
* </script>
|
100
100
|
* ```
|
package/source/dom/theme.js
CHANGED
@@ -15,7 +15,7 @@ import {ATTRIBUTE_THEME_NAME, DEFAULT_THEME} from "./constants.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.21.1/dist/modules/dom/theme.js';
|
19
19
|
* console.log(new Monster.DOM.Theme())
|
20
20
|
* </script>
|
21
21
|
* ```
|
@@ -24,14 +24,14 @@ import {ATTRIBUTE_THEME_NAME, DEFAULT_THEME} from "./constants.js";
|
|
24
24
|
*
|
25
25
|
* ```
|
26
26
|
* <script type="module">
|
27
|
-
* import {Theme} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
27
|
+
* import {Theme} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/dom/theme.js';
|
28
28
|
* console.log(new Theme())
|
29
29
|
* </script>
|
30
30
|
* ```
|
31
31
|
*
|
32
32
|
* @example
|
33
33
|
*
|
34
|
-
* import {getDocumentTheme} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
34
|
+
* import {getDocumentTheme} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/dom/theme.js';
|
35
35
|
*
|
36
36
|
* const theme = getDocumentTheme();
|
37
37
|
* console.log(theme.getName());
|
package/source/dom/updater.js
CHANGED
@@ -35,7 +35,7 @@ import {getDocument} from "./util.js";
|
|
35
35
|
*
|
36
36
|
* ```
|
37
37
|
* <script type="module">
|
38
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
38
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/dom/updater.js';
|
39
39
|
* console.log(new Monster.DOM.Updater())
|
40
40
|
* </script>
|
41
41
|
* ```
|
@@ -44,14 +44,14 @@ import {getDocument} from "./util.js";
|
|
44
44
|
*
|
45
45
|
* ```
|
46
46
|
* <script type="module">
|
47
|
-
* import {Updater} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
47
|
+
* import {Updater} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/dom/updater.js';
|
48
48
|
* console.log(new Updater())
|
49
49
|
* </script>
|
50
50
|
* ```
|
51
51
|
*
|
52
52
|
* @example
|
53
53
|
*
|
54
|
-
* import {Updater} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
54
|
+
* import {Updater} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/dom/updater.js';
|
55
55
|
*
|
56
56
|
* // First we prepare the html document.
|
57
57
|
* // This is done here via script, but can also be inserted into the document as pure html.
|
package/source/dom/util.js
CHANGED
@@ -13,7 +13,7 @@ import {validateString} from "../types/validate.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.21.1/dist/modules/dom/util.js';
|
17
17
|
* console.log(Monster.DOM.getDocument())
|
18
18
|
* </script>
|
19
19
|
* ```
|
@@ -22,7 +22,7 @@ import {validateString} from "../types/validate.js";
|
|
22
22
|
*
|
23
23
|
* ```
|
24
24
|
* <script type="module">
|
25
|
-
* import {getDocument} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
25
|
+
* import {getDocument} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/dom/util.js';
|
26
26
|
* console.log(getDocument())
|
27
27
|
* </script>
|
28
28
|
* ```
|
@@ -74,7 +74,7 @@ function getDocument() {
|
|
74
74
|
*
|
75
75
|
* ```
|
76
76
|
* <script type="module">
|
77
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
77
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/dom/util.js';
|
78
78
|
* console.log(Monster.DOM.getWindow())
|
79
79
|
* </script>
|
80
80
|
* ```
|
@@ -83,7 +83,7 @@ function getDocument() {
|
|
83
83
|
*
|
84
84
|
* ```
|
85
85
|
* <script type="module">
|
86
|
-
* import {getWindow} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
86
|
+
* import {getWindow} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/dom/util.js';
|
87
87
|
* console.log(getWindow(null))
|
88
88
|
* </script>
|
89
89
|
* ```
|
@@ -140,7 +140,7 @@ function getWindow() {
|
|
140
140
|
*
|
141
141
|
* ```
|
142
142
|
* <script type="module">
|
143
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
143
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/dom/util.js';
|
144
144
|
* console.log(Monster.DOM.getDocumentFragmentFromString())
|
145
145
|
* </script>
|
146
146
|
* ```
|
@@ -149,7 +149,7 @@ function getWindow() {
|
|
149
149
|
*
|
150
150
|
* ```
|
151
151
|
* <script type="module">
|
152
|
-
* import {getDocumentFragmentFromString} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
152
|
+
* import {getDocumentFragmentFromString} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/dom/util.js';
|
153
153
|
* console.log(getDocumentFragmentFromString('<div></div>'))
|
154
154
|
* </script>
|
155
155
|
* ```
|
package/source/i18n/locale.js
CHANGED
@@ -25,7 +25,7 @@ const localeStringSymbol = Symbol('localeString');
|
|
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.21.1/dist/modules/i18n/locale.js';
|
29
29
|
* console.log(new Monster.I18n.Locale())
|
30
30
|
* </script>
|
31
31
|
* ```
|
@@ -34,7 +34,7 @@ const localeStringSymbol = Symbol('localeString');
|
|
34
34
|
*
|
35
35
|
* ```
|
36
36
|
* <script type="module">
|
37
|
-
* import {Locale} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
37
|
+
* import {Locale} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/i18n/locale.js';
|
38
38
|
* console.log(new Locale())
|
39
39
|
* </script>
|
40
40
|
* ```
|
@@ -201,7 +201,7 @@ class Locale extends Base {
|
|
201
201
|
*
|
202
202
|
* ```
|
203
203
|
* <script type="module">
|
204
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
204
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/i18n/locale.js';
|
205
205
|
* console.log(new Monster.I18n.createLocale())
|
206
206
|
* </script>
|
207
207
|
* ```
|
@@ -210,7 +210,7 @@ class Locale extends Base {
|
|
210
210
|
*
|
211
211
|
* ```
|
212
212
|
* <script type="module">
|
213
|
-
* import {createLocale} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
213
|
+
* import {createLocale} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/i18n/locale.js';
|
214
214
|
* console.log(createLocale())
|
215
215
|
* </script>
|
216
216
|
* ```
|
package/source/i18n/provider.js
CHANGED
@@ -15,7 +15,7 @@ import {Translations} from "./translations.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.21.1/dist/modules/i18n/provider.js';
|
19
19
|
* console.log(new Monster.I18n.Provider())
|
20
20
|
* </script>
|
21
21
|
* ```
|
@@ -24,7 +24,7 @@ import {Translations} from "./translations.js"
|
|
24
24
|
*
|
25
25
|
* ```
|
26
26
|
* <script type="module">
|
27
|
-
* import {Provider} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
27
|
+
* import {Provider} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/i18n/provider.js';
|
28
28
|
* console.log(new Provider())
|
29
29
|
* </script>
|
30
30
|
* ```
|
@@ -27,7 +27,7 @@ const optionsSymbol = Symbol.for(PROPERTY_KEY_INTERNALDATA);
|
|
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.21.1/dist/modules/i18n/providers/fetch.js';
|
31
31
|
* console.log(new Monster.I18n.Providers.Fetch())
|
32
32
|
* </script>
|
33
33
|
* ```
|
@@ -36,7 +36,7 @@ const optionsSymbol = Symbol.for(PROPERTY_KEY_INTERNALDATA);
|
|
36
36
|
*
|
37
37
|
* ```
|
38
38
|
* <script type="module">
|
39
|
-
* import {Fetch} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
39
|
+
* import {Fetch} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/i18n/providers/fetch.js';
|
40
40
|
* console.log(new Fetch())
|
41
41
|
* </script>
|
42
42
|
* ```
|
@@ -17,7 +17,7 @@ import {Locale, parseLocale} from "./locale.js";
|
|
17
17
|
*
|
18
18
|
* ```
|
19
19
|
* <script type="module">
|
20
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
20
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/i18n/translations.js';
|
21
21
|
* console.log(new Monster.I18n.Translations())
|
22
22
|
* </script>
|
23
23
|
* ```
|
@@ -26,7 +26,7 @@ import {Locale, parseLocale} from "./locale.js";
|
|
26
26
|
*
|
27
27
|
* ```
|
28
28
|
* <script type="module">
|
29
|
-
* import {Translations} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
29
|
+
* import {Translations} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/i18n/translations.js';
|
30
30
|
* console.log(new Translations())
|
31
31
|
* </script>
|
32
32
|
* ```
|
@@ -15,7 +15,7 @@ import {LogEntry} from "../logentry.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.21.1/dist/modules/logging/handler/console.js';
|
19
19
|
* console.log(new Monster.Logging.Handler.ConsoleHandler())
|
20
20
|
* </script>
|
21
21
|
* ```
|
@@ -24,7 +24,7 @@ import {LogEntry} from "../logentry.js";
|
|
24
24
|
*
|
25
25
|
* ```
|
26
26
|
* <script type="module">
|
27
|
-
* import {ConsoleHandler} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
27
|
+
* import {ConsoleHandler} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/logging/handler/console.js';
|
28
28
|
* console.log(new ConsoleHandler())
|
29
29
|
* </script>
|
30
30
|
* ```
|
@@ -15,7 +15,7 @@ import {ALL, DEBUG, ERROR, FATAL, INFO, OFF, TRACE, WARN} from "./logger.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.21.1/dist/modules/logging/handler.js';
|
19
19
|
* console.log(new Monster.Logging.Handler())
|
20
20
|
* </script>
|
21
21
|
* ```
|
@@ -24,7 +24,7 @@ import {ALL, DEBUG, ERROR, FATAL, INFO, OFF, TRACE, WARN} from "./logger.js";
|
|
24
24
|
*
|
25
25
|
* ```
|
26
26
|
* <script type="module">
|
27
|
-
* import {ID} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
27
|
+
* import {ID} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/logging/handler.js';
|
28
28
|
* console.log(new Handler())
|
29
29
|
* </script>
|
30
30
|
* ```
|
@@ -14,7 +14,7 @@ import {validateInteger} from '../types/validate.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.21.1/dist/modules/logging/logentry.js';
|
18
18
|
* console.log(new Monster.Logging.LogEntry())
|
19
19
|
* </script>
|
20
20
|
* ```
|
@@ -23,7 +23,7 @@ import {validateInteger} from '../types/validate.js';
|
|
23
23
|
*
|
24
24
|
* ```
|
25
25
|
* <script type="module">
|
26
|
-
* import {ID} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
26
|
+
* import {ID} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/logging/logentry.js';
|
27
27
|
* console.log(new LogEntry())
|
28
28
|
* </script>
|
29
29
|
* ```
|
package/source/logging/logger.js
CHANGED
@@ -65,7 +65,7 @@ const OFF = 0;
|
|
65
65
|
*
|
66
66
|
* ```
|
67
67
|
* <script type="module">
|
68
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
68
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/logging/logger.js';
|
69
69
|
* console.log(new Monster.Logging.Logger())
|
70
70
|
* </script>
|
71
71
|
* ```
|
@@ -74,7 +74,7 @@ const OFF = 0;
|
|
74
74
|
*
|
75
75
|
* ```
|
76
76
|
* <script type="module">
|
77
|
-
* import {ID} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
77
|
+
* import {ID} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/logging/logger.js';
|
78
78
|
* console.log(new Logger())
|
79
79
|
* </script>
|
80
80
|
* ```
|
package/source/math/random.js
CHANGED
@@ -15,7 +15,7 @@ import {getGlobal} from '../types/global.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.21.1/dist/modules/math/random.js';
|
19
19
|
* console.log(Monster.Math.random(1,10)) // ↦ 5
|
20
20
|
* </script>
|
21
21
|
* ```
|
@@ -24,7 +24,7 @@ import {getGlobal} from '../types/global.js';
|
|
24
24
|
*
|
25
25
|
* ```
|
26
26
|
* <script type="module">
|
27
|
-
* import {random} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
27
|
+
* import {random} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/math/random.js';
|
28
28
|
* console.log(random(1,10)) // ↦ 5
|
29
29
|
* </script>
|
30
30
|
* ```
|
package/source/namespace.js
CHANGED
@@ -65,7 +65,7 @@ export const Monster = new Namespace("Monster");
|
|
65
65
|
*
|
66
66
|
* ```
|
67
67
|
* <script type="module">
|
68
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
68
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/namespace.js';
|
69
69
|
* function hello() {
|
70
70
|
* console.log('Hello World!');
|
71
71
|
* }
|
package/source/text/formatter.js
CHANGED
@@ -18,7 +18,7 @@ import {validateObject, validateString} from "../types/validate.js";
|
|
18
18
|
*
|
19
19
|
* ```
|
20
20
|
* <script type="module">
|
21
|
-
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
21
|
+
* import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/text/formatter.js';
|
22
22
|
* console.log(new Monster.Text.Formatter())
|
23
23
|
* </script>
|
24
24
|
* ```
|
@@ -27,7 +27,7 @@ import {validateObject, validateString} from "../types/validate.js";
|
|
27
27
|
*
|
28
28
|
* ```
|
29
29
|
* <script type="module">
|
30
|
-
* import {Formatter} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
30
|
+
* import {Formatter} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/text/formatter.js';
|
31
31
|
* console.log(new Formatter())
|
32
32
|
* </script>
|
33
33
|
* ```
|
package/source/types/base.js
CHANGED
@@ -13,7 +13,7 @@ import {assignToNamespace, Monster} from '../namespace.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.21.1/dist/modules/types/base.js';
|
17
17
|
* console.log(new Monster.Types.Base())
|
18
18
|
* </script>
|
19
19
|
* ```
|
@@ -22,7 +22,7 @@ import {assignToNamespace, Monster} from '../namespace.js';
|
|
22
22
|
*
|
23
23
|
* ```
|
24
24
|
* <script type="module">
|
25
|
-
* import {Base} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
25
|
+
* import {Base} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/types/base.js';
|
26
26
|
* console.log(new Base())
|
27
27
|
* </script>
|
28
28
|
* ```
|
@@ -23,7 +23,7 @@ const optionsSymbol = Symbol.for(PROPERTY_KEY_INTERNALDATA);
|
|
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.21.1/dist/modules/types/basewithoptions.js';
|
27
27
|
* console.log(new Monster.Types.BaseWithOptions())
|
28
28
|
* </script>
|
29
29
|
* ```
|
@@ -32,7 +32,7 @@ const optionsSymbol = Symbol.for(PROPERTY_KEY_INTERNALDATA);
|
|
32
32
|
*
|
33
33
|
* ```
|
34
34
|
* <script type="module">
|
35
|
-
* import {BaseWithOptions} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.
|
35
|
+
* import {BaseWithOptions} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.21.1/dist/modules/types/basewithoptions.js';
|
36
36
|
* console.log(new BaseWithOptions())
|
37
37
|
* </script>
|
38
38
|
* ```
|