@paris-ias/list 1.0.31 → 1.0.32

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.31",
4
+ "version": "1.0.32",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.0",
7
7
  "unbuild": "3.5.0"
@@ -66,9 +66,8 @@
66
66
 
67
67
  <script setup>
68
68
  import { useDebounceFn } from "@vueuse/core";
69
- import { computed } from "vue";
70
69
  import { useRootStore } from "../../../stores/root";
71
- import { useNuxtApp, useI18n } from "#imports";
70
+ import { useNuxtApp, useI18n, computed } from "#imports";
72
71
  const { locale, t } = useI18n();
73
72
  const rootStore = useRootStore();
74
73
  const { $stores } = useNuxtApp();
@@ -43,10 +43,10 @@
43
43
  </template>
44
44
 
45
45
  <script setup>
46
- import { mergeProps, computed, ref } from "vue";
46
+ import { mergeProps } from "vue";
47
47
  import { useDisplay } from "vuetify";
48
48
  import { useRootStore } from "../../../stores/root";
49
- import { useNuxtApp } from "#imports";
49
+ import { useNuxtApp, computed, ref } from "#imports";
50
50
  const { $stores } = useNuxtApp();
51
51
  const { xs: isXsDisplay } = useDisplay();
52
52
  const rootStore = useRootStore();
@@ -41,12 +41,11 @@
41
41
 
42
42
  <script setup>
43
43
  import { useDisplay } from "vuetify";
44
- import { computed } from "vue";
45
44
  import {
46
45
  getDetailedFormatedDate,
47
46
  formatDateValue
48
47
  } from "../../../composables/useUtils";
49
- import { useI18n } from "#imports";
48
+ import { computed, useI18n } from "#imports";
50
49
  const { smAndDown, mdAndUp, name } = useDisplay();
51
50
  const { locale } = useI18n();
52
51
  const props = defineProps({
@@ -15,7 +15,7 @@
15
15
  </template>
16
16
 
17
17
  <script setup>
18
- import { computed } from "vue";
18
+ import { computed } from "#imports";
19
19
  const props = defineProps({
20
20
  related: {
21
21
  type: Object,
@@ -36,9 +36,8 @@
36
36
 
37
37
  <script setup>
38
38
  import { useDisplay } from "vuetify";
39
- import { computed } from "vue";
40
39
  import { useRootStore } from "../../stores/root";
41
- import { useNuxtApp, useI18n, useLocalePath } from "#imports";
40
+ import { computed, useNuxtApp, useI18n, useLocalePath } from "#imports";
42
41
  const { $stores } = useNuxtApp();
43
42
  const { name } = useDisplay();
44
43
  const localePath = useLocalePath();
@@ -132,9 +132,8 @@
132
132
 
133
133
  <script setup>
134
134
  import { useDisplay } from "vuetify";
135
- import { computed } from "vue";
136
135
  import { useRootStore } from "../../stores/root";
137
- import { useNuxtApp, useI18n, useLocalePath } from "#imports";
136
+ import { useNuxtApp, useI18n, useLocalePath, computed } from "#imports";
138
137
  const { $stores } = useNuxtApp();
139
138
  const { locale } = useI18n();
140
139
  const localePath = useLocalePath();
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.31",
4
+ "version": "1.0.32",
5
5
  "name": "@paris-ias/list",
6
6
  "repository": "IEA-Paris/list",
7
7
  "dependencies": {