feat: implement label management with color filtering

This commit is contained in:
2026-01-04 22:47:54 +01:00
parent a154192410
commit dfa88c5b63
20 changed files with 674 additions and 177 deletions

View File

@@ -4,6 +4,15 @@ export interface CheckItem {
checked: boolean;
}
export interface Label {
id: string;
name: string;
color: LabelColorName;
userId?: string | null;
createdAt: Date;
updatedAt: Date;
}
export interface Note {
id: string;
title: string | null;