@zap-wunschlachen/wl-shared-components 1.0.14 → 1.0.16

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zap-wunschlachen/wl-shared-components",
3
- "version": "1.0.14",
3
+ "version": "1.0.16",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -47,7 +47,7 @@
47
47
 
48
48
  <script setup lang="ts">
49
49
  import { computed } from "vue";
50
- import { siteColors } from "@/utils/index";
50
+ import { siteColors } from "../../utils/index";
51
51
  import "./Loader.css";
52
52
 
53
53
  const props = defineProps({
@@ -20,3 +20,4 @@ export { default as EditField } from './EditField/EditField.vue';
20
20
  export { default as Modal } from './Modal/Modal.vue';
21
21
  export { default as AppointmentCard } from './Appointment/Card/Card.vue';
22
22
  export { default as AdvanceAppointmentIcons } from './Icons/AdvanceAppointments.vue';
23
+ export { default as Loader } from './Loader/Loader.vue';
package/src/index.ts CHANGED
@@ -29,3 +29,6 @@ export const WlSharedComponents = { install };
29
29
 
30
30
  // Export each individual component
31
31
  export * from './components';
32
+
33
+ // Export utilities
34
+ export * from './utils';