power-focusable 2.0.0 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,6 +1,9 @@
1
1
  # Power Focusable
2
2
 
3
- High-precision focus management utility with shadow DOM support. Handles complex focus rules.
3
+ High-precision focus management utility with shadow DOM support. Handles complex focus rules including tabindex ordering, radio groups, etc.
4
+
5
+ > [!NOTE]
6
+ > Supports shadow DOM traversal via the composed tree. Only open shadow roots are included; closed shadow roots are not accessible.
4
7
 
5
8
  ## Install
6
9
 
package/dist/index.cjs CHANGED
@@ -190,9 +190,9 @@ function getRelativeFocusable(container, offset = 0, options) {
190
190
  /**
191
191
  * Power Focusable
192
192
  * High-precision focus management utility with shadow DOM support.
193
- * Handles complex focus rules.
193
+ * Handles complex focus rules including tabindex ordering, radio groups, etc.
194
194
  *
195
- * @version 2.0.0
195
+ * @version 2.0.1
196
196
  * @author Yusuke Kamiyamane
197
197
  * @license MIT
198
198
  * @copyright Copyright (c) Yusuke Kamiyamane
package/dist/index.d.cts CHANGED
@@ -1,9 +1,9 @@
1
1
  /**
2
2
  * Power Focusable
3
3
  * High-precision focus management utility with shadow DOM support.
4
- * Handles complex focus rules.
4
+ * Handles complex focus rules including tabindex ordering, radio groups, etc.
5
5
  *
6
- * @version 2.0.0
6
+ * @version 2.0.1
7
7
  * @author Yusuke Kamiyamane
8
8
  * @license MIT
9
9
  * @copyright Copyright (c) Yusuke Kamiyamane
package/dist/index.d.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  /**
2
2
  * Power Focusable
3
3
  * High-precision focus management utility with shadow DOM support.
4
- * Handles complex focus rules.
4
+ * Handles complex focus rules including tabindex ordering, radio groups, etc.
5
5
  *
6
- * @version 2.0.0
6
+ * @version 2.0.1
7
7
  * @author Yusuke Kamiyamane
8
8
  * @license MIT
9
9
  * @copyright Copyright (c) Yusuke Kamiyamane
package/dist/index.js CHANGED
@@ -188,9 +188,9 @@ function getRelativeFocusable(container, offset = 0, options) {
188
188
  /**
189
189
  * Power Focusable
190
190
  * High-precision focus management utility with shadow DOM support.
191
- * Handles complex focus rules.
191
+ * Handles complex focus rules including tabindex ordering, radio groups, etc.
192
192
  *
193
- * @version 2.0.0
193
+ * @version 2.0.1
194
194
  * @author Yusuke Kamiyamane
195
195
  * @license MIT
196
196
  * @copyright Copyright (c) Yusuke Kamiyamane
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "power-focusable",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "High-precision focus management utility with shadow DOM support",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",