Project Initialized
Successfully set up the project repository and initial architecture.
Beta Release
Launched the beta version for early testers and feedback.
Official Launch
The platform is now live for all users worldwide.
Installation
Section titled “Installation”pnpm dlx shadcn@latest add pxl-ui/registry/timeline
Copy and paste the following code into your project.
Update the import paths to match your project setup.
import { Timeline, TimelineContent, TimelineDate, TimelineHeader, TimelineIndicator, TimelineItem, TimelineSeparator, TimelineTitle,} from "@/components/reui/timeline"<Timeline> <TimelineItem step={1}> <TimelineHeader> <TimelineDate>March 2024</TimelineDate> <TimelineTitle>Project Initialized</TimelineTitle> </TimelineHeader> <TimelineIndicator /> <TimelineSeparator /> <TimelineContent> Successfully set up the project repository and initial architecture. </TimelineContent> </TimelineItem></Timeline>Horizontal Orientation
Section titled “Horizontal Orientation”Planning
Scope definition and resource planning.
Design
UI/UX design and prototyping.
Development
Core features implementation.
With Icons
Section titled “With Icons”Forked Repository
Forked the repository to create a new branch for development.
Pull Request Submitted
Submitted PR #342 with new feature implementation. Waiting for code review.
Comparing Branches
Received comments on PR. Minor adjustments needed in error handling.
Merged Branch
Merged the feature branch into the main branch. Ready for deployment.
With Left-Aligned Dates
Section titled “With Left-Aligned Dates”AI Engine Integration
Deep integration of advanced LLMs for real-time code generation and context-aware suggestions.
Collaborative Editing
Multi-user real-time collaboration with shared cursors and instant synchronization across workspaces.
Visual Theme Builder
Interactive interface for creating and managing custom design systems with automated CSS variable generation.
Enterprise Security
Role-based access control, SOC2 compliance audit, and enhanced data encryption protocols.
Alternating layout
Section titled “Alternating layout”Seed Funding
Product MVP
First Client
Series A
Global Expansion
API Reference
Section titled “API Reference”Timeline
Section titled “Timeline”The root component for the timeline.
| Prop | Type | Default | Description |
|---|---|---|---|
defaultValue |
number |
1 |
The initial active step. |
value |
number |
- | The current active step (controlled). |
onValueChange |
(value: number) => void |
- | Callback fired when the active step changes. |
orientation |
"horizontal" | "vertical" |
"vertical" |
The layout orientation of the timeline. |
TimelineItem
Section titled “TimelineItem”A single item in the timeline.
| Prop | Type | Default | Description |
|---|---|---|---|
step |
number |
- | Required. The step number for this item. |
TimelineDate
Section titled “TimelineDate”The date or time label for a timeline item.
| Prop | Type | Default | Description |
|---|---|---|---|
className |
string |
- | Additional CSS classes for the date label. |
TimelineTitle
Section titled “TimelineTitle”The title for a timeline item.
| Prop | Type | Default | Description |
|---|---|---|---|
className |
string |
- | Additional CSS classes for the title. |
TimelineIndicator
Section titled “TimelineIndicator”The visual indicator (usually a dot) for a timeline item.
| Prop | Type | Default | Description |
|---|---|---|---|
className |
string |
- | Additional CSS classes for the indicator. |
TimelineSeparator
Section titled “TimelineSeparator”The line connecting timeline indicators.
| Prop | Type | Default | Description |
|---|---|---|---|
className |
string |
- | Additional CSS classes for the separator line. |
TimelineHeader
Section titled “TimelineHeader”A container for the date and title.
| Prop | Type | Default | Description |
|---|---|---|---|
className |
string |
- | Additional CSS classes for the header container. |
TimelineContent
Section titled “TimelineContent”The main descriptive content for a timeline item.
| Prop | Type | Default | Description |
|---|---|---|---|
className |
string |
- | Additional CSS classes for the content container. |