free-astro-components 1.0.9 → 1.0.10

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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "A collection of free Astro components",
4
4
  "author": "Denis Ventura",
5
5
  "type": "module",
6
- "version": "1.0.9",
6
+ "version": "1.0.10",
7
7
  "exports": {
8
8
  ".": {
9
9
  "import": {
@@ -57,3 +57,11 @@ export const ModalBody: ModalBody
57
57
  // ModalFooter component
58
58
  export type ModalFooter = typeof import('../index.js').ModalFooter
59
59
  export const ModalFooter: ModalFooter
60
+
61
+ // OpenModal function
62
+ export type OpenModal = typeof import('../index.js').openModal
63
+ export const OpenModal: OpenModal
64
+
65
+ // CloseModal function
66
+ export type CloseModal = typeof import('../index.js').closeModal
67
+ export const CloseModal: CloseModal