@y14e/roving-tabindex 3.1.8 → 3.1.9

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
@@ -13,11 +13,11 @@ npm i @y14e/roving-tabindex
13
13
  import { createRovingTabIndex } from '@y14e/roving-tabindex';
14
14
 
15
15
  // CDNs
16
- import { createRovingTabIndex } from 'https://esm.sh/@y14e/roving-tabindex@3.1.8';
16
+ import { createRovingTabIndex } from 'https://esm.sh/@y14e/roving-tabindex@3.1.9';
17
17
  // or
18
- import { createRovingTabIndex } from 'https://cdn.jsdelivr.net/npm/@y14e/roving-tabindex@3.1.8/+esm';
18
+ import { createRovingTabIndex } from 'https://cdn.jsdelivr.net/npm/@y14e/roving-tabindex@3.1.9/+esm';
19
19
  // or
20
- import { createRovingTabIndex } from 'https://esm.unpkg.com/@y14e/roving-tabindex@3.1.8';
20
+ import { createRovingTabIndex } from 'https://esm.unpkg.com/@y14e/roving-tabindex@3.1.9';
21
21
  ```
22
22
 
23
23
  ## 📦 APIs
@@ -534,7 +534,7 @@ var RovingTabIndex = class _RovingTabIndex {
534
534
  * Lightweight roving tabindex utility with fully focus management.
535
535
  * Designed for accessible menus, tabs, toolbars, and composite widgets.
536
536
  *
537
- * @version 3.1.8
537
+ * @version 3.1.9
538
538
  * @author Yusuke Kamiyamane
539
539
  * @license MIT
540
540
  * @copyright Copyright (c) Yusuke Kamiyamane
@@ -532,7 +532,7 @@ var RovingTabIndex = class _RovingTabIndex {
532
532
  * Lightweight roving tabindex utility with fully focus management.
533
533
  * Designed for accessible menus, tabs, toolbars, and composite widgets.
534
534
  *
535
- * @version 3.1.8
535
+ * @version 3.1.9
536
536
  * @author Yusuke Kamiyamane
537
537
  * @license MIT
538
538
  * @copyright Copyright (c) Yusuke Kamiyamane
package/dist/index.cjs CHANGED
@@ -250,7 +250,7 @@ var RovingTabIndex = class _RovingTabIndex {
250
250
  * Lightweight roving tabindex utility with fully focus management.
251
251
  * Designed for accessible menus, tabs, toolbars, and composite widgets.
252
252
  *
253
- * @version 3.1.8
253
+ * @version 3.1.9
254
254
  * @author Yusuke Kamiyamane
255
255
  * @license MIT
256
256
  * @copyright Copyright (c) Yusuke Kamiyamane
package/dist/index.d.cts CHANGED
@@ -3,7 +3,7 @@
3
3
  * Lightweight roving tabindex utility with fully focus management.
4
4
  * Designed for accessible menus, tabs, toolbars, and composite widgets.
5
5
  *
6
- * @version 3.1.8
6
+ * @version 3.1.9
7
7
  * @author Yusuke Kamiyamane
8
8
  * @license MIT
9
9
  * @copyright Copyright (c) Yusuke Kamiyamane
@@ -20,4 +20,4 @@ interface RovingTabIndexOptions {
20
20
  }
21
21
  declare function createRovingTabIndex(container: Element, options?: Partial<RovingTabIndexOptions>): () => void;
22
22
 
23
- export { createRovingTabIndex };
23
+ export { type RovingTabIndexOptions, createRovingTabIndex };
package/dist/index.d.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  * Lightweight roving tabindex utility with fully focus management.
4
4
  * Designed for accessible menus, tabs, toolbars, and composite widgets.
5
5
  *
6
- * @version 3.1.8
6
+ * @version 3.1.9
7
7
  * @author Yusuke Kamiyamane
8
8
  * @license MIT
9
9
  * @copyright Copyright (c) Yusuke Kamiyamane
@@ -20,4 +20,4 @@ interface RovingTabIndexOptions {
20
20
  }
21
21
  declare function createRovingTabIndex(container: Element, options?: Partial<RovingTabIndexOptions>): () => void;
22
22
 
23
- export { createRovingTabIndex };
23
+ export { type RovingTabIndexOptions, createRovingTabIndex };
package/dist/index.js CHANGED
@@ -248,7 +248,7 @@ var RovingTabIndex = class _RovingTabIndex {
248
248
  * Lightweight roving tabindex utility with fully focus management.
249
249
  * Designed for accessible menus, tabs, toolbars, and composite widgets.
250
250
  *
251
- * @version 3.1.8
251
+ * @version 3.1.9
252
252
  * @author Yusuke Kamiyamane
253
253
  * @license MIT
254
254
  * @copyright Copyright (c) Yusuke Kamiyamane
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@y14e/roving-tabindex",
3
- "version": "3.1.8",
3
+ "version": "3.1.9",
4
4
  "description": "Lightweight roving tabindex utility with fully focus management",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",