@tasks-timeline/components 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +524 -0
- package/dist/TasksTimelineApp.d.ts +17 -0
- package/dist/TasksTimelineApp.d.ts.map +1 -0
- package/dist/components/AppContext.d.ts +6 -0
- package/dist/components/AppContext.d.ts.map +1 -0
- package/dist/components/BacklogSection.d.ts +8 -0
- package/dist/components/BacklogSection.d.ts.map +1 -0
- package/dist/components/CategoryPopover.d.ts +9 -0
- package/dist/components/CategoryPopover.d.ts.map +1 -0
- package/dist/components/DateBadge.d.ts +15 -0
- package/dist/components/DateBadge.d.ts.map +1 -0
- package/dist/components/DaySection.d.ts +8 -0
- package/dist/components/DaySection.d.ts.map +1 -0
- package/dist/components/ErrorFallback.d.ts +10 -0
- package/dist/components/ErrorFallback.d.ts.map +1 -0
- package/dist/components/HelpModal.d.ts +8 -0
- package/dist/components/HelpModal.d.ts.map +1 -0
- package/dist/components/Icon.d.ts +8 -0
- package/dist/components/Icon.d.ts.map +1 -0
- package/dist/components/InputBar.d.ts +6 -0
- package/dist/components/InputBar.d.ts.map +1 -0
- package/dist/components/Motion.d.ts +7 -0
- package/dist/components/Motion.d.ts.map +1 -0
- package/dist/components/PriorityPopover.d.ts +8 -0
- package/dist/components/PriorityPopover.d.ts.map +1 -0
- package/dist/components/TagBadge.d.ts +12 -0
- package/dist/components/TagBadge.d.ts.map +1 -0
- package/dist/components/TaskEditModal.d.ts +12 -0
- package/dist/components/TaskEditModal.d.ts.map +1 -0
- package/dist/components/TaskItem.d.ts +10 -0
- package/dist/components/TaskItem.d.ts.map +1 -0
- package/dist/components/Toast.d.ts +15 -0
- package/dist/components/Toast.d.ts.map +1 -0
- package/dist/components/TodoList.d.ts +7 -0
- package/dist/components/TodoList.d.ts.map +1 -0
- package/dist/components/YearSection.d.ts +8 -0
- package/dist/components/YearSection.d.ts.map +1 -0
- package/dist/components/index.d.ts +19 -0
- package/dist/components/index.d.ts.map +1 -0
- package/dist/components/settings/About.d.ts +2 -0
- package/dist/components/settings/About.d.ts.map +1 -0
- package/dist/components/settings/Documentation.d.ts +2 -0
- package/dist/components/settings/Documentation.d.ts.map +1 -0
- package/dist/components/settings/SettingsModal.d.ts +15 -0
- package/dist/components/settings/SettingsModal.d.ts.map +1 -0
- package/dist/components/settings/SettingsPage.d.ts +16 -0
- package/dist/components/settings/SettingsPage.d.ts.map +1 -0
- package/dist/components/settings/SettingsPageAdvanced.d.ts +9 -0
- package/dist/components/settings/SettingsPageAdvanced.d.ts.map +1 -0
- package/dist/components/settings/SettingsPageGeneral.d.ts +9 -0
- package/dist/components/settings/SettingsPageGeneral.d.ts.map +1 -0
- package/dist/components/settings/ThemeSection.d.ts +8 -0
- package/dist/components/settings/ThemeSection.d.ts.map +1 -0
- package/dist/components/settings/TypographySection.d.ts +8 -0
- package/dist/components/settings/TypographySection.d.ts.map +1 -0
- package/dist/components/settings/ViewSection.d.ts +23 -0
- package/dist/components/settings/ViewSection.d.ts.map +1 -0
- package/dist/components/settings/ViewSectionConstants.d.ts +10 -0
- package/dist/components/settings/ViewSectionConstants.d.ts.map +1 -0
- package/dist/components/settings/index.d.ts +8 -0
- package/dist/components/settings/index.d.ts.map +1 -0
- package/dist/components/ui/badge-variants.d.ts +4 -0
- package/dist/components/ui/badge-variants.d.ts.map +1 -0
- package/dist/components/ui/badge.d.ts +8 -0
- package/dist/components/ui/badge.d.ts.map +1 -0
- package/dist/components/ui/button-variants.d.ts +5 -0
- package/dist/components/ui/button-variants.d.ts.map +1 -0
- package/dist/components/ui/button.d.ts +9 -0
- package/dist/components/ui/button.d.ts.map +1 -0
- package/dist/components/ui/calendar.d.ts +11 -0
- package/dist/components/ui/calendar.d.ts.map +1 -0
- package/dist/components/ui/collapsible.d.ts +4 -0
- package/dist/components/ui/collapsible.d.ts.map +1 -0
- package/dist/components/ui/date-picker.d.ts +11 -0
- package/dist/components/ui/date-picker.d.ts.map +1 -0
- package/dist/components/ui/dialog.d.ts +16 -0
- package/dist/components/ui/dialog.d.ts.map +1 -0
- package/dist/components/ui/dropdown-menu.d.ts +22 -0
- package/dist/components/ui/dropdown-menu.d.ts.map +1 -0
- package/dist/components/ui/input.d.ts +4 -0
- package/dist/components/ui/input.d.ts.map +1 -0
- package/dist/components/ui/popover.d.ts +5 -0
- package/dist/components/ui/popover.d.ts.map +1 -0
- package/dist/components/ui/sonner.d.ts +5 -0
- package/dist/components/ui/sonner.d.ts.map +1 -0
- package/dist/contexts/SettingsContext.d.ts +22 -0
- package/dist/contexts/SettingsContext.d.ts.map +1 -0
- package/dist/contexts/TasksContext.d.ts +19 -0
- package/dist/contexts/TasksContext.d.ts.map +1 -0
- package/dist/contexts/index.d.ts +3 -0
- package/dist/contexts/index.d.ts.map +1 -0
- package/dist/hooks/index.d.ts +11 -0
- package/dist/hooks/index.d.ts.map +1 -0
- package/dist/hooks/useAIAgent.d.ts +5 -0
- package/dist/hooks/useAIAgent.d.ts.map +1 -0
- package/dist/hooks/usePortalContainer.d.ts +6 -0
- package/dist/hooks/usePortalContainer.d.ts.map +1 -0
- package/dist/hooks/useTaskFiltering.d.ts +7 -0
- package/dist/hooks/useTaskFiltering.d.ts.map +1 -0
- package/dist/hooks/useTaskStats.d.ts +9 -0
- package/dist/hooks/useTaskStats.d.ts.map +1 -0
- package/dist/hooks/useVoiceInput.d.ts +5 -0
- package/dist/hooks/useVoiceInput.d.ts.map +1 -0
- package/dist/index.css +1 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +74888 -0
- package/dist/index.js.map +1 -0
- package/dist/index.umd.cjs +258 -0
- package/dist/index.umd.cjs.map +1 -0
- package/dist/lib/utils.d.ts +2 -0
- package/dist/lib/utils.d.ts.map +1 -0
- package/dist/storage.d.ts +44 -0
- package/dist/storage.d.ts.map +1 -0
- package/dist/types/index.d.ts +7 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types.d.ts +127 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/utils/ai-tools.d.ts +3 -0
- package/dist/utils/ai-tools.d.ts.map +1 -0
- package/dist/utils/cn.d.ts +3 -0
- package/dist/utils/cn.d.ts.map +1 -0
- package/dist/utils/date.d.ts +6 -0
- package/dist/utils/date.d.ts.map +1 -0
- package/dist/utils/index.d.ts +11 -0
- package/dist/utils/index.d.ts.map +1 -0
- package/dist/utils/logger.d.ts +10 -0
- package/dist/utils/logger.d.ts.map +1 -0
- package/dist/utils/parsing.d.ts +3 -0
- package/dist/utils/parsing.d.ts.map +1 -0
- package/dist/utils/task.d.ts +9 -0
- package/dist/utils/task.d.ts.map +1 -0
- package/dist/vite.svg +1 -0
- package/package.json +115 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { Task } from "@/types";
|
|
2
|
+
export interface PriorityPopoverProps {
|
|
3
|
+
task: Task;
|
|
4
|
+
onUpdate: (task: Task) => void;
|
|
5
|
+
badgeClass: string;
|
|
6
|
+
}
|
|
7
|
+
export declare const PriorityPopover: ({ task, badgeClass, onUpdate, }: PriorityPopoverProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
//# sourceMappingURL=PriorityPopover.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PriorityPopover.d.ts","sourceRoot":"","sources":["../../src/components/PriorityPopover.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAY,IAAI,EAAE,MAAM,SAAS,CAAC;AAW9C,MAAM,WAAW,oBAAoB;IACnC,IAAI,EAAE,IAAI,CAAC;IACX,QAAQ,EAAE,CAAC,IAAI,EAAE,IAAI,KAAK,IAAI,CAAC;IAC/B,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,eAAO,MAAM,eAAe,GAAI,iCAI7B,oBAAoB,4CA4DtB,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { Task } from "@/types";
|
|
2
|
+
export interface TagBadgeProps {
|
|
3
|
+
tag: {
|
|
4
|
+
id: string;
|
|
5
|
+
name: string;
|
|
6
|
+
};
|
|
7
|
+
badgeClass: string;
|
|
8
|
+
task: Task;
|
|
9
|
+
onUpdate: (task: Task) => void;
|
|
10
|
+
}
|
|
11
|
+
export declare const TagBadge: ({ tag, badgeClass, task, onUpdate, }: TagBadgeProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
//# sourceMappingURL=TagBadge.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TagBadge.d.ts","sourceRoot":"","sources":["../../src/components/TagBadge.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAWpC,MAAM,WAAW,aAAa;IAC5B,GAAG,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAAC;IAClC,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,EAAE,IAAI,CAAC;IACX,QAAQ,EAAE,CAAC,IAAI,EAAE,IAAI,KAAK,IAAI,CAAC;CAChC;AAED,eAAO,MAAM,QAAQ,GAAI,sCAKtB,aAAa,4CA4Cf,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import type { Task } from "../types";
|
|
3
|
+
interface TaskEditModalProps {
|
|
4
|
+
isOpen: boolean;
|
|
5
|
+
onClose: () => void;
|
|
6
|
+
task: Task | null;
|
|
7
|
+
onSave: (task: Task) => void;
|
|
8
|
+
availableCategories: string[];
|
|
9
|
+
}
|
|
10
|
+
export declare const TaskEditModal: React.FC<TaskEditModalProps>;
|
|
11
|
+
export {};
|
|
12
|
+
//# sourceMappingURL=TaskEditModal.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TaskEditModal.d.ts","sourceRoot":"","sources":["../../src/components/TaskEditModal.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAIxC,OAAO,KAAK,EAAY,IAAI,EAAE,MAAM,UAAU,CAAC;AAK/C,UAAU,kBAAkB;IAC1B,MAAM,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,IAAI,EAAE,IAAI,GAAG,IAAI,CAAC;IAClB,MAAM,EAAE,CAAC,IAAI,EAAE,IAAI,KAAK,IAAI,CAAC;IAC7B,mBAAmB,EAAE,MAAM,EAAE,CAAC;CAC/B;AA0sBD,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CAkCtD,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import type { Task } from "../types";
|
|
3
|
+
import { type DateValidationState } from "../utils";
|
|
4
|
+
interface TaskItemProps {
|
|
5
|
+
task: Task;
|
|
6
|
+
dateValidation?: DateValidationState;
|
|
7
|
+
}
|
|
8
|
+
export declare const TaskItem: React.FC<TaskItemProps>;
|
|
9
|
+
export {};
|
|
10
|
+
//# sourceMappingURL=TaskItem.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TaskItem.d.ts","sourceRoot":"","sources":["../../src/components/TaskItem.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAG3D,OAAO,KAAK,EAAE,IAAI,EAAc,MAAM,UAAU,CAAC;AACjD,OAAO,EAKL,KAAK,mBAAmB,EACzB,MAAM,UAAU,CAAC;AAgBlB,UAAU,aAAa;IACrB,IAAI,EAAE,IAAI,CAAC;IACX,cAAc,CAAC,EAAE,mBAAmB,CAAC;CACtC;AAQD,eAAO,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC,aAAa,CAuiB5C,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export type ToastType = "success" | "error" | "info";
|
|
3
|
+
export interface ToastMessage {
|
|
4
|
+
id: string;
|
|
5
|
+
type: ToastType;
|
|
6
|
+
title: string;
|
|
7
|
+
description?: string;
|
|
8
|
+
}
|
|
9
|
+
interface ToastProps {
|
|
10
|
+
toast: ToastMessage;
|
|
11
|
+
onDismiss: (id: string) => void;
|
|
12
|
+
}
|
|
13
|
+
export declare const Toast: React.FC<ToastProps>;
|
|
14
|
+
export {};
|
|
15
|
+
//# sourceMappingURL=Toast.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Toast.d.ts","sourceRoot":"","sources":["../../src/components/Toast.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAKzC,MAAM,MAAM,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,CAAC;AAErD,MAAM,WAAW,YAAY;IAC3B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,SAAS,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,UAAU,UAAU;IAClB,KAAK,EAAE,YAAY,CAAC;IACpB,SAAS,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;CACjC;AAED,eAAO,MAAM,KAAK,EAAE,KAAK,CAAC,EAAE,CAAC,UAAU,CAmFtC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TodoList.d.ts","sourceRoot":"","sources":["../../src/components/TodoList.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAUvC,UAAU,aAAa;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,eAAO,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC,aAAa,CA0H5C,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"YearSection.d.ts","sourceRoot":"","sources":["../../src/components/YearSection.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAExC,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAW1C,UAAU,gBAAgB;IACxB,KAAK,EAAE,SAAS,CAAC;CAClB;AAED,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAoFlD,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Component Library Exports
|
|
3
|
+
*
|
|
4
|
+
* Re-exports all UI components from the tasks-timeline component library.
|
|
5
|
+
*/
|
|
6
|
+
export { DaySection } from "./DaySection";
|
|
7
|
+
export { YearSection } from "./YearSection";
|
|
8
|
+
export { BacklogSection } from "./BacklogSection";
|
|
9
|
+
export { TaskItem } from "./TaskItem";
|
|
10
|
+
export { TodoList } from "./TodoList";
|
|
11
|
+
export { InputBar } from "./InputBar";
|
|
12
|
+
export { TaskEditModal } from "./TaskEditModal";
|
|
13
|
+
export * from "./settings/index";
|
|
14
|
+
export { HelpModal } from "./HelpModal";
|
|
15
|
+
export { Toast } from "./Toast";
|
|
16
|
+
export type { ToastMessage, ToastType } from "./Toast";
|
|
17
|
+
export { Icon } from "./Icon";
|
|
18
|
+
export type { IconProps } from "./Icon";
|
|
19
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAGlD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAGtC,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,cAAc,kBAAkB,CAAC;AACjC,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAGxC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,YAAY,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AACvD,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAC9B,YAAY,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"About.d.ts","sourceRoot":"","sources":["../../../src/components/settings/About.tsx"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK,+CA+GjB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Documentation.d.ts","sourceRoot":"","sources":["../../../src/components/settings/Documentation.tsx"],"names":[],"mappings":"AAEA,eAAO,MAAM,aAAa,+CAiNzB,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import type { AppSettings, CustomSettingsTab } from "../../types";
|
|
3
|
+
interface SettingsModalProps {
|
|
4
|
+
isOpen: boolean;
|
|
5
|
+
onClose: () => void;
|
|
6
|
+
settings: AppSettings;
|
|
7
|
+
onUpdateSettings: (newSettings: AppSettings) => void;
|
|
8
|
+
availableTags: string[];
|
|
9
|
+
availableCategories: string[];
|
|
10
|
+
/** Custom tabs injected by host applications */
|
|
11
|
+
customTabs?: CustomSettingsTab[];
|
|
12
|
+
}
|
|
13
|
+
export declare const SettingsModal: React.FC<SettingsModalProps>;
|
|
14
|
+
export {};
|
|
15
|
+
//# sourceMappingURL=SettingsModal.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SettingsModal.d.ts","sourceRoot":"","sources":["../../../src/components/settings/SettingsModal.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,WAAW,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAIlE,UAAU,kBAAkB;IAC1B,MAAM,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,QAAQ,EAAE,WAAW,CAAC;IACtB,gBAAgB,EAAE,CAAC,WAAW,EAAE,WAAW,KAAK,IAAI,CAAC;IAErD,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,mBAAmB,EAAE,MAAM,EAAE,CAAC;IAC9B,gDAAgD;IAChD,UAAU,CAAC,EAAE,iBAAiB,EAAE,CAAC;CAClC;AAED,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CAyCtD,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { AppSettings, CustomSettingsTab } from "../../types";
|
|
2
|
+
import "../../../vite-env.d.ts";
|
|
3
|
+
interface SettingsPageProps {
|
|
4
|
+
settings: AppSettings;
|
|
5
|
+
onUpdateSettings: (newSettings: AppSettings) => void;
|
|
6
|
+
availableTags: string[];
|
|
7
|
+
availableCategories: string[];
|
|
8
|
+
onClose?: () => void;
|
|
9
|
+
inSeperatePage: boolean;
|
|
10
|
+
inDarkMode?: boolean;
|
|
11
|
+
/** Custom tabs injected by host applications */
|
|
12
|
+
customTabs?: CustomSettingsTab[];
|
|
13
|
+
}
|
|
14
|
+
export declare const SettingsPage: ({ settings, onUpdateSettings, availableCategories, availableTags, onClose, inSeperatePage, inDarkMode, customTabs, }: SettingsPageProps) => import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
export {};
|
|
16
|
+
//# sourceMappingURL=SettingsPage.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SettingsPage.d.ts","sourceRoot":"","sources":["../../../src/components/settings/SettingsPage.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAOlE,OAAO,wBAAwB,CAAC;AAMhC,UAAU,iBAAiB;IACzB,QAAQ,EAAE,WAAW,CAAC;IACtB,gBAAgB,EAAE,CAAC,WAAW,EAAE,WAAW,KAAK,IAAI,CAAC;IAErD,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,mBAAmB,EAAE,MAAM,EAAE,CAAC;IAC9B,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,cAAc,EAAE,OAAO,CAAC;IACxB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,gDAAgD;IAChD,UAAU,CAAC,EAAE,iBAAiB,EAAE,CAAC;CAClC;AAID,eAAO,MAAM,YAAY,GAAI,sHAS1B,iBAAiB,4CAoKnB,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppSettings } from "@/types";
|
|
2
|
+
interface SettingsPageAdvancedProps {
|
|
3
|
+
settings: AppSettings;
|
|
4
|
+
onUpdateSettings: (s: AppSettings) => void;
|
|
5
|
+
availableTags: string[];
|
|
6
|
+
}
|
|
7
|
+
export declare const SettingsPageAdvanced: ({ settings, onUpdateSettings, availableTags, }: SettingsPageAdvancedProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
9
|
+
//# sourceMappingURL=SettingsPageAdvanced.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SettingsPageAdvanced.d.ts","sourceRoot":"","sources":["../../../src/components/settings/SettingsPageAdvanced.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAEV,WAAW,EAKZ,MAAM,SAAS,CAAC;AAMjB,UAAU,yBAAyB;IACjC,QAAQ,EAAE,WAAW,CAAC;IACtB,gBAAgB,EAAE,CAAC,CAAC,EAAE,WAAW,KAAK,IAAI,CAAC;IAC3C,aAAa,EAAE,MAAM,EAAE,CAAC;CACzB;AACD,eAAO,MAAM,oBAAoB,GAAI,gDAIlC,yBAAyB,4CAoc3B,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppSettings } from "@/types";
|
|
2
|
+
interface SettingsPageGeneralProps {
|
|
3
|
+
settings: AppSettings;
|
|
4
|
+
onUpdateSettings: (s: AppSettings) => void;
|
|
5
|
+
availableCategories: string[];
|
|
6
|
+
}
|
|
7
|
+
export declare const SettingsPageGeneral: ({ settings, onUpdateSettings, availableCategories, }: SettingsPageGeneralProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
9
|
+
//# sourceMappingURL=SettingsPageGeneral.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SettingsPageGeneral.d.ts","sourceRoot":"","sources":["../../../src/components/settings/SettingsPageGeneral.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAsC,MAAM,SAAS,CAAC;AAO/E,UAAU,wBAAwB;IAChC,QAAQ,EAAE,WAAW,CAAC;IACtB,gBAAgB,EAAE,CAAC,CAAC,EAAE,WAAW,KAAK,IAAI,CAAC;IAC3C,mBAAmB,EAAE,MAAM,EAAE,CAAC;CAC/B;AAED,eAAO,MAAM,mBAAmB,GAAI,sDAIjC,wBAAwB,4CAwF1B,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { ThemeOption } from "@/types";
|
|
2
|
+
interface ThemeSectionProps {
|
|
3
|
+
theme: ThemeOption;
|
|
4
|
+
setTheme: (t: ThemeOption) => void;
|
|
5
|
+
}
|
|
6
|
+
export declare const ThemeSection: ({ theme, setTheme }: ThemeSectionProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export {};
|
|
8
|
+
//# sourceMappingURL=ThemeSection.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ThemeSection.d.ts","sourceRoot":"","sources":["../../../src/components/settings/ThemeSection.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAW3C,UAAU,iBAAiB;IACzB,KAAK,EAAE,WAAW,CAAC;IACnB,QAAQ,EAAE,CAAC,CAAC,EAAE,WAAW,KAAK,IAAI,CAAC;CACpC;AAED,eAAO,MAAM,YAAY,GAAI,qBAAqB,iBAAiB,4CAmClE,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { FontSize } from "@/types";
|
|
2
|
+
interface TypographySectionProps {
|
|
3
|
+
fontSize: FontSize;
|
|
4
|
+
setFontSize: (f: FontSize) => void;
|
|
5
|
+
}
|
|
6
|
+
export declare const TypographySection: ({ fontSize, setFontSize, }: TypographySectionProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export {};
|
|
8
|
+
//# sourceMappingURL=TypographySection.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TypographySection.d.ts","sourceRoot":"","sources":["../../../src/components/settings/TypographySection.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAUxC,UAAU,sBAAsB;IAC9B,QAAQ,EAAE,QAAQ,CAAC;IACnB,WAAW,EAAE,CAAC,CAAC,EAAE,QAAQ,KAAK,IAAI,CAAC;CACpC;AACD,eAAO,MAAM,iBAAiB,GAAI,4BAG/B,sBAAsB,4CA4BxB,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { DateGroupBy } from "@/types";
|
|
2
|
+
interface ViewSectionProps {
|
|
3
|
+
showCompleted: boolean;
|
|
4
|
+
toggleShowCompleted: () => void;
|
|
5
|
+
useRelativeDates: boolean;
|
|
6
|
+
toggleRelativeDates: () => void;
|
|
7
|
+
showProgressBar: boolean;
|
|
8
|
+
toggleProgressBar: () => void;
|
|
9
|
+
defaultFocusMode: boolean;
|
|
10
|
+
toggleDefaultFocus: () => void;
|
|
11
|
+
dateFormat: string;
|
|
12
|
+
setDateFormat: (f: string) => void;
|
|
13
|
+
isCustomFormat: boolean;
|
|
14
|
+
setIsCustomFormat: (i: boolean) => void;
|
|
15
|
+
defaultCategory: string;
|
|
16
|
+
setDefaultCategory: (c: string) => void;
|
|
17
|
+
availableCategories: string[];
|
|
18
|
+
groupingStrategy: DateGroupBy[];
|
|
19
|
+
toggleGroupingStrategy: (g: DateGroupBy) => void;
|
|
20
|
+
}
|
|
21
|
+
export declare const ViewSection: ({ showCompleted, toggleShowCompleted, useRelativeDates, toggleRelativeDates, showProgressBar, toggleProgressBar, defaultFocusMode, toggleDefaultFocus, setDateFormat, isCustomFormat, setIsCustomFormat, dateFormat, defaultCategory, setDefaultCategory, availableCategories, groupingStrategy, toggleGroupingStrategy, }: ViewSectionProps) => import("react/jsx-runtime").JSX.Element;
|
|
22
|
+
export {};
|
|
23
|
+
//# sourceMappingURL=ViewSection.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ViewSection.d.ts","sourceRoot":"","sources":["../../../src/components/settings/ViewSection.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAM3C,UAAU,gBAAgB;IACxB,aAAa,EAAE,OAAO,CAAC;IACvB,mBAAmB,EAAE,MAAM,IAAI,CAAC;IAChC,gBAAgB,EAAE,OAAO,CAAC;IAC1B,mBAAmB,EAAE,MAAM,IAAI,CAAC;IAChC,eAAe,EAAE,OAAO,CAAC;IACzB,iBAAiB,EAAE,MAAM,IAAI,CAAC;IAC9B,gBAAgB,EAAE,OAAO,CAAC;IAC1B,kBAAkB,EAAE,MAAM,IAAI,CAAC;IAC/B,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IACnC,cAAc,EAAE,OAAO,CAAC;IACxB,iBAAiB,EAAE,CAAC,CAAC,EAAE,OAAO,KAAK,IAAI,CAAC;IACxC,eAAe,EAAE,MAAM,CAAC;IACxB,kBAAkB,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IACxC,mBAAmB,EAAE,MAAM,EAAE,CAAC;IAC9B,gBAAgB,EAAE,WAAW,EAAE,CAAC;IAChC,sBAAsB,EAAE,CAAC,CAAC,EAAE,WAAW,KAAK,IAAI,CAAC;CAClD;AAED,eAAO,MAAM,WAAW,GAAI,4TAkBzB,gBAAgB,4CAsNlB,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { DateGroupBy } from "@/types";
|
|
2
|
+
export declare const GROUP_STRATEGIES: {
|
|
3
|
+
id: DateGroupBy;
|
|
4
|
+
label: string;
|
|
5
|
+
}[];
|
|
6
|
+
export declare const DATE_FORMATS: {
|
|
7
|
+
value: string;
|
|
8
|
+
label: string;
|
|
9
|
+
}[];
|
|
10
|
+
//# sourceMappingURL=ViewSectionConstants.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ViewSectionConstants.d.ts","sourceRoot":"","sources":["../../../src/components/settings/ViewSectionConstants.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAE3C,eAAO,MAAM,gBAAgB,EAAE;IAAE,EAAE,EAAE,WAAW,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,EAKhE,CAAC;AAEF,eAAO,MAAM,YAAY;;;GAKxB,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { Documentation } from "./Documentation";
|
|
2
|
+
export { SettingsModal } from "./SettingsModal";
|
|
3
|
+
export { SettingsPage } from "./SettingsPage";
|
|
4
|
+
export { SettingsPageAdvanced } from "./SettingsPageAdvanced";
|
|
5
|
+
export { ThemeSection } from "./ThemeSection";
|
|
6
|
+
export { TypographySection } from "./TypographySection";
|
|
7
|
+
export { ViewSection } from "./ViewSection";
|
|
8
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/settings/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"badge-variants.d.ts","sourceRoot":"","sources":["../../../src/components/ui/badge-variants.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,aAAa;;8EAkBzB,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type VariantProps } from "class-variance-authority";
|
|
3
|
+
import { badgeVariants } from "./badge-variants";
|
|
4
|
+
export interface BadgeProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
|
|
5
|
+
}
|
|
6
|
+
declare function Badge({ className, variant, ...props }: BadgeProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export { Badge };
|
|
8
|
+
//# sourceMappingURL=badge.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"badge.d.ts","sourceRoot":"","sources":["../../../src/components/ui/badge.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAG7D,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD,MAAM,WAAW,UACf,SACE,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,EACpC,YAAY,CAAC,OAAO,aAAa,CAAC;CAAG;AAEzC,iBAAS,KAAK,CAAC,EAAE,SAAS,EAAE,OAAO,EAAE,GAAG,KAAK,EAAE,EAAE,UAAU,2CAI1D;AAED,OAAO,EAAE,KAAK,EAAE,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export declare const buttonVariants: (props?: ({
|
|
2
|
+
variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
|
|
3
|
+
size?: "sm" | "lg" | "default" | "icon" | null | undefined;
|
|
4
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
5
|
+
//# sourceMappingURL=button-variants.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"button-variants.d.ts","sourceRoot":"","sources":["../../../src/components/ui/button-variants.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,cAAc;;;8EA2B1B,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type VariantProps } from "class-variance-authority";
|
|
3
|
+
import { buttonVariants } from "./button-variants";
|
|
4
|
+
export interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
5
|
+
asChild?: boolean;
|
|
6
|
+
}
|
|
7
|
+
declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
8
|
+
export { Button };
|
|
9
|
+
//# sourceMappingURL=button.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../../src/components/ui/button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAG7D,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAEnD,MAAM,WAAW,WACf,SACE,KAAK,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,EAC7C,YAAY,CAAC,OAAO,cAAc,CAAC;IACrC,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED,QAAA,MAAM,MAAM,uFAWX,CAAC;AAGF,OAAO,EAAE,MAAM,EAAE,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export interface CalendarProps {
|
|
2
|
+
mode?: "single";
|
|
3
|
+
selected?: Date;
|
|
4
|
+
onSelect?: (date: Date | undefined) => void;
|
|
5
|
+
className?: string;
|
|
6
|
+
initialFocus?: boolean;
|
|
7
|
+
disabled?: (date: Date) => boolean;
|
|
8
|
+
}
|
|
9
|
+
declare function Calendar({ className, selected, onSelect, disabled }: CalendarProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export { Calendar };
|
|
11
|
+
//# sourceMappingURL=calendar.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"calendar.d.ts","sourceRoot":"","sources":["../../../src/components/ui/calendar.tsx"],"names":[],"mappings":"AAmBA,MAAM,WAAW,aAAa;IAC5B,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,QAAQ,CAAC,EAAE,IAAI,CAAC;IAChB,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,IAAI,GAAG,SAAS,KAAK,IAAI,CAAC;IAC5C,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,IAAI,KAAK,OAAO,CAAC;CACpC;AAED,iBAAS,QAAQ,CAAC,EAAE,SAAS,EAAE,QAAQ,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE,aAAa,2CA6H3E;AAED,OAAO,EAAE,QAAQ,EAAE,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import * as CollapsiblePrimitive from "@radix-ui/react-collapsible";
|
|
2
|
+
declare const Collapsible: import("react").ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleProps & import("react").RefAttributes<HTMLDivElement>>, CollapsibleTrigger: import("react").ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleTriggerProps & import("react").RefAttributes<HTMLButtonElement>>, CollapsibleContent: import("react").ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleContentProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
3
|
+
export { Collapsible, CollapsibleTrigger, CollapsibleContent };
|
|
4
|
+
//# sourceMappingURL=collapsible.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"collapsible.d.ts","sourceRoot":"","sources":["../../../src/components/ui/collapsible.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,oBAAoB,MAAM,6BAA6B,CAAC;AAEpE,QAAA,MAAM,WAAW,kIAA4B,EACzC,kBAAkB,8IAClB,kBAAkB,yIAAyB,CAAC;AAEhD,OAAO,EAAE,WAAW,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
interface DatePickerProps {
|
|
2
|
+
value?: string;
|
|
3
|
+
onChange: (value: string) => void;
|
|
4
|
+
placeholder?: string;
|
|
5
|
+
className?: string;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
showTime?: boolean;
|
|
8
|
+
}
|
|
9
|
+
export declare function DatePicker({ value, onChange, placeholder, className, disabled, showTime, }: DatePickerProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export {};
|
|
11
|
+
//# sourceMappingURL=date-picker.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"date-picker.d.ts","sourceRoot":"","sources":["../../../src/components/ui/date-picker.tsx"],"names":[],"mappings":"AAQA,UAAU,eAAe;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,wBAAgB,UAAU,CAAC,EACzB,KAAK,EACL,QAAQ,EACR,WAA2B,EAC3B,SAAS,EACT,QAAQ,EACR,QAAgB,GACjB,EAAE,eAAe,2CA+FjB"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import * as DialogPrimitive from "@radix-ui/react-dialog";
|
|
3
|
+
declare const Dialog: React.FC<DialogPrimitive.DialogProps>, DialogTrigger: React.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>, DialogClose: React.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>, DialogOverlay: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
4
|
+
declare const DialogContent: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
5
|
+
declare const DialogHeader: {
|
|
6
|
+
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
displayName: string;
|
|
8
|
+
};
|
|
9
|
+
declare const DialogFooter: {
|
|
10
|
+
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
declare const DialogTitle: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
|
|
14
|
+
declare const DialogDescription: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
|
|
15
|
+
export { Dialog, DialogOverlay, DialogClose, DialogTrigger, DialogContent, DialogHeader, DialogFooter, DialogTitle, DialogDescription, };
|
|
16
|
+
//# sourceMappingURL=dialog.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dialog.d.ts","sourceRoot":"","sources":["../../../src/components/ui/dialog.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,eAAe,MAAM,wBAAwB,CAAC;AAM1D,QAAA,MAAM,MAAM,uCAAuB,EACjC,aAAa,8GAA0B,EACvC,WAAW,4GAAwB,EACnC,aAAa,8JAYX,CAAC;AAGL,QAAA,MAAM,aAAa,8JAyBjB,CAAC;AAGH,QAAA,MAAM,YAAY;8BAGf,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;;CAQtC,CAAC;AAGF,QAAA,MAAM,YAAY;8BAGf,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;;CAQtC,CAAC;AAGF,QAAA,MAAM,WAAW,oKAYf,CAAC;AAGH,QAAA,MAAM,iBAAiB,8KASrB,CAAC;AAGH,OAAO,EACL,MAAM,EACN,aAAa,EACb,WAAW,EACX,aAAa,EACb,aAAa,EACb,YAAY,EACZ,YAAY,EACZ,WAAW,EACX,iBAAiB,GAClB,CAAC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
|
|
3
|
+
declare const DropdownMenu: React.FC<DropdownMenuPrimitive.DropdownMenuProps>, DropdownMenuTrigger: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React.RefAttributes<HTMLButtonElement>>, DropdownMenuGroup: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React.RefAttributes<HTMLDivElement>>, DropdownMenuSub: React.FC<DropdownMenuPrimitive.DropdownMenuSubProps>, DropdownMenuRadioGroup: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React.RefAttributes<HTMLDivElement>>, DropdownMenuSubTrigger: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
4
|
+
inset?: boolean;
|
|
5
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
6
|
+
declare const DropdownMenuSubContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
7
|
+
declare const DropdownMenuContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
8
|
+
declare const DropdownMenuItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
9
|
+
inset?: boolean;
|
|
10
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
11
|
+
declare const DropdownMenuCheckboxItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
12
|
+
declare const DropdownMenuRadioItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
13
|
+
declare const DropdownMenuLabel: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
14
|
+
inset?: boolean;
|
|
15
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
16
|
+
declare const DropdownMenuSeparator: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
17
|
+
declare const DropdownMenuShortcut: {
|
|
18
|
+
({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>): import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
displayName: string;
|
|
20
|
+
};
|
|
21
|
+
export { DropdownMenu, DropdownMenuTrigger, DropdownMenuContent, DropdownMenuItem, DropdownMenuCheckboxItem, DropdownMenuRadioItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuGroup, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuRadioGroup, };
|
|
22
|
+
//# sourceMappingURL=dropdown-menu.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dropdown-menu.d.ts","sourceRoot":"","sources":["../../../src/components/ui/dropdown-menu.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,qBAAqB,MAAM,+BAA+B,CAAC;AAMvE,QAAA,MAAM,YAAY,mDAA6B,EAC7C,mBAAmB,0HAAgC,EACnD,iBAAiB,qHAA8B,EAC/C,eAAe,sDAA4B,EAC3C,sBAAsB,0HAAmC,EACzD,sBAAsB;YAGV,OAAO;wCAejB,CAAC;AAIL,QAAA,MAAM,sBAAsB,6KAY1B,CAAC;AAIH,QAAA,MAAM,mBAAmB,0KAmBvB,CAAC;AAGH,QAAA,MAAM,gBAAgB;YAGV,OAAO;wCAYjB,CAAC;AAGH,QAAA,MAAM,wBAAwB,+KAoB5B,CAAC;AAIH,QAAA,MAAM,qBAAqB,4KAmBzB,CAAC;AAGH,QAAA,MAAM,iBAAiB;YAGX,OAAO;wCAYjB,CAAC;AAGH,QAAA,MAAM,qBAAqB,4KASzB,CAAC;AAGH,QAAA,MAAM,oBAAoB;8BAGvB,KAAK,CAAC,cAAc,CAAC,eAAe,CAAC;;CAKvC,CAAC;AAGF,OAAO,EACL,YAAY,EACZ,mBAAmB,EACnB,mBAAmB,EACnB,gBAAgB,EAChB,wBAAwB,EACxB,qBAAqB,EACrB,iBAAiB,EACjB,qBAAqB,EACrB,oBAAoB,EACpB,iBAAiB,EACjB,eAAe,EACf,sBAAsB,EACtB,sBAAsB,EACtB,sBAAsB,GACvB,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
declare const Input: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
3
|
+
export { Input };
|
|
4
|
+
//# sourceMappingURL=input.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../../src/components/ui/input.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B,QAAA,MAAM,KAAK,8KAYV,CAAC;AAGF,OAAO,EAAE,KAAK,EAAE,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import * as PopoverPrimitive from "@radix-ui/react-popover";
|
|
3
|
+
declare const Popover: React.FC<PopoverPrimitive.PopoverProps>, PopoverTrigger: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React.RefAttributes<HTMLButtonElement>>, PopoverClose: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverCloseProps & React.RefAttributes<HTMLButtonElement>>, PopoverAnchor: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverAnchorProps & React.RefAttributes<HTMLDivElement>>, PopoverContent: React.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
4
|
+
export { Popover, PopoverTrigger, PopoverContent, PopoverClose, PopoverAnchor };
|
|
5
|
+
//# sourceMappingURL=popover.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"popover.d.ts","sourceRoot":"","sources":["../../../src/components/ui/popover.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,gBAAgB,MAAM,yBAAyB,CAAC;AAK5D,QAAA,MAAM,OAAO,yCAAwB,EACnC,cAAc,gHAA2B,EACzC,YAAY,8GAAyB,EACrC,aAAa,4GAA0B,EACvC,cAAc,gKAqBZ,CAAC;AAGL,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,YAAY,EAAE,aAAa,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sonner.d.ts","sourceRoot":"","sources":["../../../src/components/ui/sonner.tsx"],"names":[],"mappings":"AAOA,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,QAAQ,CAAC;AAE3C,KAAK,YAAY,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,MAAM,CAAC,CAAC;AAExD,QAAA,MAAM,OAAO,GAAI,cAAc,YAAY,4CAwB1C,CAAC;AAEF,OAAO,EAAE,OAAO,EAAE,CAAC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { type ReactNode } from "react";
|
|
2
|
+
import type { AppSettings, FilterState, SortState } from "../types";
|
|
3
|
+
export interface SettingsContextType {
|
|
4
|
+
settings: AppSettings;
|
|
5
|
+
updateSettings: (settings: Partial<AppSettings>) => void;
|
|
6
|
+
isFocusMode: boolean;
|
|
7
|
+
toggleFocusMode: () => void;
|
|
8
|
+
isAiMode: boolean;
|
|
9
|
+
toggleAiMode: () => void;
|
|
10
|
+
filters: FilterState;
|
|
11
|
+
onFilterChange: (filters: FilterState) => void;
|
|
12
|
+
sort: SortState;
|
|
13
|
+
onSortChange: (sort: SortState) => void;
|
|
14
|
+
onVoiceError: (msg: string) => void;
|
|
15
|
+
onOpenSettings?: () => void;
|
|
16
|
+
}
|
|
17
|
+
export declare function useSettingsContext(): SettingsContextType;
|
|
18
|
+
export declare function SettingsProvider({ children, value, }: {
|
|
19
|
+
children: ReactNode;
|
|
20
|
+
value: SettingsContextType;
|
|
21
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
22
|
+
//# sourceMappingURL=SettingsContext.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SettingsContext.d.ts","sourceRoot":"","sources":["../../src/contexts/SettingsContext.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAA6B,MAAM,OAAO,CAAC;AAClE,OAAO,KAAK,EAAE,WAAW,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAGpE,MAAM,WAAW,mBAAmB;IAClC,QAAQ,EAAE,WAAW,CAAC;IACtB,cAAc,EAAE,CAAC,QAAQ,EAAE,OAAO,CAAC,WAAW,CAAC,KAAK,IAAI,CAAC;IACzD,WAAW,EAAE,OAAO,CAAC;IACrB,eAAe,EAAE,MAAM,IAAI,CAAC;IAC5B,QAAQ,EAAE,OAAO,CAAC;IAClB,YAAY,EAAE,MAAM,IAAI,CAAC;IACzB,OAAO,EAAE,WAAW,CAAC;IACrB,cAAc,EAAE,CAAC,OAAO,EAAE,WAAW,KAAK,IAAI,CAAC;IAC/C,IAAI,EAAE,SAAS,CAAC;IAChB,YAAY,EAAE,CAAC,IAAI,EAAE,SAAS,KAAK,IAAI,CAAC;IACxC,YAAY,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAC;IACpC,cAAc,CAAC,EAAE,MAAM,IAAI,CAAC;CAC7B;AAMD,wBAAgB,kBAAkB,wBAMjC;AAED,wBAAgB,gBAAgB,CAAC,EAC/B,QAAQ,EACR,KAAK,GACN,EAAE;IACD,QAAQ,EAAE,SAAS,CAAC;IACpB,KAAK,EAAE,mBAAmB,CAAC;CAC5B,2CAMA"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { type ReactNode } from "react";
|
|
2
|
+
import type { Task } from "../types";
|
|
3
|
+
export interface TasksContextType {
|
|
4
|
+
tasks: Task[];
|
|
5
|
+
availableCategories: string[];
|
|
6
|
+
availableTags: string[];
|
|
7
|
+
onUpdateTask: (task: Task) => void;
|
|
8
|
+
onDeleteTask: (id: string) => void;
|
|
9
|
+
onAddTask: (task: Partial<Task>) => void;
|
|
10
|
+
onEditTask?: (task: Task) => void;
|
|
11
|
+
onAICommand: (input: string) => Promise<void>;
|
|
12
|
+
onItemClick?: (item: Task) => void;
|
|
13
|
+
}
|
|
14
|
+
export declare function useTasksContext(): TasksContextType;
|
|
15
|
+
export declare function TasksProvider({ children, value, }: {
|
|
16
|
+
children: ReactNode;
|
|
17
|
+
value: TasksContextType;
|
|
18
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
//# sourceMappingURL=TasksContext.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TasksContext.d.ts","sourceRoot":"","sources":["../../src/contexts/TasksContext.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAA6B,MAAM,OAAO,CAAC;AAClE,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,UAAU,CAAC;AAGrC,MAAM,WAAW,gBAAgB;IAC/B,KAAK,EAAE,IAAI,EAAE,CAAC;IACd,mBAAmB,EAAE,MAAM,EAAE,CAAC;IAC9B,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,YAAY,EAAE,CAAC,IAAI,EAAE,IAAI,KAAK,IAAI,CAAC;IACnC,YAAY,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IACnC,SAAS,EAAE,CAAC,IAAI,EAAE,OAAO,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC;IACzC,UAAU,CAAC,EAAE,CAAC,IAAI,EAAE,IAAI,KAAK,IAAI,CAAC;IAClC,WAAW,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IAC9C,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,IAAI,KAAK,IAAI,CAAC;CACpC;AAID,wBAAgB,eAAe,qBAM9B;AAED,wBAAgB,aAAa,CAAC,EAC5B,QAAQ,EACR,KAAK,GACN,EAAE;IACD,QAAQ,EAAE,SAAS,CAAC;IACpB,KAAK,EAAE,gBAAgB,CAAC;CACzB,2CAIA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/contexts/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EACb,eAAe,EACf,KAAK,gBAAgB,GACtB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EACL,gBAAgB,EAChB,kBAAkB,EAClB,KAAK,mBAAmB,GACzB,MAAM,mBAAmB,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* React Hooks Exports
|
|
3
|
+
*
|
|
4
|
+
* Re-exports all custom hooks from the tasks-timeline component library.
|
|
5
|
+
*/
|
|
6
|
+
export { useTaskFiltering } from "./useTaskFiltering";
|
|
7
|
+
export { useTaskStats } from "./useTaskStats";
|
|
8
|
+
export { useAIAgent } from "./useAIAgent";
|
|
9
|
+
export { useVoiceInput } from "./useVoiceInput";
|
|
10
|
+
export { usePortalContainer } from "./usePortalContainer";
|
|
11
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/hooks/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAEtD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAE1C,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAEhD,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { AppSettings, Task } from "../types";
|
|
2
|
+
export declare const useAIAgent: (tasks: Task[], onTaskAdded: (task: Task) => void | Promise<void>, onTaskUpdated: (task: Task, previous: Task) => void | Promise<void>, onTaskDeleted: (taskId: string, previous: Task) => void | Promise<void>, settings: AppSettings, _onManualAdd: (t: Partial<Task>) => void, onNotify: (type: "success" | "error" | "info", title: string, desc?: string) => void, onTokenUsageUpdate?: (tokens: number) => void) => {
|
|
3
|
+
handleAICommand: (input: string) => Promise<void>;
|
|
4
|
+
};
|
|
5
|
+
//# sourceMappingURL=useAIAgent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useAIAgent.d.ts","sourceRoot":"","sources":["../../src/hooks/useAIAgent.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,IAAI,EAAE,MAAM,UAAU,CAAC;AAalD,eAAO,MAAM,UAAU,GACrB,OAAO,IAAI,EAAE,EACb,aAAa,CAAC,IAAI,EAAE,IAAI,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,EACjD,eAAe,CAAC,IAAI,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,EACnE,eAAe,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,EACvE,UAAU,WAAW,EACrB,cAAc,CAAC,CAAC,EAAE,OAAO,CAAC,IAAI,CAAC,KAAK,IAAI,EACxC,UAAU,CACR,IAAI,EAAE,SAAS,GAAG,OAAO,GAAG,MAAM,EAClC,KAAK,EAAE,MAAM,EACb,IAAI,CAAC,EAAE,MAAM,KACV,IAAI,EACT,qBAAqB,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI;6BAgKX,MAAM;CAqFzC,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export interface PortalContextValue {
|
|
2
|
+
portalContainer: HTMLDivElement | null;
|
|
3
|
+
}
|
|
4
|
+
export declare const PortalContext: import("react").Context<PortalContextValue>;
|
|
5
|
+
export declare const usePortalContainer: () => HTMLDivElement | null;
|
|
6
|
+
//# sourceMappingURL=usePortalContainer.d.ts.map
|