build69
build69  /  Components  /  Timelines  /  TimelineAudit

TimelineAudit

v1.0.7Updated 27 Aug 2026

Compliance-style table view of audit events: actor / target / action / timestamp / IP, with optional filters and severity badges.

Preview

Live · 7 stories
DefaultOpen ↗
Why this is recommendedtimelineauditcompliancelog+3

The default, out-of-the-box TimelineAudit.

Recommended for+14
  • Security audit log surfaces
  • Compliance dashboards
  • Admin activity log
Tags+6
timelineauditcompliancelogtablesecuritydefault
Features+4
  • Tabular audit format (who / what / when / where)
  • Severity badges
  • Filter row (actor, action, severity)
  • Export-friendly
  • i18n: labels prop overrides every built-in string (toolbar, filters, headers, result pills, empty state); counts format via LocaleProvider — timestamps stay ISO yyyy-MM-dd HH:mm:ss by design
Not recommended for−2
  • Narrative timelines (use TimelineCentered)
  • Chat (use Chat)

Install

Ask your agent, or call the MCP tool directly. The resolved bundle is written into your project.

get_registry_item({ name: "TimelineAudit" })

Usage

import { TimelineAudit } from '@/components/data-display/timeline-audit';

<TimelineAudit events={events} />

Tick variants in the left menu — each adds a tab with that variant’s real story source, the same code the preview above renders.

Props

PropTypeRequired
events

Audit events

AuditEvent[]yes
filters

Active filters

AuditFilter[]
labels

Override any built-in UI string — toolbar, filters, table headers, result pills, expander arias, empty state (i18n). Merged over DEFAULT_TIMELINE_AUDIT_LABELS; {token} templates for counts

Partial<TimelineAuditLabels>

Related