@libxai/board 0.17.417 → 0.17.419

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/dist/index.d.cts CHANGED
@@ -382,6 +382,20 @@ interface GanttConfig {
382
382
  * @default 'curved'
383
383
  */
384
384
  dependencyLineStyle?: DependencyLineStyle;
385
+ /**
386
+ * v0.18.0: Show weekends in timeline
387
+ * When true, Saturday and Sunday are displayed in the timeline
388
+ * When false, weekends are hidden from the timeline view
389
+ * @default true
390
+ */
391
+ showWeekends?: boolean;
392
+ /**
393
+ * v0.18.0: Auto-expand subtasks on load
394
+ * When true, all tasks with subtasks are expanded by default
395
+ * When false, tasks start collapsed (default behavior)
396
+ * @default false
397
+ */
398
+ autoExpandSubtasks?: boolean;
385
399
  onThemeChange?: (theme: Theme$1) => void;
386
400
  onTaskClick?: (task: Task) => void;
387
401
  onTaskDblClick?: (task: Task) => void;
package/dist/index.d.ts CHANGED
@@ -382,6 +382,20 @@ interface GanttConfig {
382
382
  * @default 'curved'
383
383
  */
384
384
  dependencyLineStyle?: DependencyLineStyle;
385
+ /**
386
+ * v0.18.0: Show weekends in timeline
387
+ * When true, Saturday and Sunday are displayed in the timeline
388
+ * When false, weekends are hidden from the timeline view
389
+ * @default true
390
+ */
391
+ showWeekends?: boolean;
392
+ /**
393
+ * v0.18.0: Auto-expand subtasks on load
394
+ * When true, all tasks with subtasks are expanded by default
395
+ * When false, tasks start collapsed (default behavior)
396
+ * @default false
397
+ */
398
+ autoExpandSubtasks?: boolean;
385
399
  onThemeChange?: (theme: Theme$1) => void;
386
400
  onTaskClick?: (task: Task) => void;
387
401
  onTaskDblClick?: (task: Task) => void;