@aegisjsproject/callback-registry 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 +18 -0
- package/callbackRegistry.cjs +749 -259
- package/callbackRegistry.mjs +2 -509
- package/callbackRegistry.mjs.map +1 -0
- package/callbacks.cjs +551 -3
- package/callbacks.js +54 -3
- package/events.js +439 -107
- package/package.json +7 -5
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [v1.0.2] - 2024-11-22
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- Add inviividual event constant/attribute exports
|
|
14
|
+
- Add support for `AbortSignal`s and `AbortController`s
|
|
15
|
+
- Add `on()` function for more conventient event handling, similar to `addEventListener()`
|
|
16
|
+
- Add new pre-defined handlers (e.g. `FUNCS.ui.close`)
|
|
17
|
+
- Local testing page in repo, excluded from published package
|
|
18
|
+
|
|
19
|
+
## [v1.0.1] - 2024-11-17
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
- Add sourcemap for minified main export module
|
|
23
|
+
|
|
24
|
+
### Fixed
|
|
25
|
+
- Fix registration for `back` and `forward` callbacks
|
|
26
|
+
- Fix eslint config
|
|
27
|
+
|
|
10
28
|
## [v1.0.0] - 2024-11-16
|
|
11
29
|
|
|
12
30
|
Initial Release
|