- CreateItemDialog: shared Zustand store for dialog state - TopBar: use store instead of router.push navigation - TaskDetailPanel: dynamic domain fetch from /api/domains - TodayTasksWidget: domain name resolution from UUIDs - ProjectProgressWidget: fetch real progress, default to 0 - Calendar page: domain filter fetches from API dynamically - Habits page: edit/delete dropdown with AlertDialog - Projects page: domain name display + delete button - Notes page: domain picker on creation, names in list - Settings domains: add color picker input - Tasks list view: MoreHorizontal wired to edit/delete - HabitCard: domain resolution + edit/delete dropdown - PocketBase compat: add JSDoc migration comment
8 lines
411 B
TypeScript
8 lines
411 B
TypeScript
export { useThemeStore } from './use-theme-store';
|
|
export { useSidebarStore } from './use-sidebar-store';
|
|
export { useDashboardStore } from './use-dashboard-store';
|
|
export { useTimerStore } from './use-timer-store';
|
|
export { useFilterStore } from './use-filter-store';
|
|
export { useKeyboardShortcutsStore } from './use-keyboard-shortcuts-store';
|
|
export { useCreateDialogStore } from './use-create-dialog-store';
|