@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 +1 -1
- package/dist/runtime/components/list/atoms/SearchInput.vue +1 -2
- package/dist/runtime/components/list/atoms/SortMenu.vue +2 -2
- package/dist/runtime/components/misc/atoms/DateStamp.vue +1 -2
- package/dist/runtime/components/misc/molecules/Related.vue +1 -1
- package/dist/runtime/components/news/DenseItem.vue +1 -2
- package/dist/runtime/components/news/RowsItem.vue +1 -2
- package/package.json +1 -1
package/dist/module.json
CHANGED
|
@@ -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
|
|
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({
|
|
@@ -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();
|