@k37z3r/jbase 2.0.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.
Files changed (136) hide show
  1. package/LICENSE +621 -0
  2. package/README.md +124 -0
  3. package/dist/browser.d.ts +30 -0
  4. package/dist/browser.d.ts.map +1 -0
  5. package/dist/browser.js +29 -0
  6. package/dist/browser.js.map +1 -0
  7. package/dist/core.d.ts +42 -0
  8. package/dist/core.d.ts.map +1 -0
  9. package/dist/core.js +78 -0
  10. package/dist/core.js.map +1 -0
  11. package/dist/index.cjs +2150 -0
  12. package/dist/index.d.ts +1158 -0
  13. package/dist/index.d.ts.map +1 -0
  14. package/dist/index.js +100 -0
  15. package/dist/index.js.map +1 -0
  16. package/dist/index.mjs +2118 -0
  17. package/dist/jbase.browser.js +1906 -0
  18. package/dist/jbase.js +1898 -0
  19. package/dist/jbase.min.js +9 -0
  20. package/dist/modules/css/classes.d.ts +61 -0
  21. package/dist/modules/css/classes.d.ts.map +1 -0
  22. package/dist/modules/css/classes.js +88 -0
  23. package/dist/modules/css/classes.js.map +1 -0
  24. package/dist/modules/css/index.d.ts +30 -0
  25. package/dist/modules/css/index.d.ts.map +1 -0
  26. package/dist/modules/css/index.js +33 -0
  27. package/dist/modules/css/index.js.map +1 -0
  28. package/dist/modules/css/styles.d.ts +31 -0
  29. package/dist/modules/css/styles.d.ts.map +1 -0
  30. package/dist/modules/css/styles.js +49 -0
  31. package/dist/modules/css/styles.js.map +1 -0
  32. package/dist/modules/data/arrays.d.ts +131 -0
  33. package/dist/modules/data/arrays.d.ts.map +1 -0
  34. package/dist/modules/data/arrays.js +177 -0
  35. package/dist/modules/data/arrays.js.map +1 -0
  36. package/dist/modules/data/index.d.ts +29 -0
  37. package/dist/modules/data/index.d.ts.map +1 -0
  38. package/dist/modules/data/index.js +33 -0
  39. package/dist/modules/data/index.js.map +1 -0
  40. package/dist/modules/data/objects.d.ts +108 -0
  41. package/dist/modules/data/objects.d.ts.map +1 -0
  42. package/dist/modules/data/objects.js +168 -0
  43. package/dist/modules/data/objects.js.map +1 -0
  44. package/dist/modules/data/types.d.ts +35 -0
  45. package/dist/modules/data/types.d.ts.map +1 -0
  46. package/dist/modules/data/types.js +43 -0
  47. package/dist/modules/data/types.js.map +1 -0
  48. package/dist/modules/dom/attributes.d.ts +42 -0
  49. package/dist/modules/dom/attributes.d.ts.map +1 -0
  50. package/dist/modules/dom/attributes.js +69 -0
  51. package/dist/modules/dom/attributes.js.map +1 -0
  52. package/dist/modules/dom/content.d.ts +39 -0
  53. package/dist/modules/dom/content.d.ts.map +1 -0
  54. package/dist/modules/dom/content.js +63 -0
  55. package/dist/modules/dom/content.js.map +1 -0
  56. package/dist/modules/dom/index.d.ts +78 -0
  57. package/dist/modules/dom/index.d.ts.map +1 -0
  58. package/dist/modules/dom/index.js +48 -0
  59. package/dist/modules/dom/index.js.map +1 -0
  60. package/dist/modules/dom/manipulation.d.ts +159 -0
  61. package/dist/modules/dom/manipulation.d.ts.map +1 -0
  62. package/dist/modules/dom/manipulation.js +343 -0
  63. package/dist/modules/dom/manipulation.js.map +1 -0
  64. package/dist/modules/dom/states.d.ts +50 -0
  65. package/dist/modules/dom/states.d.ts.map +1 -0
  66. package/dist/modules/dom/states.js +89 -0
  67. package/dist/modules/dom/states.js.map +1 -0
  68. package/dist/modules/dom/traversal.d.ts +246 -0
  69. package/dist/modules/dom/traversal.d.ts.map +1 -0
  70. package/dist/modules/dom/traversal.js +527 -0
  71. package/dist/modules/dom/traversal.js.map +1 -0
  72. package/dist/modules/effects/fade.d.ts +58 -0
  73. package/dist/modules/effects/fade.d.ts.map +1 -0
  74. package/dist/modules/effects/fade.js +104 -0
  75. package/dist/modules/effects/fade.js.map +1 -0
  76. package/dist/modules/effects/index.d.ts +40 -0
  77. package/dist/modules/effects/index.d.ts.map +1 -0
  78. package/dist/modules/effects/index.js +38 -0
  79. package/dist/modules/effects/index.js.map +1 -0
  80. package/dist/modules/effects/slide.d.ts +58 -0
  81. package/dist/modules/effects/slide.d.ts.map +1 -0
  82. package/dist/modules/effects/slide.js +103 -0
  83. package/dist/modules/effects/slide.js.map +1 -0
  84. package/dist/modules/effects/vertical.d.ts +58 -0
  85. package/dist/modules/effects/vertical.d.ts.map +1 -0
  86. package/dist/modules/effects/vertical.js +118 -0
  87. package/dist/modules/effects/vertical.js.map +1 -0
  88. package/dist/modules/events/binding.d.ts +47 -0
  89. package/dist/modules/events/binding.d.ts.map +1 -0
  90. package/dist/modules/events/binding.js +60 -0
  91. package/dist/modules/events/binding.js.map +1 -0
  92. package/dist/modules/events/form.d.ts +72 -0
  93. package/dist/modules/events/form.d.ts.map +1 -0
  94. package/dist/modules/events/form.js +106 -0
  95. package/dist/modules/events/form.js.map +1 -0
  96. package/dist/modules/events/index.d.ts +62 -0
  97. package/dist/modules/events/index.d.ts.map +1 -0
  98. package/dist/modules/events/index.js +53 -0
  99. package/dist/modules/events/index.js.map +1 -0
  100. package/dist/modules/events/keyboard.d.ts +65 -0
  101. package/dist/modules/events/keyboard.d.ts.map +1 -0
  102. package/dist/modules/events/keyboard.js +83 -0
  103. package/dist/modules/events/keyboard.js.map +1 -0
  104. package/dist/modules/events/lifecycle.d.ts +28 -0
  105. package/dist/modules/events/lifecycle.d.ts.map +1 -0
  106. package/dist/modules/events/lifecycle.js +40 -0
  107. package/dist/modules/events/lifecycle.js.map +1 -0
  108. package/dist/modules/events/mouse.d.ts +120 -0
  109. package/dist/modules/events/mouse.d.ts.map +1 -0
  110. package/dist/modules/events/mouse.js +172 -0
  111. package/dist/modules/events/mouse.js.map +1 -0
  112. package/dist/modules/events/touch.d.ts +61 -0
  113. package/dist/modules/events/touch.d.ts.map +1 -0
  114. package/dist/modules/events/touch.js +74 -0
  115. package/dist/modules/events/touch.js.map +1 -0
  116. package/dist/modules/http/get.d.ts +47 -0
  117. package/dist/modules/http/get.d.ts.map +1 -0
  118. package/dist/modules/http/get.js +65 -0
  119. package/dist/modules/http/get.js.map +1 -0
  120. package/dist/modules/http/index.d.ts +37 -0
  121. package/dist/modules/http/index.d.ts.map +1 -0
  122. package/dist/modules/http/index.js +42 -0
  123. package/dist/modules/http/index.js.map +1 -0
  124. package/dist/modules/http/post.d.ts +36 -0
  125. package/dist/modules/http/post.d.ts.map +1 -0
  126. package/dist/modules/http/post.js +54 -0
  127. package/dist/modules/http/post.js.map +1 -0
  128. package/dist/types.d.ts +61 -0
  129. package/dist/types.d.ts.map +1 -0
  130. package/dist/types.js +15 -0
  131. package/dist/types.js.map +1 -0
  132. package/dist/utils.d.ts +51 -0
  133. package/dist/utils.d.ts.map +1 -0
  134. package/dist/utils.js +71 -0
  135. package/dist/utils.js.map +1 -0
  136. package/package.json +58 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"attributes.d.ts","sourceRoot":"","sources":["../../../src/modules/dom/attributes.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AAEnC;;;;;;;;;;;;GAYG;AACH,wBAAgB,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,KAAK,CAUrF;AAED;;;;;;;;;GASG;AACH,wBAAgB,GAAG,CAAC,IAAI,EAAE,KAAK,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,KAAK,CAe/D"}
@@ -0,0 +1,69 @@
1
+ "use strict";
2
+ /**
3
+ * @file src/modules/dom/attributes.ts
4
+ * @version 2.0.0
5
+ * @since 2.0.0
6
+ * @license GPL-3.0-or-later
7
+ * @copyright Sven Minio 2026
8
+ * @author Sven Minio <https://sven-minio.de>
9
+ * @category DOM
10
+ * @description
11
+ * * πŸ‡¬πŸ‡§: Methods for getting and setting HTML attributes and properties (attr, data, val).
12
+ * * πŸ‡©πŸ‡ͺ: Methoden zum Lesen und Setzen von HTML-Attributen und Eigenschaften (attr, data, val).
13
+ * @requires ../../core
14
+ * * πŸ‡¬πŸ‡§: Depends on the core jBase class for type definitions.
15
+ * * πŸ‡©πŸ‡ͺ: HΓ€ngt von der Core-jBase-Klasse fΓΌr Typ-Definitionen ab.
16
+ */
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ exports.attr = attr;
19
+ exports.val = val;
20
+ /**
21
+ * * πŸ‡¬πŸ‡§: Gets an attribute from the first element or sets it for all elements in the selection.
22
+ * * πŸ‡©πŸ‡ͺ: Liest ein Attribut vom ersten Element oder setzt es fΓΌr alle Elemente in der Auswahl.
23
+ * @param name
24
+ * * πŸ‡¬πŸ‡§: The name of the attribute (e.g., 'href', 'data-id').
25
+ * * πŸ‡©πŸ‡ͺ: Der Name des Attributs (z.B. 'href', 'data-id').
26
+ * @param value
27
+ * * πŸ‡¬πŸ‡§: (Optional) The value to set. If undefined, acts as a getter.
28
+ * * πŸ‡©πŸ‡ͺ: (Optional) Der zu setzende Wert. Wenn nicht angegeben, wird gelesen.
29
+ * @returns
30
+ * * πŸ‡¬πŸ‡§: The attribute value (string/null) when reading, or the jBase instance when writing.
31
+ * * πŸ‡©πŸ‡ͺ: Beim Lesen: Der Wert des Attributs (string/null). Beim Schreiben: Die jBase-Instanz.
32
+ */
33
+ function attr(name, value) {
34
+ if (value === undefined) {
35
+ const el = this[0];
36
+ return (el instanceof Element) ? el.getAttribute(name) : null;
37
+ }
38
+ this.forEach(el => {
39
+ if (el instanceof Element)
40
+ el.setAttribute(name, value);
41
+ });
42
+ return this;
43
+ }
44
+ /**
45
+ * * πŸ‡¬πŸ‡§: Gets the 'value' from the first form element or sets it for all elements. Supports Input, Textarea, and Select elements.
46
+ * * πŸ‡©πŸ‡ͺ: Liest den 'value' vom ersten Formularelement oder setzt ihn fΓΌr alle Elemente. UnterstΓΌtzt Input-, Textarea- und Select-Elemente.
47
+ * @param value
48
+ * * πŸ‡¬πŸ‡§: (Optional) The value to set. If undefined, acts as a getter.
49
+ * * πŸ‡©πŸ‡ͺ: (Optional) Der zu setzende Wert. Wenn nicht angegeben, wird gelesen.
50
+ * @returns
51
+ * * πŸ‡¬πŸ‡§: The current value as a string when reading, or the jBase instance when writing.
52
+ * * πŸ‡©πŸ‡ͺ: Beim Lesen: Der aktuelle Wert als String. Beim Schreiben: Die jBase-Instanz.
53
+ */
54
+ function val(value) {
55
+ if (value === undefined) {
56
+ const el = this[0];
57
+ if (el instanceof HTMLInputElement || el instanceof HTMLTextAreaElement || el instanceof HTMLSelectElement) {
58
+ return el.value;
59
+ }
60
+ return '';
61
+ }
62
+ this.forEach(el => {
63
+ if (el instanceof HTMLInputElement || el instanceof HTMLTextAreaElement || el instanceof HTMLSelectElement) {
64
+ el.value = value;
65
+ }
66
+ });
67
+ return this;
68
+ }
69
+ //# sourceMappingURL=attributes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"attributes.js","sourceRoot":"","sources":["../../../src/modules/dom/attributes.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;AAiBH,oBAUC;AAYD,kBAeC;AAlDD;;;;;;;;;;;;GAYG;AACH,SAAgB,IAAI,CAAc,IAAY,EAAE,KAAc;IAC1D,IAAI,KAAK,KAAK,SAAS,EAAE,CAAC;QACtB,MAAM,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;QACnB,OAAO,CAAC,EAAE,YAAY,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;IAClE,CAAC;IAED,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,EAAE;QACd,IAAI,EAAE,YAAY,OAAO;YAAE,EAAE,CAAC,YAAY,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;IAC5D,CAAC,CAAC,CAAC;IACH,OAAO,IAAI,CAAC;AAChB,CAAC;AAED;;;;;;;;;GASG;AACH,SAAgB,GAAG,CAAc,KAAc;IAC3C,IAAI,KAAK,KAAK,SAAS,EAAE,CAAC;QACtB,MAAM,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;QACnB,IAAI,EAAE,YAAY,gBAAgB,IAAI,EAAE,YAAY,mBAAmB,IAAI,EAAE,YAAY,iBAAiB,EAAE,CAAC;YACzG,OAAO,EAAE,CAAC,KAAK,CAAC;QACpB,CAAC;QACD,OAAO,EAAE,CAAC;IACd,CAAC;IAED,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,EAAE;QACd,IAAI,EAAE,YAAY,gBAAgB,IAAI,EAAE,YAAY,mBAAmB,IAAI,EAAE,YAAY,iBAAiB,EAAE,CAAC;YACzG,EAAE,CAAC,KAAK,GAAG,KAAK,CAAC;QACrB,CAAC;IACL,CAAC,CAAC,CAAC;IACH,OAAO,IAAI,CAAC;AAChB,CAAC"}
@@ -0,0 +1,39 @@
1
+ /**
2
+ * @file src/modules/dom/content.ts
3
+ * @version 2.0.0
4
+ * @since 2.0.0
5
+ * @license GPL-3.0-or-later
6
+ * @copyright Sven Minio 2026
7
+ * @author Sven Minio <https://sven-minio.de>
8
+ * @category DOM
9
+ * @description
10
+ * * πŸ‡¬πŸ‡§: Methods for getting and setting element content (html, text, empty, replaceWith).
11
+ * * πŸ‡©πŸ‡ͺ: Methoden zum Lesen und Setzen von Elementinhalten (html, text, empty, replaceWith).
12
+ * @requires ../../core
13
+ * * πŸ‡¬πŸ‡§: Depends on the core jBase class for type definitions.
14
+ * * πŸ‡©πŸ‡ͺ: HΓ€ngt von der Core-jBase-Klasse fΓΌr Typ-Definitionen ab.
15
+ */
16
+ import { jBase } from '../../core';
17
+ /**
18
+ * * πŸ‡¬πŸ‡§: Gets the HTML content of the first element or sets the HTML content for all elements in the selection.
19
+ * * πŸ‡©πŸ‡ͺ: Ruft den HTML-Inhalt des ersten Elements ab oder setzt den HTML-Inhalt fΓΌr alle Elemente in der Auswahl.
20
+ * @param content
21
+ * * πŸ‡¬πŸ‡§: (Optional) The HTML string to set.
22
+ * * πŸ‡©πŸ‡ͺ: (Optional) Der HTML-String, der gesetzt werden soll.
23
+ * @returns
24
+ * * πŸ‡¬πŸ‡§: The HTML string (getter) or the current jBase instance (setter).
25
+ * * πŸ‡©πŸ‡ͺ: Der HTML-String (Getter) oder die aktuelle jBase-Instanz (Setter).
26
+ */
27
+ export declare function html(this: jBase, content?: string): string | jBase;
28
+ /**
29
+ * * πŸ‡¬πŸ‡§: Gets the text content of the first element or sets it for all elements. Safe against XSS attacks.
30
+ * * πŸ‡©πŸ‡ͺ: Ruft den reinen Text-Inhalt des ersten Elements ab oder setzt ihn fΓΌr alle Elemente. Sicher gegen XSS-Angriffe.
31
+ * @param content
32
+ * * πŸ‡¬πŸ‡§: (Optional) The text content to set.
33
+ * * πŸ‡©πŸ‡ͺ: (Optional) Der Text, der gesetzt werden soll.
34
+ * @returns
35
+ * * πŸ‡¬πŸ‡§: The text content (getter) or the current jBase instance (setter).
36
+ * * πŸ‡©πŸ‡ͺ: Der Text-Inhalt (Getter) oder die aktuelle jBase-Instanz (Setter).
37
+ */
38
+ export declare function text(this: jBase, content?: string): string | jBase;
39
+ //# sourceMappingURL=content.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"content.d.ts","sourceRoot":"","sources":["../../../src/modules/dom/content.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AAEnC;;;;;;;;;GASG;AACH,wBAAgB,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,OAAO,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,KAAK,CASlE;AAED;;;;;;;;;GASG;AACH,wBAAgB,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,OAAO,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,KAAK,CAYlE"}
@@ -0,0 +1,63 @@
1
+ "use strict";
2
+ /**
3
+ * @file src/modules/dom/content.ts
4
+ * @version 2.0.0
5
+ * @since 2.0.0
6
+ * @license GPL-3.0-or-later
7
+ * @copyright Sven Minio 2026
8
+ * @author Sven Minio <https://sven-minio.de>
9
+ * @category DOM
10
+ * @description
11
+ * * πŸ‡¬πŸ‡§: Methods for getting and setting element content (html, text, empty, replaceWith).
12
+ * * πŸ‡©πŸ‡ͺ: Methoden zum Lesen und Setzen von Elementinhalten (html, text, empty, replaceWith).
13
+ * @requires ../../core
14
+ * * πŸ‡¬πŸ‡§: Depends on the core jBase class for type definitions.
15
+ * * πŸ‡©πŸ‡ͺ: HΓ€ngt von der Core-jBase-Klasse fΓΌr Typ-Definitionen ab.
16
+ */
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ exports.html = html;
19
+ exports.text = text;
20
+ /**
21
+ * * πŸ‡¬πŸ‡§: Gets the HTML content of the first element or sets the HTML content for all elements in the selection.
22
+ * * πŸ‡©πŸ‡ͺ: Ruft den HTML-Inhalt des ersten Elements ab oder setzt den HTML-Inhalt fΓΌr alle Elemente in der Auswahl.
23
+ * @param content
24
+ * * πŸ‡¬πŸ‡§: (Optional) The HTML string to set.
25
+ * * πŸ‡©πŸ‡ͺ: (Optional) Der HTML-String, der gesetzt werden soll.
26
+ * @returns
27
+ * * πŸ‡¬πŸ‡§: The HTML string (getter) or the current jBase instance (setter).
28
+ * * πŸ‡©πŸ‡ͺ: Der HTML-String (Getter) oder die aktuelle jBase-Instanz (Setter).
29
+ */
30
+ function html(content) {
31
+ if (content === undefined) {
32
+ const el = this[0];
33
+ return (el instanceof Element) ? el.innerHTML : '';
34
+ }
35
+ this.forEach(el => {
36
+ if (el instanceof Element)
37
+ el.innerHTML = content;
38
+ });
39
+ return this;
40
+ }
41
+ /**
42
+ * * πŸ‡¬πŸ‡§: Gets the text content of the first element or sets it for all elements. Safe against XSS attacks.
43
+ * * πŸ‡©πŸ‡ͺ: Ruft den reinen Text-Inhalt des ersten Elements ab oder setzt ihn fΓΌr alle Elemente. Sicher gegen XSS-Angriffe.
44
+ * @param content
45
+ * * πŸ‡¬πŸ‡§: (Optional) The text content to set.
46
+ * * πŸ‡©πŸ‡ͺ: (Optional) Der Text, der gesetzt werden soll.
47
+ * @returns
48
+ * * πŸ‡¬πŸ‡§: The text content (getter) or the current jBase instance (setter).
49
+ * * πŸ‡©πŸ‡ͺ: Der Text-Inhalt (Getter) oder die aktuelle jBase-Instanz (Setter).
50
+ */
51
+ function text(content) {
52
+ if (content === undefined) {
53
+ const el = this[0];
54
+ return (el instanceof Node) ? (el.textContent || '') : '';
55
+ }
56
+ this.forEach(el => {
57
+ if (el instanceof HTMLElement) {
58
+ el.textContent = content;
59
+ }
60
+ });
61
+ return this;
62
+ }
63
+ //# sourceMappingURL=content.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"content.js","sourceRoot":"","sources":["../../../src/modules/dom/content.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;AAcH,oBASC;AAYD,oBAYC;AA3CD;;;;;;;;;GASG;AACH,SAAgB,IAAI,CAAc,OAAgB;IAC9C,IAAI,OAAO,KAAK,SAAS,EAAE,CAAC;QACxB,MAAM,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;QACnB,OAAO,CAAC,EAAE,YAAY,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC;IACvD,CAAC;IACD,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,EAAE;QACd,IAAI,EAAE,YAAY,OAAO;YAAE,EAAE,CAAC,SAAS,GAAG,OAAO,CAAC;IACtD,CAAC,CAAC,CAAC;IACH,OAAO,IAAI,CAAC;AAChB,CAAC;AAED;;;;;;;;;GASG;AACH,SAAgB,IAAI,CAAc,OAAgB;IAC9C,IAAI,OAAO,KAAK,SAAS,EAAE,CAAC;QACxB,MAAM,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;QACnB,OAAO,CAAC,EAAE,YAAY,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,WAAW,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;IAC9D,CAAC;IAED,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,EAAE;QACd,IAAI,EAAE,YAAY,WAAW,EAAE,CAAC;YAC5B,EAAE,CAAC,WAAW,GAAG,OAAO,CAAC;QAC7B,CAAC;IACL,CAAC,CAAC,CAAC;IACH,OAAO,IAAI,CAAC;AAChB,CAAC"}
@@ -0,0 +1,78 @@
1
+ /**
2
+ * @file src/modules/dom/index.ts
3
+ * @version 2.0.0
4
+ * @since 2.0.0
5
+ * @license GPL-3.0-or-later
6
+ * @copyright Sven Minio 2026
7
+ * @author Sven Minio <https://sven-minio.de>
8
+ * @category DOM
9
+ * @description
10
+ * * πŸ‡¬πŸ‡§: Central entry point for DOM operations. Aggregates methods for attributes, content, manipulation, traversal, and states.
11
+ * * πŸ‡©πŸ‡ͺ: Zentraler Einstiegspunkt fΓΌr DOM-Operationen. Aggregiert Methoden fΓΌr Attribute, Inhalt, Manipulation, Traversierung und Status.
12
+ * @requires ./attributes
13
+ * * πŸ‡¬πŸ‡§: Attribute and value manipulation.
14
+ * * πŸ‡©πŸ‡ͺ: Attribut- und Wert-Manipulation.
15
+ * @requires ./content
16
+ * * πŸ‡¬πŸ‡§: Content handling (html, text).
17
+ * * πŸ‡©πŸ‡ͺ: Inhalts-Steuerung (html, text).
18
+ * @requires ./manipulation
19
+ * * πŸ‡¬πŸ‡§: DOM manipulation (append, remove, etc.).
20
+ * * πŸ‡©πŸ‡ͺ: DOM-Manipulation (append, remove, etc.).
21
+ * @requires ./traversal
22
+ * * πŸ‡¬πŸ‡§: Tree traversal (find, parent, children).
23
+ * * πŸ‡©πŸ‡ͺ: Baum-Durchquerung (find, parent, children).
24
+ * @requires ./states
25
+ * * πŸ‡¬πŸ‡§: State checks (checked, disabled).
26
+ * * πŸ‡©πŸ‡ͺ: Status-PrΓΌfungen (checked, disabled).
27
+ */
28
+ /**
29
+ * * πŸ‡¬πŸ‡§: Aggregation of all DOM methods. Bundles specialized sub-modules into a single interface. Used to extend the jBase prototype centrally via Object.assign.
30
+ * * πŸ‡©πŸ‡ͺ: Aggregation aller DOM-Methoden. BΓΌndelt spezialisierte Untermodule in einer einzigen Schnittstelle. Dient als Quelle fΓΌr das Object.assign zur zentralen Erweiterung des jBase-Prototyps.
31
+ */
32
+ export declare const domMethods: {
33
+ checked(this: import("../..").JBaseClass, state?: boolean): boolean | import("../..").JBaseClass;
34
+ selected(this: import("../..").JBaseClass, state?: boolean): boolean | import("../..").JBaseClass;
35
+ disabled(this: import("../..").JBaseClass, state?: boolean): boolean | import("../..").JBaseClass;
36
+ closest(this: import("../..").JBaseClass, selector: string): import("../..").JBaseClass;
37
+ parent(this: import("../..").JBaseClass): import("../..").JBaseClass;
38
+ children(this: import("../..").JBaseClass, selector?: string): import("../..").JBaseClass;
39
+ findAll(this: import("../..").JBaseClass, selector: string): import("../..").JBaseClass;
40
+ descendants(this: import("../..").JBaseClass): import("../..").JBaseClass;
41
+ parents(this: import("../..").JBaseClass, selector?: string): import("../..").JBaseClass;
42
+ parentsUntil(this: import("../..").JBaseClass, selector: string, filter?: string): import("../..").JBaseClass;
43
+ descendantsUntil(this: import("../..").JBaseClass, untilSelector: string, filter?: string): import("../..").JBaseClass;
44
+ next(this: import("../..").JBaseClass, selector?: string): import("../..").JBaseClass;
45
+ prev(this: import("../..").JBaseClass, selector?: string): import("../..").JBaseClass;
46
+ nextSibling(this: import("../..").JBaseClass, selector?: string): import("../..").JBaseClass;
47
+ prevSibling(this: import("../..").JBaseClass, selector?: string): import("../..").JBaseClass;
48
+ sibling(this: import("../..").JBaseClass, selector?: string): import("../..").JBaseClass;
49
+ nextAll(this: import("../..").JBaseClass, selector?: string): import("../..").JBaseClass;
50
+ prevAll(this: import("../..").JBaseClass, selector?: string): import("../..").JBaseClass;
51
+ siblings(this: import("../..").JBaseClass, selector?: string): import("../..").JBaseClass;
52
+ nextUntil(this: import("../..").JBaseClass, untilSelector: string, filter?: string): import("../..").JBaseClass;
53
+ prevUntil(this: import("../..").JBaseClass, untilSelector: string, filter?: string): import("../..").JBaseClass;
54
+ eq(this: import("../..").JBaseClass, index: number): import("../..").JBaseClass;
55
+ first(this: import("../..").JBaseClass): import("../..").JBaseClass;
56
+ last(this: import("../..").JBaseClass): import("../..").JBaseClass;
57
+ filterBy(this: import("../..").JBaseClass, selectorOrFn: string | ((index: number, element: Element) => boolean)): import("../..").JBaseClass;
58
+ not(this: import("../..").JBaseClass, selectorOrFn: string | ((index: number, element: Element) => boolean)): import("../..").JBaseClass;
59
+ remove(this: import("../..").JBaseClass): import("../..").JBaseClass;
60
+ empty(this: import("../..").JBaseClass): import("../..").JBaseClass;
61
+ replaceWithClone(this: import("../..").JBaseClass): import("../..").JBaseClass;
62
+ append(this: import("../..").JBaseClass, content: string | Node | import("../..").JBaseClass): import("../..").JBaseClass;
63
+ prepend(this: import("../..").JBaseClass, content: string | Node | import("../..").JBaseClass): import("../..").JBaseClass;
64
+ before(this: import("../..").JBaseClass, content: string | Node | import("../..").JBaseClass): import("../..").JBaseClass;
65
+ after(this: import("../..").JBaseClass, content: string | Node | import("../..").JBaseClass): import("../..").JBaseClass;
66
+ replaceWith(this: import("../..").JBaseClass, content: string | Node | import("../..").JBaseClass): import("../..").JBaseClass;
67
+ appendTo(this: import("../..").JBaseClass, target: string | Element): import("../..").JBaseClass;
68
+ prependTo(this: import("../..").JBaseClass, target: string | Element): import("../..").JBaseClass;
69
+ insertBefore(this: import("../..").JBaseClass, target: string | Element): import("../..").JBaseClass;
70
+ insertAfter(this: import("../..").JBaseClass, target: string | Element): import("../..").JBaseClass;
71
+ wrap(this: import("../..").JBaseClass, wrapperHtml: string): import("../..").JBaseClass;
72
+ unwrap(this: import("../..").JBaseClass): import("../..").JBaseClass;
73
+ html(this: import("../..").JBaseClass, content?: string): string | import("../..").JBaseClass;
74
+ text(this: import("../..").JBaseClass, content?: string): string | import("../..").JBaseClass;
75
+ attr(this: import("../..").JBaseClass, name: string, value?: string): string | null | import("../..").JBaseClass;
76
+ val(this: import("../..").JBaseClass, value?: string): string | import("../..").JBaseClass;
77
+ };
78
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/modules/dom/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AAQH;;;GAGG;AACH,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMtB,CAAC"}
@@ -0,0 +1,48 @@
1
+ "use strict";
2
+ /**
3
+ * @file src/modules/dom/index.ts
4
+ * @version 2.0.0
5
+ * @since 2.0.0
6
+ * @license GPL-3.0-or-later
7
+ * @copyright Sven Minio 2026
8
+ * @author Sven Minio <https://sven-minio.de>
9
+ * @category DOM
10
+ * @description
11
+ * * πŸ‡¬πŸ‡§: Central entry point for DOM operations. Aggregates methods for attributes, content, manipulation, traversal, and states.
12
+ * * πŸ‡©πŸ‡ͺ: Zentraler Einstiegspunkt fΓΌr DOM-Operationen. Aggregiert Methoden fΓΌr Attribute, Inhalt, Manipulation, Traversierung und Status.
13
+ * @requires ./attributes
14
+ * * πŸ‡¬πŸ‡§: Attribute and value manipulation.
15
+ * * πŸ‡©πŸ‡ͺ: Attribut- und Wert-Manipulation.
16
+ * @requires ./content
17
+ * * πŸ‡¬πŸ‡§: Content handling (html, text).
18
+ * * πŸ‡©πŸ‡ͺ: Inhalts-Steuerung (html, text).
19
+ * @requires ./manipulation
20
+ * * πŸ‡¬πŸ‡§: DOM manipulation (append, remove, etc.).
21
+ * * πŸ‡©πŸ‡ͺ: DOM-Manipulation (append, remove, etc.).
22
+ * @requires ./traversal
23
+ * * πŸ‡¬πŸ‡§: Tree traversal (find, parent, children).
24
+ * * πŸ‡©πŸ‡ͺ: Baum-Durchquerung (find, parent, children).
25
+ * @requires ./states
26
+ * * πŸ‡¬πŸ‡§: State checks (checked, disabled).
27
+ * * πŸ‡©πŸ‡ͺ: Status-PrΓΌfungen (checked, disabled).
28
+ */
29
+ Object.defineProperty(exports, "__esModule", { value: true });
30
+ exports.domMethods = void 0;
31
+ const tslib_1 = require("tslib");
32
+ const attributeMethods = tslib_1.__importStar(require("./attributes"));
33
+ const contentMethods = tslib_1.__importStar(require("./content"));
34
+ const manipulationMethods = tslib_1.__importStar(require("./manipulation"));
35
+ const traversalMethods = tslib_1.__importStar(require("./traversal"));
36
+ const stateMethods = tslib_1.__importStar(require("./states"));
37
+ /**
38
+ * * πŸ‡¬πŸ‡§: Aggregation of all DOM methods. Bundles specialized sub-modules into a single interface. Used to extend the jBase prototype centrally via Object.assign.
39
+ * * πŸ‡©πŸ‡ͺ: Aggregation aller DOM-Methoden. BΓΌndelt spezialisierte Untermodule in einer einzigen Schnittstelle. Dient als Quelle fΓΌr das Object.assign zur zentralen Erweiterung des jBase-Prototyps.
40
+ */
41
+ exports.domMethods = {
42
+ ...attributeMethods,
43
+ ...contentMethods,
44
+ ...manipulationMethods,
45
+ ...traversalMethods,
46
+ ...stateMethods
47
+ };
48
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/modules/dom/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;;;;AAEH,uEAAiD;AACjD,kEAA4C;AAC5C,4EAAsD;AACtD,sEAAgD;AAChD,+DAAyC;AAEzC;;;GAGG;AACU,QAAA,UAAU,GAAG;IACtB,GAAG,gBAAgB;IACnB,GAAG,cAAc;IACjB,GAAG,mBAAmB;IACtB,GAAG,gBAAgB;IACnB,GAAG,YAAY;CAClB,CAAC"}
@@ -0,0 +1,159 @@
1
+ /**
2
+ * @file src/modules/dom/manipulation.ts
3
+ * @version 2.0.0
4
+ * @since 2.0.0
5
+ * @license GPL-3.0-or-later
6
+ * @copyright Sven Minio 2026
7
+ * @author Sven Minio <https://sven-minio.de>
8
+ * @category DOM
9
+ * @description
10
+ * * πŸ‡¬πŸ‡§: Methods for inserting, moving, and removing elements (append, prepend, remove).
11
+ * * πŸ‡©πŸ‡ͺ: Methoden zum EinfΓΌgen, Verschieben und Entfernen von Elementen (append, prepend, remove).
12
+ * @requires ../../core
13
+ * * πŸ‡¬πŸ‡§: Depends on the core jBase class for type definitions.
14
+ * * πŸ‡©πŸ‡ͺ: HΓ€ngt von der Core-jBase-Klasse fΓΌr Typ-Definitionen ab.
15
+ */
16
+ import { jBase } from '../../core';
17
+ /**
18
+ * * πŸ‡¬πŸ‡§: Removes the selected elements from the DOM.
19
+ * * πŸ‡©πŸ‡ͺ: Entfernt die ausgewΓ€hlten Elemente vollstΓ€ndig aus dem DOM.
20
+ * @returns
21
+ * * πŸ‡¬πŸ‡§: The current jBase instance.
22
+ * * πŸ‡©πŸ‡ͺ: Die aktuelle jBase-Instanz.
23
+ */
24
+ export declare function remove(this: jBase): jBase;
25
+ /**
26
+ * * πŸ‡¬πŸ‡§: Removes all child nodes and text content from the selected elements.
27
+ * * πŸ‡©πŸ‡ͺ: Entfernt alle Kind-Elemente und Textknoten aus den ausgewΓ€hlten Elementen.
28
+ * @returns
29
+ * * πŸ‡¬πŸ‡§: The current jBase instance.
30
+ * * πŸ‡©πŸ‡ͺ: Die aktuelle jBase-Instanz.
31
+ */
32
+ export declare function empty(this: jBase): jBase;
33
+ /**
34
+ * * πŸ‡¬πŸ‡§: Replaces each element with a deep clone of itself. Useful for removing all event listeners ("Nuke" strategy).
35
+ * * πŸ‡©πŸ‡ͺ: Ersetzt jedes Element durch eine tiefe Kopie seiner selbst. NΓΌtzlich, um alle Event-Listener hart zu entfernen.
36
+ * @returns
37
+ * * πŸ‡¬πŸ‡§: A new jBase instance containing the cloned elements.
38
+ * * πŸ‡©πŸ‡ͺ: Eine neue jBase-Instanz, die die geklonten Elemente enthΓ€lt.
39
+ */
40
+ export declare function replaceWithClone(this: jBase): jBase;
41
+ /**
42
+ * * πŸ‡¬πŸ‡§: Inserts content at the end of each selected element (inside).
43
+ * * πŸ‡©πŸ‡ͺ: FΓΌgt Inhalt am Ende jedes Elements in der Sammlung ein (innerhalb).
44
+ * @param content
45
+ * * πŸ‡¬πŸ‡§: HTML string, DOM Node, or jBase collection.
46
+ * * πŸ‡©πŸ‡ͺ: HTML-String, DOM-Node oder jBase-Sammlung.
47
+ * @returns
48
+ * * πŸ‡¬πŸ‡§: The current jBase instance.
49
+ * * πŸ‡©πŸ‡ͺ: Die aktuelle jBase-Instanz.
50
+ */
51
+ export declare function append(this: jBase, content: string | Node | jBase): jBase;
52
+ /**
53
+ * * πŸ‡¬πŸ‡§: Inserts content at the beginning of each selected element (inside).
54
+ * * πŸ‡©πŸ‡ͺ: FΓΌgt Inhalt am Anfang jedes Elements in der Sammlung ein (innerhalb).
55
+ * @param content
56
+ * * πŸ‡¬πŸ‡§: HTML string, DOM Node, or jBase collection.
57
+ * * πŸ‡©πŸ‡ͺ: HTML-String, DOM-Node oder jBase-Sammlung.
58
+ * @returns
59
+ * * πŸ‡¬πŸ‡§: The current jBase instance.
60
+ * * πŸ‡©πŸ‡ͺ: Die aktuelle jBase-Instanz.
61
+ */
62
+ export declare function prepend(this: jBase, content: string | Node | jBase): jBase;
63
+ /**
64
+ * * πŸ‡¬πŸ‡§: Inserts content before the element (outside).
65
+ * * πŸ‡©πŸ‡ͺ: FΓΌgt Inhalt VOR dem Element ein (außerhalb).
66
+ * @param content
67
+ * * πŸ‡¬πŸ‡§: HTML string, DOM Node, or jBase collection.
68
+ * * πŸ‡©πŸ‡ͺ: HTML-String, DOM-Node oder jBase-Sammlung.
69
+ * @returns
70
+ * * πŸ‡¬πŸ‡§: The current jBase instance.
71
+ * * πŸ‡©πŸ‡ͺ: Die aktuelle jBase-Instanz.
72
+ */
73
+ export declare function before(this: jBase, content: string | Node | jBase): jBase;
74
+ /**
75
+ * * πŸ‡¬πŸ‡§: Inserts content after the element (outside).
76
+ * * πŸ‡©πŸ‡ͺ: FΓΌgt Inhalt NACH dem Element ein (außerhalb).
77
+ * @param content
78
+ * * πŸ‡¬πŸ‡§: HTML string, DOM Node, or jBase collection.
79
+ * * πŸ‡©πŸ‡ͺ: HTML-String, DOM-Node oder jBase-Sammlung.
80
+ * @returns
81
+ * * πŸ‡¬πŸ‡§: The current jBase instance.
82
+ * * πŸ‡©πŸ‡ͺ: Die aktuelle jBase-Instanz.
83
+ */
84
+ export declare function after(this: jBase, content: string | Node | jBase): jBase;
85
+ /**
86
+ * * πŸ‡¬πŸ‡§: Replaces the element with new content.
87
+ * * πŸ‡©πŸ‡ͺ: Ersetzt das Element durch neuen Inhalt.
88
+ * @param content
89
+ * * πŸ‡¬πŸ‡§: The new content.
90
+ * * πŸ‡©πŸ‡ͺ: Der neue Inhalt.
91
+ * @returns
92
+ * * πŸ‡¬πŸ‡§: The current jBase instance.
93
+ * * πŸ‡©πŸ‡ͺ: Die aktuelle jBase-Instanz.
94
+ */
95
+ export declare function replaceWith(this: jBase, content: string | Node | jBase): jBase;
96
+ /**
97
+ * * πŸ‡¬πŸ‡§: Appends the selected elements to the end of a target element.
98
+ * * πŸ‡©πŸ‡ͺ: HΓ€ngt die aktuellen Elemente an das Ende des Ziel-Elements an.
99
+ * @param target
100
+ * * πŸ‡¬πŸ‡§: CSS selector or DOM element.
101
+ * * πŸ‡©πŸ‡ͺ: Der CSS-Selektor oder das DOM-Element.
102
+ * @returns
103
+ * * πŸ‡¬πŸ‡§: The current jBase instance.
104
+ * * πŸ‡©πŸ‡ͺ: Die aktuelle jBase-Instanz.
105
+ */
106
+ export declare function appendTo(this: jBase, target: string | Element): jBase;
107
+ /**
108
+ * * πŸ‡¬πŸ‡§: Prepends the selected elements to the beginning of a target element.
109
+ * * πŸ‡©πŸ‡ͺ: FΓΌgt die aktuellen Elemente am Anfang des Ziel-Elements ein.
110
+ * @param target
111
+ * * πŸ‡¬πŸ‡§: CSS selector or DOM element.
112
+ * * πŸ‡©πŸ‡ͺ: Der CSS-Selektor oder das DOM-Element.
113
+ * @returns
114
+ * * πŸ‡¬πŸ‡§: The current jBase instance.
115
+ * * πŸ‡©πŸ‡ͺ: Die aktuelle jBase-Instanz.
116
+ */
117
+ export declare function prependTo(this: jBase, target: string | Element): jBase;
118
+ /**
119
+ * * πŸ‡¬πŸ‡§: Inserts the selected elements immediately before the target element.
120
+ * * πŸ‡©πŸ‡ͺ: FΓΌgt die aktuellen Elemente unmittelbar VOR dem Ziel-Element ein.
121
+ * @param target
122
+ * * πŸ‡¬πŸ‡§: CSS selector or DOM element.
123
+ * * πŸ‡©πŸ‡ͺ: Der CSS-Selektor oder das DOM-Element.
124
+ * @returns
125
+ * * πŸ‡¬πŸ‡§: The current jBase instance.
126
+ * * πŸ‡©πŸ‡ͺ: Die aktuelle jBase-Instanz.
127
+ */
128
+ export declare function insertBefore(this: jBase, target: string | Element): jBase;
129
+ /**
130
+ * * πŸ‡¬πŸ‡§: Inserts the selected elements immediately after the target element.
131
+ * * πŸ‡©πŸ‡ͺ: FΓΌgt die aktuellen Elemente unmittelbar NACH dem Ziel-Element ein.
132
+ * @param target
133
+ * * πŸ‡¬πŸ‡§: CSS selector or DOM element.
134
+ * * πŸ‡©πŸ‡ͺ: Der CSS-Selektor oder das DOM-Element.
135
+ * @returns
136
+ * * πŸ‡¬πŸ‡§: The current jBase instance.
137
+ * * πŸ‡©πŸ‡ͺ: Die aktuelle jBase-Instanz.
138
+ */
139
+ export declare function insertAfter(this: jBase, target: string | Element): jBase;
140
+ /**
141
+ * * πŸ‡¬πŸ‡§: Wraps each selected element with the specified HTML structure.
142
+ * * πŸ‡©πŸ‡ͺ: Umschließt jedes Element in der Auswahl mit der angegebenen HTML-Struktur.
143
+ * @param wrapperHtml
144
+ * * πŸ‡¬πŸ‡§: HTML string defining the wrapper (e.g., `<div class="box"></div>`).
145
+ * * πŸ‡©πŸ‡ͺ: Ein HTML-String, der die Wrapper-Struktur definiert (z.B. `<div class="box"></div>`).
146
+ * @returns
147
+ * * πŸ‡¬πŸ‡§: The current jBase instance.
148
+ * * πŸ‡©πŸ‡ͺ: Die aktuelle jBase-Instanz.
149
+ */
150
+ export declare function wrap(this: jBase, wrapperHtml: string): jBase;
151
+ /**
152
+ * * πŸ‡¬πŸ‡§: Removes the direct parent of the selected elements from the DOM.
153
+ * * πŸ‡©πŸ‡ͺ: Entfernt das direkte Elternelement der ausgewΓ€hlten Elemente aus dem DOM.
154
+ * @returns
155
+ * * πŸ‡¬πŸ‡§: The current jBase instance.
156
+ * * πŸ‡©πŸ‡ͺ: Die aktuelle jBase-Instanz.
157
+ */
158
+ export declare function unwrap(this: jBase): jBase;
159
+ //# sourceMappingURL=manipulation.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"manipulation.d.ts","sourceRoot":"","sources":["../../../src/modules/dom/manipulation.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AAqCnC;;;;;;GAMG;AACH,wBAAgB,MAAM,CAAC,IAAI,EAAE,KAAK,GAAG,KAAK,CAKzC;AAED;;;;;;GAMG;AACH,wBAAgB,KAAK,CAAC,IAAI,EAAE,KAAK,GAAG,KAAK,CAKxC;AAED;;;;;;GAMG;AACH,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,KAAK,GAAG,KAAK,CAWnD;AAED;;;;;;;;;GASG;AACH,wBAAgB,MAAM,CAAC,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,GAAG,IAAI,GAAG,KAAK,GAAG,KAAK,CAWzE;AAED;;;;;;;;;GASG;AACH,wBAAgB,OAAO,CAAC,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,GAAG,IAAI,GAAG,KAAK,GAAG,KAAK,CAU1E;AAED;;;;;;;;;GASG;AACH,wBAAgB,MAAM,CAAC,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,GAAG,IAAI,GAAG,KAAK,GAAG,KAAK,CAUzE;AAED;;;;;;;;;GASG;AACH,wBAAgB,KAAK,CAAC,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,GAAG,IAAI,GAAG,KAAK,GAAG,KAAK,CAUxE;AAED;;;;;;;;;GASG;AACH,wBAAgB,WAAW,CAAC,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,GAAG,IAAI,GAAG,KAAK,GAAG,KAAK,CAU9E;AAED;;;;;;;;;GASG;AACH,wBAAgB,QAAQ,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,GAAG,OAAO,GAAG,KAAK,CAUrE;AAED;;;;;;;;;GASG;AACH,wBAAgB,SAAS,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,GAAG,OAAO,GAAG,KAAK,CAUtE;AAED;;;;;;;;;GASG;AACH,wBAAgB,YAAY,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,GAAG,OAAO,GAAG,KAAK,CAUzE;AAED;;;;;;;;;GASG;AACH,wBAAgB,WAAW,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,GAAG,OAAO,GAAG,KAAK,CAUxE;AAED;;;;;;;;;GASG;AACH,wBAAgB,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,GAAG,KAAK,CAW5D;AAED;;;;;;GAMG;AACH,wBAAgB,MAAM,CAAC,IAAI,EAAE,KAAK,GAAG,KAAK,CAYzC"}