@zap-wunschlachen/wl-shared-components 1.0.0
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/.github/workflows/playwright.yml +215 -0
- package/.github/workflows/static.yml +62 -0
- package/.prettierrc +5 -0
- package/.storybook/main.ts +18 -0
- package/.storybook/preview.ts +37 -0
- package/.storybook/storyWrapper.vue +18 -0
- package/.storybook/withVuetifyTheme.decorator.ts +21 -0
- package/App.vue +95 -0
- package/README.md +56 -0
- package/heroicons.ts +75 -0
- package/index.html +19 -0
- package/package.json +66 -0
- package/playwright.config.ts +35 -0
- package/public/audio/dummy_pink_noise.wav +0 -0
- package/public/background.svg +60 -0
- package/public/javascript.svg +1 -0
- package/public/style.css +187 -0
- package/public/technologies.svg +22 -0
- package/src/assets/css/base.css +235 -0
- package/src/assets/css/variables.css +96 -0
- package/src/assets/fonts/Outfit-Black.ttf +0 -0
- package/src/assets/fonts/Outfit-Bold.ttf +0 -0
- package/src/assets/fonts/Outfit-ExtraBold.ttf +0 -0
- package/src/assets/fonts/Outfit-ExtraLight.ttf +0 -0
- package/src/assets/fonts/Outfit-Light.ttf +0 -0
- package/src/assets/fonts/Outfit-Medium.ttf +0 -0
- package/src/assets/fonts/Outfit-Regular.ttf +0 -0
- package/src/assets/fonts/Outfit-SemiBold.ttf +0 -0
- package/src/assets/fonts/Outfit-Thin.ttf +0 -0
- package/src/components/Accordion/Accordion.css +59 -0
- package/src/components/Accordion/AccordionGroup.vue +51 -0
- package/src/components/Accordion/AccordionItem.vue +66 -0
- package/src/components/Appointment/Card/Actions.css +30 -0
- package/src/components/Appointment/Card/Actions.vue +66 -0
- package/src/components/Appointment/Card/Card.css +49 -0
- package/src/components/Appointment/Card/Card.vue +55 -0
- package/src/components/Appointment/Card/Details.css +51 -0
- package/src/components/Appointment/Card/Details.vue +44 -0
- package/src/components/Audio/Audio.vue +188 -0
- package/src/components/Audio/Waveform.vue +118 -0
- package/src/components/Button/Button.vue +119 -0
- package/src/components/CheckBox/CheckBox.css +185 -0
- package/src/components/CheckBox/Checkbox.vue +130 -0
- package/src/components/DateInput/DateInput.css +3 -0
- package/src/components/DateInput/DateInput.vue +263 -0
- package/src/components/Dialog/Dialog.css +6 -0
- package/src/components/Dialog/Dialog.vue +29 -0
- package/src/components/EditField/EditField.css +20 -0
- package/src/components/EditField/EditField.vue +202 -0
- package/src/components/IconBullet/IconBullet.vue +86 -0
- package/src/components/IconBullet/IconBulletList.vue +41 -0
- package/src/components/Icons/Audio/CloudFailed.vue +21 -0
- package/src/components/Icons/Audio/CloudSaved.vue +22 -0
- package/src/components/Icons/Audio/Delete.vue +16 -0
- package/src/components/Icons/Audio/Pause.vue +19 -0
- package/src/components/Icons/Audio/Play.vue +16 -0
- package/src/components/Icons/CalendarNotification.vue +126 -0
- package/src/components/Icons/Chair.vue +32 -0
- package/src/components/Icons/ChairNotification.vue +35 -0
- package/src/components/Icons/Circle.vue +66 -0
- package/src/components/Icons/FavIcon.vue +22 -0
- package/src/components/Icons/FilledCircle.vue +11 -0
- package/src/components/Icons/Group3.vue +46 -0
- package/src/components/Icons/RingNotification.vue +54 -0
- package/src/components/Icons/SolidArrowRight.vue +14 -0
- package/src/components/Icons/calendar.vue +17 -0
- package/src/components/Icons/checkbox.vue +19 -0
- package/src/components/Icons/outlineChecked.vue +27 -0
- package/src/components/Icons/play.vue +6 -0
- package/src/components/Input/Input.css +187 -0
- package/src/components/Input/Input.vue +247 -0
- package/src/components/Laboratory/AppointmentCard/AppointmentCard.css +7 -0
- package/src/components/Laboratory/AppointmentCard/AppointmentCard.vue +116 -0
- package/src/components/Laboratory/ChatBoxImage/ChatBoxImage.vue +81 -0
- package/src/components/Laboratory/ChatMessage/ChatMessage.vue +113 -0
- package/src/components/Laboratory/ChatMessage/ChatMessageBadge.css +4 -0
- package/src/components/Laboratory/ChatMessage/ChatMessageBadge.vue +99 -0
- package/src/components/Laboratory/ChatNotification/ChatNotification.vue +130 -0
- package/src/components/Laboratory/DocumentCard/DocumentCard.css +3 -0
- package/src/components/Laboratory/DocumentCard/DocumentCard.vue +50 -0
- package/src/components/Laboratory/DocumentCard/DocumentCardItem.vue +53 -0
- package/src/components/Laboratory/InfoCard/InfoCard.vue +162 -0
- package/src/components/Laboratory/MainColumnsBar/MainColumnsBar.vue +102 -0
- package/src/components/Laboratory/ProgressCircle/ProgressCircle.vue +152 -0
- package/src/components/Laboratory/ProgressLinear/ProgressLinear.css +33 -0
- package/src/components/Laboratory/ProgressLinear/ProgressLinear.vue +75 -0
- package/src/components/Laboratory/SelectionColumnBar/SelectionColumnBar.vue +92 -0
- package/src/components/Laboratory/StatusNotification/StatusNotification.vue +49 -0
- package/src/components/Laboratory/TagLabel/TagLabel.vue +126 -0
- package/src/components/Laboratory/TagLabelGroup/TagLabelGroup.vue +97 -0
- package/src/components/Laboratory/TicketCard/TicketCard.css +3 -0
- package/src/components/Laboratory/TicketCard/TicketCard.vue +143 -0
- package/src/components/Laboratory/TimeLine/TimeLineEvent.css +18 -0
- package/src/components/Laboratory/TimeLine/TimeLineEvent.vue +119 -0
- package/src/components/Laboratory/TimeLine/Timeline.css +4 -0
- package/src/components/Laboratory/TimeLine/Timeline.vue +30 -0
- package/src/components/Modal/Modal.css +6 -0
- package/src/components/Modal/Modal.vue +23 -0
- package/src/components/NotificationBubble/NotificationBubble.css +4 -0
- package/src/components/NotificationBubble/NotificationBubble.vue +90 -0
- package/src/components/OtpInput/OtpInput.css +39 -0
- package/src/components/OtpInput/OtpInput.vue +144 -0
- package/src/components/PhoneInput/PhoneInput.css +32 -0
- package/src/components/PhoneInput/PhoneInput.vue +114 -0
- package/src/components/Select/Select.css +150 -0
- package/src/components/Select/Select.vue +304 -0
- package/src/components/TextArea/TextArea.css +3 -0
- package/src/components/TextArea/TextArea.vue +126 -0
- package/src/components/TickBox/TickBox.css +49 -0
- package/src/components/TickBox/TickBox.vue +126 -0
- package/src/components/index.ts +20 -0
- package/src/constants/buttonEnums.ts +0 -0
- package/src/constants/iconEnums.ts +4 -0
- package/src/i18n/i18n.ts +16 -0
- package/src/i18n/locales/de.json +19 -0
- package/src/i18n/locales/en.json +19 -0
- package/src/index.ts +31 -0
- package/src/main.ts +11 -0
- package/src/plugins/vuetify.ts +131 -0
- package/src/shims-vue.d.ts +10 -0
- package/src/stories/Accordion.stories.ts +650 -0
- package/src/stories/Audio.stories.ts +29 -0
- package/src/stories/Button.stories.ts +263 -0
- package/src/stories/CheckBox.stories.ts +348 -0
- package/src/stories/DateInput.stories.ts +54 -0
- package/src/stories/Dialog.stories.ts +147 -0
- package/src/stories/EditField.stories.ts +79 -0
- package/src/stories/IconBullet/IconBullet.stories.ts +201 -0
- package/src/stories/IconBullet/IconBulletList.stories.ts +275 -0
- package/src/stories/Input.stories.ts +351 -0
- package/src/stories/Laboratory/Cards/AppointmentCard/AppointmentCard.stories.ts +260 -0
- package/src/stories/Laboratory/Cards/DocumentCard/DocumentCard.stories.ts +176 -0
- package/src/stories/Laboratory/Cards/DocumentCard/DocumentCardItem.stories.ts +119 -0
- package/src/stories/Laboratory/Cards/InfoCard/InfoCard.stories.ts +320 -0
- package/src/stories/Laboratory/Cards/TicketCard/TicketCard.stories.ts +335 -0
- package/src/stories/Laboratory/Chat/ChatBoxImage.stories.ts +82 -0
- package/src/stories/Laboratory/Chat/ChatMessage.stories.ts +198 -0
- package/src/stories/Laboratory/Chat/ChatMessageBadge.stories.ts +204 -0
- package/src/stories/Laboratory/Chat/ChatNotification.stories.ts +144 -0
- package/src/stories/Laboratory/Chat/ProgressLinear.stories.ts +186 -0
- package/src/stories/Laboratory/Chat/StatusNotification.stories.ts +111 -0
- package/src/stories/Laboratory/MainColumnsBar.stories.ts +48 -0
- package/src/stories/Laboratory/ProgressCircle.stories.ts +261 -0
- package/src/stories/Laboratory/SelectionColumnBar.stories.ts +234 -0
- package/src/stories/Laboratory/TagLabel.stories.ts +418 -0
- package/src/stories/Laboratory/TagLabelGroup.stories.ts +234 -0
- package/src/stories/Laboratory/Timeline.stories.ts +403 -0
- package/src/stories/NotificationBubble.stories.ts +194 -0
- package/src/stories/OtpInput.stories.ts +101 -0
- package/src/stories/PhoneInput.stories.ts +53 -0
- package/src/stories/Select.stories.ts +419 -0
- package/src/stories/TextArea.stories.ts +112 -0
- package/src/stories/TickBox.stories.ts +294 -0
- package/src/stories/assets/accessibility.png +0 -0
- package/src/stories/assets/accessibility.svg +1 -0
- package/src/stories/assets/addon-library.png +0 -0
- package/src/stories/assets/assets.png +0 -0
- package/src/stories/assets/avif-test-image.avif +0 -0
- package/src/stories/assets/context.png +0 -0
- package/src/stories/assets/discord.svg +1 -0
- package/src/stories/assets/docs.png +0 -0
- package/src/stories/assets/figma-plugin.png +0 -0
- package/src/stories/assets/github.svg +1 -0
- package/src/stories/assets/share.png +0 -0
- package/src/stories/assets/styling.png +0 -0
- package/src/stories/assets/testing.png +0 -0
- package/src/stories/assets/theming.png +0 -0
- package/src/stories/assets/tutorials.svg +1 -0
- package/src/stories/assets/youtube.svg +1 -0
- package/src/stories/v-icon.stories.ts +91 -0
- package/src/types/index.ts +21 -0
- package/src/vite-env.d.ts +1 -0
- package/tests/e2e/README.md +221 -0
- package/tests/e2e/accessibility.spec.ts +639 -0
- package/tests/e2e/accordion.spec.ts +42 -0
- package/tests/e2e/additional-components.spec.ts +438 -0
- package/tests/e2e/all-components.spec.ts +135 -0
- package/tests/e2e/button-fixed.spec.ts +59 -0
- package/tests/e2e/button.spec.ts +76 -0
- package/tests/e2e/checkbox.spec.ts +50 -0
- package/tests/e2e/date-input.spec.ts +46 -0
- package/tests/e2e/debug.spec.ts +52 -0
- package/tests/e2e/dialog.spec.ts +58 -0
- package/tests/e2e/input.spec.ts +55 -0
- package/tests/e2e/laboratory-components.spec.ts +321 -0
- package/tests/e2e/otp-input.spec.ts +50 -0
- package/tests/e2e/select.spec.ts +52 -0
- package/tests/e2e/storybook-utils.ts +59 -0
- package/tests/e2e/test-basic.spec.ts +34 -0
- package/tests/e2e/visual-regression.spec.ts +351 -0
- package/tests/unit/components/Accordion/AccordionGroup.spec.ts +343 -0
- package/tests/unit/components/Accordion/AccordionItem.spec.ts +384 -0
- package/tests/unit/components/Audio/Audio.spec.ts +404 -0
- package/tests/unit/components/Audio/Waveform.spec.ts +484 -0
- package/tests/unit/components/Core/Button.spec.ts +337 -0
- package/tests/unit/components/Core/Checkbox.spec.ts +545 -0
- package/tests/unit/components/Core/DateInput.spec.ts +691 -0
- package/tests/unit/components/Core/Dialog.spec.ts +486 -0
- package/tests/unit/components/Core/EditField.spec.ts +783 -0
- package/tests/unit/components/Core/Input.spec.ts +513 -0
- package/tests/unit/components/Core/Modal.spec.ts +519 -0
- package/tests/unit/components/Core/NotificationBubble.spec.ts +607 -0
- package/tests/unit/components/Core/OtpInput.spec.ts +709 -0
- package/tests/unit/components/Core/PhoneInput.spec.ts +620 -0
- package/tests/unit/components/Core/Select.spec.ts +713 -0
- package/tests/unit/components/Core/TextArea.spec.ts +566 -0
- package/tests/unit/components/Core/TickBox.spec.ts +780 -0
- package/tests/unit/components/IconBullet/IconBullet.spec.ts +357 -0
- package/tests/unit/components/IconBullet/IconBulletList.spec.ts +372 -0
- package/tests/unit/components/Icons/Audio/CloudFailed.spec.ts +109 -0
- package/tests/unit/components/Icons/Audio/CloudSaved.spec.ts +150 -0
- package/tests/unit/components/Icons/Audio/Delete.spec.ts +159 -0
- package/tests/unit/components/Icons/Audio/Pause.spec.ts +209 -0
- package/tests/unit/components/Icons/Audio/Play.spec.ts +218 -0
- package/tests/unit/components/Icons/CalendarNotification.spec.ts +187 -0
- package/tests/unit/components/Icons/Chair.spec.ts +235 -0
- package/tests/unit/components/Icons/ChairNotification.spec.ts +312 -0
- package/tests/unit/components/Icons/Circle.spec.ts +256 -0
- package/tests/unit/components/Icons/FavIcon.spec.ts +252 -0
- package/tests/unit/components/Icons/FilledCircle.spec.ts +275 -0
- package/tests/unit/components/Icons/Group3.spec.ts +356 -0
- package/tests/unit/components/Icons/RingNotification.spec.ts +394 -0
- package/tests/unit/components/Icons/calendar.spec.ts +287 -0
- package/tests/unit/components/Icons/checkbox.spec.ts +316 -0
- package/tests/unit/components/Icons/outlineChecked.spec.ts +435 -0
- package/tests/unit/components/Icons/play.spec.ts +309 -0
- package/tests/unit/components/Laboratory/AppointmentCard.spec.ts +168 -0
- package/tests/unit/components/Laboratory/ChatBoxImage.spec.ts +180 -0
- package/tests/unit/components/Laboratory/ChatMessage.spec.ts +264 -0
- package/tests/unit/components/Laboratory/ChatMessageBadge.spec.ts +283 -0
- package/tests/unit/components/Laboratory/ChatNotification.spec.ts +257 -0
- package/tests/unit/components/Laboratory/DocumentCard.spec.ts +229 -0
- package/tests/unit/components/Laboratory/DocumentCardItem.spec.ts +237 -0
- package/tests/unit/components/Laboratory/InfoCard.spec.ts +309 -0
- package/tests/unit/components/Laboratory/MainColumnsBar.spec.ts +252 -0
- package/tests/unit/components/Laboratory/ProgressCircle.spec.ts +291 -0
- package/tests/unit/components/Laboratory/ProgressLinear.spec.ts +276 -0
- package/tests/unit/components/Laboratory/SelectionColumnBar.spec.ts +289 -0
- package/tests/unit/components/Laboratory/StatusNotification.spec.ts +297 -0
- package/tests/unit/components/Laboratory/TagLabel.spec.ts +354 -0
- package/tests/unit/components/Laboratory/TagLabelGroup.spec.ts +378 -0
- package/tests/unit/components/Laboratory/TicketCard.spec.ts +352 -0
- package/tests/unit/components/Laboratory/TimeLineEvent.spec.ts +382 -0
- package/tests/unit/components/Laboratory/Timeline.spec.ts +420 -0
- package/tests/unit/constants/iconEnums.spec.ts +40 -0
- package/tests/unit/i18n/i18n.spec.ts +89 -0
- package/tests/unit/plugins/vuetify.spec.ts +221 -0
- package/tests/unit/setup.ts +190 -0
- package/tests/unit/src/components/index.spec.ts +193 -0
- package/tests/unit/src/index.spec.ts +183 -0
- package/tests/unit/src/main.spec.ts +152 -0
- package/tsconfig.json +26 -0
- package/vite.config.ts +29 -0
- package/vitest.config.ts +84 -0
|
@@ -0,0 +1,263 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<Input
|
|
3
|
+
v-bind="$attrs"
|
|
4
|
+
ref="inputRef"
|
|
5
|
+
id="date-input"
|
|
6
|
+
class="wl-date-input"
|
|
7
|
+
:class="{
|
|
8
|
+
'edit-layout': layout === 'edit-field'
|
|
9
|
+
}"
|
|
10
|
+
:variant="variant"
|
|
11
|
+
:placeholder="placeholder"
|
|
12
|
+
v-model="formattedDate"
|
|
13
|
+
:success="isDefaultLayout ? inputState === 'success' : false"
|
|
14
|
+
:error="inputState === 'error'"
|
|
15
|
+
@input="onDateInput"
|
|
16
|
+
:hint="isDefaultLayout ? inputMessage : ''"
|
|
17
|
+
:hideDetails="isDefaultLayout ? inputState !== 'error' : true"
|
|
18
|
+
type="tel"
|
|
19
|
+
for="date-input"
|
|
20
|
+
data-testid="root">
|
|
21
|
+
<template #append>
|
|
22
|
+
<div class="date-wrapper" tabIndex="0" @keydown.enter.prevent="nativeDate?.showPicker()" >
|
|
23
|
+
<v-icon class="date-icon" icon="heroicons:calendar" />
|
|
24
|
+
<input
|
|
25
|
+
ref="nativeDate"
|
|
26
|
+
type="date"
|
|
27
|
+
tabIndex="-1"
|
|
28
|
+
:min="nativeMin"
|
|
29
|
+
:max="nativeMax"
|
|
30
|
+
class="native-date"
|
|
31
|
+
:value="isoValue"
|
|
32
|
+
@input.stop="onNativeDateChange"
|
|
33
|
+
/>
|
|
34
|
+
</div>
|
|
35
|
+
</template>
|
|
36
|
+
</Input>
|
|
37
|
+
</template>
|
|
38
|
+
|
|
39
|
+
<script setup lang="ts">
|
|
40
|
+
import {
|
|
41
|
+
parse, parseISO, format, isValid, getHours,
|
|
42
|
+
getMinutes,
|
|
43
|
+
getSeconds,
|
|
44
|
+
getMilliseconds,
|
|
45
|
+
set,
|
|
46
|
+
startOfDay
|
|
47
|
+
} from "date-fns";
|
|
48
|
+
import { ref, watch, defineProps, defineEmits, computed, nextTick } from "vue";
|
|
49
|
+
import Input from "../Input/Input.vue";
|
|
50
|
+
import './DateInput.css';
|
|
51
|
+
import { useI18n } from 'vue-i18n';
|
|
52
|
+
|
|
53
|
+
// Define props to accept an initial date value
|
|
54
|
+
const props = withDefaults(defineProps<{
|
|
55
|
+
modelValue?: string | null;
|
|
56
|
+
layout?: "default" | "edit-field";
|
|
57
|
+
minDate?: Date | null;
|
|
58
|
+
minDateErrorMessage?: string;
|
|
59
|
+
maxDate?: Date | null;
|
|
60
|
+
maxDateErrorMessage?: string;
|
|
61
|
+
variant?: string;
|
|
62
|
+
placeholder?: string;
|
|
63
|
+
invalidDateErrorMessage?: string;
|
|
64
|
+
}>(), {
|
|
65
|
+
modelValue: null,
|
|
66
|
+
layout: 'default',
|
|
67
|
+
variant: 'outlined',
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
const emit = defineEmits<{
|
|
71
|
+
(event: "update:modelValue", value: string | null): void;
|
|
72
|
+
}>();
|
|
73
|
+
|
|
74
|
+
const { t } = useI18n();
|
|
75
|
+
|
|
76
|
+
const placeholder = computed(() => props.placeholder || t('wl.date_input.placeholder', 'TT.MM.JJJJ'));
|
|
77
|
+
const invalidDateMessage = computed(() => props.invalidDateErrorMessage || t('wl.date_input.invalid_date', 'Bitte ein gültiges Datum eingeben'));
|
|
78
|
+
const maxDateMessage = computed(() => {
|
|
79
|
+
if (props.maxDate && isValid(props.maxDate)) {
|
|
80
|
+
return props.maxDateErrorMessage || t('wl.date_input.max_date_error', { date: format(props.maxDate, 'dd.MM.yyyy') });
|
|
81
|
+
}
|
|
82
|
+
return '';
|
|
83
|
+
});
|
|
84
|
+
const minDateMessage = computed(() => {
|
|
85
|
+
if (props.minDate && isValid(props.minDate)) {
|
|
86
|
+
return props.minDateErrorMessage || t('wl.date_input.min_date_error', { date: format(props.minDate, 'dd.MM.yyyy') });
|
|
87
|
+
}
|
|
88
|
+
return '';
|
|
89
|
+
});
|
|
90
|
+
|
|
91
|
+
const ISO_FORMAT = "yyyy-MM-dd";
|
|
92
|
+
const DISPLAY_FORMAT = "dd.MM.yyyy";
|
|
93
|
+
|
|
94
|
+
// Local reactive state for the input
|
|
95
|
+
const formattedDate = ref("");
|
|
96
|
+
const inputState = ref<"idle" | "error" | "success">("idle");
|
|
97
|
+
const inputMessage = ref("");
|
|
98
|
+
const nativeDate = ref<HTMLInputElement | null>(null)
|
|
99
|
+
const inputRef = ref(null)
|
|
100
|
+
|
|
101
|
+
const isDefaultLayout = computed(() => props.layout === "default")
|
|
102
|
+
|
|
103
|
+
const isoValue = computed(() => {
|
|
104
|
+
const parsed = parse(formattedDate.value, DISPLAY_FORMAT, new Date());
|
|
105
|
+
return isValid(parsed) ? format(parsed, ISO_FORMAT) : "";
|
|
106
|
+
});
|
|
107
|
+
|
|
108
|
+
watch(
|
|
109
|
+
() => props.modelValue,
|
|
110
|
+
(newDate) => {
|
|
111
|
+
const parsed = parseISO(newDate ?? '');
|
|
112
|
+
formattedDate.value = (parsed && isValid(parsed)) ? format(parsed, DISPLAY_FORMAT) : "";
|
|
113
|
+
},
|
|
114
|
+
{ immediate: true }
|
|
115
|
+
);
|
|
116
|
+
|
|
117
|
+
const nativeMin = computed(() => {
|
|
118
|
+
if (props.minDate && isValid(props.minDate)) {
|
|
119
|
+
return format(props.minDate, ISO_FORMAT);
|
|
120
|
+
}
|
|
121
|
+
return "";
|
|
122
|
+
});
|
|
123
|
+
|
|
124
|
+
const nativeMax = computed(() => {
|
|
125
|
+
if (props.maxDate && isValid(props.maxDate)) {
|
|
126
|
+
return format(props.maxDate, ISO_FORMAT);
|
|
127
|
+
}
|
|
128
|
+
return "";
|
|
129
|
+
});
|
|
130
|
+
|
|
131
|
+
function onDateInput(e: Event) {
|
|
132
|
+
const target = e.target as HTMLInputElement;
|
|
133
|
+
let value = target.value.replace(/\D/g, ""); // Remove non-digits
|
|
134
|
+
|
|
135
|
+
// Insert dot after day (2 digits)
|
|
136
|
+
if (value.length > 2) {
|
|
137
|
+
value = value.slice(0, 2) + "." + value.slice(2);
|
|
138
|
+
}
|
|
139
|
+
// Insert dot after month (next 2 digits)
|
|
140
|
+
if (value.length > 5) {
|
|
141
|
+
value = value.slice(0, 5) + "." + value.slice(5);
|
|
142
|
+
}
|
|
143
|
+
// Limit to 10 characters (DD.MM.YYYY)
|
|
144
|
+
if (value.length > 10) {
|
|
145
|
+
value = value.slice(0, 10);
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
formattedDate.value = value;
|
|
149
|
+
|
|
150
|
+
// If incomplete date, reset state
|
|
151
|
+
if (value.length < 10) {
|
|
152
|
+
inputState.value = "idle";
|
|
153
|
+
inputMessage.value = "";
|
|
154
|
+
return;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
// Parse the date using dots as separator
|
|
158
|
+
const parsed = parseDateWithCurrentTime(value);
|
|
159
|
+
|
|
160
|
+
if (!isValid(parsed)) {
|
|
161
|
+
inputState.value = "error";
|
|
162
|
+
inputMessage.value = invalidDateMessage.value;
|
|
163
|
+
return;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
if (props.minDate && isValid(props.minDate)) {
|
|
167
|
+
if (startOfDay(parsed) < startOfDay(props.minDate)) {
|
|
168
|
+
inputState.value = "error";
|
|
169
|
+
inputMessage.value = minDateMessage.value;
|
|
170
|
+
return;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
if(props.maxDate && isValid(props.maxDate)) {
|
|
175
|
+
if (startOfDay(parsed) > startOfDay(props.maxDate)) {
|
|
176
|
+
inputState.value = "error";
|
|
177
|
+
inputMessage.value = maxDateMessage.value;
|
|
178
|
+
return;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
inputState.value = "success";
|
|
183
|
+
inputMessage.value = "";
|
|
184
|
+
|
|
185
|
+
emit("update:modelValue", parsed.toISOString());
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
/**
|
|
189
|
+
* Parse "dd.MM.yyyy" as a date, then apply the current local time (H:M:S.ms).
|
|
190
|
+
* Returns a new Date object.
|
|
191
|
+
*/
|
|
192
|
+
function parseDateWithCurrentTime(dateString: any) {
|
|
193
|
+
const now = new Date();
|
|
194
|
+
|
|
195
|
+
// 1) Parse date portion (defaults to midnight)
|
|
196
|
+
const parsedDate = parse(dateString, DISPLAY_FORMAT, now);
|
|
197
|
+
|
|
198
|
+
// 2) Overwrite the parsed date's time with the current local time
|
|
199
|
+
const result = set(parsedDate, {
|
|
200
|
+
hours: getHours(now),
|
|
201
|
+
minutes: getMinutes(now),
|
|
202
|
+
seconds: getSeconds(now),
|
|
203
|
+
milliseconds: getMilliseconds(now)
|
|
204
|
+
});
|
|
205
|
+
|
|
206
|
+
return result;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
function onNativeDateChange(e: Event) {
|
|
210
|
+
if (!nativeDate.value) return;
|
|
211
|
+
|
|
212
|
+
const [year, month, day] = nativeDate.value.value.split("-");
|
|
213
|
+
const reformatted = `${day}.${month}.${year}`;
|
|
214
|
+
const fakeEvent = { target: { value: reformatted } } as unknown as Event;
|
|
215
|
+
|
|
216
|
+
onDateInput(fakeEvent);
|
|
217
|
+
|
|
218
|
+
if (props.layout === 'edit-field') {
|
|
219
|
+
// When DateInput is used in EditField, clicking events in the native picker removes focus from EditField.
|
|
220
|
+
// Since saving is based on blur in EditField, we need to restore focus and then blur to trigger save.
|
|
221
|
+
nextTick(() => {
|
|
222
|
+
inputRef.value?.focus?.();
|
|
223
|
+
inputRef.value?.blur?.();
|
|
224
|
+
});
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
defineExpose({
|
|
229
|
+
focus: () => inputRef.value?.focus?.(),
|
|
230
|
+
blur: () => inputRef.value?.blur?.(),
|
|
231
|
+
select: () => inputRef.value?.select?.()
|
|
232
|
+
})
|
|
233
|
+
</script>
|
|
234
|
+
|
|
235
|
+
<style scoped>
|
|
236
|
+
.native-date {
|
|
237
|
+
position: absolute;
|
|
238
|
+
top: 0;
|
|
239
|
+
left: 0;
|
|
240
|
+
width: 100%;
|
|
241
|
+
height: 100%;
|
|
242
|
+
opacity: 0 !important;
|
|
243
|
+
background: transparent;
|
|
244
|
+
color: transparent;
|
|
245
|
+
cursor: pointer;
|
|
246
|
+
z-index: 2;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.date-wrapper {
|
|
250
|
+
position: relative;
|
|
251
|
+
width: 100%;
|
|
252
|
+
height: 100%;
|
|
253
|
+
display: inline-flex;
|
|
254
|
+
align-items: center;
|
|
255
|
+
justify-content: center;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.date-icon {
|
|
259
|
+
pointer-events: none;
|
|
260
|
+
cursor: pointer;
|
|
261
|
+
z-index: 1;
|
|
262
|
+
}
|
|
263
|
+
</style>
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="text-center pa-4" data-testid="root">
|
|
3
|
+
<!-- Scoped slot for the activator with click handler to open dialog -->
|
|
4
|
+
<slot name="activator" :openDialog="openDialog" />
|
|
5
|
+
|
|
6
|
+
<!-- Dialog component with direct binding to dialog.value -->
|
|
7
|
+
<v-dialog v-model="dialog" width="auto">
|
|
8
|
+
<slot :closeDialog="closeDialog" name="content"></slot>
|
|
9
|
+
</v-dialog>
|
|
10
|
+
</div>
|
|
11
|
+
</template>
|
|
12
|
+
|
|
13
|
+
<script setup>
|
|
14
|
+
import { ref } from 'vue';
|
|
15
|
+
import './Dialog.css';
|
|
16
|
+
|
|
17
|
+
// Reactive dialog state
|
|
18
|
+
const dialog = ref(false);
|
|
19
|
+
|
|
20
|
+
// Methods to open and close the dialog
|
|
21
|
+
const openDialog = () => {
|
|
22
|
+
console.log('entereed 1');
|
|
23
|
+
dialog.value = true;
|
|
24
|
+
};
|
|
25
|
+
const closeDialog = () => {
|
|
26
|
+
console.log('entereed 2');
|
|
27
|
+
dialog.value = false;
|
|
28
|
+
};
|
|
29
|
+
</script>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
.wl-edit-field {
|
|
2
|
+
display: flex;
|
|
3
|
+
align-items: center;
|
|
4
|
+
justify-content: space-between;
|
|
5
|
+
width: 100%;
|
|
6
|
+
height: 100%;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.wl-edit-field .input-wrapper {
|
|
10
|
+
display: flex;
|
|
11
|
+
align-items: center;
|
|
12
|
+
justify-content: end;
|
|
13
|
+
width: 50%;
|
|
14
|
+
text-align: right;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.wl-edit-field .title-container {
|
|
18
|
+
display: flex;
|
|
19
|
+
align-items: center;
|
|
20
|
+
}
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="wl-edit-field" data-testid="root">
|
|
3
|
+
<div class="title-container" tabIndex="-1">
|
|
4
|
+
<v-icon v-if="props.icon !== ''" :icon="props.icon" size="16" class="mr-2" />
|
|
5
|
+
<p>{{ props.title }}</p>
|
|
6
|
+
</div>
|
|
7
|
+
|
|
8
|
+
<div ref="inputWrapperRef" class="input-wrapper">
|
|
9
|
+
<slot name="input" :is-input-focused="isInputFocused">
|
|
10
|
+
<template v-if="props.type === 'select'">
|
|
11
|
+
<Select
|
|
12
|
+
v-bind="props.inputProps"
|
|
13
|
+
reverse
|
|
14
|
+
ref="inputElementRef"
|
|
15
|
+
label=""
|
|
16
|
+
:return-object="false"
|
|
17
|
+
:modelValue="internalValue"
|
|
18
|
+
:items="items"
|
|
19
|
+
:border-on-hover="true"
|
|
20
|
+
@blur="handleBlur"
|
|
21
|
+
@keyup.enter="onEnter"
|
|
22
|
+
@keyup.esc="onEsc"
|
|
23
|
+
@focus="onFocus"
|
|
24
|
+
@update:model-value="(value) => { internalValue = value }"
|
|
25
|
+
/>
|
|
26
|
+
</template>
|
|
27
|
+
|
|
28
|
+
<template v-else-if="props.type === 'date'">
|
|
29
|
+
<DateInput
|
|
30
|
+
v-bind="props.inputProps"
|
|
31
|
+
ref="inputElementRef"
|
|
32
|
+
reverse
|
|
33
|
+
:layout="'edit-field'"
|
|
34
|
+
:border-on-hover="true"
|
|
35
|
+
v-model="internalValue"
|
|
36
|
+
@blur="handleBlur"
|
|
37
|
+
@keyup.enter="onEnter"
|
|
38
|
+
@keyup.esc="onEsc"
|
|
39
|
+
@focus="onFocus"
|
|
40
|
+
/>
|
|
41
|
+
</template>
|
|
42
|
+
|
|
43
|
+
<template v-else-if="props.type === 'phone'">
|
|
44
|
+
<PhoneInput
|
|
45
|
+
v-bind="props.inputProps"
|
|
46
|
+
ref="inputElementRef"
|
|
47
|
+
style="width: 100%;"
|
|
48
|
+
density="compact"
|
|
49
|
+
hideDetails
|
|
50
|
+
reverse
|
|
51
|
+
:border-on-hover="true"
|
|
52
|
+
append-inner-icon=""
|
|
53
|
+
v-model="internalValue"
|
|
54
|
+
@blur="handleBlur"
|
|
55
|
+
@keyup.enter="onEnter"
|
|
56
|
+
@keyup.esc="onEsc"
|
|
57
|
+
@focus="onFocus"
|
|
58
|
+
@update:phone="(value) => internalValue = value"
|
|
59
|
+
/>
|
|
60
|
+
</template>
|
|
61
|
+
|
|
62
|
+
<template v-else-if="props.type === 'text'">
|
|
63
|
+
<Input
|
|
64
|
+
v-bind="props.inputProps"
|
|
65
|
+
ref="inputElementRef"
|
|
66
|
+
reverse
|
|
67
|
+
:border-on-hover="true"
|
|
68
|
+
@blur="handleBlur"
|
|
69
|
+
@keyup.enter="onEnter"
|
|
70
|
+
@keyup.esc="onEsc"
|
|
71
|
+
@focus="onFocus"
|
|
72
|
+
v-model="internalValue"
|
|
73
|
+
@update:modelValue="(value) => internalValue = value"
|
|
74
|
+
/>
|
|
75
|
+
</template>
|
|
76
|
+
</slot>
|
|
77
|
+
|
|
78
|
+
<template v-if="computedAppendIcon">
|
|
79
|
+
<v-icon :icon="computedAppendIcon" class="ml-1" size="16" color="var(--Dental-Blue-0)" @click="onStartEditing"/>
|
|
80
|
+
</template>
|
|
81
|
+
</div>
|
|
82
|
+
</div>
|
|
83
|
+
</template>
|
|
84
|
+
|
|
85
|
+
<script setup lang="ts">
|
|
86
|
+
import { ref, watch, computed } from 'vue';
|
|
87
|
+
import Input from '../Input/Input.vue';
|
|
88
|
+
import Select from '../Select/Select.vue';
|
|
89
|
+
import DateInput from '../DateInput/DateInput.vue';
|
|
90
|
+
import PhoneInput from '../PhoneInput/PhoneInput.vue';
|
|
91
|
+
import { VIcon } from 'vuetify/components';
|
|
92
|
+
import './EditField.css'
|
|
93
|
+
|
|
94
|
+
const props = defineProps({
|
|
95
|
+
title: { type: String, required: true },
|
|
96
|
+
value: { required: true },
|
|
97
|
+
icon: { type: String, required: false },
|
|
98
|
+
type: { type: String, required: false },
|
|
99
|
+
items: { type: Array, required: false },
|
|
100
|
+
selectOnFocus: { type: Boolean, default: false },
|
|
101
|
+
appendIcon: { type: String, required: false },
|
|
102
|
+
inputProps: { type: Object, default: () => ({}) }
|
|
103
|
+
})
|
|
104
|
+
const emit = defineEmits(['update:value'])
|
|
105
|
+
|
|
106
|
+
const internalValue = ref(props.value)
|
|
107
|
+
const isInputFocused = ref(false)
|
|
108
|
+
const skipSave = ref(false)
|
|
109
|
+
|
|
110
|
+
const inputWrapperRef = ref(null);
|
|
111
|
+
const inputElementRef = ref(null);
|
|
112
|
+
|
|
113
|
+
const computedAppendIcon = computed(() =>
|
|
114
|
+
props.appendIcon === undefined
|
|
115
|
+
? 'heroicons:pencil'
|
|
116
|
+
: props.appendIcon
|
|
117
|
+
)
|
|
118
|
+
|
|
119
|
+
const itemsLookup = ref<Record<string, string>>({});
|
|
120
|
+
|
|
121
|
+
if (props.items && Array.isArray(props.items)) {
|
|
122
|
+
itemsLookup.value = (props.items as Array<{ value: string; title: string }>).reduce((acc, item) => {
|
|
123
|
+
acc[item.value] = item.title;
|
|
124
|
+
return acc;
|
|
125
|
+
}, {} as Record<string, string>);
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
watch(() => props.value, v => (internalValue.value = v))
|
|
129
|
+
|
|
130
|
+
async function onStartEditing() {
|
|
131
|
+
inputElementRef.value?.focus?.();
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
function save() {
|
|
135
|
+
if (internalValue.value !== props.value) {
|
|
136
|
+
emit('update:value', internalValue.value)
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
function handleBlur(){
|
|
141
|
+
if(skipSave.value){
|
|
142
|
+
skipSave.value = false;
|
|
143
|
+
return;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
save();
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
function onEnter(){
|
|
150
|
+
inputElementRef.value?.blur?.();
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
function onEsc() {
|
|
154
|
+
internalValue.value = props.value;
|
|
155
|
+
skipSave.value = true;
|
|
156
|
+
inputElementRef.value?.blur?.();
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
function onFocus() {
|
|
160
|
+
if(props.selectOnFocus && inputElementRef.value) {
|
|
161
|
+
inputElementRef.value?.select?.();
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
</script>
|
|
166
|
+
|
|
167
|
+
<style scoped>
|
|
168
|
+
|
|
169
|
+
.editable-display.placeholder {
|
|
170
|
+
color: #aaa;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.editable-display {
|
|
174
|
+
cursor: text;
|
|
175
|
+
width: 100%;
|
|
176
|
+
border: 1.5px solid transparent;
|
|
177
|
+
padding: 8px;
|
|
178
|
+
min-height: calc(1.2em + 16px);
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.editable-display:hover {
|
|
182
|
+
border-radius: 8px;
|
|
183
|
+
border: 1px solid var(--soft-concrete-1, #DDDDDF);
|
|
184
|
+
background: var(--White, #FFF);
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.editable-display.edited {
|
|
188
|
+
border-radius: 8px;
|
|
189
|
+
border: 1px solid var(--soft-concrete-1, #DDDDDF);
|
|
190
|
+
background: var(--White, #FFF);;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.editable-input {
|
|
194
|
+
border-radius: 8px;
|
|
195
|
+
border: 1.5px solid var(--Dental-Blue-0, #172774);
|
|
196
|
+
background: var(--White, #FFF);
|
|
197
|
+
width: 100%;
|
|
198
|
+
outline: none;
|
|
199
|
+
text-align: right;
|
|
200
|
+
padding: 8px;
|
|
201
|
+
}
|
|
202
|
+
</style>
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="container d-flex align-center" data-testid="root">
|
|
3
|
+
<div class="icon-container d-flex align-start">
|
|
4
|
+
<!-- Check if the icon slot is used; otherwise, display the icon from the prop -->
|
|
5
|
+
<slot name="icon" v-if="$slots.icon"></slot>
|
|
6
|
+
<v-icon v-else-if="icon" :size="iconSize" :icon="icon"></v-icon>
|
|
7
|
+
</div>
|
|
8
|
+
|
|
9
|
+
<div class="text-container d-flex flex-column">
|
|
10
|
+
<!-- Display content if provided, otherwise display header and subheader -->
|
|
11
|
+
<div v-if="content" v-html="content"></div>
|
|
12
|
+
<div class="d-flex flex-column text-container" v-else>
|
|
13
|
+
<h3 v-if="header">{{ header }}</h3>
|
|
14
|
+
<p class="p-large" v-if="subHeader">{{ subHeader }}</p>
|
|
15
|
+
</div>
|
|
16
|
+
</div>
|
|
17
|
+
</div>
|
|
18
|
+
</template>
|
|
19
|
+
|
|
20
|
+
<script setup>
|
|
21
|
+
import { defineProps } from 'vue';
|
|
22
|
+
|
|
23
|
+
const props = defineProps({
|
|
24
|
+
/**
|
|
25
|
+
* HTML content to display in the main content area.
|
|
26
|
+
* If provided, this will override header and subheader.
|
|
27
|
+
*/
|
|
28
|
+
content: {
|
|
29
|
+
type: String,
|
|
30
|
+
required: false,
|
|
31
|
+
},
|
|
32
|
+
/**
|
|
33
|
+
* Header text displayed above the subheader.
|
|
34
|
+
* Only displayed if content is not provided.
|
|
35
|
+
*/
|
|
36
|
+
header: {
|
|
37
|
+
type: String,
|
|
38
|
+
required: false,
|
|
39
|
+
},
|
|
40
|
+
/**
|
|
41
|
+
* Subheader text displayed below the header.
|
|
42
|
+
* Only displayed if content is not provided.
|
|
43
|
+
*/
|
|
44
|
+
subHeader: {
|
|
45
|
+
type: String,
|
|
46
|
+
required: false,
|
|
47
|
+
},
|
|
48
|
+
/**
|
|
49
|
+
* Icon to display next to the text.
|
|
50
|
+
* If an icon slot is provided, this prop will be ignored.
|
|
51
|
+
*/
|
|
52
|
+
icon: {
|
|
53
|
+
type: String,
|
|
54
|
+
required: false,
|
|
55
|
+
},
|
|
56
|
+
/**
|
|
57
|
+
* Size of the icon displayed next to the text.
|
|
58
|
+
* Accepts SVG-compatible size values as a string, such as '23', '28', etc.
|
|
59
|
+
* Ignored if an icon slot is provided.
|
|
60
|
+
*/
|
|
61
|
+
iconSize: {
|
|
62
|
+
type: String,
|
|
63
|
+
default: '38',
|
|
64
|
+
required: false,
|
|
65
|
+
},
|
|
66
|
+
});
|
|
67
|
+
</script>
|
|
68
|
+
|
|
69
|
+
<style scoped>
|
|
70
|
+
.container {
|
|
71
|
+
width: 400px;
|
|
72
|
+
min-width: 300px;
|
|
73
|
+
max-width: 400px;
|
|
74
|
+
gap: 24px;
|
|
75
|
+
padding-left: 50px;
|
|
76
|
+
padding-right: 40px;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.text-container {
|
|
80
|
+
gap: 11px;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.v-icon {
|
|
84
|
+
color: var(--Dental-Blue-0);
|
|
85
|
+
}
|
|
86
|
+
</style>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="outer-container d-flex flex-column align-center mx-auto" data-testid="root">
|
|
3
|
+
<!-- Conditional rendering of header slot or header prop -->
|
|
4
|
+
<div class="text-center">
|
|
5
|
+
<slot name="header">
|
|
6
|
+
<h2 v-if="header">{{ header }}</h2>
|
|
7
|
+
</slot>
|
|
8
|
+
</div>
|
|
9
|
+
|
|
10
|
+
<div class="slot-container d-flex justify-center align-start flex-wrap">
|
|
11
|
+
<slot></slot>
|
|
12
|
+
</div>
|
|
13
|
+
</div>
|
|
14
|
+
</template>
|
|
15
|
+
|
|
16
|
+
<script setup>
|
|
17
|
+
import { defineProps } from 'vue';
|
|
18
|
+
|
|
19
|
+
const props = defineProps({
|
|
20
|
+
/**
|
|
21
|
+
* Header text displayed if the header slot is not provided.
|
|
22
|
+
*/
|
|
23
|
+
header: {
|
|
24
|
+
type: String,
|
|
25
|
+
required: false,
|
|
26
|
+
},
|
|
27
|
+
});
|
|
28
|
+
</script>
|
|
29
|
+
|
|
30
|
+
<style scoped>
|
|
31
|
+
.outer-container {
|
|
32
|
+
max-width: 850px;
|
|
33
|
+
row-gap: 27px;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.slot-container {
|
|
37
|
+
align-content: center;
|
|
38
|
+
row-gap: 27px;
|
|
39
|
+
width: 100%;
|
|
40
|
+
}
|
|
41
|
+
</style>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
width="24"
|
|
4
|
+
height="24"
|
|
5
|
+
viewBox="0 0 24 24"
|
|
6
|
+
fill="none"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
>
|
|
9
|
+
<path
|
|
10
|
+
d="M2.25 15C2.25 17.4853 4.26472 19.5 6.75 19.5H18C20.0711 19.5 21.75 17.8211 21.75 15.75C21.75 14.1479 20.7453 12.7805 19.3316 12.2433C19.4407 11.9324 19.5 11.5981 19.5 11.25C19.5 9.59315 18.1569 8.25 16.5 8.25C16.1767 8.25 15.8654 8.30113 15.5737 8.39575C14.9765 6.1526 12.9312 4.5 10.5 4.5C7.6005 4.5 5.25 6.85051 5.25 9.75C5.25 10.0832 5.28105 10.4092 5.3404 10.7252C3.54555 11.3167 2.25 13.0071 2.25 15Z"
|
|
11
|
+
stroke="#172774"
|
|
12
|
+
stroke-linecap="round"
|
|
13
|
+
stroke-linejoin="round"
|
|
14
|
+
/>
|
|
15
|
+
<path
|
|
16
|
+
d="M3.5 4L20 22.5"
|
|
17
|
+
stroke="#172774"
|
|
18
|
+
stroke-linecap="round"
|
|
19
|
+
/>
|
|
20
|
+
</svg>
|
|
21
|
+
</template>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
width="24"
|
|
4
|
+
height="24"
|
|
5
|
+
viewBox="0 0 24 24"
|
|
6
|
+
fill="none"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
>
|
|
9
|
+
<path
|
|
10
|
+
d="M2.25 15C2.25 17.4853 4.26472 19.5 6.75 19.5H18C20.0711 19.5 21.75 17.8211 21.75 15.75C21.75 14.1479 20.7453 12.7805 19.3316 12.2433C19.4407 11.9324 19.5 11.5981 19.5 11.25C19.5 9.59315 18.1569 8.25 16.5 8.25C16.1767 8.25 15.8654 8.30113 15.5737 8.39575C14.9765 6.1526 12.9312 4.5 10.5 4.5C7.6005 4.5 5.25 6.85051 5.25 9.75C5.25 10.0832 5.28105 10.4092 5.3404 10.7252C3.54555 11.3167 2.25 13.0071 2.25 15Z"
|
|
11
|
+
stroke="#172774"
|
|
12
|
+
stroke-linecap="round"
|
|
13
|
+
stroke-linejoin="round"
|
|
14
|
+
/>
|
|
15
|
+
|
|
16
|
+
<path d="M8.6499 13L10.8999 15.25L14 11"
|
|
17
|
+
stroke="#172774"
|
|
18
|
+
stroke-linecap="round"
|
|
19
|
+
stroke-linejoin="round"
|
|
20
|
+
/>
|
|
21
|
+
</svg>
|
|
22
|
+
</template>
|