@agentiffai/design 1.3.25 → 1.3.26

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.js CHANGED
@@ -578,7 +578,7 @@ var StyledExecutions = styled50.span`
578
578
  `;
579
579
  function formatPrice(price, billingInterval = "monthly") {
580
580
  if (price == null) return "Free";
581
- if (billingInterval === "annual") return `$${(price * 12).toFixed(2)}/year`;
581
+ if (billingInterval === "annual") return `$${(price * 12 * 0.7).toFixed(2)}/year`;
582
582
  return `$${price.toFixed(2)}/mo`;
583
583
  }
584
584
  function TrialPlanCard({
@@ -2326,7 +2326,7 @@ DarkNotificationCard.displayName = "DarkNotificationCard";
2326
2326
  var Container7 = styled50.div`
2327
2327
  width: 100%;
2328
2328
  height: 100%;
2329
- background-color: transparent;
2329
+ background-color: ${tokens.colors.background.dark};
2330
2330
  color: ${tokens.colors.text.primary};
2331
2331
  display: flex;
2332
2332
  flex-direction: column;