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 totalHours={40} totalAmount={2000} />
<TimeEntryList {entries} />
<ApprovalActions
status="submitted"
onapprove={handleApprove}
onreject={handleReject}
/>