@paris-ias/list 1.0.22 → 1.0.24
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/View.vue +2 -4
- package/dist/runtime/components/fellowships/View.vue +0 -2
- package/dist/runtime/components/list/atoms/SortMenu.vue +0 -2
- package/dist/runtime/components/list/atoms/ViewMenu.vue +0 -2
- package/dist/runtime/components/list/inputs/Select.vue +1 -4
- package/dist/runtime/components/list/molecules/Filters.vue +1 -1
- package/dist/runtime/components/list/organisms/List.vue +1 -2
- package/dist/runtime/components/list/views/Rows.vue +1 -2
- package/dist/runtime/components/misc/atoms/ImageContainer.vue +2 -1
- package/dist/runtime/components/people/RelatedItem.vue +4 -3
- package/package.json +1 -1
package/dist/module.json
CHANGED
|
@@ -145,9 +145,7 @@
|
|
|
145
145
|
<v-sheet class="mt-md-0 mt-lg-2 mt-xl-4">
|
|
146
146
|
<v-list v-if="!loading && item.files && item.files.length">
|
|
147
147
|
<v-list-subheader class="text-overline font-weight-bold">
|
|
148
|
-
{{
|
|
149
|
-
$t("document")
|
|
150
|
-
}}
|
|
148
|
+
{{ $t("document") }}
|
|
151
149
|
</v-list-subheader>
|
|
152
150
|
|
|
153
151
|
<v-list-item
|
|
@@ -370,9 +368,9 @@
|
|
|
370
368
|
|
|
371
369
|
<script setup>
|
|
372
370
|
import { useDisplay } from "vuetify";
|
|
373
|
-
import { ref } from "vue";
|
|
374
371
|
import { useRouter } from "vue-router";
|
|
375
372
|
import getFileIcon from "../../composables/useIcons";
|
|
373
|
+
import { ref } from "#imports";
|
|
376
374
|
const { name, mdAndUp, sm, xs } = useDisplay();
|
|
377
375
|
const router = useRouter();
|
|
378
376
|
const props = defineProps({
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
</template>
|
|
8
8
|
|
|
9
9
|
<script setup>
|
|
10
|
-
import { computed
|
|
10
|
+
import { computed } from "vue";
|
|
11
11
|
import { useRootStore } from "../../../stores/root";
|
|
12
12
|
import { useNuxtApp } from "#imports";
|
|
13
13
|
const rootStore = useRootStore();
|
|
@@ -21,7 +21,4 @@ const val = computed({
|
|
|
21
21
|
rootStore.updateFilter(props.name, value, props.type);
|
|
22
22
|
}
|
|
23
23
|
});
|
|
24
|
-
onMounted(() => {
|
|
25
|
-
console.log(props);
|
|
26
|
-
});
|
|
27
24
|
</script>
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
import { useDisplay } from "vuetify";
|
|
38
38
|
import { resolveComponent } from "vue";
|
|
39
39
|
import { useRootStore } from "../../../stores/root";
|
|
40
|
-
import { useNuxtApp, useI18n } from "#imports";
|
|
40
|
+
import { useNuxtApp, useI18n, onMounted } from "#imports";
|
|
41
41
|
const { smAndDown } = useDisplay();
|
|
42
42
|
const i18n = useI18n();
|
|
43
43
|
const { locale, messages } = useI18n();
|
|
@@ -25,10 +25,9 @@
|
|
|
25
25
|
</template>
|
|
26
26
|
|
|
27
27
|
<script setup>
|
|
28
|
-
import { resolveComponent, computed } from "vue";
|
|
29
28
|
import { useRootStore } from "../../../stores/root";
|
|
30
29
|
import { capitalize } from "../../../composables/useUtils";
|
|
31
|
-
import { useNuxtApp, useI18n } from "#imports";
|
|
30
|
+
import { useNuxtApp, useI18n, resolveComponent, computed } from "#imports";
|
|
32
31
|
const { $stores } = useNuxtApp();
|
|
33
32
|
const { locale } = useI18n();
|
|
34
33
|
const rootStore = useRootStore();
|
|
@@ -50,7 +50,8 @@
|
|
|
50
50
|
</template>
|
|
51
51
|
|
|
52
52
|
<script setup>
|
|
53
|
-
import {
|
|
53
|
+
import { slugify } from "../../../composables/useUtils";
|
|
54
|
+
import { computed } from "#imports";
|
|
54
55
|
const localePath = useLocalePath();
|
|
55
56
|
const img = useImage();
|
|
56
57
|
const computedSrc = computed(() => {
|
|
@@ -25,14 +25,15 @@
|
|
|
25
25
|
{{ item.firstname + " " + item.lastname }}
|
|
26
26
|
</div>
|
|
27
27
|
</template>
|
|
28
|
-
</v-col
|
|
29
|
-
|
|
30
|
-
>
|
|
28
|
+
</v-col>
|
|
29
|
+
</v-row>
|
|
30
|
+
</v-sheet>
|
|
31
31
|
</template>
|
|
32
32
|
|
|
33
33
|
<script setup>
|
|
34
34
|
import { useDisplay } from "vuetify";
|
|
35
35
|
import { useRootStore } from "../../stores/root";
|
|
36
|
+
import { slugify } from "../../../composables/useUtils";
|
|
36
37
|
const localePath = useLocalePath();
|
|
37
38
|
const rootStore = useRootStore();
|
|
38
39
|
const { lgAndUp } = useDisplay();
|