@nuxtify/core 0.4.0 → 0.4.2

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/README.md CHANGED
@@ -82,7 +82,7 @@ Nuxtify Core builds on the amazing features of [Vue](https://vuejs.org/guide/int
82
82
  ### 💡 Intuitive UI & UX
83
83
 
84
84
  - Easily override any component with [Vuetify global defaults](https://vuetifyjs.com/en/features/global-configuration/)
85
- - Icons powered by [Material Design Icons](https://pictogrammers.com/library/mdi/) via [Vuetify icon fonts](https://vuetifyjs.com/en/features/icon-fonts/)
85
+ - Icons powered by [Material Design Icons](https://pictogrammers.com/library/mdi/)
86
86
  - Fully responsive and adapts to all modern browsers and devices
87
87
  - (coming soon) Light and dark mode toggle
88
88
 
package/dist/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuxtify/core",
3
- "version": "0.4.0",
3
+ "version": "0.4.2",
4
4
  "configKey": "nuxtifyCore",
5
5
  "compatibility": {
6
6
  "nuxt": ">=4.0.0"
package/dist/module.mjs CHANGED
@@ -2,7 +2,7 @@ import { defineNuxtModule, createResolver, useLogger, addComponentsDir, addImpor
2
2
  import { defu } from 'defu';
3
3
 
4
4
  const name = "@nuxtify/core";
5
- const version = "0.4.0";
5
+ const version = "0.4.2";
6
6
 
7
7
  const module$1 = defineNuxtModule().with({
8
8
  meta: {
@@ -11,8 +11,7 @@ const isExternalLink = computed(
11
11
  <v-system-bar
12
12
  :height="xs ? 60 : 40"
13
13
  :order="-100"
14
- color="primary"
15
- class="justify-center text-start"
14
+ class="app-announcement justify-center text-start"
16
15
  >
17
16
  <div
18
17
  v-if="nuxtifyConfig.announcement?.message"
@@ -34,3 +33,7 @@ const isExternalLink = computed(
34
33
  </v-btn>
35
34
  </v-system-bar>
36
35
  </template>
36
+
37
+ <style scoped>
38
+ .app-announcement{background-color:rgb(var(--v-theme-secondary),var(--v-activated-opacity))}
39
+ </style>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuxtify/core",
3
- "version": "0.4.0",
3
+ "version": "0.4.2",
4
4
  "description": "Nuxtify core module powered by Nuxt and Vuetify.",
5
5
  "homepage": "https://nuxtify.dev",
6
6
  "author": "Nuxtify.dev <hello@nuxtify.dev>",