@xenterprises/nuxt-x-marketing 1.4.2 → 1.4.5

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,30 @@ 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.5] - 2026-09-03
34
+
35
+ ### Fixed
36
+
37
+ - `XMarkHero` section height is `min-h-[calc(100svh-var(--ui-header-height))]` instead of `min-h-svh`, so navbar plus hero fill one viewport. Uses the existing `--ui-header-height` token (4.5rem). Keeps the text-stack `pb-6 md:pb-8` from 1.4.4.
38
+
39
+ ## [1.4.4] - 2026-09-03
40
+
41
+ ### Fixed
42
+
43
+ - `XMarkHero` adds responsive `pb-6 md:pb-8` inside the shared text stack, increasing space below hero copy and actions without moving the background, top edge, or outer frame. The same inset applies to image and plain variants.
44
+ - `XSchema` JSON-LD script uses a text slot instead of `v-text`, clearing `vue/no-v-text-v-html-on-component`. Output is unchanged.
45
+
46
+ ## [1.4.3] - 2026-09-03
47
+
48
+ ### Fixed
49
+
50
+ - `XHeaderNav` and `XXHeaderNav` drop the nested logo link inside `#title`. `UHeader`
51
+ already wraps that slot in a `ULink`, so the extra `NuxtLink` rendered an anchor
52
+ inside an anchor and caused a hydration mismatch. The header link is now the only
53
+ link around the logo.
54
+ - Both Nav variants pass `to="/"` and `:title="header?.logo?.alt"` to `UHeader`, so the
55
+ link `aria-label` is the logo alt text instead of the `"Nuxt UI"` default.
56
+
33
57
  ## [1.4.2] - 2026-08-23
34
58
 
35
59
  ### Fixed
@@ -1,7 +1,7 @@
1
1
  <template>
2
- <UHeader>
2
+ <UHeader to="/" :title="header?.logo?.alt">
3
3
  <template #title>
4
- <nuxt-link to="/" v-if="header?.logo?.src">
4
+ <template v-if="header?.logo?.src">
5
5
  <img
6
6
  :src="header?.logo?.src"
7
7
  :alt="header?.logo?.alt || ''"
@@ -12,7 +12,7 @@
12
12
  :alt="header?.logo?.alt || ''"
13
13
  class="h-8 hidden dark:block"
14
14
  />
15
- </nuxt-link>
15
+ </template>
16
16
  <span v-else>{{ header?.logo?.alt }}</span>
17
17
  </template>
18
18
 
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <section
3
- class="relative min-h-svh flex overflow-hidden"
3
+ class="relative min-h-[calc(100svh-var(--ui-header-height))] flex overflow-hidden"
4
4
  :class="[
5
5
  alignmentClasses,
6
6
  verticalAlignClasses,
@@ -45,7 +45,7 @@
45
45
 
46
46
  <!-- Content -->
47
47
  <div class="relative z-10 w-full max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
48
- <div class="max-w-3xl" :class="contentAlignmentClasses">
48
+ <div class="max-w-3xl pb-6 md:pb-8" :class="contentAlignmentClasses">
49
49
  <!-- Eyebrow -->
50
50
  <p v-if="eyebrow" class="xText-eyebrow text-white/70 mb-4 xFadeUp">
51
51
  {{ eyebrow }}
@@ -2,8 +2,7 @@
2
2
  <component
3
3
  :is="'script'"
4
4
  type="application/ld+json"
5
- v-text="jsonLd"
6
- />
5
+ >{{ jsonLd }}</component>
7
6
  </template>
8
7
 
9
8
  <script setup>
@@ -1,7 +1,7 @@
1
1
  <template>
2
- <UHeader>
2
+ <UHeader to="/" :title="header?.logo?.alt">
3
3
  <template #title>
4
- <NuxtLink v-if="header?.logo?.src" to="/">
4
+ <template v-if="header?.logo?.src">
5
5
  <img
6
6
  :src="header?.logo?.src"
7
7
  :alt="header?.logo?.alt || ''"
@@ -12,7 +12,7 @@
12
12
  :alt="header?.logo?.alt || ''"
13
13
  class="h-8 hidden dark:block"
14
14
  />
15
- </NuxtLink>
15
+ </template>
16
16
  <span v-else>{{ header?.logo?.alt }}</span>
17
17
  </template>
18
18
 
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.2",
5
+ "version": "1.4.5",
6
6
  "main": "./nuxt.config.ts",
7
7
  "scripts": {
8
8
  "dev": "nuxi dev .playground",