@aerogel/core 0.1.1-next.7fce7b4ce55cfb9c329a7746f571015aedc8e3bd → 0.1.1-next.9bd06e629f34098543a54bdb87e8996767876d42
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/dist/aerogel-core.d.ts +30 -8
- package/dist/aerogel-core.js +174 -168
- package/dist/aerogel-core.js.map +1 -1
- package/package.json +1 -1
- package/src/ui/index.ts +11 -1
package/package.json
CHANGED
package/src/ui/index.ts
CHANGED
|
@@ -17,7 +17,17 @@ const services = { $ui: UI };
|
|
|
17
17
|
export * from './UI';
|
|
18
18
|
export * from './utils';
|
|
19
19
|
export { default as UI } from './UI';
|
|
20
|
-
export {
|
|
20
|
+
export {
|
|
21
|
+
useModal,
|
|
22
|
+
createModal,
|
|
23
|
+
showModal,
|
|
24
|
+
closeModal,
|
|
25
|
+
modals,
|
|
26
|
+
ModalComponent,
|
|
27
|
+
ModalsPortal,
|
|
28
|
+
type GetModalProps,
|
|
29
|
+
type GetModalResponse,
|
|
30
|
+
} from '@noeldemartin/vue-modals';
|
|
21
31
|
|
|
22
32
|
export type UIServices = typeof services;
|
|
23
33
|
|