@minch/bentolio 0.9.5 → 0.9.7

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.
@@ -19,14 +19,8 @@
19
19
  ]"
20
20
  @click="onClick">
21
21
  <ColorScheme placeholder="...">
22
- <template v-if="colorMode.value === 'dark'">
23
- <Icon name="ph:sun-duotone" class="w-5 h-5" />
24
- <span class="sr-only">Dark Mode</span>
25
- </template>
26
- <template v-else>
27
- <Icon name="ph:moon-duotone" class="w-5 h-5" />
28
- <span class="sr-only">Light Mode</span>
29
- </template>
22
+ <Icon v-if="colorMode.preference === 'dark'" name="ph:sun-duotone" />
23
+ <Icon v-else name="ph:moon-duotone" />
30
24
  </ColorScheme>
31
25
  </button>
32
26
  </template>
package/nuxt.config.ts CHANGED
@@ -41,6 +41,11 @@ export default defineNuxtConfig({
41
41
 
42
42
  devtools: { enabled: true },
43
43
 
44
+ icon: {
45
+ mode: "svg",
46
+ serverBundle: "local"
47
+ },
48
+
44
49
  modules: [
45
50
  "@nuxt/eslint",
46
51
  "@nuxt/icon",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@minch/bentolio",
3
- "version": "0.9.5",
3
+ "version": "0.9.7",
4
4
  "description": "A minimal portfolio template and layer built with Nuxt 4, Tailwind CSS 4, and GSAP.",
5
5
  "type": "module",
6
6
  "repository": {
@@ -36,19 +36,19 @@
36
36
  "dependencies": {
37
37
  "@fontsource/space-grotesk": "^5.2.8",
38
38
  "@iconify-json/ph": "^1.2.2",
39
- "@iconify-json/simple-icons": "^1.2.47",
39
+ "@iconify-json/simple-icons": "^1.2.48",
40
40
  "@nuxt/eslint": "1.8.0",
41
41
  "@nuxt/icon": "2.0.0",
42
42
  "@nuxtjs/color-mode": "^3.5.2",
43
- "@tailwindcss/vite": "^4.1.11",
43
+ "@tailwindcss/vite": "^4.1.12",
44
44
  "@unhead/vue": "^2.0.14",
45
- "eslint": "^9.33.0",
45
+ "eslint": "^9.34.0",
46
46
  "gsap": "^3.13.0",
47
47
  "nuxt": "^4.0.3",
48
48
  "nuxt-og-image": "5.1.9",
49
- "tailwindcss": "^4.1.11",
50
- "unstorage": "^1.16.1",
51
- "vue": "^3.5.18",
49
+ "tailwindcss": "^4.1.12",
50
+ "unstorage": "^1.17.0",
51
+ "vue": "^3.5.19",
52
52
  "vue-router": "^4.5.1"
53
53
  },
54
54
  "scripts": {