beacon-ui 3.3.0 → 3.3.1

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
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [3.3.1] - 2026-01-01
9
+
10
+ ### Fixed
11
+ - Fixed Card component default background color from `bg-page-tertiary` to `bg-page-secondary`
12
+ - Fixed card preview elements in documentation to use `bg-page-secondary` instead of `bg-page-tertiary`
13
+ - Corrected API documentation to reflect correct default background color (`page-secondary` instead of `page-tertiary`)
14
+ - Fixed incorrect default values in API reference table (`showBgPattern` and `showOverlay` now correctly show `false`)
15
+
8
16
  ## [3.3.0] - 2025-01-02
9
17
 
10
18
  ### Added
@@ -45,7 +45,7 @@ export function Card({ padding = 400, height, status = "default", shadow, corner
45
45
  padding: getSpacingToken(padding),
46
46
  borderRadius: CORNER_RADIUS_MAP[cornerRadius],
47
47
  position: "relative",
48
- backgroundColor: isDefault ? "var(--bg-page-tertiary)" : "var(--bg-page-primary)",
48
+ backgroundColor: isDefault ? "var(--bg-page-secondary)" : "var(--bg-page-primary)",
49
49
  ...(heightValue && { height: heightValue }),
50
50
  ...(shadow && { boxShadow: getShadowToken(shadow) }),
51
51
  ...style,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "beacon-ui",
3
- "version": "3.3.0",
3
+ "version": "3.3.1",
4
4
  "description": "Beacon Design System - Components and tokens",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",