Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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 -->

## 9.5.0 ((6/24/2026, 01:54 PM PST))

This is an artificial version bump with no new change.

## 9.4.3 ((6/23/2026, 10:18 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": "9.4.3",
"version": "9.5.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 -->

## 9.5.0 ((6/24/2026, 01:54 PM PST))

This is an artificial version bump with no new change.

## 9.4.3 ((6/23/2026, 10:18 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": "9.4.3",
"version": "9.5.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 -->

## 9.5.0 (6/24/2026 PST)

#### 🚀 Updates

- Feat: allow animated stroke and text background. [[#771](https://github.com/coinbase/cds/pull/771)]

## 9.4.3 (6/23/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": "9.4.3",
"version": "9.5.0",
"description": "Coinbase Design System - Mobile",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/mobile/src/visualizations/chart/Path.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export type PathBaseProps = {
* When provided, will render a fill with the given color.
* If not provided, will not render a fill.
*/
stroke?: string;
stroke?: AnimatedProp<string>;
/**
* Opacity for the path stroke.
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/mobile/src/visualizations/chart/line/Line.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export type LineBaseProps = {
* The color of the line.
* @default color of the series or theme.color.fgPrimary
*/
stroke?: string;
stroke?: AnimatedProp<string>;
/**
* Opacity of the line
* @note when combined with gradient, both will be applied
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export type ReferenceLineBaseProps = {
* The color of the line.
* @default theme.color.bgLine
*/
stroke?: string;
stroke?: AnimatedProp<string>;
/**
* Opacity applied to both the line and label.
* @default 1
Expand Down
5 changes: 2 additions & 3 deletions packages/mobile/src/visualizations/chart/text/ChartText.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import type { ThemeVars } from '@coinbase/cds-common/core/theme';
import type { Rect } from '@coinbase/cds-common/types/Rect';
import {
type AnimatedProp,
type Color,
FontSlant,
FontWeight,
Group,
Expand Down Expand Up @@ -73,7 +72,7 @@ export type ChartTextBaseProps = {
* The background color of the text's background rectangle.
* @default theme.color.bgElevation1 if elevated, otherwise 'transparent'
*/
background?: string;
background?: AnimatedProp<string>;
/**
* Whether the text's background should have an elevated appearance with a shadow.
*/
Expand Down Expand Up @@ -487,7 +486,7 @@ export const ChartText = memo<ChartTextProps>(
<Group layer={<Paint opacity={groupOpacity} />}>
{background !== 'transparent' && (
<RoundedRect
color={background as Color}
color={background}
height={backgroundRectHeight}
r={borderRadius}
width={backgroundRectWidth}
Expand Down
4 changes: 4 additions & 0 deletions packages/web/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 -->

## 9.5.0 ((6/24/2026, 01:54 PM PST))

This is an artificial version bump with no new change.

## 9.4.3 (6/23/2026 PST)

#### 🐞 Fixes
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": "9.4.3",
"version": "9.5.0",
"description": "Coinbase Design System - Web",
"repository": {
"type": "git",
Expand Down
Loading