mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-28 05:46:58 +02:00
Drop the filled status chip (bg-warning/text-white etc.) from the list/board column headers — StatusIcon already carries the semantic color, so the chip duplicated it on the text background, and the bg-muted variants were nearly invisible against the muted/40 row background. Wrap the shared icon + label + count in a new StatusHeading component used by both list-view and board-column. Remove the now-unused badgeBg/badgeText fields from STATUS_CONFIG. Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
12 lines
587 B
TypeScript
12 lines
587 B
TypeScript
export { StatusIcon } from "./status-icon";
|
|
export { StatusHeading } from "./status-heading";
|
|
export { PriorityIcon } from "./priority-icon";
|
|
export { StatusPicker, PriorityPicker, AssigneePicker, canAssignAgent, DueDatePicker, LabelPicker } from "./pickers";
|
|
export { IssueDetail } from "./issue-detail";
|
|
export { IssuesPage } from "./issues-page";
|
|
export { CommentCard } from "./comment-card";
|
|
export { CommentInput } from "./comment-input";
|
|
export { ReplyInput } from "./reply-input";
|
|
export { IssueMentionCard } from "./issue-mention-card";
|
|
export { IssueChip } from "./issue-chip";
|