@aegisjsproject/callback-registry 1.0.1 → 1.0.3
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 +16 -0
- package/callbackRegistry.cjs +782 -256
- package/callbackRegistry.mjs +1 -1
- package/callbackRegistry.mjs.map +1 -1
- package/callbacks.cjs +583 -0
- package/callbacks.js +81 -0
- package/events.js +442 -107
- package/package.json +5 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [v1.0.3] - 2025-09-29
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- Add `onCommand` to handle `CommandEvent`s
|
|
14
|
+
- Add `FUNCS.ui.open` and `FUNCS.ui.close` for `<details>` elements
|
|
15
|
+
- Add `FUNCS.ui.reques*tFullscreen` for requesting, exiting, and toggling fullscreen
|
|
16
|
+
|
|
17
|
+
## [v1.0.2] - 2024-11-22
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
- Add inviividual event constant/attribute exports
|
|
21
|
+
- Add support for `AbortSignal`s and `AbortController`s
|
|
22
|
+
- Add `on()` function for more conventient event handling, similar to `addEventListener()`
|
|
23
|
+
- Add new pre-defined handlers (e.g. `FUNCS.ui.close`)
|
|
24
|
+
- Local testing page in repo, excluded from published package
|
|
25
|
+
|
|
10
26
|
## [v1.0.1] - 2024-11-17
|
|
11
27
|
|
|
12
28
|
### Added
|