PluginProbe ʕ •ᴥ•ʔ
Booking for Appointments and Events Calendar – Amelia / 2.4.6
Booking for Appointments and Events Calendar – Amelia v2.4.6
2.4.7 2.4.6 2.4.5 2.4.4 2.4.3 2.4.2 2.4.1 2.4 trunk 1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.15 1.2.16 1.2.17 1.2.18 1.2.19 1.2.2 1.2.20 1.2.21 1.2.22 1.2.23 1.2.24 1.2.25 1.2.26 1.2.27 1.2.28 1.2.29 1.2.3 1.2.30 1.2.31 1.2.32 1.2.33 1.2.34 1.2.35 1.2.36 1.2.37 1.2.38 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.1.3 2.2 2.2.1 2.3
ameliabooking / v3 / src / views / public / EventForm / Common / Parts / EmptyState.vue
ameliabooking / v3 / src / views / public / EventForm / Common / Parts Last commit date
BringingAnyone.vue 1 month ago DescriptionItem.vue 1 month ago EmptyState.vue 1 month ago EventCard.vue 3 weeks ago EventEmployee.vue 1 month ago EventTicket.vue 1 month ago GalleryCarousel.vue 3 weeks ago
EmptyState.vue
63 lines
1 <template>
2 <div class="am-ev-empty" :style="cssVars" role="status" aria-live="polite" aria-atomic="true">
3 <span class="am-icon-search-close" aria-hidden="true"></span>
4 <p>
5 {{ labels.no_results }}
6 </p>
7 </div>
8 </template>
9
10 <script setup>
11 // * Import from Vue
12 import { inject, computed } from 'vue'
13
14 // * Composables
15 import { useColorTransparency } from '../../../../../assets/js/common/colorManipulation'
16
17 // * Global labels
18 let labels = inject('labels')
19
20 // * Colors
21 let amColors = inject('amColors')
22
23 // * Css Vars
24 let cssVars = computed(() => {
25 return {
26 '--am-c-ev-empty-text-op60': useColorTransparency(amColors.value.colorMainText, 0.6),
27 '--am-c-ev-empty-text': amColors.value.colorMainText,
28 }
29 })
30 </script>
31
32 <script>
33 export default {
34 name: 'EmptyState',
35 }
36 </script>
37
38 <style lang="scss">
39 .amelia-v2-booking #amelia-container {
40 .am-ev-empty {
41 display: flex;
42 flex-direction: column;
43 align-items: center;
44 justify-content: center;
45
46 span {
47 display: flex;
48 font-size: 122px;
49 line-height: 1;
50 color: var(--am-c-ev-empty-text-op60);
51 }
52
53 p {
54 font-size: 24px;
55 line-height: 1;
56 color: var(--am-c-ev-empty-text);
57 padding: 0;
58 margin: 0 0 24px;
59 }
60 }
61 }
62 </style>
63