Non-expandable activity feed for audit trails, recent events, and workflow history.
ActivityTimeline renders lightweight chronological activity without expand/collapse behavior. Use it when the event summary itself is the content.
Show recent product activity with actor, timestamp, and tone.
Requested design and API review for the release.
All checks passed.
<ActivityTimeline
items={[
{
id: "review",
title: "Review requested",
actor: "Wandi",
description: "Requested design and API review for the release.",
timestamp: "10:30",
tone: "info",
},
{
id: "approved",
title: "Approved for publish",
actor: "FroggDesign",
description: "All checks passed.",
timestamp: "11:10",
tone: "success",
},
]}
/>import { ActivityTimeline, ActivityTimelineItem } from "@froggdesign/enter-ui-react";Use ActivityTimeline for audit logs, activity feeds, account history, release notes, support events, and recent changes panels. Use TimelineDetail when events need expandable details.
The component renders an ordered list. Tone colors are small accents only; title, actor, description, and timestamp remain text-based.
items: { id, title, description?, timestamp?, tone?, actor?, avatar? }[].ActivityTimelineItem: manual item component for custom composition.className.ActivityTimeline uses .eui-activity-timeline classes and FroggDesign tokens for layout, state, focus, and disabled styling.