@k37z3r/jbase 2.0.1 β†’ 2.0.3

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 (167) hide show
  1. package/CHANGELOG.md +50 -0
  2. package/README.md +59 -43
  3. package/dist/browser.d.ts +5 -6
  4. package/dist/browser.d.ts.map +1 -1
  5. package/dist/core.d.ts +9 -14
  6. package/dist/core.d.ts.map +1 -1
  7. package/dist/index.cjs +577 -452
  8. package/dist/index.cjs.map +7 -0
  9. package/dist/index.d.ts +304 -603
  10. package/dist/index.d.ts.map +1 -1
  11. package/dist/index.mjs +575 -452
  12. package/dist/index.mjs.map +7 -0
  13. package/dist/jbase.browser.js +338 -281
  14. package/dist/jbase.browser.js.map +7 -0
  15. package/dist/jbase.min.js +3 -2
  16. package/dist/jbase.min.js.map +7 -0
  17. package/dist/modules/css/classes.d.ts +15 -29
  18. package/dist/modules/css/classes.d.ts.map +1 -1
  19. package/dist/modules/css/index.d.ts +5 -9
  20. package/dist/modules/css/index.d.ts.map +1 -1
  21. package/dist/modules/css/styles.d.ts +7 -13
  22. package/dist/modules/css/styles.d.ts.map +1 -1
  23. package/dist/modules/data/arrays.d.ts +96 -64
  24. package/dist/modules/data/arrays.d.ts.map +1 -1
  25. package/dist/modules/data/index.d.ts +5 -9
  26. package/dist/modules/data/index.d.ts.map +1 -1
  27. package/dist/modules/data/objects.d.ts +86 -54
  28. package/dist/modules/data/objects.d.ts.map +1 -1
  29. package/dist/modules/data/types.d.ts +3 -22
  30. package/dist/modules/data/types.d.ts.map +1 -1
  31. package/dist/modules/dom/attributes.d.ts +10 -19
  32. package/dist/modules/dom/attributes.d.ts.map +1 -1
  33. package/dist/modules/dom/content.d.ts +9 -17
  34. package/dist/modules/dom/content.d.ts.map +1 -1
  35. package/dist/modules/dom/index.d.ts +8 -15
  36. package/dist/modules/dom/index.d.ts.map +1 -1
  37. package/dist/modules/dom/manipulation.d.ts +41 -81
  38. package/dist/modules/dom/manipulation.d.ts.map +1 -1
  39. package/dist/modules/dom/states.d.ts +12 -23
  40. package/dist/modules/dom/states.d.ts.map +1 -1
  41. package/dist/modules/dom/traversal.d.ts +64 -127
  42. package/dist/modules/dom/traversal.d.ts.map +1 -1
  43. package/dist/modules/effects/fade.d.ts +13 -31
  44. package/dist/modules/effects/fade.d.ts.map +1 -1
  45. package/dist/modules/effects/index.d.ts +15 -23
  46. package/dist/modules/effects/index.d.ts.map +1 -1
  47. package/dist/modules/effects/slide.d.ts +13 -31
  48. package/dist/modules/effects/slide.d.ts.map +1 -1
  49. package/dist/modules/effects/types.d.ts +33 -0
  50. package/dist/modules/effects/types.d.ts.map +1 -0
  51. package/dist/modules/effects/vertical.d.ts +13 -31
  52. package/dist/modules/effects/vertical.d.ts.map +1 -1
  53. package/dist/modules/events/binding.d.ts +11 -21
  54. package/dist/modules/events/binding.d.ts.map +1 -1
  55. package/dist/modules/events/form.d.ts +18 -35
  56. package/dist/modules/events/form.d.ts.map +1 -1
  57. package/dist/modules/events/index.d.ts +9 -17
  58. package/dist/modules/events/index.d.ts.map +1 -1
  59. package/dist/modules/events/keyboard.d.ts +16 -31
  60. package/dist/modules/events/keyboard.d.ts.map +1 -1
  61. package/dist/modules/events/lifecycle.d.ts +6 -11
  62. package/dist/modules/events/lifecycle.d.ts.map +1 -1
  63. package/dist/modules/events/mouse.d.ts +30 -59
  64. package/dist/modules/events/mouse.d.ts.map +1 -1
  65. package/dist/modules/events/touch.d.ts +15 -29
  66. package/dist/modules/events/touch.d.ts.map +1 -1
  67. package/dist/modules/http/get.d.ts +18 -25
  68. package/dist/modules/http/get.d.ts.map +1 -1
  69. package/dist/modules/http/index.d.ts +11 -15
  70. package/dist/modules/http/index.d.ts.map +1 -1
  71. package/dist/modules/http/post.d.ts +13 -19
  72. package/dist/modules/http/post.d.ts.map +1 -1
  73. package/dist/server.d.ts +15 -0
  74. package/dist/server.d.ts.map +1 -0
  75. package/dist/server.js +2246 -0
  76. package/dist/server.js.map +7 -0
  77. package/dist/types.d.ts +11 -21
  78. package/dist/types.d.ts.map +1 -1
  79. package/dist/utils.d.ts +20 -23
  80. package/dist/utils.d.ts.map +1 -1
  81. package/package.json +14 -4
  82. package/wiki/CSS-Classes-&-Styles.md +128 -0
  83. package/wiki/DATA-Utilities-(Arrays).md +332 -0
  84. package/wiki/DATA-Utilities-(Objects).md +263 -0
  85. package/wiki/DOM-Attributes.md +56 -0
  86. package/wiki/DOM-Content.md +48 -0
  87. package/wiki/DOM-Manipulation.md +272 -0
  88. package/wiki/DOM-States.md +73 -0
  89. package/wiki/DOM-Traversal.md +529 -0
  90. package/wiki/EFFECTS-Fade.md +76 -0
  91. package/wiki/EFFECTS-Slide-(horizontal).md +70 -0
  92. package/wiki/EFFECTS-Slide-(vertical).md +75 -0
  93. package/wiki/EVENTS-Bindings.md +55 -0
  94. package/wiki/EVENTS-Form.md +122 -0
  95. package/wiki/EVENTS-Keyboard.md +98 -0
  96. package/wiki/EVENTS-Lifecycle.md +25 -0
  97. package/wiki/EVENTS-Mouse.md +218 -0
  98. package/wiki/EVENTS-Touch.md +98 -0
  99. package/wiki/HTTP-Requests.md +93 -0
  100. package/wiki/Home.md +118 -0
  101. package/wiki/Installation.md +44 -0
  102. package/wiki/Quick-Start.md +139 -0
  103. package/dist/browser.js +0 -29
  104. package/dist/browser.js.map +0 -1
  105. package/dist/core.js +0 -78
  106. package/dist/core.js.map +0 -1
  107. package/dist/index.js +0 -100
  108. package/dist/index.js.map +0 -1
  109. package/dist/jbase.js +0 -1898
  110. package/dist/modules/css/classes.js +0 -88
  111. package/dist/modules/css/classes.js.map +0 -1
  112. package/dist/modules/css/index.js +0 -33
  113. package/dist/modules/css/index.js.map +0 -1
  114. package/dist/modules/css/styles.js +0 -49
  115. package/dist/modules/css/styles.js.map +0 -1
  116. package/dist/modules/data/arrays.js +0 -177
  117. package/dist/modules/data/arrays.js.map +0 -1
  118. package/dist/modules/data/index.js +0 -33
  119. package/dist/modules/data/index.js.map +0 -1
  120. package/dist/modules/data/objects.js +0 -168
  121. package/dist/modules/data/objects.js.map +0 -1
  122. package/dist/modules/data/types.js +0 -43
  123. package/dist/modules/data/types.js.map +0 -1
  124. package/dist/modules/dom/attributes.js +0 -69
  125. package/dist/modules/dom/attributes.js.map +0 -1
  126. package/dist/modules/dom/content.js +0 -63
  127. package/dist/modules/dom/content.js.map +0 -1
  128. package/dist/modules/dom/index.js +0 -48
  129. package/dist/modules/dom/index.js.map +0 -1
  130. package/dist/modules/dom/manipulation.js +0 -343
  131. package/dist/modules/dom/manipulation.js.map +0 -1
  132. package/dist/modules/dom/states.js +0 -89
  133. package/dist/modules/dom/states.js.map +0 -1
  134. package/dist/modules/dom/traversal.js +0 -527
  135. package/dist/modules/dom/traversal.js.map +0 -1
  136. package/dist/modules/effects/fade.js +0 -104
  137. package/dist/modules/effects/fade.js.map +0 -1
  138. package/dist/modules/effects/index.js +0 -38
  139. package/dist/modules/effects/index.js.map +0 -1
  140. package/dist/modules/effects/slide.js +0 -103
  141. package/dist/modules/effects/slide.js.map +0 -1
  142. package/dist/modules/effects/vertical.js +0 -118
  143. package/dist/modules/effects/vertical.js.map +0 -1
  144. package/dist/modules/events/binding.js +0 -60
  145. package/dist/modules/events/binding.js.map +0 -1
  146. package/dist/modules/events/form.js +0 -106
  147. package/dist/modules/events/form.js.map +0 -1
  148. package/dist/modules/events/index.js +0 -53
  149. package/dist/modules/events/index.js.map +0 -1
  150. package/dist/modules/events/keyboard.js +0 -83
  151. package/dist/modules/events/keyboard.js.map +0 -1
  152. package/dist/modules/events/lifecycle.js +0 -40
  153. package/dist/modules/events/lifecycle.js.map +0 -1
  154. package/dist/modules/events/mouse.js +0 -172
  155. package/dist/modules/events/mouse.js.map +0 -1
  156. package/dist/modules/events/touch.js +0 -74
  157. package/dist/modules/events/touch.js.map +0 -1
  158. package/dist/modules/http/get.js +0 -65
  159. package/dist/modules/http/get.js.map +0 -1
  160. package/dist/modules/http/index.js +0 -42
  161. package/dist/modules/http/index.js.map +0 -1
  162. package/dist/modules/http/post.js +0 -54
  163. package/dist/modules/http/post.js.map +0 -1
  164. package/dist/types.js +0 -15
  165. package/dist/types.js.map +0 -1
  166. package/dist/utils.js +0 -71
  167. package/dist/utils.js.map +0 -1
@@ -1,33 +1,26 @@
1
1
  /**
2
2
  * @file src/modules/dom/index.ts
3
- * @version 2.0.0
3
+ * @version 2.0.2
4
4
  * @since 2.0.0
5
5
  * @license GPL-3.0-or-later
6
6
  * @copyright Sven Minio 2026
7
7
  * @author Sven Minio <https://sven-minio.de>
8
8
  * @category DOM
9
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.
10
+ * * Central entry point for DOM operations. Aggregates methods for attributes, content, manipulation, traversal, and states.
12
11
  * @requires ./attributes
13
- * * πŸ‡¬πŸ‡§: Attribute and value manipulation.
14
- * * πŸ‡©πŸ‡ͺ: Attribut- und Wert-Manipulation.
12
+ * * Attribute and value manipulation.
15
13
  * @requires ./content
16
- * * πŸ‡¬πŸ‡§: Content handling (html, text).
17
- * * πŸ‡©πŸ‡ͺ: Inhalts-Steuerung (html, text).
14
+ * * Content handling (html, text).
18
15
  * @requires ./manipulation
19
- * * πŸ‡¬πŸ‡§: DOM manipulation (append, remove, etc.).
20
- * * πŸ‡©πŸ‡ͺ: DOM-Manipulation (append, remove, etc.).
16
+ * * DOM manipulation (append, remove, etc.).
21
17
  * @requires ./traversal
22
- * * πŸ‡¬πŸ‡§: Tree traversal (find, parent, children).
23
- * * πŸ‡©πŸ‡ͺ: Baum-Durchquerung (find, parent, children).
18
+ * * Tree traversal (find, parent, children).
24
19
  * @requires ./states
25
- * * πŸ‡¬πŸ‡§: State checks (checked, disabled).
26
- * * πŸ‡©πŸ‡ͺ: Status-PrΓΌfungen (checked, disabled).
20
+ * * State checks (checked, disabled).
27
21
  */
28
22
  /**
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.
23
+ * * Aggregation of all DOM methods. Bundles specialized sub-modules into a single interface. Used to extend the jBase prototype centrally via Object.assign.
31
24
  */
32
25
  export declare const domMethods: {
33
26
  checked(this: import("../..").JBaseClass, state?: boolean): boolean | import("../..").JBaseClass;
@@ -1 +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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/modules/dom/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;GAoBG;AAQH;;GAEG;AACH,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMtB,CAAC"}
@@ -1,159 +1,119 @@
1
1
  /**
2
2
  * @file src/modules/dom/manipulation.ts
3
- * @version 2.0.0
3
+ * @version 2.0.2
4
4
  * @since 2.0.0
5
5
  * @license GPL-3.0-or-later
6
6
  * @copyright Sven Minio 2026
7
7
  * @author Sven Minio <https://sven-minio.de>
8
8
  * @category DOM
9
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).
10
+ * * Methods for inserting, moving, and removing elements (append, prepend, remove).
12
11
  * @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.
12
+ * * Depends on the core jBase class for type definitions.
15
13
  */
16
14
  import { jBase } from '../../core';
17
15
  /**
18
- * * πŸ‡¬πŸ‡§: Removes the selected elements from the DOM.
19
- * * πŸ‡©πŸ‡ͺ: Entfernt die ausgewΓ€hlten Elemente vollstΓ€ndig aus dem DOM.
16
+ * * Removes the selected elements from the DOM.
20
17
  * @returns
21
- * * πŸ‡¬πŸ‡§: The current jBase instance.
22
- * * πŸ‡©πŸ‡ͺ: Die aktuelle jBase-Instanz.
18
+ * * The current jBase instance.
23
19
  */
24
20
  export declare function remove(this: jBase): jBase;
25
21
  /**
26
- * * πŸ‡¬πŸ‡§: Removes all child nodes and text content from the selected elements.
27
- * * πŸ‡©πŸ‡ͺ: Entfernt alle Kind-Elemente und Textknoten aus den ausgewΓ€hlten Elementen.
22
+ * * Removes all child nodes and text content from the selected elements.
28
23
  * @returns
29
- * * πŸ‡¬πŸ‡§: The current jBase instance.
30
- * * πŸ‡©πŸ‡ͺ: Die aktuelle jBase-Instanz.
24
+ * * The current jBase instance.
31
25
  */
32
26
  export declare function empty(this: jBase): jBase;
33
27
  /**
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.
28
+ * * Replaces each element with a deep clone of itself. Useful for removing all event listeners ("Nuke" strategy).
36
29
  * @returns
37
- * * πŸ‡¬πŸ‡§: A new jBase instance containing the cloned elements.
38
- * * πŸ‡©πŸ‡ͺ: Eine neue jBase-Instanz, die die geklonten Elemente enthΓ€lt.
30
+ * * A new jBase instance containing the cloned elements.
39
31
  */
40
32
  export declare function replaceWithClone(this: jBase): jBase;
41
33
  /**
42
- * * πŸ‡¬πŸ‡§: Inserts content at the end of each selected element (inside).
43
- * * πŸ‡©πŸ‡ͺ: FΓΌgt Inhalt am Ende jedes Elements in der Sammlung ein (innerhalb).
34
+ * * Inserts content at the end of each selected element (inside).
44
35
  * @param content
45
- * * πŸ‡¬πŸ‡§: HTML string, DOM Node, or jBase collection.
46
- * * πŸ‡©πŸ‡ͺ: HTML-String, DOM-Node oder jBase-Sammlung.
36
+ * * HTML string, DOM Node, or jBase collection.
47
37
  * @returns
48
- * * πŸ‡¬πŸ‡§: The current jBase instance.
49
- * * πŸ‡©πŸ‡ͺ: Die aktuelle jBase-Instanz.
38
+ * * The current jBase instance.
50
39
  */
51
40
  export declare function append(this: jBase, content: string | Node | jBase): jBase;
52
41
  /**
53
- * * πŸ‡¬πŸ‡§: Inserts content at the beginning of each selected element (inside).
54
- * * πŸ‡©πŸ‡ͺ: FΓΌgt Inhalt am Anfang jedes Elements in der Sammlung ein (innerhalb).
42
+ * * Inserts content at the beginning of each selected element (inside).
55
43
  * @param content
56
- * * πŸ‡¬πŸ‡§: HTML string, DOM Node, or jBase collection.
57
- * * πŸ‡©πŸ‡ͺ: HTML-String, DOM-Node oder jBase-Sammlung.
44
+ * * HTML string, DOM Node, or jBase collection.
58
45
  * @returns
59
- * * πŸ‡¬πŸ‡§: The current jBase instance.
60
- * * πŸ‡©πŸ‡ͺ: Die aktuelle jBase-Instanz.
46
+ * * The current jBase instance.
61
47
  */
62
48
  export declare function prepend(this: jBase, content: string | Node | jBase): jBase;
63
49
  /**
64
- * * πŸ‡¬πŸ‡§: Inserts content before the element (outside).
65
- * * πŸ‡©πŸ‡ͺ: FΓΌgt Inhalt VOR dem Element ein (außerhalb).
50
+ * * Inserts content before the element (outside).
66
51
  * @param content
67
- * * πŸ‡¬πŸ‡§: HTML string, DOM Node, or jBase collection.
68
- * * πŸ‡©πŸ‡ͺ: HTML-String, DOM-Node oder jBase-Sammlung.
52
+ * * HTML string, DOM Node, or jBase collection.
69
53
  * @returns
70
- * * πŸ‡¬πŸ‡§: The current jBase instance.
71
- * * πŸ‡©πŸ‡ͺ: Die aktuelle jBase-Instanz.
54
+ * * The current jBase instance.
72
55
  */
73
56
  export declare function before(this: jBase, content: string | Node | jBase): jBase;
74
57
  /**
75
- * * πŸ‡¬πŸ‡§: Inserts content after the element (outside).
76
- * * πŸ‡©πŸ‡ͺ: FΓΌgt Inhalt NACH dem Element ein (außerhalb).
58
+ * * Inserts content after the element (outside).
77
59
  * @param content
78
- * * πŸ‡¬πŸ‡§: HTML string, DOM Node, or jBase collection.
79
- * * πŸ‡©πŸ‡ͺ: HTML-String, DOM-Node oder jBase-Sammlung.
60
+ * * HTML string, DOM Node, or jBase collection.
80
61
  * @returns
81
- * * πŸ‡¬πŸ‡§: The current jBase instance.
82
- * * πŸ‡©πŸ‡ͺ: Die aktuelle jBase-Instanz.
62
+ * * The current jBase instance.
83
63
  */
84
64
  export declare function after(this: jBase, content: string | Node | jBase): jBase;
85
65
  /**
86
- * * πŸ‡¬πŸ‡§: Replaces the element with new content.
87
- * * πŸ‡©πŸ‡ͺ: Ersetzt das Element durch neuen Inhalt.
66
+ * * Replaces the element with new content.
88
67
  * @param content
89
- * * πŸ‡¬πŸ‡§: The new content.
90
- * * πŸ‡©πŸ‡ͺ: Der neue Inhalt.
68
+ * * The new content.
91
69
  * @returns
92
- * * πŸ‡¬πŸ‡§: The current jBase instance.
93
- * * πŸ‡©πŸ‡ͺ: Die aktuelle jBase-Instanz.
70
+ * * The current jBase instance.
94
71
  */
95
72
  export declare function replaceWith(this: jBase, content: string | Node | jBase): jBase;
96
73
  /**
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.
74
+ * * Appends the selected elements to the end of a target element.
99
75
  * @param target
100
- * * πŸ‡¬πŸ‡§: CSS selector or DOM element.
101
- * * πŸ‡©πŸ‡ͺ: Der CSS-Selektor oder das DOM-Element.
76
+ * * CSS selector or DOM element.
102
77
  * @returns
103
- * * πŸ‡¬πŸ‡§: The current jBase instance.
104
- * * πŸ‡©πŸ‡ͺ: Die aktuelle jBase-Instanz.
78
+ * * The current jBase instance.
105
79
  */
106
80
  export declare function appendTo(this: jBase, target: string | Element): jBase;
107
81
  /**
108
- * * πŸ‡¬πŸ‡§: Prepends the selected elements to the beginning of a target element.
109
- * * πŸ‡©πŸ‡ͺ: FΓΌgt die aktuellen Elemente am Anfang des Ziel-Elements ein.
82
+ * * Prepends the selected elements to the beginning of a target element.
110
83
  * @param target
111
- * * πŸ‡¬πŸ‡§: CSS selector or DOM element.
112
- * * πŸ‡©πŸ‡ͺ: Der CSS-Selektor oder das DOM-Element.
84
+ * * CSS selector or DOM element.
113
85
  * @returns
114
- * * πŸ‡¬πŸ‡§: The current jBase instance.
115
- * * πŸ‡©πŸ‡ͺ: Die aktuelle jBase-Instanz.
86
+ * * The current jBase instance.
116
87
  */
117
88
  export declare function prependTo(this: jBase, target: string | Element): jBase;
118
89
  /**
119
- * * πŸ‡¬πŸ‡§: Inserts the selected elements immediately before the target element.
120
- * * πŸ‡©πŸ‡ͺ: FΓΌgt die aktuellen Elemente unmittelbar VOR dem Ziel-Element ein.
90
+ * * Inserts the selected elements immediately before the target element.
121
91
  * @param target
122
- * * πŸ‡¬πŸ‡§: CSS selector or DOM element.
123
- * * πŸ‡©πŸ‡ͺ: Der CSS-Selektor oder das DOM-Element.
92
+ * * CSS selector or DOM element.
124
93
  * @returns
125
- * * πŸ‡¬πŸ‡§: The current jBase instance.
126
- * * πŸ‡©πŸ‡ͺ: Die aktuelle jBase-Instanz.
94
+ * * The current jBase instance.
127
95
  */
128
96
  export declare function insertBefore(this: jBase, target: string | Element): jBase;
129
97
  /**
130
- * * πŸ‡¬πŸ‡§: Inserts the selected elements immediately after the target element.
131
- * * πŸ‡©πŸ‡ͺ: FΓΌgt die aktuellen Elemente unmittelbar NACH dem Ziel-Element ein.
98
+ * * Inserts the selected elements immediately after the target element.
132
99
  * @param target
133
- * * πŸ‡¬πŸ‡§: CSS selector or DOM element.
134
- * * πŸ‡©πŸ‡ͺ: Der CSS-Selektor oder das DOM-Element.
100
+ * * CSS selector or DOM element.
135
101
  * @returns
136
- * * πŸ‡¬πŸ‡§: The current jBase instance.
137
- * * πŸ‡©πŸ‡ͺ: Die aktuelle jBase-Instanz.
102
+ * * The current jBase instance.
138
103
  */
139
104
  export declare function insertAfter(this: jBase, target: string | Element): jBase;
140
105
  /**
141
- * * πŸ‡¬πŸ‡§: Wraps each selected element with the specified HTML structure.
142
- * * πŸ‡©πŸ‡ͺ: Umschließt jedes Element in der Auswahl mit der angegebenen HTML-Struktur.
106
+ * * Wraps each selected element with the specified HTML structure.
143
107
  * @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>`).
108
+ * * HTML string defining the wrapper (e.g., `<div class="box"></div>`).
146
109
  * @returns
147
- * * πŸ‡¬πŸ‡§: The current jBase instance.
148
- * * πŸ‡©πŸ‡ͺ: Die aktuelle jBase-Instanz.
110
+ * * The current jBase instance.
149
111
  */
150
112
  export declare function wrap(this: jBase, wrapperHtml: string): jBase;
151
113
  /**
152
- * * πŸ‡¬πŸ‡§: Removes the direct parent of the selected elements from the DOM.
153
- * * πŸ‡©πŸ‡ͺ: Entfernt das direkte Elternelement der ausgewΓ€hlten Elemente aus dem DOM.
114
+ * * Removes the direct parent of the selected elements from the DOM.
154
115
  * @returns
155
- * * πŸ‡¬πŸ‡§: The current jBase instance.
156
- * * πŸ‡©πŸ‡ͺ: Die aktuelle jBase-Instanz.
116
+ * * The current jBase instance.
157
117
  */
158
118
  export declare function unwrap(this: jBase): jBase;
159
119
  //# sourceMappingURL=manipulation.d.ts.map
@@ -1 +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"}
1
+ {"version":3,"file":"manipulation.d.ts","sourceRoot":"","sources":["../../../src/modules/dom/manipulation.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAEH,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AAgEnC;;;;GAIG;AACH,wBAAgB,MAAM,CAAC,IAAI,EAAE,KAAK,GAAG,KAAK,CAKzC;AAED;;;;GAIG;AACH,wBAAgB,KAAK,CAAC,IAAI,EAAE,KAAK,GAAG,KAAK,CAKxC;AAED;;;;GAIG;AACH,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,KAAK,GAAG,KAAK,CAWnD;AAED;;;;;;GAMG;AACH,wBAAgB,MAAM,CAAC,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,GAAG,IAAI,GAAG,KAAK,GAAG,KAAK,CAoBzE;AAED;;;;;;GAMG;AACH,wBAAgB,OAAO,CAAC,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,GAAG,IAAI,GAAG,KAAK,GAAG,KAAK,CAoB1E;AAED;;;;;;GAMG;AACH,wBAAgB,MAAM,CAAC,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,GAAG,IAAI,GAAG,KAAK,GAAG,KAAK,CAoBzE;AAED;;;;;;GAMG;AACH,wBAAgB,KAAK,CAAC,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,GAAG,IAAI,GAAG,KAAK,GAAG,KAAK,CAoBxE;AAED;;;;;;GAMG;AACH,wBAAgB,WAAW,CAAC,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,GAAG,IAAI,GAAG,KAAK,GAAG,KAAK,CAY9E;AAED;;;;;;GAMG;AACH,wBAAgB,QAAQ,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,GAAG,OAAO,GAAG,KAAK,CAarE;AAED;;;;;;GAMG;AACH,wBAAgB,SAAS,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,GAAG,OAAO,GAAG,KAAK,CAatE;AAED;;;;;;GAMG;AACH,wBAAgB,YAAY,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,GAAG,OAAO,GAAG,KAAK,CAazE;AAED;;;;;;GAMG;AACH,wBAAgB,WAAW,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,GAAG,OAAO,GAAG,KAAK,CAaxE;AAED;;;;;;GAMG;AACH,wBAAgB,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,GAAG,KAAK,CAc5D;AAED;;;;GAIG;AACH,wBAAgB,MAAM,CAAC,IAAI,EAAE,KAAK,GAAG,KAAK,CAmBzC"}
@@ -1,50 +1,39 @@
1
1
  /**
2
2
  * @file src/modules/dom/states.ts
3
- * @version 2.0.0
3
+ * @version 2.0.2
4
4
  * @since 2.0.0
5
5
  * @license GPL-3.0-or-later
6
6
  * @copyright Sven Minio 2026
7
7
  * @author Sven Minio <https://sven-minio.de>
8
8
  * @category DOM
9
9
  * @description
10
- * * πŸ‡¬πŸ‡§: Methods for checking element states (e.g., visibility, checked, disabled).
11
- * * πŸ‡©πŸ‡ͺ: Methoden zur PrΓΌfung von Element-ZustΓ€nden (z.B. Sichtbarkeit, checked, disabled).
10
+ * * Methods for checking element states (e.g., visibility, checked, disabled).
12
11
  * @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.
12
+ * * Depends on the core jBase class for type definitions.
15
13
  */
16
14
  import { jBase } from '../../core';
17
15
  /**
18
- * * πŸ‡¬πŸ‡§: Gets or sets the 'checked' state of checkboxes and radio buttons.
19
- * * πŸ‡©πŸ‡ͺ: Liest oder setzt den 'checked'-Status von Checkboxen und Radiobuttons.
16
+ * * Gets or sets the 'checked' state of checkboxes and radio buttons.
20
17
  * @param state
21
- * * πŸ‡¬πŸ‡§: (Optional) `true` to check, `false` to uncheck. If undefined, acts as a getter.
22
- * * πŸ‡©πŸ‡ͺ: (Optional) `true` zum Anhaken, `false` zum Deselektieren. Wenn nicht angegeben, wird gelesen.
18
+ * * (Optional) `true` to check, `false` to uncheck. If undefined, acts as a getter.
23
19
  * @returns
24
- * * πŸ‡¬πŸ‡§: Boolean (getter) or the current jBase instance (setter).
25
- * * πŸ‡©πŸ‡ͺ: Boolean (Getter) oder die aktuelle jBase-Instanz (Setter).
20
+ * * Boolean (getter) or the current jBase instance (setter).
26
21
  */
27
22
  export declare function checked(this: jBase, state?: boolean): boolean | jBase;
28
23
  /**
29
- * * πŸ‡¬πŸ‡§: Gets or sets the 'selected' state of `<option>` elements.
30
- * * πŸ‡©πŸ‡ͺ: Liest oder setzt den 'selected'-Status von `<option>`-Elementen.
24
+ * * Gets or sets the 'selected' state of `<option>` elements.
31
25
  * @param state
32
- * * πŸ‡¬πŸ‡§: (Optional) `true` to select, `false` to deselect. If undefined, acts as a getter.
33
- * * πŸ‡©πŸ‡ͺ: (Optional) `true` zum AuswΓ€hlen, `false` zum AbwΓ€hlen. Wenn nicht angegeben, wird gelesen.
26
+ * * (Optional) `true` to select, `false` to deselect. If undefined, acts as a getter.
34
27
  * @returns
35
- * * πŸ‡¬πŸ‡§: Boolean (getter) or the current jBase instance (setter).
36
- * * πŸ‡©πŸ‡ͺ: Boolean (Getter) oder die aktuelle jBase-Instanz (Setter).
28
+ * * Boolean (getter) or the current jBase instance (setter).
37
29
  */
38
30
  export declare function selected(this: jBase, state?: boolean): boolean | jBase;
39
31
  /**
40
- * * πŸ‡¬πŸ‡§: Enables or disables form fields and buttons. Additionally toggles the CSS class `.disabled`.
41
- * * πŸ‡©πŸ‡ͺ: Aktiviert oder deaktiviert Formularfelder und Buttons. Toggelt zusΓ€tzlich die CSS-Klasse `.disabled`.
32
+ * * Enables or disables form fields and buttons. Additionally toggles the CSS class `.disabled`.
42
33
  * @param state
43
- * * πŸ‡¬πŸ‡§: (Optional) `true` to disable, `false` to enable. If undefined, acts as a getter.
44
- * * πŸ‡©πŸ‡ͺ: (Optional) `true` zum Deaktivieren, `false` zum Aktivieren. Wenn nicht angegeben, wird gelesen.
34
+ * * (Optional) `true` to disable, `false` to enable. If undefined, acts as a getter.
45
35
  * @returns
46
- * * πŸ‡¬πŸ‡§: Boolean (getter) or the current jBase instance (setter).
47
- * * πŸ‡©πŸ‡ͺ: Boolean (Getter) oder die aktuelle jBase-Instanz (Setter).
36
+ * * Boolean (getter) or the current jBase instance (setter).
48
37
  */
49
38
  export declare function disabled(this: jBase, state?: boolean): boolean | jBase;
50
39
  //# sourceMappingURL=states.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"states.d.ts","sourceRoot":"","sources":["../../../src/modules/dom/states.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AAEnC;;;;;;;;;GASG;AACH,wBAAgB,OAAO,CAAC,IAAI,EAAE,KAAK,EAAE,KAAK,CAAC,EAAE,OAAO,GAAG,OAAO,GAAG,KAAK,CAUrE;AAED;;;;;;;;;GASG;AACH,wBAAgB,QAAQ,CAAC,IAAI,EAAE,KAAK,EAAE,KAAK,CAAC,EAAE,OAAO,GAAG,OAAO,GAAG,KAAK,CAUtE;AAED;;;;;;;;;GASG;AACH,wBAAgB,QAAQ,CAAC,IAAI,EAAE,KAAK,EAAE,KAAK,CAAC,EAAE,OAAO,GAAG,OAAO,GAAG,KAAK,CAetE"}
1
+ {"version":3,"file":"states.d.ts","sourceRoot":"","sources":["../../../src/modules/dom/states.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAEH,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AAEnC;;;;;;GAMG;AACH,wBAAgB,OAAO,CAAC,IAAI,EAAE,KAAK,EAAE,KAAK,CAAC,EAAE,OAAO,GAAG,OAAO,GAAG,KAAK,CAUrE;AAED;;;;;;GAMG;AACH,wBAAgB,QAAQ,CAAC,IAAI,EAAE,KAAK,EAAE,KAAK,CAAC,EAAE,OAAO,GAAG,OAAO,GAAG,KAAK,CAUtE;AAED;;;;;;GAMG;AACH,wBAAgB,QAAQ,CAAC,IAAI,EAAE,KAAK,EAAE,KAAK,CAAC,EAAE,OAAO,GAAG,OAAO,GAAG,KAAK,CAetE"}
@@ -1,246 +1,183 @@
1
1
  /**
2
2
  * @file src/modules/dom/traversal.ts
3
- * @version 2.0.0
3
+ * @version 2.0.2
4
4
  * @since 2.0.0
5
5
  * @license GPL-3.0-or-later
6
6
  * @copyright Sven Minio 2026
7
7
  * @author Sven Minio <https://sven-minio.de>
8
8
  * @category DOM
9
9
  * @description
10
- * * πŸ‡¬πŸ‡§: Methods for navigating the DOM tree (find, parent, children, siblings).
11
- * * πŸ‡©πŸ‡ͺ: Methoden zur Navigation im DOM-Baum (find, parent, children, siblings).
10
+ * * Methods for navigating the DOM tree (find, parent, children, siblings).
12
11
  * @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.
12
+ * * Depends on the core jBase class for type definitions.
15
13
  */
16
14
  import { jBase } from '../../core';
17
15
  /**
18
- * * πŸ‡¬πŸ‡§: Traverses the parents (heading toward the document root) of each element and finds the first element that matches the specified selector.
19
- * * πŸ‡©πŸ‡ͺ: DurchlΓ€uft die Elternelemente (in Richtung Document Root) jedes Elements und findet das erste Element, das dem angegebenen Selektor entspricht.
16
+ * * Traverses the parents (heading toward the document root) of each element and finds the first element that matches the specified selector.
20
17
  * @param selector
21
- * * πŸ‡¬πŸ‡§: A string containing a selector expression.
22
- * * πŸ‡©πŸ‡ͺ: Ein String, der einen Selektor-Ausdruck enthΓ€lt.
18
+ * * A string containing a selector expression.
23
19
  * @returns
24
- * * πŸ‡¬πŸ‡§: A new jBase instance containing the matched elements.
25
- * * πŸ‡©πŸ‡ͺ: Eine neue jBase-Instanz mit den gefundenen Elementen.
20
+ * * A new jBase instance containing the matched elements.
26
21
  */
27
22
  export declare function closest(this: jBase, selector: string): jBase;
28
23
  /**
29
- * * πŸ‡¬πŸ‡§: Gets the direct parent of each element in the current set. Deduplicates results.
30
- * * πŸ‡©πŸ‡ͺ: Gibt das direkte Elternelement jedes Elements in der aktuellen Auswahl zurΓΌck. Entfernt Duplikate.
24
+ * * Gets the direct parent of each element in the current set. Deduplicates results.
31
25
  * @returns
32
- * * πŸ‡¬πŸ‡§: A new jBase instance containing the parent elements.
33
- * * πŸ‡©πŸ‡ͺ: Eine neue jBase-Instanz mit den Elternelementen.
26
+ * * A new jBase instance containing the parent elements.
34
27
  */
35
28
  export declare function parent(this: jBase): jBase;
36
29
  /**
37
- * * πŸ‡¬πŸ‡§: Gets the direct children of each element in the set, optionally filtered by a selector.
38
- * * πŸ‡©πŸ‡ͺ: Gibt die direkten Kinder jedes Elements zurΓΌck, optional gefiltert durch einen Selektor.
30
+ * * Gets the direct children of each element in the set, optionally filtered by a selector.
39
31
  * @param selector
40
- * * πŸ‡¬πŸ‡§: (Optional) Filter selector.
41
- * * πŸ‡©πŸ‡ͺ: (Optional) Filter-Selektor.
32
+ * * (Optional) Filter selector.
42
33
  * @returns
43
- * * πŸ‡¬πŸ‡§: A new jBase instance containing the children.
44
- * * πŸ‡©πŸ‡ͺ: Eine neue jBase-Instanz mit den Kindern.
34
+ * * A new jBase instance containing the children.
45
35
  */
46
36
  export declare function children(this: jBase, selector?: string): jBase;
47
37
  /**
48
- * * πŸ‡¬πŸ‡§: Finds descendants (deep) that match the selector using `querySelectorAll`.
49
- * * πŸ‡©πŸ‡ͺ: Findet Nachfahren (tief), die dem Selektor entsprechen. Nutzt `querySelectorAll`.
38
+ * * Finds descendants (deep) that match the selector using `querySelectorAll`.
50
39
  * @param selector
51
- * * πŸ‡¬πŸ‡§: The CSS selector to search for.
52
- * * πŸ‡©πŸ‡ͺ: Der CSS-Selektor fΓΌr die Suche.
40
+ * * The CSS selector to search for.
53
41
  * @returns
54
- * * πŸ‡¬πŸ‡§: A new jBase instance with the found elements.
55
- * * πŸ‡©πŸ‡ͺ: Eine neue jBase-Instanz mit den gefundenen Elementen.
42
+ * * A new jBase instance with the found elements.
56
43
  */
57
44
  export declare function findAll(this: jBase, selector: string): jBase;
58
45
  /**
59
- * * πŸ‡¬πŸ‡§: Recursively gets ALL descendants (not just direct children).
60
- * * πŸ‡©πŸ‡ͺ: Gibt rekursiv ALLE Nachfahren zurΓΌck (nicht nur direkte Kinder).
46
+ * * Recursively gets ALL descendants (not just direct children).
61
47
  * @returns
62
- * * πŸ‡¬πŸ‡§: A new jBase instance with all descendants.
63
- * * πŸ‡©πŸ‡ͺ: Eine neue jBase-Instanz mit allen Nachfahren.
48
+ * * A new jBase instance with all descendants.
64
49
  */
65
50
  export declare function descendants(this: jBase): jBase;
66
51
  /**
67
- * * πŸ‡¬πŸ‡§: Gets all ancestors (parents, grandparents...) up to the root. Optionally filtered.
68
- * * πŸ‡©πŸ‡ͺ: Gibt alle Vorfahren (Eltern, Großeltern...) zurΓΌck bis zum Root-Element. Optional gefiltert.
52
+ * * Gets all ancestors (parents, grandparents...) up to the root. Optionally filtered.
69
53
  * @param selector
70
- * * πŸ‡¬πŸ‡§: (Optional) Filter selector for ancestors.
71
- * * πŸ‡©πŸ‡ͺ: (Optional) Selektor zum Filtern der Vorfahren.
54
+ * * (Optional) Filter selector for ancestors.
72
55
  * @returns
73
- * * πŸ‡¬πŸ‡§: A new jBase instance with the ancestors.
74
- * * πŸ‡©πŸ‡ͺ: Eine neue jBase-Instanz mit den Vorfahren.
56
+ * * A new jBase instance with the ancestors.
75
57
  */
76
58
  export declare function parents(this: jBase, selector?: string): jBase;
77
59
  /**
78
- * * πŸ‡¬πŸ‡§: Gets all ancestors UP TO (but not including) an element matching the selector.
79
- * * πŸ‡©πŸ‡ͺ: Gibt alle Vorfahren zurΓΌck, BIS (aber nicht einschließlich) ein Element dem Selektor entspricht.
60
+ * * Gets all ancestors UP TO (but not including) an element matching the selector.
80
61
  * @param selector
81
- * * πŸ‡¬πŸ‡§: The selector where traversal stops.
82
- * * πŸ‡©πŸ‡ͺ: Der Selektor, bei dem gestoppt wird.
62
+ * * The selector where traversal stops.
83
63
  * @param filter
84
- * * πŸ‡¬πŸ‡§: (Optional) Filter for the collected elements.
85
- * * πŸ‡©πŸ‡ͺ: (Optional) ZusΓ€tzlicher Filter fΓΌr die gefundenen Elemente.
64
+ * * (Optional) Filter for the collected elements.
86
65
  * @returns
87
- * * πŸ‡¬πŸ‡§: A new jBase instance.
88
- * * πŸ‡©πŸ‡ͺ: Eine neue jBase-Instanz.
66
+ * * A new jBase instance.
89
67
  */
90
68
  export declare function parentsUntil(this: jBase, selector: string, filter?: string): jBase;
91
69
  /**
92
- * * πŸ‡¬πŸ‡§: Recursively finds descendants but stops traversing a branch if `untilSelector` is met. Useful for finding nested elements without going too deep (e.g., nested forms).
93
- * * πŸ‡©πŸ‡ͺ: Sucht rekursiv nach Nachfahren, stoppt aber den "Tiefgang" in einem Zweig, sobald ein Element dem `untilSelector` entspricht.
70
+ * * Recursively finds descendants but stops traversing a branch if `untilSelector` is met. Useful for finding nested elements without going too deep (e.g., nested forms).
94
71
  * @param untilSelector
95
- * * πŸ‡¬πŸ‡§: The selector that stops recursion in a branch.
96
- * * πŸ‡©πŸ‡ͺ: Der Selektor, der die Rekursion in diesem Zweig stoppt.
72
+ * * The selector that stops recursion in a branch.
97
73
  * @param filter
98
- * * πŸ‡¬πŸ‡§: (Optional) Selector to filter collected elements.
99
- * * πŸ‡©πŸ‡ͺ: (Optional) Selektor, welche Elemente gesammelt werden sollen.
74
+ * * (Optional) Selector to filter collected elements.
100
75
  * @returns
101
- * * πŸ‡¬πŸ‡§: A new jBase instance.
102
- * * πŸ‡©πŸ‡ͺ: Eine neue jBase-Instanz.
76
+ * * A new jBase instance.
103
77
  */
104
78
  export declare function descendantsUntil(this: jBase, untilSelector: string, filter?: string): jBase;
105
79
  /**
106
- * * πŸ‡¬πŸ‡§: Gets the immediately following sibling.
107
- * * πŸ‡©πŸ‡ͺ: Holt das unmittelbar folgende Geschwisterelement.
80
+ * * Gets the immediately following sibling.
108
81
  * @param selector
109
- * * πŸ‡¬πŸ‡§: (Optional) Filter selector.
110
- * * πŸ‡©πŸ‡ͺ: (Optional) Filter-Selektor.
82
+ * * (Optional) Filter selector.
111
83
  * @returns
112
- * * πŸ‡¬πŸ‡§: A new jBase instance.
113
- * * πŸ‡©πŸ‡ͺ: Eine neue jBase-Instanz.
84
+ * * A new jBase instance.
114
85
  */
115
86
  export declare function next(this: jBase, selector?: string): jBase;
116
87
  /**
117
- * * πŸ‡¬πŸ‡§: Gets the immediately preceding sibling.
118
- * * πŸ‡©πŸ‡ͺ: Holt das unmittelbar vorhergehende Geschwisterelement.
88
+ * * Gets the immediately preceding sibling.
119
89
  * @param selector
120
- * * πŸ‡¬πŸ‡§: (Optional) Filter selector.
121
- * * πŸ‡©πŸ‡ͺ: (Optional) Filter-Selektor.
90
+ * * (Optional) Filter selector.
122
91
  * @returns
123
- * * πŸ‡¬πŸ‡§: A new jBase instance.
124
- * * πŸ‡©πŸ‡ͺ: Eine neue jBase-Instanz.
92
+ * * A new jBase instance.
125
93
  */
126
94
  export declare function prev(this: jBase, selector?: string): jBase;
127
95
  /**
128
- * * πŸ‡¬πŸ‡§: Alias for `next()`.
129
- * * πŸ‡©πŸ‡ͺ: Alias fΓΌr `next()`.
96
+ * * Alias for `next()`.
130
97
  */
131
98
  export declare function nextSibling(this: jBase, selector?: string): jBase;
132
99
  /**
133
- * * πŸ‡¬πŸ‡§: Alias for `prev()`.
134
- * * πŸ‡©πŸ‡ͺ: Alias fΓΌr `prev()`.
100
+ * * Alias for `prev()`.
135
101
  */
136
102
  export declare function prevSibling(this: jBase, selector?: string): jBase;
137
103
  /**
138
- * * πŸ‡¬πŸ‡§: Alias for `next()`.
139
- * * πŸ‡©πŸ‡ͺ: Alias fΓΌr `next()`.
104
+ * * Alias for `next()`.
140
105
  */
141
106
  export declare function sibling(this: jBase, selector?: string): jBase;
142
107
  /**
143
- * * πŸ‡¬πŸ‡§: Gets ALL following siblings.
144
- * * πŸ‡©πŸ‡ͺ: Holt ALLE nachfolgenden Geschwisterelemente.
108
+ * * Gets ALL following siblings.
145
109
  * @param selector
146
- * * πŸ‡¬πŸ‡§: (Optional) Filter selector.
147
- * * πŸ‡©πŸ‡ͺ: (Optional) Filter-Selektor.
110
+ * * (Optional) Filter selector.
148
111
  * @returns
149
- * * πŸ‡¬πŸ‡§: A new jBase instance.
150
- * * πŸ‡©πŸ‡ͺ: Eine neue jBase-Instanz.
112
+ * * A new jBase instance.
151
113
  */
152
114
  export declare function nextAll(this: jBase, selector?: string): jBase;
153
115
  /**
154
- * * πŸ‡¬πŸ‡§: Gets ALL preceding siblings.
155
- * * πŸ‡©πŸ‡ͺ: Holt ALLE vorhergehenden Geschwisterelemente.
116
+ * * Gets ALL preceding siblings.
156
117
  * @param selector
157
- * * πŸ‡¬πŸ‡§: (Optional) Filter selector.
158
- * * πŸ‡©πŸ‡ͺ: (Optional) Filter-Selektor.
118
+ * * (Optional) Filter selector.
159
119
  * @returns
160
- * * πŸ‡¬πŸ‡§: A new jBase instance.
161
- * * πŸ‡©πŸ‡ͺ: Eine neue jBase-Instanz.
120
+ * * A new jBase instance.
162
121
  */
163
122
  export declare function prevAll(this: jBase, selector?: string): jBase;
164
123
  /**
165
- * * πŸ‡¬πŸ‡§: Gets ALL siblings (previous and next), excluding itself.
166
- * * πŸ‡©πŸ‡ͺ: Holt ALLE Geschwisterelemente (vorherige UND nachfolgende), außer sich selbst.
124
+ * * Gets ALL siblings (previous and next), excluding itself.
167
125
  * @param selector
168
- * * πŸ‡¬πŸ‡§: (Optional) Filter selector.
169
- * * πŸ‡©πŸ‡ͺ: (Optional) Filter-Selektor.
126
+ * * (Optional) Filter selector.
170
127
  * @returns
171
- * * πŸ‡¬πŸ‡§: A new jBase instance.
172
- * * πŸ‡©πŸ‡ͺ: Eine neue jBase-Instanz.
128
+ * * A new jBase instance.
173
129
  */
174
130
  export declare function siblings(this: jBase, selector?: string): jBase;
175
131
  /**
176
- * * πŸ‡¬πŸ‡§: Gets all following siblings UNTIL a selector is met (exclusive).
177
- * * πŸ‡©πŸ‡ͺ: Holt alle nachfolgenden Elemente BIS ein Selektor zutrifft (exklusive).
132
+ * * Gets all following siblings UNTIL a selector is met (exclusive).
178
133
  * @param untilSelector
179
- * * πŸ‡¬πŸ‡§: The selector that stops the search.
180
- * * πŸ‡©πŸ‡ͺ: Der Selektor, der die Suche stoppt.
134
+ * * The selector that stops the search.
181
135
  * @param filter
182
- * * πŸ‡¬πŸ‡§: (Optional) Filter for the found elements.
183
- * * πŸ‡©πŸ‡ͺ: (Optional) Filter fΓΌr die gefundenen Elemente.
136
+ * * (Optional) Filter for the found elements.
184
137
  * @returns
185
- * * πŸ‡¬πŸ‡§: A new jBase instance.
186
- * * πŸ‡©πŸ‡ͺ: Eine neue jBase-Instanz.
138
+ * * A new jBase instance.
187
139
  */
188
140
  export declare function nextUntil(this: jBase, untilSelector: string, filter?: string): jBase;
189
141
  /**
190
- * * πŸ‡¬πŸ‡§: Gets all preceding siblings UNTIL a selector is met (exclusive).
191
- * * πŸ‡©πŸ‡ͺ: Holt alle vorhergehenden Elemente BIS ein Selektor zutrifft (exklusive).
142
+ * * Gets all preceding siblings UNTIL a selector is met (exclusive).
192
143
  * @param untilSelector
193
- * * πŸ‡¬πŸ‡§: The selector that stops the search.
194
- * * πŸ‡©πŸ‡ͺ: Der Selektor, der die Suche stoppt.
144
+ * * The selector that stops the search.
195
145
  * @param filter
196
- * * πŸ‡¬πŸ‡§: (Optional) Filter for the found elements.
197
- * * πŸ‡©πŸ‡ͺ: (Optional) Filter fΓΌr die gefundenen Elemente.
146
+ * * (Optional) Filter for the found elements.
198
147
  * @returns
199
- * * πŸ‡¬πŸ‡§: A new jBase instance.
200
- * * πŸ‡©πŸ‡ͺ: Eine neue jBase-Instanz.
148
+ * * A new jBase instance.
201
149
  */
202
150
  export declare function prevUntil(this: jBase, untilSelector: string, filter?: string): jBase;
203
151
  /**
204
- * * πŸ‡¬πŸ‡§: Reduces the set to the element at the specified index. Supports negative indices.
205
- * * πŸ‡©πŸ‡ͺ: Reduziert das Set auf das Element am angegebenen Index. UnterstΓΌtzt negative Indizes.
152
+ * * Reduces the set to the element at the specified index. Supports negative indices.
206
153
  * @param index
207
- * * πŸ‡¬πŸ‡§: The position (0-based). Negative values count from the end.
208
- * * πŸ‡©πŸ‡ͺ: Die Position (0-basiert). Negative Werte zΓ€hlen vom Ende.
154
+ * * The position (0-based). Negative values count from the end.
209
155
  * @returns
210
- * * πŸ‡¬πŸ‡§: A new jBase instance containing the single element (or empty).
211
- * * πŸ‡©πŸ‡ͺ: Eine neue jBase-Instanz mit dem einzelnen Element (oder leer).
156
+ * * A new jBase instance containing the single element (or empty).
212
157
  */
213
158
  export declare function eq(this: jBase, index: number): jBase;
214
159
  /**
215
- * * πŸ‡¬πŸ‡§: Reduces the set to the first element.
216
- * * πŸ‡©πŸ‡ͺ: Reduziert das Set auf das erste Element.
160
+ * * Reduces the set to the first element.
217
161
  */
218
162
  export declare function first(this: jBase): jBase;
219
163
  /**
220
- * * πŸ‡¬πŸ‡§: Reduces the set to the last element.
221
- * * πŸ‡©πŸ‡ͺ: Reduziert das Set auf das letzte Element.
164
+ * * Reduces the set to the last element.
222
165
  */
223
166
  export declare function last(this: jBase): jBase;
224
167
  /**
225
- * * πŸ‡¬πŸ‡§: Filters elements based on a selector or a function.
226
- * * πŸ‡©πŸ‡ͺ: Filtert die Elemente basierend auf einem Selektor oder einer Funktion.
168
+ * * Filters elements based on a selector or a function.
227
169
  * @param selectorOrFn
228
- * * πŸ‡¬πŸ‡§: CSS selector string or filter function.
229
- * * πŸ‡©πŸ‡ͺ: CSS-Selektor (String) oder Filter-Funktion.
170
+ * * CSS selector string or filter function.
230
171
  * @returns
231
- * * πŸ‡¬πŸ‡§: A new jBase instance with filtered elements.
232
- * * πŸ‡©πŸ‡ͺ: Eine neue jBase-Instanz mit den gefilterten Elementen.
172
+ * * A new jBase instance with filtered elements.
233
173
  */
234
174
  export declare function filterBy(this: jBase, selectorOrFn: string | ((index: number, element: Element) => boolean)): jBase;
235
175
  /**
236
- * * πŸ‡¬πŸ‡§: Removes elements from the set that match the selector or function (Inverse of filterBy).
237
- * * πŸ‡©πŸ‡ͺ: Entfernt Elemente aus dem Set, die dem Selektor oder der Funktion entsprechen (Das Gegenteil von filterBy).
176
+ * * Removes elements from the set that match the selector or function (Inverse of filterBy).
238
177
  * @param selectorOrFn
239
- * * πŸ‡¬πŸ‡§: CSS selector string or filter function.
240
- * * πŸ‡©πŸ‡ͺ: CSS-Selektor (String) oder Filter-Funktion.
178
+ * * CSS selector string or filter function.
241
179
  * @returns
242
- * * πŸ‡¬πŸ‡§: A new jBase instance with remaining elements.
243
- * * πŸ‡©πŸ‡ͺ: Eine neue jBase-Instanz mit den verbleibenden Elementen.
180
+ * * A new jBase instance with remaining elements.
244
181
  */
245
182
  export declare function not(this: jBase, selectorOrFn: string | ((index: number, element: Element) => boolean)): jBase;
246
183
  //# sourceMappingURL=traversal.d.ts.map