@zap-wunschlachen/wl-shared-components 1.0.41 → 1.0.42
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 +1 -1
- package/src/components/Laboratory/AppointmentCard/AppointmentCard.vue +1 -1
- package/src/components/Laboratory/ChatBoxImage/ChatBoxImage.vue +1 -1
- package/src/components/Laboratory/ChatNotification/ChatNotification.vue +1 -1
- package/src/components/Laboratory/DocumentCard/DocumentCard.vue +1 -1
- package/src/components/Laboratory/DocumentCard/DocumentCardItem.vue +1 -1
- package/src/components/Laboratory/ProgressLinear/ProgressLinear.vue +3 -3
- package/src/components/Laboratory/TicketCard/TicketCard.vue +3 -3
- package/src/components/Laboratory/TimeLine/Timeline.vue +1 -1
package/package.json
CHANGED
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
<script setup>
|
|
98
98
|
import { defineProps, defineEmits, computed } from 'vue';
|
|
99
99
|
import TagLabel from '../TagLabel/TagLabel.vue';
|
|
100
|
-
import Button from '
|
|
100
|
+
import Button from '../../Button/Button.vue';
|
|
101
101
|
|
|
102
102
|
// Define event emitters with the specific format like "click:start", "click:cancel", etc.
|
|
103
103
|
const emit = defineEmits([
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
<script setup>
|
|
25
25
|
import './DocumentCard.css';
|
|
26
26
|
import { defineProps, defineEmits } from 'vue';
|
|
27
|
-
import Button from '
|
|
27
|
+
import Button from '../../Button/Button.vue';
|
|
28
28
|
|
|
29
29
|
// Define props for the DocumentCard component
|
|
30
30
|
const props = defineProps({
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
<script setup>
|
|
20
20
|
import { defineProps, defineEmits } from 'vue';
|
|
21
|
-
import NotificationBubble from '
|
|
21
|
+
import NotificationBubble from '../../NotificationBubble/NotificationBubble.vue';
|
|
22
22
|
|
|
23
23
|
// Define props for the component
|
|
24
24
|
const props = defineProps({
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
|
|
39
39
|
<script setup>
|
|
40
40
|
import { defineProps } from 'vue';
|
|
41
|
-
import TagLabel from '
|
|
42
|
-
import SolidArrowRight from '
|
|
43
|
-
import Circle from '
|
|
41
|
+
import TagLabel from '../TagLabel/TagLabel.vue';
|
|
42
|
+
import SolidArrowRight from '../../Icons/SolidArrowRight.vue';
|
|
43
|
+
import Circle from '../../Icons/Circle.vue';
|
|
44
44
|
import './ProgressLinear.css';
|
|
45
45
|
|
|
46
46
|
// Define props for date, progress value, and status
|
|
@@ -65,10 +65,10 @@
|
|
|
65
65
|
<script setup>
|
|
66
66
|
import './TicketCard.css';
|
|
67
67
|
|
|
68
|
-
import TagLabel from '
|
|
69
|
-
import NotificationBubble from '
|
|
68
|
+
import TagLabel from '../TagLabel/TagLabel.vue';
|
|
69
|
+
import NotificationBubble from '../../NotificationBubble/NotificationBubble.vue';
|
|
70
70
|
import { defineProps } from 'vue';
|
|
71
|
-
import Button from '
|
|
71
|
+
import Button from '../../Button/Button.vue';
|
|
72
72
|
|
|
73
73
|
// Define props to make the component generic
|
|
74
74
|
defineProps({
|