@marianmeres/stuic 3.58.0 → 3.59.0

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.
@@ -276,8 +276,8 @@
276
276
  </Button>
277
277
  {:else if tier.ctaLabel}
278
278
  <Button
279
- intent={tier.ctaIntent ?? (tier.highlighted ? "primary" : undefined)}
280
- variant={tier.ctaVariant ?? (tier.highlighted ? "solid" : "outline")}
279
+ intent={tier.ctaIntent ?? "primary"}
280
+ variant={tier.ctaVariant ?? "solid"}
281
281
  href={tier.ctaHref}
282
282
  onclick={tier.ctaOnClick
283
283
  ? () => tier.ctaOnClick!(tier, billingPeriod)
@@ -53,6 +53,17 @@
53
53
  transform var(--stuic-pricing-table-transition, var(--stuic-transition));
54
54
  }
55
55
 
56
+ /* ============================================================================
57
+ TIER CARD HOVER
58
+ ============================================================================ */
59
+
60
+ .stuic-pricing-table-tier:not([data-disabled]):hover {
61
+ border-color: var(
62
+ --stuic-pricing-table-tier-border-color-hover,
63
+ var(--stuic-color-primary)
64
+ );
65
+ }
66
+
56
67
  /* ============================================================================
57
68
  HIGHLIGHTED TIER
58
69
  ============================================================================ */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marianmeres/stuic",
3
- "version": "3.58.0",
3
+ "version": "3.59.0",
4
4
  "files": [
5
5
  "dist",
6
6
  "!dist/**/*.test.*",