vanilla-aria-modals 1.0.0 → 1.0.2

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/CHANGELOG.md ADDED
@@ -0,0 +1,15 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ ## [1.0.2] - 2026-01-23
6
+ ### Added
7
+ - Updated `package.json` keywords to improve discoverability and better reflect modal and accessibility features.
8
+
9
+ ## [1.0.1] - 2026-01-23
10
+ ### Fixed
11
+ - Updated installation instructions for README
12
+
13
+ ## [1.0.0] - 2026-01-23
14
+ ### Added
15
+ - Initial release
package/README.md CHANGED
@@ -13,7 +13,7 @@ It supports a dynamic number of modals and events. In SPAs or dynamic interfaces
13
13
  ## Set up
14
14
 
15
15
  ```js
16
- import ModalHandler from './ModalHandler';
16
+ import ModalHandler from 'vanilla-aria-modals';
17
17
  const modalHandler = new ModalHandler();
18
18
  ```
19
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vanilla-aria-modals",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Framework-agnostic utility for managing accessibility in modals or modal-like UIs, including modal stacking, focus management, and closing via Escape key or outside click.",
5
5
  "main": "src/ModalHandler.js",
6
6
  "scripts": {
@@ -14,14 +14,18 @@
14
14
  "modal",
15
15
  "accessibility",
16
16
  "aria",
17
- "focus-trapping",
17
+ "trap-focus",
18
18
  "keyboard",
19
19
  "dialog",
20
20
  "a11y",
21
21
  "vanilla-js",
22
22
  "ui",
23
23
  "frontend",
24
- "javascript"
24
+ "javascript",
25
+ "keyboard-navigation",
26
+ "modal-manager",
27
+ "focus-management",
28
+ "event-handling"
25
29
  ],
26
30
  "author": "Angel Valentino <angelvalentino294@gmail.com> (https://angelvalentino.dev)",
27
31
  "license": "ISC",