Skip to content

Commit

Permalink
v4.18.1: vfModalRef
Browse files Browse the repository at this point in the history
  • Loading branch information
fergusean committed Nov 20, 2024
1 parent efc6046 commit 2acf79e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@signal24/vue-foundation",
"type": "module",
"version": "4.18.0",
"version": "4.18.1",
"description": "Common components, directives, and helpers for Vue 3 apps",
"module": "./dist/vue-foundation.es.js",
"exports": {
Expand Down
1 change: 1 addition & 0 deletions src/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import VfModal from './vf-modal.vue';
import VfSmartSelect from './vf-smart-select.vue';

export * from './alert-helpers';
export * from './modal-helpers';
export * from './overlay-container';
export * from './toast-helpers';

Expand Down
7 changes: 7 additions & 0 deletions src/components/modal-helpers.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { ref } from 'vue';

import type VfModal from './vf-modal.vue';

export function vfModalRef() {
return ref<InstanceType<typeof VfModal>>();
}

0 comments on commit 2acf79e

Please sign in to comment.