@ramstack/alpinegear-hotkey 1.2.4 → 1.3.0

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
@@ -194,6 +194,11 @@ of any element, running a callback when the element is removed from the DOM.
194
194
  **[@ramstack/alpinegear-router](https://www.npmjs.com/package/@ramstack/alpinegear-router)** ([README](https://github.com/rameel/ramstack.alpinegear.js/tree/main/src/plugins/router))<br>
195
195
  Provides the `x-router` and `x-route` directives, which enable client-side navigation and routing functionality within your Alpine.js application.
196
196
 
197
+ **[@ramstack/alpinegear-dialog](https://www.npmjs.com/package/@ramstack/alpinegear-dialog)** ([README](https://github.com/rameel/ramstack.alpinegear.js/tree/main/src/plugins/dialog))<br>
198
+ Provides a headless dialog directive for Alpine.js based on the native HTML `<dialog>` element.
199
+ It supports declarative composition, value-based close semantics, and both modal and non-modal dialogs,
200
+ with optional Promise-based imperative control.
201
+
197
202
 
198
203
  ## Contributions
199
204
  Bug reports and contributions are welcome.
@@ -140,4 +140,4 @@ function plugin({ directive }) {
140
140
  });
141
141
  }
142
142
 
143
- export { plugin as hotkey };
143
+ export { plugin as hotkey };
@@ -145,4 +145,4 @@
145
145
 
146
146
  document.addEventListener("alpine:init", () => { Alpine.plugin(plugin); });
147
147
 
148
- })();
148
+ })();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ramstack/alpinegear-hotkey",
3
- "version": "1.2.4",
3
+ "version": "1.3.0",
4
4
  "description": "@ramstack/alpinegear-hotkey provides 'x-hotkey' Alpine.js directive, allowing easily handle keyboard shortcuts.",
5
5
  "author": "Rameel Burhan",
6
6
  "license": "MIT",