@libxai/board 1.9.12 → 1.9.13
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.cjs +16 -16
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -1
- package/dist/index.d.ts +8 -1
- package/dist/index.js +16 -16
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -566,6 +566,12 @@ interface GanttConfig {
|
|
|
566
566
|
* When provided, replaces hardcoded placeholder values with real metrics
|
|
567
567
|
*/
|
|
568
568
|
projectForecast?: ProjectForecast;
|
|
569
|
+
/**
|
|
570
|
+
* Oculta la barra interna del pronóstico (Forecast HUD) aunque se pase
|
|
571
|
+
* projectForecast. Útil cuando el consumidor muestra el pronóstico en su propia
|
|
572
|
+
* barra (p. ej. una barra de áreas del proyecto) y no quiere duplicarlo.
|
|
573
|
+
*/
|
|
574
|
+
hideForecastHud?: boolean;
|
|
569
575
|
/**
|
|
570
576
|
* Callback for "Copy Snapshot Link" in the Share dropdown
|
|
571
577
|
* When provided, shows the option in the export/share menu
|
|
@@ -2758,6 +2764,7 @@ interface GanttToolbarProps {
|
|
|
2758
2764
|
viewMode?: 'execution' | 'oracle';
|
|
2759
2765
|
onViewModeChange?: (mode: 'execution' | 'oracle') => void;
|
|
2760
2766
|
projectForecast?: ProjectForecast;
|
|
2767
|
+
hideForecastHud?: boolean;
|
|
2761
2768
|
onExportPNG?: () => Promise<void>;
|
|
2762
2769
|
onExportPDF?: () => Promise<void>;
|
|
2763
2770
|
onExportExcel?: () => Promise<void>;
|
|
@@ -2789,7 +2796,7 @@ declare function GanttToolbar({ theme, timeScale, onTimeScaleChange, zoom, onZoo
|
|
|
2789
2796
|
showCreateTaskButton, createTaskLabel, // v0.15.0: Will use translations if not provided
|
|
2790
2797
|
onCreateTask, taskFilter, // v0.17.300: Task filter
|
|
2791
2798
|
onTaskFilterChange, hideCompleted, // v0.18.0: Hide completed toggle
|
|
2792
|
-
onHideCompletedChange, toolbarRightContent, wbsLevel, onWbsLevelChange, maxWbsDepth, viewMode, onViewModeChange, projectForecast, onExportPNG, onExportPDF, onExportExcel, onExportCSV, onExportJSON, onExportMSProject, showCriticalPath, onShowCriticalPathChange, showDependencies, onShowDependenciesChange, highlightWeekends, onHighlightWeekendsChange, showBaseline, onShowBaselineChange, onCopySnapshotLink, hasDependencies, }: GanttToolbarProps): react_jsx_runtime.JSX.Element;
|
|
2799
|
+
onHideCompletedChange, toolbarRightContent, wbsLevel, onWbsLevelChange, maxWbsDepth, viewMode, onViewModeChange, projectForecast, hideForecastHud, onExportPNG, onExportPDF, onExportExcel, onExportCSV, onExportJSON, onExportMSProject, showCriticalPath, onShowCriticalPathChange, showDependencies, onShowDependenciesChange, highlightWeekends, onHighlightWeekendsChange, showBaseline, onShowBaselineChange, onCopySnapshotLink, hasDependencies, }: GanttToolbarProps): react_jsx_runtime.JSX.Element;
|
|
2793
2800
|
|
|
2794
2801
|
interface TaskGridProps {
|
|
2795
2802
|
tasks: Task[];
|
package/dist/index.d.ts
CHANGED
|
@@ -566,6 +566,12 @@ interface GanttConfig {
|
|
|
566
566
|
* When provided, replaces hardcoded placeholder values with real metrics
|
|
567
567
|
*/
|
|
568
568
|
projectForecast?: ProjectForecast;
|
|
569
|
+
/**
|
|
570
|
+
* Oculta la barra interna del pronóstico (Forecast HUD) aunque se pase
|
|
571
|
+
* projectForecast. Útil cuando el consumidor muestra el pronóstico en su propia
|
|
572
|
+
* barra (p. ej. una barra de áreas del proyecto) y no quiere duplicarlo.
|
|
573
|
+
*/
|
|
574
|
+
hideForecastHud?: boolean;
|
|
569
575
|
/**
|
|
570
576
|
* Callback for "Copy Snapshot Link" in the Share dropdown
|
|
571
577
|
* When provided, shows the option in the export/share menu
|
|
@@ -2758,6 +2764,7 @@ interface GanttToolbarProps {
|
|
|
2758
2764
|
viewMode?: 'execution' | 'oracle';
|
|
2759
2765
|
onViewModeChange?: (mode: 'execution' | 'oracle') => void;
|
|
2760
2766
|
projectForecast?: ProjectForecast;
|
|
2767
|
+
hideForecastHud?: boolean;
|
|
2761
2768
|
onExportPNG?: () => Promise<void>;
|
|
2762
2769
|
onExportPDF?: () => Promise<void>;
|
|
2763
2770
|
onExportExcel?: () => Promise<void>;
|
|
@@ -2789,7 +2796,7 @@ declare function GanttToolbar({ theme, timeScale, onTimeScaleChange, zoom, onZoo
|
|
|
2789
2796
|
showCreateTaskButton, createTaskLabel, // v0.15.0: Will use translations if not provided
|
|
2790
2797
|
onCreateTask, taskFilter, // v0.17.300: Task filter
|
|
2791
2798
|
onTaskFilterChange, hideCompleted, // v0.18.0: Hide completed toggle
|
|
2792
|
-
onHideCompletedChange, toolbarRightContent, wbsLevel, onWbsLevelChange, maxWbsDepth, viewMode, onViewModeChange, projectForecast, onExportPNG, onExportPDF, onExportExcel, onExportCSV, onExportJSON, onExportMSProject, showCriticalPath, onShowCriticalPathChange, showDependencies, onShowDependenciesChange, highlightWeekends, onHighlightWeekendsChange, showBaseline, onShowBaselineChange, onCopySnapshotLink, hasDependencies, }: GanttToolbarProps): react_jsx_runtime.JSX.Element;
|
|
2799
|
+
onHideCompletedChange, toolbarRightContent, wbsLevel, onWbsLevelChange, maxWbsDepth, viewMode, onViewModeChange, projectForecast, hideForecastHud, onExportPNG, onExportPDF, onExportExcel, onExportCSV, onExportJSON, onExportMSProject, showCriticalPath, onShowCriticalPathChange, showDependencies, onShowDependenciesChange, highlightWeekends, onHighlightWeekendsChange, showBaseline, onShowBaselineChange, onCopySnapshotLink, hasDependencies, }: GanttToolbarProps): react_jsx_runtime.JSX.Element;
|
|
2793
2800
|
|
|
2794
2801
|
interface TaskGridProps {
|
|
2795
2802
|
tasks: Task[];
|