@xenterprises/nuxt-x-marketing 1.4.11 → 1.4.13

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,18 @@ 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.13] - 2026-09-06
34
+
35
+ ### Changed
36
+
37
+ - Pricing Enterprise CTA default label is **Get a quote** (was Contact Sales); same fallback when Enterprise omits `button.label`.
38
+
39
+ ## [1.4.12] - 2026-09-06
40
+
41
+ ### Changed
42
+
43
+ - `XMarkBlogDetail` date uses short month (`Sep 6, 2026`) to match Blog Card/Sidebar.
44
+
33
45
  ## [1.4.11] - 2026-09-06
34
46
 
35
47
  ### Changed
@@ -188,7 +188,7 @@ const formattedDate = computed(() => {
188
188
  const date = new Date(props.post.date);
189
189
  return date.toLocaleDateString("en-US", {
190
190
  year: "numeric",
191
- month: "long",
191
+ month: "short",
192
192
  day: "numeric",
193
193
  });
194
194
  });
@@ -60,7 +60,7 @@ const props = defineProps({
60
60
  id: "enterprise",
61
61
  name: "Enterprise",
62
62
  price: "$99/mo",
63
- button: { label: "Contact Sales" },
63
+ button: { label: "Get a quote" },
64
64
  },
65
65
  ],
66
66
  },
@@ -140,7 +140,11 @@ const mappedTiers = computed(() => {
140
140
  highlight: plan.highlighted,
141
141
  button: plan.button
142
142
  ? {
143
- label: plan.button.label || "Get Started",
143
+ label:
144
+ plan.button.label
145
+ || (/enterprise/i.test(plan.name || "")
146
+ ? "Get a quote"
147
+ : "Get Started"),
144
148
  color: plan.highlighted ? "primary" : "neutral",
145
149
  variant: plan.highlighted ? "solid" : "outline",
146
150
  onClick: () => emit("select", plan),
@@ -113,7 +113,7 @@ const props = defineProps({
113
113
  "Custom integrations",
114
114
  "SLA guarantee",
115
115
  ],
116
- button: { label: "Contact Sales" },
116
+ button: { label: "Get a quote" },
117
117
  },
118
118
  ],
119
119
  },
@@ -216,7 +216,11 @@ const mappedPlans = computed(() => {
216
216
  scale: shouldScale,
217
217
  badge: isHighlighted ? "Most Popular" : undefined,
218
218
  button: {
219
- label: plan.button?.label || "Get Started",
219
+ label:
220
+ plan.button?.label
221
+ || (/enterprise/i.test(plan.name || "")
222
+ ? "Get a quote"
223
+ : "Get Started"),
220
224
  onClick: () => emit("select", plan),
221
225
  },
222
226
  };
@@ -76,7 +76,7 @@
76
76
  <div class="mt-8 flex flex-wrap justify-center gap-4">
77
77
  <UButton size="xl" color="white"> Start Free Trial </UButton>
78
78
  <UButton size="xl" variant="outline" color="white">
79
- Contact Sales
79
+ Get a quote
80
80
  </UButton>
81
81
  </div>
82
82
  <div class="mt-6 flex flex-wrap justify-center gap-4">
@@ -204,7 +204,7 @@ const pricingPlans = [
204
204
  "Custom integrations",
205
205
  "SLA guarantee",
206
206
  ],
207
- cta: "Contact Sales",
207
+ cta: "Get a quote",
208
208
  },
209
209
  ];
210
210
  </script>
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.11",
5
+ "version": "1.4.13",
6
6
  "main": "./nuxt.config.ts",
7
7
  "scripts": {
8
8
  "dev": "nuxi dev .playground",