Project Components
Time tracking and project management UI from smrt-projects module.
TimeEntryCard
Display individual time entry
TimeEntryList
List of time entries with filtering
TimeSummary
Aggregated time statistics
DurationDisplay
Formatted duration with units
ApprovalActions
Approve/reject time entries
BulkActions
Batch operations on entries
RejectDialog
Modal for rejection with reason
Usage Example
typescript
import {
TimeEntryList,
TimeSummary,
ApprovalActions
} from '@happyvertical/smrt-projects/svelte';
<!-- Time tracking dashboard -->
<TimeSummary entries={weekEntries} />
<TimeEntryList {entries} />
<ApprovalActions
selectedIds={selected}
onapprove={handleApprove}
onreject={handleReject}
/>