@xenterprises/nuxt-x-marketing 1.4.6 → 1.4.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.
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.7] - 2026-09-06
|
|
34
|
+
|
|
35
|
+
### Fixed
|
|
36
|
+
|
|
37
|
+
- `XXLegal` and `XFooterXLegal` show the X Enterprises logo as display-only (no link), matching the marketing page standard.
|
|
38
|
+
|
|
33
39
|
## [1.4.6] - 2026-09-06
|
|
34
40
|
|
|
35
41
|
### Added
|
|
@@ -2,13 +2,12 @@
|
|
|
2
2
|
<footer
|
|
3
3
|
class="bg-gray-900 text-gray-400 text-xs relative overflow-visible pt-2"
|
|
4
4
|
>
|
|
5
|
-
<
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
</a>
|
|
5
|
+
<img
|
|
6
|
+
v-if="resolvedLogo.src"
|
|
7
|
+
:src="resolvedLogo.src"
|
|
8
|
+
:alt="resolvedLogo.alt"
|
|
9
|
+
class="h-6 w-6 mx-auto -mt-4 relative z-10"
|
|
10
|
+
/>
|
|
12
11
|
<div
|
|
13
12
|
class="flex flex-col md:flex-row justify-between items-center px-6 pt-3 pb-5 max-w-screen-2xl mx-auto gap-4"
|
|
14
13
|
>
|
|
@@ -43,7 +42,7 @@ const props = defineProps({
|
|
|
43
42
|
type: Array,
|
|
44
43
|
default: null,
|
|
45
44
|
},
|
|
46
|
-
/** Logo object { src, alt
|
|
45
|
+
/** Logo object { src, alt } (defaults to X Enterprises logo). href is ignored; logo is display-only. */
|
|
47
46
|
logo: {
|
|
48
47
|
type: Object,
|
|
49
48
|
default: null,
|
|
@@ -2,13 +2,12 @@
|
|
|
2
2
|
<footer
|
|
3
3
|
class="bg-gray-900 text-gray-400 text-xs relative overflow-visible pt-2"
|
|
4
4
|
>
|
|
5
|
-
<
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
</a>
|
|
5
|
+
<img
|
|
6
|
+
v-if="resolvedLogo.src"
|
|
7
|
+
:src="resolvedLogo.src"
|
|
8
|
+
:alt="resolvedLogo.alt"
|
|
9
|
+
class="h-6 w-6 mx-auto -mt-4 relative z-10"
|
|
10
|
+
/>
|
|
12
11
|
<div
|
|
13
12
|
class="flex flex-col md:flex-row justify-between items-center px-6 pt-3 pb-5 max-w-screen-2xl mx-auto gap-4"
|
|
14
13
|
>
|
|
@@ -38,6 +37,7 @@
|
|
|
38
37
|
/**
|
|
39
38
|
* XXLegal — X Enterprises branded legal footer bar
|
|
40
39
|
* Defaults to X Enterprises copyright, logo, and legal links.
|
|
40
|
+
* XE logo is display-only (no link), per marketing page standard.
|
|
41
41
|
* Pass props to override any defaults for white-label use.
|
|
42
42
|
*/
|
|
43
43
|
const props = defineProps({
|
|
@@ -51,7 +51,7 @@ const props = defineProps({
|
|
|
51
51
|
type: Array,
|
|
52
52
|
default: null,
|
|
53
53
|
},
|
|
54
|
-
/** Logo object { src, alt
|
|
54
|
+
/** Logo object { src, alt } (defaults to X Enterprises logo). Pass false to hide. href is ignored; logo is display-only. */
|
|
55
55
|
logo: {
|
|
56
56
|
type: [Object, Boolean],
|
|
57
57
|
default: null,
|