DS0
Components

Changelog

A timeline-based changelog display with version entries and type badges.

Overview

Changelog renders a vertical timeline of version entries, each with a version number, date, type badges (feature, fix, breaking), and description content.

feature

v1.2.0Command Palette & Color Picker

Added CommandPalette (⌘K) and ColorPicker components with full accessibility support.

fix

v1.1.1Calendar ARIA fix

Resolved keyboard navigation and screen reader announcements in the Calendar component.

feature

v1.1.0DataTable overhaul

DataTable now supports column sorting, row selection, and built-in pagination.

breaking

v1.0.0Initial release

First stable release of DS0 with 95 components and full documentation.

Usage

<Changelog entries={[
  { version: '2.1.0', date: '2024-03-15', type: 'feature',
    title: 'New Calendar component', description: 'Added date selection...' },
  { version: '2.0.1', date: '2024-03-10', type: 'fix',
    title: 'Fixed tooltip positioning', description: 'Resolved edge cases...' },
]} />

API Reference

PropTypeDefaultDescription
entriesChangelogEntry[][]Changelog entries
groupedbooleantrueGroup entries by version
ComponentWhen to Use Instead
TimelineGeneric event timeline

On this page