@dargmuesli/nuxt-vio 10.2.5 → 10.2.7
Sign up to get free protection for your applications and to get access to all the features.
- package/composables/useAppLayout.ts +3 -2
- package/package.json +11 -11
@@ -6,11 +6,12 @@ export const useAppLayout = () => {
|
|
6
6
|
...useLocaleHead({ addDirAttribute: true, addSeoAttributes: true }).value,
|
7
7
|
bodyAttrs: {
|
8
8
|
class:
|
9
|
-
'bg-background-bright dark:bg-background-dark
|
9
|
+
'bg-background-bright dark:bg-background-dark text-text-dark dark:text-text-bright',
|
10
10
|
},
|
11
11
|
})
|
12
12
|
|
13
|
-
|
13
|
+
// TODO: convert to `useServerHeadSafe` (https://github.com/harlan-zw/nuxt-seo-kit/issues/98)
|
14
|
+
useSeoMeta({
|
14
15
|
titleTemplate: (title) =>
|
15
16
|
TITLE_TEMPLATE({
|
16
17
|
siteName: siteConfig.name,
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dargmuesli/nuxt-vio",
|
3
|
-
"version": "10.2.
|
3
|
+
"version": "10.2.7",
|
4
4
|
"repository": {
|
5
5
|
"type": "git",
|
6
6
|
"url": "git+https://github.com/dargmuesli/vio.git"
|
@@ -41,9 +41,9 @@
|
|
41
41
|
"@nuxt/image": "1.3.0",
|
42
42
|
"@nuxtjs/color-mode": "3.3.2",
|
43
43
|
"@nuxtjs/html-validator": "1.6.0",
|
44
|
-
"@nuxtjs/i18n": "8.0.
|
45
|
-
"@nuxtjs/seo": "2.0.0-rc.
|
46
|
-
"@nuxtjs/tailwindcss": "6.11.
|
44
|
+
"@nuxtjs/i18n": "8.0.1",
|
45
|
+
"@nuxtjs/seo": "2.0.0-rc.7",
|
46
|
+
"@nuxtjs/tailwindcss": "6.11.3",
|
47
47
|
"@pinia/nuxt": "0.5.1",
|
48
48
|
"@tailwindcss/forms": "0.5.7",
|
49
49
|
"@tailwindcss/typography": "0.5.10",
|
@@ -53,8 +53,8 @@
|
|
53
53
|
"@vuelidate/validators": "2.0.4",
|
54
54
|
"clipboardy": "4.0.0",
|
55
55
|
"dayjs": "2.0.0-alpha.4",
|
56
|
-
"jose": "5.2.
|
57
|
-
"nuxt-security": "1.0
|
56
|
+
"jose": "5.2.1",
|
57
|
+
"nuxt-security": "1.1.0",
|
58
58
|
"sweetalert2": "11.10.4",
|
59
59
|
"vue-gtag": "2.0.1"
|
60
60
|
},
|
@@ -62,10 +62,10 @@
|
|
62
62
|
"@axe-core/playwright": "4.8.4",
|
63
63
|
"@intlify/eslint-plugin-vue-i18n": "3.0.0-next.5",
|
64
64
|
"@nuxtjs/eslint-config-typescript": "12.1.0",
|
65
|
-
"@playwright/test": "1.41.
|
65
|
+
"@playwright/test": "1.41.2",
|
66
66
|
"@unhead/vue": "1.8.10",
|
67
67
|
"@urql/devtools": "2.0.3",
|
68
|
-
"@urql/exchange-graphcache": "6.4.
|
68
|
+
"@urql/exchange-graphcache": "6.4.1",
|
69
69
|
"@urql/vue": "1.1.2",
|
70
70
|
"consola": "3.2.3",
|
71
71
|
"cookie-es": "1.0.0",
|
@@ -83,10 +83,10 @@
|
|
83
83
|
"lodash-es": "4.17.21",
|
84
84
|
"nuxt": "3.10.0",
|
85
85
|
"pinia": "2.1.7",
|
86
|
-
"prettier": "3.2.
|
86
|
+
"prettier": "3.2.5",
|
87
87
|
"prettier-plugin-tailwindcss": "0.5.11",
|
88
88
|
"serve": "14.2.1",
|
89
|
-
"stylelint": "16.2.
|
89
|
+
"stylelint": "16.2.1",
|
90
90
|
"stylelint-config-recommended-vue": "1.5.0",
|
91
91
|
"stylelint-config-standard": "36.0.0",
|
92
92
|
"stylelint-no-unsupported-browser-features": "8.0.1",
|
@@ -99,7 +99,7 @@
|
|
99
99
|
},
|
100
100
|
"peerDependencies": {
|
101
101
|
"nuxt": "3.10.0",
|
102
|
-
"playwright-core": "1.41.
|
102
|
+
"playwright-core": "1.41.2",
|
103
103
|
"vue": "3.4.15",
|
104
104
|
"vue-router": "4.2.5"
|
105
105
|
},
|