Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ All notable changes to this project will be documented in this file.

<!-- template-start -->

## 8.53.0 ((3/16/2026, 08:58 AM PST))

This is an artificial version bump with no new change.

## 8.52.2 ((3/11/2026, 10:02 AM PST))

This is an artificial version bump with no new change.
Expand Down
2 changes: 1 addition & 1 deletion packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coinbase/cds-common",
"version": "8.52.2",
"version": "8.53.0",
"description": "Coinbase Design System - Common",
"repository": {
"type": "git",
Expand Down
4 changes: 4 additions & 0 deletions packages/mcp-server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ All notable changes to this project will be documented in this file.

<!-- template-start -->

## 8.53.0 ((3/16/2026, 08:58 AM PST))

This is an artificial version bump with no new change.

## 8.52.2 ((3/11/2026, 10:02 AM PST))

This is an artificial version bump with no new change.
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coinbase/cds-mcp-server",
"version": "8.52.2",
"version": "8.53.0",
"description": "Coinbase Design System - MCP Server",
"repository": {
"type": "git",
Expand Down
6 changes: 6 additions & 0 deletions packages/mobile/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ All notable changes to this project will be documented in this file.

<!-- template-start -->

## 8.53.0 (3/13/2026 PST)

#### 🐞 Fixes

- Refresh Checkbox component with 4px corner radius. [[#477](https://github.com/coinbase/cds/pull/477)]
Copy link
Contributor

@hcopp hcopp Mar 16, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@samcartersmith can you bump to 8.53? And then run yarn release to bump other versions.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep!


## 8.52.2 (3/11/2026 PST)

#### 🐞 Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/mobile/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coinbase/cds-mobile",
"version": "8.52.2",
"version": "8.53.0",
"description": "Coinbase Design System - Mobile",
"repository": {
"type": "git",
Expand Down
2 changes: 2 additions & 0 deletions packages/mobile/src/controls/Checkbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ const CheckboxWithRef = forwardRef(function Checkbox<CheckboxValue extends strin
accessibilityLabel,
accessibilityHint,
accessible = true,
borderRadius = 100,
...props
}: CheckboxProps<CheckboxValue>,
ref: React.ForwardedRef<View>,
Expand All @@ -121,6 +122,7 @@ const CheckboxWithRef = forwardRef(function Checkbox<CheckboxValue extends strin
accessibilityLabel={accessibilityLabelValue}
accessibilityRole="checkbox"
accessible={accessible}
borderRadius={borderRadius}
hitSlop={5}
label={children}
{...props}
Expand Down
6 changes: 5 additions & 1 deletion packages/web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ All notable changes to this project will be documented in this file.

<!-- template-start -->

## Unreleased
## 8.53.0 (3/13/2026 PST)

#### 🐞 Fixes

- Refresh Checkbox component with 4px corner radius. [[#477](https://github.com/coinbase/cds/pull/477)]

#### 📘 Misc

Expand Down
2 changes: 1 addition & 1 deletion packages/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coinbase/cds-web",
"version": "8.52.2",
"version": "8.53.0",
"description": "Coinbase Design System - Web",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/web/src/controls/Checkbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const CheckboxWithRef = forwardRef(function CheckboxWithRef<CheckboxValue extend
controlColor = 'fgInverse',
background = checked || indeterminate ? 'bgPrimary' : 'bg',
borderColor = checked || indeterminate ? 'bgPrimary' : 'bgLineHeavy',
borderRadius,
borderRadius = 100,
borderWidth = 100,
elevation,
...props
Expand Down
Loading