Skip to content

Commit d9a813e

Browse files
committed
chore: release v0.11.0
Features: - Light/dark mode support for brand colors - Theme-aware color variants with BrandColorValue type - Documentation updates for brand customization
1 parent c84ddb1 commit d9a813e

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.11.0] - 2025-11-16
11+
12+
### Added
13+
14+
- **Light/Dark Mode Brand Colors**: Brand colors now support theme-aware variants
15+
- New `BrandColorValue` type: `string | { light: string; dark: string }`
16+
- Specify different colors for light and dark themes: `{ light: '#059669', dark: '#34D399' }`
17+
- Backward compatible - existing string colors work unchanged
18+
- Automatic CSS generation for both themes using data-attribute selectors
19+
- Validation caching prevents duplicate console warnings for string colors
20+
- Comprehensive unit tests for all light/dark mode scenarios
21+
22+
### Changed
23+
24+
- **Documentation**: Updated all README files with brand color customization examples
25+
- Added "Brand Color Customization" section with light/dark mode examples
26+
- Replaced brand-specific color examples with generic Tailwind CSS colors
27+
- Updated TOKEN_USAGE.md with CSS variable reference table
28+
29+
### Fixed
30+
31+
- **ESLint Configuration**: Added missing TypeScript ESLint plugins to workspace root
32+
- Resolves ESLint plugin resolution errors
33+
1034
## [0.10.0] - 2025-11-11
1135

1236
### Changed

packages/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ainativekit/ui",
3-
"version": "0.10.0",
3+
"version": "0.11.0",
44
"description": "React UI component library for ChatGPT Apps SDK - Production-ready components, hooks, and design system",
55
"type": "module",
66
"main": "./dist/index.cjs",

0 commit comments

Comments
 (0)