@dargmuesli/nuxt-vio 1.8.1 → 1.8.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,11 +1,8 @@
1
1
  <template>
2
2
  <div :data-is-loading="isLoading">
3
3
  <NuxtLayout>
4
- <!-- <SeoKit
5
- :site-description="t('globalOgSeoDescription')"
6
- :language="locale"
7
- />
8
- <OgImageStatic :alt="t('globalOgImageAlt')" component="OgImage" /> -->
4
+ <SeoKit :site-description="siteDescription" :language="locale" />
5
+ <OgImageStatic :alt="ogImageAlt" component="OgImage" />
9
6
  <NuxtPage />
10
7
  <CookieControl :locale="locale" />
11
8
  </NuxtLayout>
@@ -13,7 +10,12 @@
13
10
  </template>
14
11
 
15
12
  <script setup lang="ts">
16
- // const { t } = useI18n()
13
+ export interface Props {
14
+ siteDescription: string
15
+ ogImageAlt: string
16
+ }
17
+ withDefaults(defineProps<Props>(), {})
18
+
17
19
  const { locale } = useI18n()
18
20
  const cookieControl = useCookieControl()
19
21
 
@@ -0,0 +1,7 @@
1
+ <template>
2
+ <div class="p-4 md:px-8">
3
+ <main>
4
+ <slot />
5
+ </main>
6
+ </div>
7
+ </template>
@@ -1,7 +1,5 @@
1
1
  <template>
2
- <div class="p-4 md:px-8">
3
- <main>
4
- <slot />
5
- </main>
6
- </div>
2
+ <VioLayout>
3
+ <slot />
4
+ </VioLayout>
7
5
  </template>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dargmuesli/nuxt-vio",
3
- "version": "1.8.1",
3
+ "version": "1.8.3",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -8,7 +8,7 @@
8
8
  "engines": {
9
9
  "node": "18"
10
10
  },
11
- "packageManager": "pnpm@8.2.0",
11
+ "packageManager": "pnpm@8.3.1",
12
12
  "files": [
13
13
  "assets",
14
14
  "components",
@@ -19,7 +19,6 @@
19
19
  "plugins",
20
20
  "utils",
21
21
  "app.config.ts",
22
- "app.vue",
23
22
  "error.vue",
24
23
  "nuxt.config.ts",
25
24
  "tailwind.config.ts"
@@ -40,16 +39,16 @@
40
39
  "dependencies": {
41
40
  "@dargmuesli/nuxt-cookie-control": "5.6.0",
42
41
  "@http-util/status-i18n": "0.6.2",
43
- "@nuxtjs/html-validator": "1.2.4",
42
+ "@nuxtjs/html-validator": "1.2.5",
44
43
  "@nuxtjs/i18n": "8.0.0-beta.10",
45
44
  "@nuxtjs/tailwindcss": "6.6.6",
46
45
  "@tailwindcss/typography": "0.5.9",
47
- "nuxt-seo-kit": "1.3.6",
46
+ "nuxt-seo-kit": "1.3.7",
48
47
  "vue-gtag": "2.0.1"
49
48
  },
50
49
  "devDependencies": {
51
- "@commitlint/cli": "17.6.0",
52
- "@commitlint/config-conventional": "17.6.0",
50
+ "@commitlint/cli": "17.6.1",
51
+ "@commitlint/config-conventional": "17.6.1",
53
52
  "@intlify/eslint-plugin-vue-i18n": "2.0.0",
54
53
  "@nuxtjs/eslint-config-typescript": "12.0.0",
55
54
  "eslint": "8.38.0",
@@ -59,13 +58,13 @@
59
58
  "eslint-plugin-yml": "1.5.0",
60
59
  "husky": "8.0.3",
61
60
  "lint-staged": "13.2.1",
62
- "nuxt": "3.4.1",
61
+ "nuxt": "3.4.2",
63
62
  "prettier": "2.8.7",
64
- "stylelint": "15.4.0",
63
+ "stylelint": "15.5.0",
65
64
  "stylelint-config-recommended-vue": "1.4.0",
66
- "stylelint-config-standard": "32.0.0",
65
+ "stylelint-config-standard": "33.0.0",
67
66
  "stylelint-no-unsupported-browser-features": "6.1.0",
68
67
  "typescript": "5.0.4",
69
- "vue-tsc": "1.2.0"
68
+ "vue-tsc": "1.4.2"
70
69
  }
71
70
  }