@nhealth/nutils 0.0.2 → 0.0.3
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/module.json +1 -1
- package/dist/runtime/app/components/ComponentShell.vue +1 -2
- package/dist/runtime/app/components/ConfirmModal.vue +1 -1
- package/dist/runtime/app/components/LiveIndicator.vue +1 -1
- package/dist/runtime/app/components/StatCard.vue +1 -1
- package/dist/runtime/app/components/StatCounter.vue +1 -1
- package/dist/runtime/app/composables/useConfirmModalState.d.ts +1 -0
- package/dist/runtime/app/composables/useConfirmModalState.js +1 -0
- package/package.json +1 -1
package/dist/module.json
CHANGED
|
@@ -35,8 +35,7 @@
|
|
|
35
35
|
</template>
|
|
36
36
|
|
|
37
37
|
<script setup>
|
|
38
|
-
import { computed } from "
|
|
39
|
-
import { useComponentRouter } from "#imports";
|
|
38
|
+
import { computed, useComponentRouter } from "#imports";
|
|
40
39
|
const props = defineProps({
|
|
41
40
|
orientation: { type: String, required: false, default: "horizontal" },
|
|
42
41
|
items: { type: Array, required: false },
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
</template>
|
|
115
115
|
|
|
116
116
|
<script setup>
|
|
117
|
-
import { computed } from "
|
|
117
|
+
import { computed, useConfirmModalState, useConfirmModalActions } from "#imports";
|
|
118
118
|
const state = useConfirmModalState();
|
|
119
119
|
const actions = useConfirmModalActions();
|
|
120
120
|
const opts = computed(() => {
|