@nuxtify/pages 0.5.0 → 0.5.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuxtify/pages",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "configKey": "nuxtifyPages",
5
5
  "compatibility": {
6
6
  "nuxt": ">=4.0.0"
package/dist/module.mjs CHANGED
@@ -2,7 +2,7 @@ import { defineNuxtModule, createResolver, useLogger, addLayout, addComponentsDi
2
2
  import { defu } from 'defu';
3
3
 
4
4
  const name = "@nuxtify/pages";
5
- const version = "0.5.0";
5
+ const version = "0.5.1";
6
6
 
7
7
  const module$1 = defineNuxtModule().with({
8
8
  meta: {
@@ -60,7 +60,7 @@ const brandColWidth = computed(() => {
60
60
  <v-btn
61
61
  :to="link.to"
62
62
  :href="link.href"
63
- variant="text"
63
+ variant="plain"
64
64
  :active="false"
65
65
  :ripple="false"
66
66
  :target="link.openInNew ? '_blank' : void 0"
@@ -87,7 +87,7 @@ const brandColWidth = computed(() => {
87
87
  cols="12"
88
88
  sm="9"
89
89
  >
90
- <AppCredits />
90
+ <AppCredits class="opacity-60" />
91
91
 
92
92
  <v-divider
93
93
  v-if="footerSecondaryLinks?.length"
@@ -124,5 +124,5 @@ const brandColWidth = computed(() => {
124
124
  </template>
125
125
 
126
126
  <style scoped>
127
- a{color:inherit;justify-content:start;text-decoration:none}.v-btn:hover,a:hover{text-decoration:underline;text-underline-offset:4px}:deep(.v-btn:hover>.v-btn__overlay){opacity:0}.clip-text{max-width:600px}
127
+ a{color:inherit;justify-content:start;text-decoration:none}.v-btn:hover,a:hover{text-decoration:underline;text-underline-offset:4px}:deep(.v-btn:hover>.v-btn__overlay){opacity:0}.clip-text{max-width:600px}.opacity-60{opacity:.6}
128
128
  </style>
@@ -14,7 +14,7 @@ useNuxtifySiteTitle();
14
14
 
15
15
  <AppNavigationDrawer class="d-print-none" />
16
16
 
17
- <AppAnnouncementBar
17
+ <AppAnnouncement
18
18
  v-if="nuxtifyConfig.announcement?.show"
19
19
  class="d-print-none"
20
20
  />
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuxtify/pages",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Nuxtify pages module powered by Nuxt and Vuetify.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://nuxtify.dev",
@@ -44,7 +44,7 @@
44
44
  "test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
45
45
  },
46
46
  "dependencies": {
47
- "@nuxtify/core": "^0.2.1",
47
+ "@nuxtify/core": "^0.3.0",
48
48
  "defu": "^6.1.4"
49
49
  },
50
50
  "devDependencies": {