@paris-ias/list 1.0.23 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@paris-ias/list",
3
3
  "configKey": "list",
4
- "version": "1.0.23",
4
+ "version": "1.0.24",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.0",
7
7
  "unbuild": "3.5.0"
@@ -50,7 +50,8 @@
50
50
  </template>
51
51
 
52
52
  <script setup>
53
- import { computed } from "vue";
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></v-row
29
- ></v-sheet
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();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "license": "AGPL-3.0-only",
3
3
  "main": "./dist/module.mjs",
4
- "version": "1.0.23",
4
+ "version": "1.0.24",
5
5
  "name": "@paris-ias/list",
6
6
  "repository": "IEA-Paris/list",
7
7
  "dependencies": {