@live-change/content-frontend 0.2.50 → 0.2.52

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/front/src/App.vue CHANGED
@@ -16,14 +16,21 @@
16
16
  import { useI18n } from 'vue-i18n'
17
17
  const i18n = useI18n()
18
18
 
19
- import { useMeta } from 'vue-meta'
20
- const { meta } = useMeta({
19
+ import { computed } from 'vue'
20
+ import { useHead } from '@vueuse/head'
21
+ useHead(computed(() => ({
21
22
  title: 'Title',
23
+ meta: [
24
+ { charset: 'utf-8' },
25
+ { name: 'viewport',
26
+ content: "user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1," +
27
+ " width=device-width, viewport-fit=cover" }
28
+ ],
22
29
  htmlAttrs: {
23
- lang: i18n.locale.value,
30
+ lang: 'en',
24
31
  amp: true
25
32
  }
26
- })
33
+ })))
27
34
 
28
35
  import { watch } from 'vue'
29
36
  import { client as useClient } from '@live-change/vue3-ssr'
@@ -48,7 +48,7 @@
48
48
  }
49
49
  })
50
50
  }
51
- import { useMeta } from 'vue-meta'
51
+ import { useHead } from '@vueuse/head'
52
52
  const m = metadata.value
53
53
  const canonicalUrlDomain = canonical.value?.domain || host
54
54
  const canonicalUrl = `https://${canonicalUrlDomain}/${canonical.value?.path ?? ''}`
@@ -65,7 +65,7 @@
65
65
  ]
66
66
  }
67
67
 
68
- useMeta(JSON.parse(JSON.stringify({
68
+ useHead(computed(() => ({
69
69
  title: m.title,
70
70
  description: m.description,
71
71
  link: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/content-frontend",
3
- "version": "0.2.50",
3
+ "version": "0.2.52",
4
4
  "scripts": {
5
5
  "memDev": "lcli memDev --enableSessions --initScript ./init.js --dbAccess",
6
6
  "localDevInit": "rm tmp.db; lcli localDev --enableSessions --initScript ./init.js",
@@ -21,17 +21,17 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "@fortawesome/fontawesome-free": "^6.2.0",
24
- "@live-change/cli": "0.7.26",
25
- "@live-change/dao": "0.5.19",
26
- "@live-change/dao-vue3": "0.5.19",
27
- "@live-change/dao-websocket": "0.5.19",
28
- "@live-change/framework": "0.7.26",
29
- "@live-change/image-service": "0.3.25",
30
- "@live-change/session-service": "0.3.25",
31
- "@live-change/url-frontend": "^0.2.50",
32
- "@live-change/vue3-components": "0.2.26",
33
- "@live-change/vue3-ssr": "0.2.26",
34
- "@vueuse/core": "^9.1.0",
24
+ "@live-change/cli": "0.7.30",
25
+ "@live-change/dao": "0.5.20",
26
+ "@live-change/dao-vue3": "0.5.20",
27
+ "@live-change/dao-websocket": "0.5.20",
28
+ "@live-change/framework": "0.7.30",
29
+ "@live-change/image-service": "0.3.29",
30
+ "@live-change/session-service": "0.3.29",
31
+ "@live-change/url-frontend": "^0.2.52",
32
+ "@live-change/vue3-components": "0.2.28",
33
+ "@live-change/vue3-ssr": "0.2.28",
34
+ "@vueuse/core": "^10.4.1",
35
35
  "codeceptjs-assert": "^0.0.5",
36
36
  "compression": "^1.7.4",
37
37
  "cross-env": "^7.0.3",
@@ -39,30 +39,29 @@
39
39
  "get-port-sync": "1.0.1",
40
40
  "pica": "^9.0.1",
41
41
  "pretty-bytes": "^6.0.0",
42
- "primeflex": "^3.3.0",
42
+ "primeflex": "^3.3.1",
43
43
  "primeicons": "^6.0.1",
44
- "primevue": "^3.28.0",
44
+ "primevue": "^3.34.1",
45
45
  "rollup-plugin-node-builtins": "^2.1.2",
46
- "rollup-plugin-visualizer": "5.6.0",
47
- "serialize-javascript": "^6.0.0",
46
+ "rollup-plugin-visualizer": "5.9.2",
47
+ "serialize-javascript": "^6.0.1",
48
48
  "serve-static": "^1.15.0",
49
- "v-shared-element": "3.1.0",
50
- "vue-meta": "^3.0.0-alpha.9",
51
- "vue-router": "^4.1.3",
49
+ "v-shared-element": "3.1.1",
50
+ "vue-router": "^4.2.4",
52
51
  "vue3-scroll-border": "0.1.5"
53
52
  },
54
53
  "devDependencies": {
55
- "@live-change/codeceptjs-helper": "0.7.26",
56
- "@wdio/selenium-standalone-service": "^7.20.8",
57
- "codeceptjs": "^3.3.4",
54
+ "@live-change/codeceptjs-helper": "0.7.30",
55
+ "@wdio/selenium-standalone-service": "^8.15.0",
56
+ "codeceptjs": "^3.5.4",
58
57
  "generate-password": "1.7.0",
59
- "playwright": "^1.24.2",
58
+ "playwright": "^1.37.1",
60
59
  "random-profile-generator": "^2.3.0",
61
- "txtgen": "^3.0.2",
62
- "webdriverio": "^7.20.9"
60
+ "txtgen": "^3.0.6",
61
+ "webdriverio": "^8.16.6"
63
62
  },
64
63
  "author": "",
65
64
  "license": "ISC",
66
65
  "description": "",
67
- "gitHead": "4e4eb7581a3bdf85edc286a509c1ab91bf44a182"
66
+ "gitHead": "7c05ea8ee7cc24e95feeedf86b92b045e78e8dea"
68
67
  }