2025-07-12 09:25:57 +00:00
|
|
|
/**
|
2026-01-18 11:39:49 +00:00
|
|
|
* Progress Tracker Plugin for Obsidian
|
|
|
|
|
*
|
|
|
|
|
* A plugin that tracks task progress in markdown files and integrates with Kanban boards.
|
|
|
|
|
* Supports custom checkbox states and automatic status updates.
|
|
|
|
|
*
|
|
|
|
|
* This file re-exports from the modular src/ structure.
|
2025-07-12 09:25:57 +00:00
|
|
|
*/
|
2025-04-15 11:25:00 +00:00
|
|
|
|
2026-01-18 11:39:49 +00:00
|
|
|
// Re-export the default plugin class
|
|
|
|
|
export { default } from "./src/main";
|
2025-04-15 11:25:00 +00:00
|
|
|
|
2026-01-18 11:39:49 +00:00
|
|
|
// Re-export types for external use
|
|
|
|
|
export type { TaskProgressBarSettings } from "./src/interfaces/settings";
|
|
|
|
|
export { DEFAULT_SETTINGS } from "./src/interfaces/settings";
|
|
|
|
|
export type { DataviewApi, KanbanColumnCheckboxMapping } from "./src/interfaces/types";
|
|
|
|
|
export { TaskProgressBarView } from "./src/views/ProgressBarView";
|
|
|
|
|
export { TaskProgressBarSettingTab } from "./src/views/SettingsTab";
|