@xenterprises/nuxt-x-marketing 1.4.7 → 1.4.8

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/CHANGELOG.md CHANGED
@@ -30,6 +30,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
30
30
  section and its sample product data were dropped with them. Every other section of the
31
31
  demo page is unchanged.
32
32
 
33
+ ## [1.4.8] - 2026-09-06
34
+
35
+ ### Fixed
36
+
37
+ - Marketing chrome is light-only by default: removed `UColorModeButton` from `XFooter` and `XXFooter`, and set layer `colorMode` preference/fallback to `light`.
38
+
33
39
  ## [1.4.7] - 2026-09-06
34
40
 
35
41
  ### Fixed
@@ -60,7 +60,6 @@
60
60
  variant="ghost"
61
61
  />
62
62
  </div>
63
- <UColorModeButton />
64
63
  </div>
65
64
  </div>
66
65
  <div
@@ -54,7 +54,6 @@
54
54
  variant="ghost"
55
55
  />
56
56
  </div>
57
- <UColorModeButton />
58
57
  </div>
59
58
  </div>
60
59
  <div
package/nuxt.config.ts CHANGED
@@ -11,6 +11,11 @@ export default defineNuxtConfig({
11
11
  // install `@nuxt/content` (peer) and provide `content/blog/**/*.md`.
12
12
  // Builder.io is no longer used.
13
13
  modules: ["@nuxt/ui", "@nuxt/content"],
14
+ // Marketing sites are light-only (marketing page standard). No color-mode toggle in chrome.
15
+ colorMode: {
16
+ preference: "light",
17
+ fallback: "light",
18
+ },
14
19
  css: [resolve(__dirname, "app/assets/css/x-marketing.css")],
15
20
  content: {
16
21
  build: {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@xenterprises/nuxt-x-marketing",
3
3
  "license": "SEE LICENSE IN LICENSE",
4
4
  "type": "module",
5
- "version": "1.4.7",
5
+ "version": "1.4.8",
6
6
  "main": "./nuxt.config.ts",
7
7
  "scripts": {
8
8
  "dev": "nuxi dev .playground",