@diagrammo/dgmo 0.7.0 → 0.7.2

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
@@ -1947,6 +1947,7 @@ interface GanttEra {
1947
1947
  endDate: string;
1948
1948
  label: string;
1949
1949
  color: string | null;
1950
+ lineNumber: number;
1950
1951
  }
1951
1952
  interface GanttMarker {
1952
1953
  date: string;
@@ -1964,6 +1965,9 @@ interface GanttOptions {
1964
1965
  dependencies: boolean;
1965
1966
  sort: 'default' | 'tag';
1966
1967
  defaultSwimlaneGroup: string | null;
1968
+ /** Line numbers for option/block keywords — maps key to source line */
1969
+ optionLineNumbers: Record<string, number>;
1970
+ holidaysLineNumber: number | null;
1967
1971
  }
1968
1972
  interface ParsedGantt {
1969
1973
  nodes: GanttNode[];
package/dist/index.d.ts CHANGED
@@ -1947,6 +1947,7 @@ interface GanttEra {
1947
1947
  endDate: string;
1948
1948
  label: string;
1949
1949
  color: string | null;
1950
+ lineNumber: number;
1950
1951
  }
1951
1952
  interface GanttMarker {
1952
1953
  date: string;
@@ -1964,6 +1965,9 @@ interface GanttOptions {
1964
1965
  dependencies: boolean;
1965
1966
  sort: 'default' | 'tag';
1966
1967
  defaultSwimlaneGroup: string | null;
1968
+ /** Line numbers for option/block keywords — maps key to source line */
1969
+ optionLineNumbers: Record<string, number>;
1970
+ holidaysLineNumber: number | null;
1967
1971
  }
1968
1972
  interface ParsedGantt {
1969
1973
  nodes: GanttNode[];