@burdenoff/website-sdk 2026.516.5 → 2026.516.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/dist/index.mjs CHANGED
@@ -1638,6 +1638,27 @@ function PricingSection(props) {
1638
1638
  return p;
1639
1639
  });
1640
1640
  const hasApiEnterprisePlans = enterpriseCards.length > 0;
1641
+ const defaultEnterpriseCard = {
1642
+ name: "Enterprise",
1643
+ subtitle: "For organizations that need more",
1644
+ description: "For organizations that need more",
1645
+ price: "Custom",
1646
+ period: "",
1647
+ interval: "",
1648
+ button: "Contact Sales",
1649
+ buttonLink: props.contactUrl || "/contact",
1650
+ ctaText: "Contact Sales",
1651
+ ctaLink: props.contactUrl || "/contact",
1652
+ popular: false,
1653
+ features: props.fallbackFeatures?.enterprise || [
1654
+ "Unlimited everything",
1655
+ "SSO & SAML",
1656
+ "Audit logs",
1657
+ "Dedicated support",
1658
+ "Self-hosted option"
1659
+ ]
1660
+ };
1661
+ const resolvedEnterprisePlans = hasApiEnterprisePlans ? enterpriseCards : props.enterprisePlans ? props.enterprisePlans : [defaultEnterpriseCard];
1641
1662
  const plans = props.showAudienceTabs && audience === "enterprise" ? [] : individualPlans;
1642
1663
  if (loading) {
1643
1664
  return /* @__PURE__ */ jsx("section", { id, className: `py-12 sm:py-16 md:py-20 ${className}`, children: /* @__PURE__ */ jsxs("div", { className: "container mx-auto px-4 sm:px-6", children: [
@@ -1717,9 +1738,9 @@ function PricingSection(props) {
1717
1738
  /* @__PURE__ */ jsx("h3", { className: "text-xl sm:text-2xl font-bold text-foreground", children: props.enterpriseHeading || "Enterprise Solutions" }),
1718
1739
  /* @__PURE__ */ jsx("p", { className: "mt-3 text-muted-foreground", children: props.enterpriseSubtitle || "Built for teams, agencies, and organizations that need advanced collaboration, security, support, and scale." })
1719
1740
  ] }),
1720
- /* @__PURE__ */ jsx("div", { className: "grid md:grid-cols-3 gap-6 sm:gap-8 max-w-6xl mx-auto items-stretch", children: props.showAudienceTabs && audience === "enterprise" && (hasApiEnterprisePlans || props.enterprisePlans) ? (
1721
- /* Enterprise cards — from API if available, otherwise from static prop */
1722
- (hasApiEnterprisePlans ? enterpriseCards : props.enterprisePlans || []).map((ep) => {
1741
+ /* @__PURE__ */ jsx("div", { className: "grid md:grid-cols-3 gap-6 sm:gap-8 max-w-6xl mx-auto items-stretch", children: props.showAudienceTabs && audience === "enterprise" ? (
1742
+ /* Enterprise cards — from API, static prop, or built-in default */
1743
+ resolvedEnterprisePlans.map((ep) => {
1723
1744
  const subtitle = ep.subtitle || ep.description || "";
1724
1745
  const btnText = ep.button || ep.ctaText || "Get Started";
1725
1746
  const btnLink = ep.buttonLink || ep.ctaLink || props.appLoginUrl;