vanilla-aria-modals 1.1.4 → 1.1.5

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 CHANGED
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. Dates use I
4
4
 
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/).
6
6
 
7
+ ## [1.1.5] - 2026-02-19
8
+ ### Fixed
9
+ - Remove the unnecessary `isToggle` parameter type definition from the `.d.ts` file.
10
+
7
11
  ## [1.1.4] - 2026-02-16
8
12
  ### Fixed
9
13
  - Improve overlayless modal close logic. Removed the `isToggle` parameter from `removeA11yEvents` as it is no longer needed. The logic now works more smoothly, only unregisters modals in `removeA11yEvents` instead of the close handler wrapper, and preserves the overlayless modal bypass behavior
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vanilla-aria-modals",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
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": {
@@ -30,7 +30,6 @@ export default class ModalHandler {
30
30
 
31
31
  removeA11yEvents(options: {
32
32
  modalKey: string;
33
- isToggle?: boolean
34
33
  }): void;
35
34
 
36
35
  addFocus(options: {