feat(taskbuffer-dashboard): Add TaskBuffer dashboard web component, demo and browser tests; add HTML entry and update dependencies

This commit is contained in:
2025-09-07 08:51:47 +00:00
parent 4d23b3dbfe
commit ed1e9a08b2
12 changed files with 2128 additions and 1601 deletions

12
ts_web/index.ts Normal file
View File

@@ -0,0 +1,12 @@
// Export web components
export * from './taskbuffer-dashboard.js';
// Export types from main module for web usage
export type {
TaskManager,
Task,
ITaskMetadata,
ITaskExecutionReport,
IScheduledTaskInfo,
ITaskStep
} from '../ts/index.js';