@paris-ias/list 1.0.26 → 1.0.28
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/components/events/Badges.vue +9 -8
- package/dist/runtime/components/events/DateTimePlace.vue +1 -0
- package/dist/runtime/components/events/DenseItem.vue +1 -1
- package/dist/runtime/components/events/ListContainer.vue +3 -1
- package/dist/runtime/components/fellowships/DenseItem.vue +1 -1
- package/dist/runtime/components/fellowships/RowsItem.vue +1 -1
- package/dist/runtime/components/list/molecules/Filters.vue +1 -2
- package/dist/runtime/components/misc/atoms/ImageContainer.vue +2 -3
- package/dist/runtime/components/news/ExpandedItem.vue +2 -1
- package/dist/runtime/components/people/RelatedItem.vue +1 -2
- package/dist/runtime/composables/useFetchItem.js +1 -1
- package/package.json +1 -1
package/dist/module.json
CHANGED
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
<template #prepend>
|
|
14
14
|
<v-icon size="large" color="danger" />
|
|
15
15
|
</template>
|
|
16
|
-
{{ $t("event-full") }}
|
|
17
|
-
>
|
|
16
|
+
{{ $t("event-full") }}
|
|
17
|
+
</v-btn>
|
|
18
18
|
|
|
19
19
|
<v-divider v-if="smAndUp" vertical class="mx-3" />
|
|
20
20
|
<v-btn
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
})
|
|
33
33
|
"
|
|
34
34
|
>
|
|
35
|
-
{{ $t("live-stream-available") }}
|
|
36
|
-
>
|
|
35
|
+
{{ $t("live-stream-available") }}
|
|
36
|
+
</v-btn>
|
|
37
37
|
|
|
38
38
|
<v-btn
|
|
39
39
|
v-if="item.outside"
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
size="small"
|
|
45
45
|
class="my-xs-2"
|
|
46
46
|
>
|
|
47
|
-
{{ $t("outside-event") }}
|
|
48
|
-
>
|
|
47
|
+
{{ $t("outside-event") }}
|
|
48
|
+
</v-btn>
|
|
49
49
|
|
|
50
50
|
<v-btn
|
|
51
51
|
v-if="item.type === 'HYBRID'"
|
|
@@ -56,13 +56,14 @@
|
|
|
56
56
|
size="small"
|
|
57
57
|
class="my-xs-2"
|
|
58
58
|
>
|
|
59
|
-
{{ $t("hybrid-event") }}
|
|
60
|
-
>
|
|
59
|
+
{{ $t("hybrid-event") }}
|
|
60
|
+
</v-btn>
|
|
61
61
|
</div>
|
|
62
62
|
</template>
|
|
63
63
|
|
|
64
64
|
<script setup>
|
|
65
65
|
import { useDisplay } from "vuetify";
|
|
66
|
+
import { useI18n } from "#imports";
|
|
66
67
|
const { smAndUp } = useDisplay();
|
|
67
68
|
const { locale } = useI18n();
|
|
68
69
|
const props = defineProps({
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
:value="event"
|
|
5
5
|
style="cursor: pointer"
|
|
6
6
|
@click="
|
|
7
|
-
$router.push(localePath('/activities/events/' +
|
|
7
|
+
$router.push(localePath('/activities/events/' + event.slug[locale]))
|
|
8
8
|
"
|
|
9
9
|
>
|
|
10
10
|
<v-col cols="3">
|
|
@@ -31,6 +31,8 @@
|
|
|
31
31
|
|
|
32
32
|
<script setup>
|
|
33
33
|
import { useRootStore } from "../../stores/root";
|
|
34
|
+
import { useI18n } from "#imports";
|
|
35
|
+
const { locale } = useI18n();
|
|
34
36
|
const rootStore = useRootStore();
|
|
35
37
|
const props = defineProps({
|
|
36
38
|
events: {
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
|
|
44
44
|
<script setup>
|
|
45
45
|
import { useDisplay } from "vuetify";
|
|
46
|
-
import { useLocalePath } from "#imports";
|
|
46
|
+
import { useLocalePath, useI18n } from "#imports";
|
|
47
47
|
const { name } = useDisplay();
|
|
48
48
|
const localePath = useLocalePath();
|
|
49
49
|
const { locale } = useI18n();
|
|
@@ -35,9 +35,8 @@
|
|
|
35
35
|
|
|
36
36
|
<script setup>
|
|
37
37
|
import { useDisplay } from "vuetify";
|
|
38
|
-
import { resolveComponent } from "vue";
|
|
39
38
|
import { useRootStore } from "../../../stores/root";
|
|
40
|
-
import { useNuxtApp,
|
|
39
|
+
import { useNuxtApp, onMounted, resolveComponent, useI18n } from "#imports";
|
|
41
40
|
const { smAndDown } = useDisplay();
|
|
42
41
|
const i18n = useI18n();
|
|
43
42
|
const { locale, messages } = useI18n();
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
link
|
|
15
15
|
? localePath({
|
|
16
16
|
name: link,
|
|
17
|
-
params: { slug
|
|
17
|
+
params: { slug },
|
|
18
18
|
})
|
|
19
19
|
: null
|
|
20
20
|
"
|
|
@@ -50,8 +50,7 @@
|
|
|
50
50
|
</template>
|
|
51
51
|
|
|
52
52
|
<script setup>
|
|
53
|
-
import {
|
|
54
|
-
import { computed, useLocalePath } from "#imports";
|
|
53
|
+
import { computed, useLocalePath, useImage } from "#imports";
|
|
55
54
|
const localePath = useLocalePath();
|
|
56
55
|
const img = useImage();
|
|
57
56
|
const computedSrc = computed(() => {
|
|
@@ -85,7 +85,8 @@
|
|
|
85
85
|
<script setup>
|
|
86
86
|
import { useDisplay } from "vuetify";
|
|
87
87
|
import { useRootStore } from "../../stores/root";
|
|
88
|
-
import { useRouter } from "#imports";
|
|
88
|
+
import { useRouter, useI18n, useLocalePath } from "#imports";
|
|
89
|
+
const localePath = useLocalePath();
|
|
89
90
|
const router = useRouter();
|
|
90
91
|
const rootStore = useRootStore();
|
|
91
92
|
const expanded = ref(false);
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
:to="
|
|
4
4
|
localePath({
|
|
5
5
|
name: 'people-slug',
|
|
6
|
-
params: { slug:
|
|
6
|
+
params: { slug: item.slug },
|
|
7
7
|
})
|
|
8
8
|
"
|
|
9
9
|
>
|
|
@@ -33,7 +33,6 @@
|
|
|
33
33
|
<script setup>
|
|
34
34
|
import { useDisplay } from "vuetify";
|
|
35
35
|
import { useRootStore } from "../../stores/root";
|
|
36
|
-
import { slugify } from "../../../composables/useUtils";
|
|
37
36
|
import { useLocalePath } from "#imports";
|
|
38
37
|
const localePath = useLocalePath();
|
|
39
38
|
const rootStore = useRootStore();
|