power-focusable 4.3.23 → 4.3.24
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 +3 -3
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -5
package/README.md
CHANGED
|
@@ -24,11 +24,11 @@ import {
|
|
|
24
24
|
} from 'power-focusable';
|
|
25
25
|
|
|
26
26
|
// CDNs
|
|
27
|
-
import { ... } 'https://esm.sh/power-focusable@4.3.
|
|
27
|
+
import { ... } 'https://esm.sh/power-focusable@4.3.24';
|
|
28
28
|
// or
|
|
29
|
-
import { ... } 'https://cdn.jsdelivr.net/npm/power-focusable@4.3.
|
|
29
|
+
import { ... } 'https://cdn.jsdelivr.net/npm/power-focusable@4.3.24/+esm';
|
|
30
30
|
// or
|
|
31
|
-
import { ... } 'https://esm.unpkg.com/power-focusable@4.3.
|
|
31
|
+
import { ... } 'https://esm.unpkg.com/power-focusable@4.3.24';
|
|
32
32
|
```
|
|
33
33
|
|
|
34
34
|
## 🪄 Options
|
package/dist/index.cjs
CHANGED
|
@@ -494,7 +494,7 @@ function isUngroupedRadio(element) {
|
|
|
494
494
|
* High-precision focus management utility with full composed tree support.
|
|
495
495
|
* Handles complex focus rules including tabindex ordering, radio groups, inert.
|
|
496
496
|
*
|
|
497
|
-
* @version 4.3.
|
|
497
|
+
* @version 4.3.24
|
|
498
498
|
* @author Yusuke Kamiyamane
|
|
499
499
|
* @license MIT
|
|
500
500
|
* @copyright Copyright (c) Yusuke Kamiyamane
|
package/dist/index.d.cts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* High-precision focus management utility with full composed tree support.
|
|
4
4
|
* Handles complex focus rules including tabindex ordering, radio groups, inert.
|
|
5
5
|
*
|
|
6
|
-
* @version 4.3.
|
|
6
|
+
* @version 4.3.24
|
|
7
7
|
* @author Yusuke Kamiyamane
|
|
8
8
|
* @license MIT
|
|
9
9
|
* @copyright Copyright (c) Yusuke Kamiyamane
|
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* High-precision focus management utility with full composed tree support.
|
|
4
4
|
* Handles complex focus rules including tabindex ordering, radio groups, inert.
|
|
5
5
|
*
|
|
6
|
-
* @version 4.3.
|
|
6
|
+
* @version 4.3.24
|
|
7
7
|
* @author Yusuke Kamiyamane
|
|
8
8
|
* @license MIT
|
|
9
9
|
* @copyright Copyright (c) Yusuke Kamiyamane
|
package/dist/index.js
CHANGED
|
@@ -492,7 +492,7 @@ function isUngroupedRadio(element) {
|
|
|
492
492
|
* High-precision focus management utility with full composed tree support.
|
|
493
493
|
* Handles complex focus rules including tabindex ordering, radio groups, inert.
|
|
494
494
|
*
|
|
495
|
-
* @version 4.3.
|
|
495
|
+
* @version 4.3.24
|
|
496
496
|
* @author Yusuke Kamiyamane
|
|
497
497
|
* @license MIT
|
|
498
498
|
* @copyright Copyright (c) Yusuke Kamiyamane
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "power-focusable",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.24",
|
|
4
4
|
"description": "High-precision focus management utility with full composed tree support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -20,7 +20,6 @@
|
|
|
20
20
|
],
|
|
21
21
|
"scripts": {
|
|
22
22
|
"build": "tsup",
|
|
23
|
-
"test": "vitest run",
|
|
24
23
|
"prepublishOnly": "npm run build",
|
|
25
24
|
"lint": "tsc --noEmit"
|
|
26
25
|
},
|
|
@@ -52,9 +51,6 @@
|
|
|
52
51
|
"typescript": "^5.6.0",
|
|
53
52
|
"vitest": "^4.1.5"
|
|
54
53
|
},
|
|
55
|
-
"overrides": {
|
|
56
|
-
"@emnapi/wasi-threads": "1.2.2"
|
|
57
|
-
},
|
|
58
54
|
"engines": {
|
|
59
55
|
"node": ">=18"
|
|
60
56
|
}
|