Skip to content

Commit f685b56

Browse files
committed
release: version 0.5.0
- Bump version to 0.5.0 - Update changelog with new features - Fix typography token test count
1 parent 69a75c1 commit f685b56

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.5.0] - 2025-11-06
11+
12+
### Added
13+
14+
- **SummaryCard Enhancements**:
15+
- Top overlay support with `topOverlay` prop and helper component
16+
- Configurable description lines with `maxDescriptionLines` prop
17+
- Loading skeleton states for better UX
18+
- Flat variant with edge-to-edge layout for immersive designs
19+
- **Map Component**: Configurable scroll wheel zoom controls
20+
- **Carousel Component**: Drag-free scrolling and trackpad support
21+
- **Typography System**: Complete font weight token system with light variants
22+
23+
### Changed
24+
25+
- **Card Component**: Reduced spacing for more compact design
26+
- **SummaryCard**: Consolidated DiscoveryCard functionality with improved structure
27+
28+
### Fixed
29+
30+
- Pizza restaurant description and SummaryCard dimension adjustments
31+
1032
## [0.4.0] - 2025-11-03
1133

1234
### Added
@@ -103,5 +125,6 @@ This library follows [Semantic Versioning](https://semver.org/):
103125

104126
---
105127

128+
[0.5.0]: https://github.com/ainativekit/ainativekit-ui/releases/tag/v0.5.0
106129
[0.4.0]: https://github.com/ainativekit/ainativekit-ui/releases/tag/v0.4.0
107130
[0.1.0]: https://github.com/ainativekit/ainativekit-ui/releases/tag/v0.1.0

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.4.0",
3+
"version": "0.5.0",
44
"description": "AI Native Kit - Component library for AI-powered applications",
55
"type": "module",
66
"main": "./dist/index.cjs",

packages/ui/src/tokens/tokens.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ describe('Design Tokens', () => {
200200
});
201201

202202
it('should include all defined typography tokens', () => {
203-
expect(Object.keys(typography).length).toBe(11);
203+
expect(Object.keys(typography).length).toBe(13);
204204
});
205205
});
206206

0 commit comments

Comments
 (0)