@fy-/fws-vue 1.7.4 → 1.7.6

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.
@@ -12,7 +12,7 @@ import type { APIPaging } from "../../composables/rest";
12
12
  import { useEventBus } from "../../composables/event-bus";
13
13
  import { useServerRouter } from "../../stores/serverRouter";
14
14
  import { LocationQueryValue, RouteLocationRaw, useRoute } from "vue-router";
15
- import { useFyHead } from "@fy-/head";
15
+ import { useHead } from "@unhead/vue";
16
16
  import { hasFW, getURL } from "@fy-/fws-js";
17
17
 
18
18
  const props = withDefaults(
@@ -115,8 +115,8 @@ onUnmounted(() => {
115
115
  });
116
116
 
117
117
  checkPageNumber(props.items.page_no);
118
- useFyHead({
119
- links: computed(() => {
118
+ useHead({
119
+ link: computed(() => {
120
120
  const result: any = [];
121
121
  if (prevNextSeo.value.next)
122
122
  result.push({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "1.7.4",
3
+ "version": "1.7.6",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -29,6 +29,8 @@
29
29
  "peerDependencies": {
30
30
  "@fy-/fws-js": "^0.0.x",
31
31
  "@fy-/fws-types": "^0.0.x",
32
+ "@unhead/ssr": "^1.9.x",
33
+ "@unhead/vue": "^1.9.x",
32
34
  "@vuelidate/core": "^2.0.x",
33
35
  "@vuelidate/validators": "^2.0.x",
34
36
  "@vueuse/core": "^10.x.x",
@@ -38,8 +40,6 @@
38
40
  "vue": "^3.3.x",
39
41
  "vue-picture-cropper": "^0.7.x",
40
42
  "vue-router": "^4.1.x",
41
- "vue-tailwind-datepicker": "^1.7.x",
42
- "@unhead/vue": "^1.9.x",
43
- "@unhead/ssr": "^1.9.x"
43
+ "vue-tailwind-datepicker": "^1.7.x"
44
44
  }
45
45
  }