@diagrammo/dgmo 0.15.1 → 0.16.0
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/README.md +9 -9
- package/dist/advanced.cjs +479 -454
- package/dist/advanced.d.cts +34 -35
- package/dist/advanced.d.ts +34 -35
- package/dist/advanced.js +479 -453
- package/dist/auto.cjs +374 -352
- package/dist/auto.js +103 -103
- package/dist/auto.mjs +374 -352
- package/dist/cli.cjs +140 -140
- package/dist/editor.cjs +8 -9
- package/dist/editor.js +8 -9
- package/dist/highlight.cjs +8 -9
- package/dist/highlight.js +8 -9
- package/dist/index.cjs +365 -342
- package/dist/index.js +365 -342
- package/dist/internal.cjs +479 -454
- package/dist/internal.d.cts +34 -35
- package/dist/internal.d.ts +34 -35
- package/dist/internal.js +479 -453
- package/dist/pert.d.cts +2 -2
- package/dist/pert.d.ts +2 -2
- package/docs/language-reference.md +83 -66
- package/gallery/fixtures/area.dgmo +3 -3
- package/gallery/fixtures/bar-stacked.dgmo +5 -5
- package/gallery/fixtures/boxes-and-lines.dgmo +2 -2
- package/gallery/fixtures/c4-full.dgmo +8 -8
- package/gallery/fixtures/class-full.dgmo +2 -2
- package/gallery/fixtures/doughnut.dgmo +6 -6
- package/gallery/fixtures/flowchart-colors.dgmo +3 -3
- package/gallery/fixtures/function.dgmo +3 -3
- package/gallery/fixtures/gantt-full.dgmo +9 -9
- package/gallery/fixtures/gantt.dgmo +7 -7
- package/gallery/fixtures/infra-full.dgmo +6 -6
- package/gallery/fixtures/infra.dgmo +2 -2
- package/gallery/fixtures/kanban.dgmo +9 -9
- package/gallery/fixtures/line.dgmo +2 -2
- package/gallery/fixtures/multi-line.dgmo +3 -3
- package/gallery/fixtures/org-full.dgmo +6 -6
- package/gallery/fixtures/quadrant.dgmo +2 -2
- package/gallery/fixtures/sankey.dgmo +9 -9
- package/gallery/fixtures/scatter.dgmo +3 -3
- package/gallery/fixtures/sequence-tags-protocols.dgmo +8 -8
- package/gallery/fixtures/sequence-tags.dgmo +7 -7
- package/gallery/fixtures/sitemap-full.dgmo +7 -7
- package/gallery/fixtures/slope.dgmo +5 -5
- package/gallery/fixtures/spr-eras.dgmo +9 -9
- package/gallery/fixtures/timeline.dgmo +3 -3
- package/gallery/fixtures/venn.dgmo +3 -3
- package/package.json +1 -1
- package/src/advanced.ts +0 -1
- package/src/boxes-and-lines/renderer.ts +5 -1
- package/src/c4/parser.ts +1 -1
- package/src/c4/renderer.ts +15 -8
- package/src/chart.ts +18 -9
- package/src/class/parser.ts +7 -6
- package/src/class/renderer.ts +17 -6
- package/src/cli.ts +6 -6
- package/src/completion.ts +13 -3
- package/src/cycle/parser.ts +14 -0
- package/src/cycle/renderer.ts +6 -3
- package/src/d3.ts +86 -46
- package/src/echarts.ts +26 -9
- package/src/editor/dgmo.grammar +1 -3
- package/src/editor/dgmo.grammar.js +8 -8
- package/src/editor/dgmo.grammar.terms.js +11 -12
- package/src/editor/highlight-api.ts +0 -1
- package/src/editor/highlight.ts +0 -1
- package/src/er/parser.ts +18 -11
- package/src/er/renderer.ts +19 -7
- package/src/gantt/parser.ts +1 -1
- package/src/gantt/renderer.ts +7 -4
- package/src/graph/flowchart-parser.ts +18 -84
- package/src/graph/flowchart-renderer.ts +3 -8
- package/src/graph/layout.ts +0 -2
- package/src/graph/state-parser.ts +17 -62
- package/src/graph/state-renderer.ts +3 -8
- package/src/infra/parser.ts +21 -11
- package/src/infra/renderer.ts +7 -4
- package/src/journey-map/parser.ts +10 -3
- package/src/journey-map/renderer.ts +3 -1
- package/src/kanban/parser.ts +10 -6
- package/src/kanban/renderer.ts +3 -1
- package/src/mindmap/parser.ts +2 -2
- package/src/mindmap/renderer.ts +2 -1
- package/src/org/parser.ts +2 -2
- package/src/org/renderer.ts +4 -3
- package/src/pert/parser.ts +7 -7
- package/src/pert/renderer.ts +7 -2
- package/src/pert/types.ts +1 -1
- package/src/pyramid/parser.ts +12 -0
- package/src/raci/parser.ts +40 -10
- package/src/raci/renderer.ts +2 -1
- package/src/raci/types.ts +4 -3
- package/src/ring/parser.ts +12 -0
- package/src/sequence/parser.ts +15 -9
- package/src/sequence/renderer.ts +1 -1
- package/src/sitemap/layout.ts +0 -2
- package/src/sitemap/parser.ts +11 -37
- package/src/sitemap/renderer.ts +13 -13
- package/src/sitemap/types.ts +0 -1
- package/src/tech-radar/renderer.ts +5 -3
- package/src/tech-radar/types.ts +2 -0
- package/src/utils/arrows.ts +3 -28
- package/src/utils/legend-d3.ts +12 -6
- package/src/utils/legend-layout.ts +1 -1
- package/src/utils/legend-types.ts +1 -1
- package/src/utils/parsing.ts +64 -35
- package/src/utils/tag-groups.ts +98 -18
- package/src/wireframe/parser.ts +2 -2
package/dist/internal.d.cts
CHANGED
|
@@ -72,22 +72,11 @@ interface ParseInArrowLabelResult {
|
|
|
72
72
|
*
|
|
73
73
|
* This helper is intentionally chart-agnostic: it operates on an already
|
|
74
74
|
* extracted label string, leaving each chart's existing arrow-finding
|
|
75
|
-
* tokenization in place.
|
|
76
|
-
*
|
|
77
|
-
*
|
|
78
|
-
* `matchColorParens()` from this module for the shared lookup.
|
|
75
|
+
* tokenization in place. Edges no longer have a color slot on any chart
|
|
76
|
+
* type (see spec §1.7 "Edge color is not a feature"); arrow content is
|
|
77
|
+
* pure label text.
|
|
79
78
|
*/
|
|
80
79
|
declare function parseInArrowLabel(rawLabel: string, lineNumber: number): ParseInArrowLabelResult;
|
|
81
|
-
/**
|
|
82
|
-
* Test whether a string matches the TD-11 color-parens form `(colorName)`
|
|
83
|
-
* where `colorName` is one of the 11 recognized palette color names from
|
|
84
|
-
* `src/colors.ts:RECOGNIZED_COLOR_NAMES`. Returns the lowercase color name
|
|
85
|
-
* on a match, or `null` on fall-through (whole string becomes a label).
|
|
86
|
-
*
|
|
87
|
-
* Used by flowchart and state parsers to keep the color-parens recognition
|
|
88
|
-
* rule in one place — do NOT re-implement the regex in chart parsers.
|
|
89
|
-
*/
|
|
90
|
-
declare function matchColorParens(content: string): string | null;
|
|
91
80
|
|
|
92
81
|
/**
|
|
93
82
|
* Compact view state schema (ADR-6).
|
|
@@ -646,7 +635,7 @@ interface LegendPosition {
|
|
|
646
635
|
placement: 'top-center';
|
|
647
636
|
titleRelation: 'below-title' | 'inline-with-title';
|
|
648
637
|
}
|
|
649
|
-
type LegendMode = '
|
|
638
|
+
type LegendMode = 'preview' | 'export';
|
|
650
639
|
type LegendControlExportBehavior = 'include' | 'strip' | 'static';
|
|
651
640
|
interface LegendControl {
|
|
652
641
|
id: string;
|
|
@@ -970,7 +959,7 @@ interface D3ExportDimensions {
|
|
|
970
959
|
height?: number;
|
|
971
960
|
}
|
|
972
961
|
|
|
973
|
-
/** A single entry inside a tag group: `Value
|
|
962
|
+
/** A single entry inside a tag group: `Value color` */
|
|
974
963
|
interface TagEntry {
|
|
975
964
|
value: string;
|
|
976
965
|
color: string;
|
|
@@ -1156,7 +1145,7 @@ declare function formatDateLabel(dateStr: string): string;
|
|
|
1156
1145
|
* Renders a timeline chart into the given container using D3.
|
|
1157
1146
|
* Supports horizontal (default) and vertical orientation.
|
|
1158
1147
|
*/
|
|
1159
|
-
declare function renderTimeline(container: HTMLDivElement, parsed: ParsedVisualization, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: D3ExportDimensions, activeTagGroup?: string | null, swimlaneTagGroup?: string | null, onTagStateChange?: (activeTagGroup: string | null, swimlaneTagGroup: string | null) => void, viewMode?: boolean): void;
|
|
1148
|
+
declare function renderTimeline(container: HTMLDivElement, parsed: ParsedVisualization, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: D3ExportDimensions, activeTagGroup?: string | null, swimlaneTagGroup?: string | null, onTagStateChange?: (activeTagGroup: string | null, swimlaneTagGroup: string | null) => void, viewMode?: boolean, exportMode?: boolean): void;
|
|
1160
1149
|
/**
|
|
1161
1150
|
* Renders a word cloud into the given container using d3-cloud.
|
|
1162
1151
|
*/
|
|
@@ -1176,6 +1165,7 @@ declare function renderForExport(content: string, theme: 'light' | 'dark' | 'tra
|
|
|
1176
1165
|
c4System?: string;
|
|
1177
1166
|
c4Container?: string;
|
|
1178
1167
|
tagGroup?: string;
|
|
1168
|
+
exportMode?: boolean;
|
|
1179
1169
|
}): Promise<string>;
|
|
1180
1170
|
|
|
1181
1171
|
/**
|
|
@@ -1401,7 +1391,6 @@ interface LayoutEdge {
|
|
|
1401
1391
|
y: number;
|
|
1402
1392
|
}[];
|
|
1403
1393
|
label?: string;
|
|
1404
|
-
color?: string;
|
|
1405
1394
|
lineNumber: number;
|
|
1406
1395
|
}
|
|
1407
1396
|
interface LayoutGroup {
|
|
@@ -1531,7 +1520,7 @@ declare function layoutClassDiagram(parsed: ParsedClassDiagram): ClassLayoutResu
|
|
|
1531
1520
|
declare function renderClassDiagram(container: HTMLDivElement, parsed: ParsedClassDiagram, layout: ClassLayoutResult, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: {
|
|
1532
1521
|
width?: number;
|
|
1533
1522
|
height?: number;
|
|
1534
|
-
}, legendActive?: boolean | null): void;
|
|
1523
|
+
}, legendActive?: boolean | null, exportMode?: boolean): void;
|
|
1535
1524
|
declare function renderClassDiagramForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
1536
1525
|
|
|
1537
1526
|
type ERConstraint = 'pk' | 'fk' | 'unique' | 'nullable';
|
|
@@ -1615,7 +1604,7 @@ declare function renderERDiagram(container: HTMLDivElement, parsed: ParsedERDiag
|
|
|
1615
1604
|
height?: number;
|
|
1616
1605
|
}, activeTagGroup?: string | null,
|
|
1617
1606
|
/** When false, semantic role colors are suppressed and entities use a neutral color. */
|
|
1618
|
-
semanticColorsActive?: boolean): void;
|
|
1607
|
+
semanticColorsActive?: boolean, exportMode?: boolean): void;
|
|
1619
1608
|
declare function renderERDiagramForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
1620
1609
|
|
|
1621
1610
|
interface InlineSpan {
|
|
@@ -1821,7 +1810,7 @@ declare function focusOrgTree(original: ParsedOrg, focusNodeId: string): FocusOr
|
|
|
1821
1810
|
declare function renderOrg(container: HTMLDivElement, parsed: ParsedOrg, layout: OrgLayoutResult, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: {
|
|
1822
1811
|
width?: number;
|
|
1823
1812
|
height?: number;
|
|
1824
|
-
}, activeTagGroup?: string | null, hiddenAttributes?: Set<string>, ancestorPath?: AncestorInfo[]): void;
|
|
1813
|
+
}, activeTagGroup?: string | null, hiddenAttributes?: Set<string>, ancestorPath?: AncestorInfo[], exportMode?: boolean): void;
|
|
1825
1814
|
declare function renderOrgForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
1826
1815
|
|
|
1827
1816
|
/** @deprecated Use `TagEntry` from `utils/tag-groups` */
|
|
@@ -1892,6 +1881,7 @@ interface KanbanInteractiveOptions {
|
|
|
1892
1881
|
collapsedLanes?: Set<string>;
|
|
1893
1882
|
collapsedColumns?: Set<string>;
|
|
1894
1883
|
compactMeta?: boolean;
|
|
1884
|
+
exportMode?: boolean;
|
|
1895
1885
|
}
|
|
1896
1886
|
declare function renderKanban(container: HTMLElement, parsed: ParsedKanban, palette: PaletteColors, isDark: boolean, options?: KanbanInteractiveOptions): void;
|
|
1897
1887
|
declare function renderKanbanForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
@@ -2048,7 +2038,7 @@ declare function layoutC4Deployment(parsed: ParsedC4, activeTagGroup?: string |
|
|
|
2048
2038
|
declare function renderC4Context(container: HTMLDivElement, parsed: ParsedC4, layout: C4LayoutResult, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: {
|
|
2049
2039
|
width?: number;
|
|
2050
2040
|
height?: number;
|
|
2051
|
-
}, activeTagGroup?: string | null): void;
|
|
2041
|
+
}, activeTagGroup?: string | null, exportMode?: boolean): void;
|
|
2052
2042
|
declare function renderC4ContextForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
2053
2043
|
/**
|
|
2054
2044
|
* Render a C4 container-level diagram showing containers inside a system boundary
|
|
@@ -2057,7 +2047,7 @@ declare function renderC4ContextForExport(content: string, theme: 'light' | 'dar
|
|
|
2057
2047
|
declare function renderC4Containers(container: HTMLDivElement, parsed: ParsedC4, layout: C4LayoutResult, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: {
|
|
2058
2048
|
width?: number;
|
|
2059
2049
|
height?: number;
|
|
2060
|
-
}, activeTagGroup?: string | null): void;
|
|
2050
|
+
}, activeTagGroup?: string | null, exportMode?: boolean): void;
|
|
2061
2051
|
declare function renderC4ContainersForExport(content: string, systemName: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
2062
2052
|
declare function renderC4ComponentsForExport(content: string, systemName: string, containerName: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
2063
2053
|
/**
|
|
@@ -2068,7 +2058,7 @@ declare function renderC4ComponentsForExport(content: string, systemName: string
|
|
|
2068
2058
|
declare function renderC4Deployment(container: HTMLDivElement, parsed: ParsedC4, layout: C4LayoutResult, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: {
|
|
2069
2059
|
width?: number;
|
|
2070
2060
|
height?: number;
|
|
2071
|
-
}, activeTagGroup?: string | null): void;
|
|
2061
|
+
}, activeTagGroup?: string | null, exportMode?: boolean): void;
|
|
2072
2062
|
/**
|
|
2073
2063
|
* Export convenience function for deployment diagrams.
|
|
2074
2064
|
*/
|
|
@@ -2174,6 +2164,7 @@ interface BLRenderOptions {
|
|
|
2174
2164
|
controlsExpanded?: boolean;
|
|
2175
2165
|
onToggleDescriptions?: (active: boolean) => void;
|
|
2176
2166
|
onToggleControlsExpand?: () => void;
|
|
2167
|
+
exportMode?: boolean;
|
|
2177
2168
|
}
|
|
2178
2169
|
declare function renderBoxesAndLines(container: HTMLDivElement, parsed: ParsedBoxesAndLines, layout: BLLayoutResult, palette: PaletteColors, isDark: boolean, options?: BLRenderOptions): void;
|
|
2179
2170
|
declare function renderBoxesAndLinesForExport(container: HTMLDivElement, parsed: ParsedBoxesAndLines, layout: BLLayoutResult, palette: PaletteColors, isDark: boolean, options?: {
|
|
@@ -2183,6 +2174,7 @@ declare function renderBoxesAndLinesForExport(container: HTMLDivElement, parsed:
|
|
|
2183
2174
|
};
|
|
2184
2175
|
activeTagGroup?: string | null;
|
|
2185
2176
|
hiddenTagValues?: Map<string, Set<string>>;
|
|
2177
|
+
exportMode?: boolean;
|
|
2186
2178
|
}): void;
|
|
2187
2179
|
|
|
2188
2180
|
interface BLCollapseResult {
|
|
@@ -2218,7 +2210,6 @@ interface SitemapEdge {
|
|
|
2218
2210
|
sourceId: string;
|
|
2219
2211
|
targetId: string;
|
|
2220
2212
|
label?: string;
|
|
2221
|
-
color?: string;
|
|
2222
2213
|
lineNumber: number;
|
|
2223
2214
|
}
|
|
2224
2215
|
type SitemapDirection = 'TB' | 'LR';
|
|
@@ -2271,7 +2262,6 @@ interface SitemapLayoutEdge {
|
|
|
2271
2262
|
y: number;
|
|
2272
2263
|
}[];
|
|
2273
2264
|
label?: string;
|
|
2274
|
-
color?: string;
|
|
2275
2265
|
lineNumber: number;
|
|
2276
2266
|
/** True for edges deferred from dagre (container endpoints) — use linear curve */
|
|
2277
2267
|
deferred?: boolean;
|
|
@@ -2322,7 +2312,7 @@ declare function layoutSitemap(parsed: ParsedSitemap, hiddenCounts?: Map<string,
|
|
|
2322
2312
|
declare function renderSitemap(container: HTMLDivElement, parsed: ParsedSitemap, layout: SitemapLayoutResult, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: {
|
|
2323
2313
|
width?: number;
|
|
2324
2314
|
height?: number;
|
|
2325
|
-
}, activeTagGroup?: string | null, hiddenAttributes?: Set<string
|
|
2315
|
+
}, activeTagGroup?: string | null, hiddenAttributes?: Set<string>, exportMode?: boolean): void;
|
|
2326
2316
|
declare function renderSitemapForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette?: PaletteColors): Promise<string>;
|
|
2327
2317
|
|
|
2328
2318
|
interface CollapsedSitemapResult {
|
|
@@ -2778,6 +2768,7 @@ interface GanttInteractiveOptions {
|
|
|
2778
2768
|
collapsedLanes?: Set<string>;
|
|
2779
2769
|
onToggleLane?: (laneName: string) => void;
|
|
2780
2770
|
viewMode?: boolean;
|
|
2771
|
+
exportMode?: boolean;
|
|
2781
2772
|
}
|
|
2782
2773
|
declare function renderGantt(container: HTMLDivElement, resolved: ResolvedSchedule, palette: PaletteColors, isDark: boolean, options?: GanttInteractiveOptions, exportDims?: D3ExportDimensions): void;
|
|
2783
2774
|
type GroupRow = {
|
|
@@ -3048,7 +3039,7 @@ interface ParsedPert {
|
|
|
3048
3039
|
groups: PertGroup[];
|
|
3049
3040
|
/**
|
|
3050
3041
|
* Tag groups declared at the top of the diagram (`tag Priority as p
|
|
3051
|
-
* High
|
|
3042
|
+
* High red, Low green`). Drive node fill via `resolveTagColor()`.
|
|
3052
3043
|
* Empty when no `tag` blocks are declared.
|
|
3053
3044
|
*/
|
|
3054
3045
|
tagGroups: TagGroup[];
|
|
@@ -3305,7 +3296,7 @@ interface ParsePertOptions {
|
|
|
3305
3296
|
now?: Date;
|
|
3306
3297
|
/**
|
|
3307
3298
|
* Active palette — used when resolving color names on `tag` entries
|
|
3308
|
-
* (e.g. `High
|
|
3299
|
+
* (e.g. `High red` → palette.colors.red). Optional; when omitted the
|
|
3309
3300
|
* universal default color map is used.
|
|
3310
3301
|
*/
|
|
3311
3302
|
palette?: PaletteColors;
|
|
@@ -3468,6 +3459,8 @@ interface PertRenderOptions {
|
|
|
3468
3459
|
* through to the parsed `active-tag` directive.
|
|
3469
3460
|
*/
|
|
3470
3461
|
activeTagOverride?: string | null;
|
|
3462
|
+
/** True when rendering for export — strips collapsed pills and cog from legend. */
|
|
3463
|
+
exportMode?: boolean;
|
|
3471
3464
|
}
|
|
3472
3465
|
declare function renderPert(container: HTMLDivElement, resolved: ResolvedPert, layout: LayoutResult, palette: PaletteColors, isDark: boolean, options?: PertRenderOptions): void;
|
|
3473
3466
|
declare function renderPertForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors,
|
|
@@ -3646,6 +3639,7 @@ declare function renderMindmap(container: HTMLDivElement, parsed: ParsedMindmap,
|
|
|
3646
3639
|
onToggleDescriptions?: (active: boolean) => void;
|
|
3647
3640
|
controlsExpanded?: boolean;
|
|
3648
3641
|
onToggleControlsExpand?: () => void;
|
|
3642
|
+
exportMode?: boolean;
|
|
3649
3643
|
}): void;
|
|
3650
3644
|
declare function renderMindmapForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
3651
3645
|
|
|
@@ -3833,6 +3827,8 @@ interface TechRadarRenderOptions {
|
|
|
3833
3827
|
onLegendGroupToggle?: (groupName: string) => void;
|
|
3834
3828
|
/** Active line from the editor cursor — triggers popover/expansion for that blip. */
|
|
3835
3829
|
activeLine?: number | null;
|
|
3830
|
+
/** True when rendering for export (PNG/SVG/PDF) — controls whether collapsed legend pills and cog are stripped. */
|
|
3831
|
+
exportMode?: boolean;
|
|
3836
3832
|
}
|
|
3837
3833
|
|
|
3838
3834
|
declare function parseTechRadar(content: string): ParsedTechRadar;
|
|
@@ -3859,7 +3855,7 @@ declare function getRadarGeometry(width: number, height: number, ringCount: numb
|
|
|
3859
3855
|
};
|
|
3860
3856
|
|
|
3861
3857
|
declare function renderTechRadar(container: HTMLDivElement, parsed: ParsedTechRadar, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: D3ExportDimensions, viewState?: CompactViewState, options?: TechRadarRenderOptions): void;
|
|
3862
|
-
declare function renderTechRadarForExport(container: HTMLDivElement, parsed: ParsedTechRadar, palette: PaletteColors, isDark: boolean, exportDims?: D3ExportDimensions, viewState?: CompactViewState): void;
|
|
3858
|
+
declare function renderTechRadarForExport(container: HTMLDivElement, parsed: ParsedTechRadar, palette: PaletteColors, isDark: boolean, exportDims?: D3ExportDimensions, viewState?: CompactViewState, exportMode?: boolean): void;
|
|
3863
3859
|
|
|
3864
3860
|
declare function renderQuadrantFocus(container: HTMLDivElement, parsed: ParsedTechRadar, quadrantPosition: QuadrantPosition, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: D3ExportDimensions, _options?: TechRadarRenderOptions): void;
|
|
3865
3861
|
declare function renderQuadrantFocusForExport(container: HTMLDivElement, parsed: ParsedTechRadar, quadrantPosition: QuadrantPosition, palette: PaletteColors, isDark: boolean, exportDims: {
|
|
@@ -3982,6 +3978,7 @@ interface CycleRenderOptions {
|
|
|
3982
3978
|
controlsExpanded?: boolean;
|
|
3983
3979
|
onToggleDescriptions?: (active: boolean) => void;
|
|
3984
3980
|
onToggleControlsExpand?: () => void;
|
|
3981
|
+
exportMode?: boolean;
|
|
3985
3982
|
}
|
|
3986
3983
|
/**
|
|
3987
3984
|
* Render a cycle diagram into the given container.
|
|
@@ -3990,7 +3987,7 @@ declare function renderCycle(container: HTMLDivElement, parsed: ParsedCycle, pal
|
|
|
3990
3987
|
/**
|
|
3991
3988
|
* Render for CLI/export (no click handlers).
|
|
3992
3989
|
*/
|
|
3993
|
-
declare function renderCycleForExport(container: HTMLDivElement, parsed: ParsedCycle, palette: PaletteColors, isDark: boolean, exportDims?: D3ExportDimensions, viewState?: CompactViewState): void;
|
|
3990
|
+
declare function renderCycleForExport(container: HTMLDivElement, parsed: ParsedCycle, palette: PaletteColors, isDark: boolean, exportDims?: D3ExportDimensions, viewState?: CompactViewState, exportMode?: boolean): void;
|
|
3994
3991
|
|
|
3995
3992
|
interface JourneyMapAnnotation {
|
|
3996
3993
|
type: 'pain' | 'opportunity' | 'thought';
|
|
@@ -4096,6 +4093,7 @@ interface JourneyMapInteractiveOptions {
|
|
|
4096
4093
|
collapsedPhases?: Set<string>;
|
|
4097
4094
|
/** Called when a phase is toggled */
|
|
4098
4095
|
onPhaseToggle?: (phaseName: string) => void;
|
|
4096
|
+
exportMode?: boolean;
|
|
4099
4097
|
}
|
|
4100
4098
|
declare function renderJourneyMap(container: HTMLElement, parsed: ParsedJourneyMap, palette: PaletteColors, isDark: boolean, options?: JourneyMapInteractiveOptions): void;
|
|
4101
4099
|
declare function renderJourneyMapForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
@@ -4246,9 +4244,10 @@ interface ParsedRaci {
|
|
|
4246
4244
|
/** Display name for each role (parallel to `roles`). */
|
|
4247
4245
|
roleDisplayNames: string[];
|
|
4248
4246
|
/**
|
|
4249
|
-
* Optional per-role palette color from `Cap
|
|
4250
|
-
* roles block
|
|
4251
|
-
*
|
|
4247
|
+
* Optional per-role palette color from the `Cap blue` trailing-token
|
|
4248
|
+
* suffix in the roles block (or the long pipe form `Cap | color: blue`).
|
|
4249
|
+
* Parallel to `roles`; entries default to `undefined` (renderer falls
|
|
4250
|
+
* back to the neutral column tint).
|
|
4252
4251
|
*/
|
|
4253
4252
|
roleColors: Array<string | undefined>;
|
|
4254
4253
|
phases: RaciPhase[];
|
|
@@ -4688,4 +4687,4 @@ declare const themes: {
|
|
|
4688
4687
|
readonly transparent: "transparent";
|
|
4689
4688
|
};
|
|
4690
4689
|
|
|
4691
|
-
export { ALL_CHART_TYPES, AMBIGUITY_THRESHOLD, ARROW_DIAGNOSTIC_CODES, type Activation, type AncestorInfo, type ArcLink, type ArcNodeGroup, type BLCollapseResult, type BLEdge, type BLGroup, type BLLayoutEdge, type BLLayoutGroup, type BLLayoutNode, type BLLayoutResult, type BLNode, type BlipTrend, type C4ArrowType, type C4DeploymentNode, type C4Element, type C4ElementType, type C4Group, type C4LayoutBoundary, type C4LayoutEdge, type C4LayoutNode, type C4LayoutResult, type C4LegendEntry, type C4LegendGroup, type C4Relationship, type C4Shape, type C4TagEntry, type C4TagGroup, CHART_TYPES, CHART_TYPE_DESCRIPTIONS, COMPLETION_REGISTRY, type ChartDataPoint, type ChartEra, type ChartType$1 as ChartType, type Confidence as ChartTypeConfidence, type ChartTypeMeta, type ChartTypeScore, type SuggestionResult as ChartTypeSuggestionResult, type ClassLayoutEdge, type ClassLayoutNode, type ClassLayoutResult, type ClassMember, type ClassModifier, type ClassNode, type ClassRelationship, type CollapsedMindmapResult, type CollapsedOrgResult, type CollapsedSitemapResult, type CollapsedView, type CompactViewState, type ComputedInfraEdge, type ComputedInfraModel, type ComputedInfraNode, type ContextRelationship, type CycleEdge, type CycleLayoutEdge, type CycleLayoutNode, type CycleLayoutResult, type CycleNode, type CycleRenderOptions, type D3ExportDimensions, type DecodedDiagramUrl, type DgmoError, type DgmoSeverity, type DiagramSymbols, type DirectiveSpec, type DirectiveValueSpec, type Duration, type DurationUnit, ENTITY_TYPES, type ERCardinality, type ERColumn, type ERConstraint, type ERLayoutEdge, type ERLayoutNode, type ERLayoutResult, type ERRelationship, type ERTable, type ElseIfBranch, type EncodeDiagramUrlOptions, type EncodeDiagramUrlResult, type ExpandedActivity, type ExtendedChartType, type ExtractFn, type FocusOrgResult, type GanttDependency, type GanttEra, type GanttGroup, type GroupRow as GanttGroupRow, type GanttHolidays, type GanttInteractiveOptions, type LaneHeaderRow as GanttLaneHeaderRow, type GanttMarker, type GanttNode, type GanttOptions, type GanttParallelBlock, type Row as GanttRow, type GanttTask, type TaskRow as GanttTaskRow, type GetOrCreateNameResult, type GraphDirection, type GraphEdge, type GraphGroup, type GraphNode, type GraphShape, INFRA_BEHAVIOR_KEYS, type ImportSource, type InfraAvailabilityPercentiles, type InfraBehaviorKey, type InfraCbState, type InfraComputeParams, type InfraDiagnostic, type InfraEdge, type InfraGroup, type InfraLatencyPercentiles, type InfraLayoutEdge, type InfraLayoutGroup, type InfraLayoutNode, type InfraLayoutResult, type InfraLegendGroup, type InfraNode, type InfraPlaybackState, type InfraProperty, type InfraRole, type InfraTagGroup, type InlineSpan, type JourneyMapAnnotation, type JourneyMapInteractiveOptions, type JourneyMapLayout, type JourneyMapPersona, type JourneyMapPhase, type JourneyMapStep, type KanbanCard, type KanbanColumn, type KanbanTagEntry, type KanbanTagGroup, LEGEND_GEAR_PILL_W, LEGEND_HEIGHT, type LayoutEdge, type LayoutGroup, type LayoutNode, type LayoutOptions, type LayoutResult$1 as LayoutResult, type LegendCallbacks, type LegendConfig, type LegendControl, type LegendGroupData, type LegendHandle, type LegendLayout, type LegendMode, type LegendPalette, type LegendPosition, type LegendState, METADATA_KEY_SET, MIN_PRIMARY_SCORE, type MemberVisibility, type MindmapLayoutEdge, type MindmapLayoutNode, type MindmapLayoutResult, type MindmapNode, type MonteCarloResult, type NameEntry, type NodeDetail, type OrgContainerBounds, type OrgLayoutEdge, type OrgLayoutNode, type OrgLayoutResult, type OrgNode, PERT_LEGEND_PILL_HEIGHT, PIPE_METADATA, type PaletteColors, type PaletteConfig, type ParseInArrowLabelResult, type ParsedBoxesAndLines, type ParsedC4, type ParsedChart, type ParsedClassDiagram, type ParsedCycle, type ParsedERDiagram, type ParsedExtendedChart, type ParsedGantt, type ParsedGraph, type ParsedInfra, type ParsedJourneyMap, type ParsedKanban, type ParsedMindmap, type ParsedOrg, type ParsedPert, type ParsedPyramid, type ParsedRaci, type ParsedRing, type ParsedSequenceDgmo, type ParsedSitemap, type ParsedTechRadar, type ParsedVisualization, type ParsedWireframe, type ParticipantType, type PertActivity, type Anchor as PertAnchor, type PertDirection, type PertEdge, type PertGroup, type PertLayoutEdge, type PertLayoutGroup, type PertLayoutNode, type LayoutOverrides as PertLayoutOverrides, type LayoutResult as PertLayoutResult, type PertMilestone, type PertOptions, type PertRenderOptions, type PipeKeySpec, type PyramidLayer, type QuadrantPosition, RACI_ERROR_CODES, VARIANTS as RACI_VARIANTS, RACI_WARNING_CODES, RECOGNIZED_COLOR_NAMES, RULE_COUNT, type RaciDragSource, type RaciInteractionHandlers, type RaciMarker, type RaciPhase, type RaciRoleAssignment, type RaciTask, type RaciVariant, type ReadFileFn, type RelationshipType, type RenderCategory, type RenderStep, type ResolveImportsResult, type ResolvedActivity, type ResolvedGroup$1 as ResolvedGroup, type ResolvedPert, type ResolvedGroup as ResolvedPertGroup, type ResolvedSchedule, type ResolvedTask, type RingLayer, type ScatterLabelPoint, type SectionMessageGroup, type SequenceBlock, type SequenceElement, type SequenceGroup, type SequenceMessage, type SequenceNote, type SequenceParticipant, type SequenceRenderOptions, type SequenceSection, type SimulateOptions, type SitemapContainerBounds, type SitemapDirection, type SitemapEdge, type SitemapLayoutEdge, type SitemapLayoutNode, type SitemapLayoutResult, type SitemapLegendEntry, type SitemapLegendGroup, type SitemapNode, type StateCollapseResult, type TagEntry, type TagGroup, type TechRadarBlip, type TechRadarLayoutPoint, type TechRadarQuadrant, type TechRadarRing, type Theme, type VisualizationType, type WireframeElement, type WireframeElementType, type WireframeFormFactor, type WireframeLayout, type WireframeLayoutNode, addDurationToDate, analyzePert, applyCollapseProjection, applyGroupOrdering, applyPositionOverrides, boldPalette, buildExtendedChartOption, buildNoteMessageMap, buildRenderSequence, buildSimpleChartOption, buildSimulationContext, buildTagLaneRowList, calculateSchedule, catppuccinPalette, confidence as chartTypeConfidence, chartTypeParsers, chartTypes, collapseBoxesAndLines, collapseMindmapTree, collapseOrgTree, collapseSitemapTree, collapseStateGroups, collectDiagramRoles, collectTasks, colorNames, computeActivations, computeCardArchive, computeCardMove, computeCycleLayout, computeInfra, computeInfraLegendGroups, computeLegendLayout, computeRadarLayout, computeScatterLabelGraphics, computeTimeTicks, contrastText, controlsGroupCapsuleWidth, decodeDiagramUrl, decodeViewState, displayName, draculaPalette, encodeDiagramUrl, encodeViewState, extractDiagramSymbols, extractPertSymbols, extractTagDeclarations, focusOrgTree, formatDateLabel, formatDgmoError, getAllChartTypes, getAvailablePalettes, getExtendedChartLegendGroups, getLegendReservedHeight, getOrCreateName, getPalette, getRadarGeometry, getRenderCategory, getSeriesColors, getSimpleChartLegendGroups, groupMessagesBySection, gruvboxPalette, hexToHSL, hexToHSLString, highlightPertCriticalPath, highlightPertSet, hslToHex, inferParticipantType, inferRoles, isArchiveColumn, isExtendedChartType, isRecognizedColorName, isSequenceBlock, isSequenceNote, isValidHex, knownChartTypeIds, layoutBoxesAndLines, layoutC4Components, layoutC4Containers, layoutC4Context, layoutC4Deployment, layoutClassDiagram, layoutERDiagram, layoutGraph, layoutInfra, layoutJourneyMap, layoutMindmap, layoutOrg, layoutPert, layoutSitemap, layoutWireframe, looksLikeClassDiagram, looksLikeERDiagram, looksLikeFlowchart, looksLikePert, looksLikeSequence, looksLikeSitemap, looksLikeState, makeDgmoError, matchColorParens, matchesContiguously, measurePertAnalysisBlock, mix, monokaiPalette, mulberry32, nord, nordPalette, normalize as normalizeChartTypePrompt, normalizeName, normalizePertSourceForShare, oneDarkPalette, orderArcNodes, palettes, parseAndLayoutInfra, parseBoxesAndLines, parseC4, parseChart, parseClassDiagram, parseCycle, parseDataRowValues, parseDgmo, parseDgmoChartType, parseERDiagram, parseExtendedChart, parseFirstLine, parseFlowchart, parseGantt, parseInArrowLabel, parseInfra, parseInlineMarkdown, parseJourneyMap, parseKanban, parseMindmap, parseOrg, parsePert, parsePyramid, parseRaci, parseRing, parseSequenceDgmo, parseSequenceDgmo as parseSequenceDiagram, parseSitemap, parseState, parseTechRadar, parseTimelineDate, parseVisualization, parseWireframe, pertLegendBlockWidth, pertLegendEntries, cellAppendMarker as raciCellAppendMarker, cellCycle as raciCellCycle, cellRemove as raciCellRemove, cellReplace as raciCellReplace, registerExtractor, registerPalette, relayoutPert, render, renderArcDiagram, renderBoxesAndLines, renderBoxesAndLinesForExport, renderC4ComponentsForExport, renderC4Containers, renderC4ContainersForExport, renderC4Context, renderC4ContextForExport, renderC4Deployment, renderC4DeploymentForExport, renderClassDiagram, renderClassDiagramForExport, renderCycle, renderCycleForExport, renderERDiagram, renderERDiagramForExport, renderExtendedChartForExport, renderFlowchart, renderFlowchartForExport, renderForExport, renderGantt, renderInfra, renderJourneyMap, renderJourneyMapForExport, renderKanban, renderKanbanForExport, renderLegendD3, renderLegendSvg, renderLegendSvgFromConfig, renderMindmap, renderMindmapForExport, renderOrg, renderOrgForExport, renderPert, renderPertAnalysisBlock, renderPertForExport, renderLegendBlock as renderPertLegendBlock, renderPyramid, renderPyramidForExport, renderQuadrant, renderQuadrantFocus, renderQuadrantFocusForExport, renderRaci, renderRaciForExport, renderRing, renderRingForExport, renderSequenceDiagram, renderSitemap, renderSitemapForExport, renderSlopeChart, renderState, renderStateForExport, renderTechRadar, renderTechRadarForExport, renderTimeline, renderVenn, renderWireframe, renderWordCloud, resetPertCriticalPath, resetPertHighlight, resolveColor, resolveColorWithDiagnostic, resolveOrgImports, resolveTaskName, rollUpContextRelationships, rosePinePalette, sampleBetaPert, scoreChartType, seriesColors, shade, shapeFill, simulateCanonical, simulateFast, solarizedPalette, suggestChartTypes, themes, tint, tokyoNightPalette, truncateBareUrl, parseDgmo as validate, validateComputed, validateInfra, validateLabelCharacters };
|
|
4690
|
+
export { ALL_CHART_TYPES, AMBIGUITY_THRESHOLD, ARROW_DIAGNOSTIC_CODES, type Activation, type AncestorInfo, type ArcLink, type ArcNodeGroup, type BLCollapseResult, type BLEdge, type BLGroup, type BLLayoutEdge, type BLLayoutGroup, type BLLayoutNode, type BLLayoutResult, type BLNode, type BlipTrend, type C4ArrowType, type C4DeploymentNode, type C4Element, type C4ElementType, type C4Group, type C4LayoutBoundary, type C4LayoutEdge, type C4LayoutNode, type C4LayoutResult, type C4LegendEntry, type C4LegendGroup, type C4Relationship, type C4Shape, type C4TagEntry, type C4TagGroup, CHART_TYPES, CHART_TYPE_DESCRIPTIONS, COMPLETION_REGISTRY, type ChartDataPoint, type ChartEra, type ChartType$1 as ChartType, type Confidence as ChartTypeConfidence, type ChartTypeMeta, type ChartTypeScore, type SuggestionResult as ChartTypeSuggestionResult, type ClassLayoutEdge, type ClassLayoutNode, type ClassLayoutResult, type ClassMember, type ClassModifier, type ClassNode, type ClassRelationship, type CollapsedMindmapResult, type CollapsedOrgResult, type CollapsedSitemapResult, type CollapsedView, type CompactViewState, type ComputedInfraEdge, type ComputedInfraModel, type ComputedInfraNode, type ContextRelationship, type CycleEdge, type CycleLayoutEdge, type CycleLayoutNode, type CycleLayoutResult, type CycleNode, type CycleRenderOptions, type D3ExportDimensions, type DecodedDiagramUrl, type DgmoError, type DgmoSeverity, type DiagramSymbols, type DirectiveSpec, type DirectiveValueSpec, type Duration, type DurationUnit, ENTITY_TYPES, type ERCardinality, type ERColumn, type ERConstraint, type ERLayoutEdge, type ERLayoutNode, type ERLayoutResult, type ERRelationship, type ERTable, type ElseIfBranch, type EncodeDiagramUrlOptions, type EncodeDiagramUrlResult, type ExpandedActivity, type ExtendedChartType, type ExtractFn, type FocusOrgResult, type GanttDependency, type GanttEra, type GanttGroup, type GroupRow as GanttGroupRow, type GanttHolidays, type GanttInteractiveOptions, type LaneHeaderRow as GanttLaneHeaderRow, type GanttMarker, type GanttNode, type GanttOptions, type GanttParallelBlock, type Row as GanttRow, type GanttTask, type TaskRow as GanttTaskRow, type GetOrCreateNameResult, type GraphDirection, type GraphEdge, type GraphGroup, type GraphNode, type GraphShape, INFRA_BEHAVIOR_KEYS, type ImportSource, type InfraAvailabilityPercentiles, type InfraBehaviorKey, type InfraCbState, type InfraComputeParams, type InfraDiagnostic, type InfraEdge, type InfraGroup, type InfraLatencyPercentiles, type InfraLayoutEdge, type InfraLayoutGroup, type InfraLayoutNode, type InfraLayoutResult, type InfraLegendGroup, type InfraNode, type InfraPlaybackState, type InfraProperty, type InfraRole, type InfraTagGroup, type InlineSpan, type JourneyMapAnnotation, type JourneyMapInteractiveOptions, type JourneyMapLayout, type JourneyMapPersona, type JourneyMapPhase, type JourneyMapStep, type KanbanCard, type KanbanColumn, type KanbanTagEntry, type KanbanTagGroup, LEGEND_GEAR_PILL_W, LEGEND_HEIGHT, type LayoutEdge, type LayoutGroup, type LayoutNode, type LayoutOptions, type LayoutResult$1 as LayoutResult, type LegendCallbacks, type LegendConfig, type LegendControl, type LegendGroupData, type LegendHandle, type LegendLayout, type LegendMode, type LegendPalette, type LegendPosition, type LegendState, METADATA_KEY_SET, MIN_PRIMARY_SCORE, type MemberVisibility, type MindmapLayoutEdge, type MindmapLayoutNode, type MindmapLayoutResult, type MindmapNode, type MonteCarloResult, type NameEntry, type NodeDetail, type OrgContainerBounds, type OrgLayoutEdge, type OrgLayoutNode, type OrgLayoutResult, type OrgNode, PERT_LEGEND_PILL_HEIGHT, PIPE_METADATA, type PaletteColors, type PaletteConfig, type ParseInArrowLabelResult, type ParsedBoxesAndLines, type ParsedC4, type ParsedChart, type ParsedClassDiagram, type ParsedCycle, type ParsedERDiagram, type ParsedExtendedChart, type ParsedGantt, type ParsedGraph, type ParsedInfra, type ParsedJourneyMap, type ParsedKanban, type ParsedMindmap, type ParsedOrg, type ParsedPert, type ParsedPyramid, type ParsedRaci, type ParsedRing, type ParsedSequenceDgmo, type ParsedSitemap, type ParsedTechRadar, type ParsedVisualization, type ParsedWireframe, type ParticipantType, type PertActivity, type Anchor as PertAnchor, type PertDirection, type PertEdge, type PertGroup, type PertLayoutEdge, type PertLayoutGroup, type PertLayoutNode, type LayoutOverrides as PertLayoutOverrides, type LayoutResult as PertLayoutResult, type PertMilestone, type PertOptions, type PertRenderOptions, type PipeKeySpec, type PyramidLayer, type QuadrantPosition, RACI_ERROR_CODES, VARIANTS as RACI_VARIANTS, RACI_WARNING_CODES, RECOGNIZED_COLOR_NAMES, RULE_COUNT, type RaciDragSource, type RaciInteractionHandlers, type RaciMarker, type RaciPhase, type RaciRoleAssignment, type RaciTask, type RaciVariant, type ReadFileFn, type RelationshipType, type RenderCategory, type RenderStep, type ResolveImportsResult, type ResolvedActivity, type ResolvedGroup$1 as ResolvedGroup, type ResolvedPert, type ResolvedGroup as ResolvedPertGroup, type ResolvedSchedule, type ResolvedTask, type RingLayer, type ScatterLabelPoint, type SectionMessageGroup, type SequenceBlock, type SequenceElement, type SequenceGroup, type SequenceMessage, type SequenceNote, type SequenceParticipant, type SequenceRenderOptions, type SequenceSection, type SimulateOptions, type SitemapContainerBounds, type SitemapDirection, type SitemapEdge, type SitemapLayoutEdge, type SitemapLayoutNode, type SitemapLayoutResult, type SitemapLegendEntry, type SitemapLegendGroup, type SitemapNode, type StateCollapseResult, type TagEntry, type TagGroup, type TechRadarBlip, type TechRadarLayoutPoint, type TechRadarQuadrant, type TechRadarRing, type Theme, type VisualizationType, type WireframeElement, type WireframeElementType, type WireframeFormFactor, type WireframeLayout, type WireframeLayoutNode, addDurationToDate, analyzePert, applyCollapseProjection, applyGroupOrdering, applyPositionOverrides, boldPalette, buildExtendedChartOption, buildNoteMessageMap, buildRenderSequence, buildSimpleChartOption, buildSimulationContext, buildTagLaneRowList, calculateSchedule, catppuccinPalette, confidence as chartTypeConfidence, chartTypeParsers, chartTypes, collapseBoxesAndLines, collapseMindmapTree, collapseOrgTree, collapseSitemapTree, collapseStateGroups, collectDiagramRoles, collectTasks, colorNames, computeActivations, computeCardArchive, computeCardMove, computeCycleLayout, computeInfra, computeInfraLegendGroups, computeLegendLayout, computeRadarLayout, computeScatterLabelGraphics, computeTimeTicks, contrastText, controlsGroupCapsuleWidth, decodeDiagramUrl, decodeViewState, displayName, draculaPalette, encodeDiagramUrl, encodeViewState, extractDiagramSymbols, extractPertSymbols, extractTagDeclarations, focusOrgTree, formatDateLabel, formatDgmoError, getAllChartTypes, getAvailablePalettes, getExtendedChartLegendGroups, getLegendReservedHeight, getOrCreateName, getPalette, getRadarGeometry, getRenderCategory, getSeriesColors, getSimpleChartLegendGroups, groupMessagesBySection, gruvboxPalette, hexToHSL, hexToHSLString, highlightPertCriticalPath, highlightPertSet, hslToHex, inferParticipantType, inferRoles, isArchiveColumn, isExtendedChartType, isRecognizedColorName, isSequenceBlock, isSequenceNote, isValidHex, knownChartTypeIds, layoutBoxesAndLines, layoutC4Components, layoutC4Containers, layoutC4Context, layoutC4Deployment, layoutClassDiagram, layoutERDiagram, layoutGraph, layoutInfra, layoutJourneyMap, layoutMindmap, layoutOrg, layoutPert, layoutSitemap, layoutWireframe, looksLikeClassDiagram, looksLikeERDiagram, looksLikeFlowchart, looksLikePert, looksLikeSequence, looksLikeSitemap, looksLikeState, makeDgmoError, matchesContiguously, measurePertAnalysisBlock, mix, monokaiPalette, mulberry32, nord, nordPalette, normalize as normalizeChartTypePrompt, normalizeName, normalizePertSourceForShare, oneDarkPalette, orderArcNodes, palettes, parseAndLayoutInfra, parseBoxesAndLines, parseC4, parseChart, parseClassDiagram, parseCycle, parseDataRowValues, parseDgmo, parseDgmoChartType, parseERDiagram, parseExtendedChart, parseFirstLine, parseFlowchart, parseGantt, parseInArrowLabel, parseInfra, parseInlineMarkdown, parseJourneyMap, parseKanban, parseMindmap, parseOrg, parsePert, parsePyramid, parseRaci, parseRing, parseSequenceDgmo, parseSequenceDgmo as parseSequenceDiagram, parseSitemap, parseState, parseTechRadar, parseTimelineDate, parseVisualization, parseWireframe, pertLegendBlockWidth, pertLegendEntries, cellAppendMarker as raciCellAppendMarker, cellCycle as raciCellCycle, cellRemove as raciCellRemove, cellReplace as raciCellReplace, registerExtractor, registerPalette, relayoutPert, render, renderArcDiagram, renderBoxesAndLines, renderBoxesAndLinesForExport, renderC4ComponentsForExport, renderC4Containers, renderC4ContainersForExport, renderC4Context, renderC4ContextForExport, renderC4Deployment, renderC4DeploymentForExport, renderClassDiagram, renderClassDiagramForExport, renderCycle, renderCycleForExport, renderERDiagram, renderERDiagramForExport, renderExtendedChartForExport, renderFlowchart, renderFlowchartForExport, renderForExport, renderGantt, renderInfra, renderJourneyMap, renderJourneyMapForExport, renderKanban, renderKanbanForExport, renderLegendD3, renderLegendSvg, renderLegendSvgFromConfig, renderMindmap, renderMindmapForExport, renderOrg, renderOrgForExport, renderPert, renderPertAnalysisBlock, renderPertForExport, renderLegendBlock as renderPertLegendBlock, renderPyramid, renderPyramidForExport, renderQuadrant, renderQuadrantFocus, renderQuadrantFocusForExport, renderRaci, renderRaciForExport, renderRing, renderRingForExport, renderSequenceDiagram, renderSitemap, renderSitemapForExport, renderSlopeChart, renderState, renderStateForExport, renderTechRadar, renderTechRadarForExport, renderTimeline, renderVenn, renderWireframe, renderWordCloud, resetPertCriticalPath, resetPertHighlight, resolveColor, resolveColorWithDiagnostic, resolveOrgImports, resolveTaskName, rollUpContextRelationships, rosePinePalette, sampleBetaPert, scoreChartType, seriesColors, shade, shapeFill, simulateCanonical, simulateFast, solarizedPalette, suggestChartTypes, themes, tint, tokyoNightPalette, truncateBareUrl, parseDgmo as validate, validateComputed, validateInfra, validateLabelCharacters };
|
package/dist/internal.d.ts
CHANGED
|
@@ -72,22 +72,11 @@ interface ParseInArrowLabelResult {
|
|
|
72
72
|
*
|
|
73
73
|
* This helper is intentionally chart-agnostic: it operates on an already
|
|
74
74
|
* extracted label string, leaving each chart's existing arrow-finding
|
|
75
|
-
* tokenization in place.
|
|
76
|
-
*
|
|
77
|
-
*
|
|
78
|
-
* `matchColorParens()` from this module for the shared lookup.
|
|
75
|
+
* tokenization in place. Edges no longer have a color slot on any chart
|
|
76
|
+
* type (see spec §1.7 "Edge color is not a feature"); arrow content is
|
|
77
|
+
* pure label text.
|
|
79
78
|
*/
|
|
80
79
|
declare function parseInArrowLabel(rawLabel: string, lineNumber: number): ParseInArrowLabelResult;
|
|
81
|
-
/**
|
|
82
|
-
* Test whether a string matches the TD-11 color-parens form `(colorName)`
|
|
83
|
-
* where `colorName` is one of the 11 recognized palette color names from
|
|
84
|
-
* `src/colors.ts:RECOGNIZED_COLOR_NAMES`. Returns the lowercase color name
|
|
85
|
-
* on a match, or `null` on fall-through (whole string becomes a label).
|
|
86
|
-
*
|
|
87
|
-
* Used by flowchart and state parsers to keep the color-parens recognition
|
|
88
|
-
* rule in one place — do NOT re-implement the regex in chart parsers.
|
|
89
|
-
*/
|
|
90
|
-
declare function matchColorParens(content: string): string | null;
|
|
91
80
|
|
|
92
81
|
/**
|
|
93
82
|
* Compact view state schema (ADR-6).
|
|
@@ -646,7 +635,7 @@ interface LegendPosition {
|
|
|
646
635
|
placement: 'top-center';
|
|
647
636
|
titleRelation: 'below-title' | 'inline-with-title';
|
|
648
637
|
}
|
|
649
|
-
type LegendMode = '
|
|
638
|
+
type LegendMode = 'preview' | 'export';
|
|
650
639
|
type LegendControlExportBehavior = 'include' | 'strip' | 'static';
|
|
651
640
|
interface LegendControl {
|
|
652
641
|
id: string;
|
|
@@ -970,7 +959,7 @@ interface D3ExportDimensions {
|
|
|
970
959
|
height?: number;
|
|
971
960
|
}
|
|
972
961
|
|
|
973
|
-
/** A single entry inside a tag group: `Value
|
|
962
|
+
/** A single entry inside a tag group: `Value color` */
|
|
974
963
|
interface TagEntry {
|
|
975
964
|
value: string;
|
|
976
965
|
color: string;
|
|
@@ -1156,7 +1145,7 @@ declare function formatDateLabel(dateStr: string): string;
|
|
|
1156
1145
|
* Renders a timeline chart into the given container using D3.
|
|
1157
1146
|
* Supports horizontal (default) and vertical orientation.
|
|
1158
1147
|
*/
|
|
1159
|
-
declare function renderTimeline(container: HTMLDivElement, parsed: ParsedVisualization, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: D3ExportDimensions, activeTagGroup?: string | null, swimlaneTagGroup?: string | null, onTagStateChange?: (activeTagGroup: string | null, swimlaneTagGroup: string | null) => void, viewMode?: boolean): void;
|
|
1148
|
+
declare function renderTimeline(container: HTMLDivElement, parsed: ParsedVisualization, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: D3ExportDimensions, activeTagGroup?: string | null, swimlaneTagGroup?: string | null, onTagStateChange?: (activeTagGroup: string | null, swimlaneTagGroup: string | null) => void, viewMode?: boolean, exportMode?: boolean): void;
|
|
1160
1149
|
/**
|
|
1161
1150
|
* Renders a word cloud into the given container using d3-cloud.
|
|
1162
1151
|
*/
|
|
@@ -1176,6 +1165,7 @@ declare function renderForExport(content: string, theme: 'light' | 'dark' | 'tra
|
|
|
1176
1165
|
c4System?: string;
|
|
1177
1166
|
c4Container?: string;
|
|
1178
1167
|
tagGroup?: string;
|
|
1168
|
+
exportMode?: boolean;
|
|
1179
1169
|
}): Promise<string>;
|
|
1180
1170
|
|
|
1181
1171
|
/**
|
|
@@ -1401,7 +1391,6 @@ interface LayoutEdge {
|
|
|
1401
1391
|
y: number;
|
|
1402
1392
|
}[];
|
|
1403
1393
|
label?: string;
|
|
1404
|
-
color?: string;
|
|
1405
1394
|
lineNumber: number;
|
|
1406
1395
|
}
|
|
1407
1396
|
interface LayoutGroup {
|
|
@@ -1531,7 +1520,7 @@ declare function layoutClassDiagram(parsed: ParsedClassDiagram): ClassLayoutResu
|
|
|
1531
1520
|
declare function renderClassDiagram(container: HTMLDivElement, parsed: ParsedClassDiagram, layout: ClassLayoutResult, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: {
|
|
1532
1521
|
width?: number;
|
|
1533
1522
|
height?: number;
|
|
1534
|
-
}, legendActive?: boolean | null): void;
|
|
1523
|
+
}, legendActive?: boolean | null, exportMode?: boolean): void;
|
|
1535
1524
|
declare function renderClassDiagramForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
1536
1525
|
|
|
1537
1526
|
type ERConstraint = 'pk' | 'fk' | 'unique' | 'nullable';
|
|
@@ -1615,7 +1604,7 @@ declare function renderERDiagram(container: HTMLDivElement, parsed: ParsedERDiag
|
|
|
1615
1604
|
height?: number;
|
|
1616
1605
|
}, activeTagGroup?: string | null,
|
|
1617
1606
|
/** When false, semantic role colors are suppressed and entities use a neutral color. */
|
|
1618
|
-
semanticColorsActive?: boolean): void;
|
|
1607
|
+
semanticColorsActive?: boolean, exportMode?: boolean): void;
|
|
1619
1608
|
declare function renderERDiagramForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
1620
1609
|
|
|
1621
1610
|
interface InlineSpan {
|
|
@@ -1821,7 +1810,7 @@ declare function focusOrgTree(original: ParsedOrg, focusNodeId: string): FocusOr
|
|
|
1821
1810
|
declare function renderOrg(container: HTMLDivElement, parsed: ParsedOrg, layout: OrgLayoutResult, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: {
|
|
1822
1811
|
width?: number;
|
|
1823
1812
|
height?: number;
|
|
1824
|
-
}, activeTagGroup?: string | null, hiddenAttributes?: Set<string>, ancestorPath?: AncestorInfo[]): void;
|
|
1813
|
+
}, activeTagGroup?: string | null, hiddenAttributes?: Set<string>, ancestorPath?: AncestorInfo[], exportMode?: boolean): void;
|
|
1825
1814
|
declare function renderOrgForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
1826
1815
|
|
|
1827
1816
|
/** @deprecated Use `TagEntry` from `utils/tag-groups` */
|
|
@@ -1892,6 +1881,7 @@ interface KanbanInteractiveOptions {
|
|
|
1892
1881
|
collapsedLanes?: Set<string>;
|
|
1893
1882
|
collapsedColumns?: Set<string>;
|
|
1894
1883
|
compactMeta?: boolean;
|
|
1884
|
+
exportMode?: boolean;
|
|
1895
1885
|
}
|
|
1896
1886
|
declare function renderKanban(container: HTMLElement, parsed: ParsedKanban, palette: PaletteColors, isDark: boolean, options?: KanbanInteractiveOptions): void;
|
|
1897
1887
|
declare function renderKanbanForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
@@ -2048,7 +2038,7 @@ declare function layoutC4Deployment(parsed: ParsedC4, activeTagGroup?: string |
|
|
|
2048
2038
|
declare function renderC4Context(container: HTMLDivElement, parsed: ParsedC4, layout: C4LayoutResult, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: {
|
|
2049
2039
|
width?: number;
|
|
2050
2040
|
height?: number;
|
|
2051
|
-
}, activeTagGroup?: string | null): void;
|
|
2041
|
+
}, activeTagGroup?: string | null, exportMode?: boolean): void;
|
|
2052
2042
|
declare function renderC4ContextForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
2053
2043
|
/**
|
|
2054
2044
|
* Render a C4 container-level diagram showing containers inside a system boundary
|
|
@@ -2057,7 +2047,7 @@ declare function renderC4ContextForExport(content: string, theme: 'light' | 'dar
|
|
|
2057
2047
|
declare function renderC4Containers(container: HTMLDivElement, parsed: ParsedC4, layout: C4LayoutResult, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: {
|
|
2058
2048
|
width?: number;
|
|
2059
2049
|
height?: number;
|
|
2060
|
-
}, activeTagGroup?: string | null): void;
|
|
2050
|
+
}, activeTagGroup?: string | null, exportMode?: boolean): void;
|
|
2061
2051
|
declare function renderC4ContainersForExport(content: string, systemName: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
2062
2052
|
declare function renderC4ComponentsForExport(content: string, systemName: string, containerName: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
2063
2053
|
/**
|
|
@@ -2068,7 +2058,7 @@ declare function renderC4ComponentsForExport(content: string, systemName: string
|
|
|
2068
2058
|
declare function renderC4Deployment(container: HTMLDivElement, parsed: ParsedC4, layout: C4LayoutResult, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: {
|
|
2069
2059
|
width?: number;
|
|
2070
2060
|
height?: number;
|
|
2071
|
-
}, activeTagGroup?: string | null): void;
|
|
2061
|
+
}, activeTagGroup?: string | null, exportMode?: boolean): void;
|
|
2072
2062
|
/**
|
|
2073
2063
|
* Export convenience function for deployment diagrams.
|
|
2074
2064
|
*/
|
|
@@ -2174,6 +2164,7 @@ interface BLRenderOptions {
|
|
|
2174
2164
|
controlsExpanded?: boolean;
|
|
2175
2165
|
onToggleDescriptions?: (active: boolean) => void;
|
|
2176
2166
|
onToggleControlsExpand?: () => void;
|
|
2167
|
+
exportMode?: boolean;
|
|
2177
2168
|
}
|
|
2178
2169
|
declare function renderBoxesAndLines(container: HTMLDivElement, parsed: ParsedBoxesAndLines, layout: BLLayoutResult, palette: PaletteColors, isDark: boolean, options?: BLRenderOptions): void;
|
|
2179
2170
|
declare function renderBoxesAndLinesForExport(container: HTMLDivElement, parsed: ParsedBoxesAndLines, layout: BLLayoutResult, palette: PaletteColors, isDark: boolean, options?: {
|
|
@@ -2183,6 +2174,7 @@ declare function renderBoxesAndLinesForExport(container: HTMLDivElement, parsed:
|
|
|
2183
2174
|
};
|
|
2184
2175
|
activeTagGroup?: string | null;
|
|
2185
2176
|
hiddenTagValues?: Map<string, Set<string>>;
|
|
2177
|
+
exportMode?: boolean;
|
|
2186
2178
|
}): void;
|
|
2187
2179
|
|
|
2188
2180
|
interface BLCollapseResult {
|
|
@@ -2218,7 +2210,6 @@ interface SitemapEdge {
|
|
|
2218
2210
|
sourceId: string;
|
|
2219
2211
|
targetId: string;
|
|
2220
2212
|
label?: string;
|
|
2221
|
-
color?: string;
|
|
2222
2213
|
lineNumber: number;
|
|
2223
2214
|
}
|
|
2224
2215
|
type SitemapDirection = 'TB' | 'LR';
|
|
@@ -2271,7 +2262,6 @@ interface SitemapLayoutEdge {
|
|
|
2271
2262
|
y: number;
|
|
2272
2263
|
}[];
|
|
2273
2264
|
label?: string;
|
|
2274
|
-
color?: string;
|
|
2275
2265
|
lineNumber: number;
|
|
2276
2266
|
/** True for edges deferred from dagre (container endpoints) — use linear curve */
|
|
2277
2267
|
deferred?: boolean;
|
|
@@ -2322,7 +2312,7 @@ declare function layoutSitemap(parsed: ParsedSitemap, hiddenCounts?: Map<string,
|
|
|
2322
2312
|
declare function renderSitemap(container: HTMLDivElement, parsed: ParsedSitemap, layout: SitemapLayoutResult, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: {
|
|
2323
2313
|
width?: number;
|
|
2324
2314
|
height?: number;
|
|
2325
|
-
}, activeTagGroup?: string | null, hiddenAttributes?: Set<string
|
|
2315
|
+
}, activeTagGroup?: string | null, hiddenAttributes?: Set<string>, exportMode?: boolean): void;
|
|
2326
2316
|
declare function renderSitemapForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette?: PaletteColors): Promise<string>;
|
|
2327
2317
|
|
|
2328
2318
|
interface CollapsedSitemapResult {
|
|
@@ -2778,6 +2768,7 @@ interface GanttInteractiveOptions {
|
|
|
2778
2768
|
collapsedLanes?: Set<string>;
|
|
2779
2769
|
onToggleLane?: (laneName: string) => void;
|
|
2780
2770
|
viewMode?: boolean;
|
|
2771
|
+
exportMode?: boolean;
|
|
2781
2772
|
}
|
|
2782
2773
|
declare function renderGantt(container: HTMLDivElement, resolved: ResolvedSchedule, palette: PaletteColors, isDark: boolean, options?: GanttInteractiveOptions, exportDims?: D3ExportDimensions): void;
|
|
2783
2774
|
type GroupRow = {
|
|
@@ -3048,7 +3039,7 @@ interface ParsedPert {
|
|
|
3048
3039
|
groups: PertGroup[];
|
|
3049
3040
|
/**
|
|
3050
3041
|
* Tag groups declared at the top of the diagram (`tag Priority as p
|
|
3051
|
-
* High
|
|
3042
|
+
* High red, Low green`). Drive node fill via `resolveTagColor()`.
|
|
3052
3043
|
* Empty when no `tag` blocks are declared.
|
|
3053
3044
|
*/
|
|
3054
3045
|
tagGroups: TagGroup[];
|
|
@@ -3305,7 +3296,7 @@ interface ParsePertOptions {
|
|
|
3305
3296
|
now?: Date;
|
|
3306
3297
|
/**
|
|
3307
3298
|
* Active palette — used when resolving color names on `tag` entries
|
|
3308
|
-
* (e.g. `High
|
|
3299
|
+
* (e.g. `High red` → palette.colors.red). Optional; when omitted the
|
|
3309
3300
|
* universal default color map is used.
|
|
3310
3301
|
*/
|
|
3311
3302
|
palette?: PaletteColors;
|
|
@@ -3468,6 +3459,8 @@ interface PertRenderOptions {
|
|
|
3468
3459
|
* through to the parsed `active-tag` directive.
|
|
3469
3460
|
*/
|
|
3470
3461
|
activeTagOverride?: string | null;
|
|
3462
|
+
/** True when rendering for export — strips collapsed pills and cog from legend. */
|
|
3463
|
+
exportMode?: boolean;
|
|
3471
3464
|
}
|
|
3472
3465
|
declare function renderPert(container: HTMLDivElement, resolved: ResolvedPert, layout: LayoutResult, palette: PaletteColors, isDark: boolean, options?: PertRenderOptions): void;
|
|
3473
3466
|
declare function renderPertForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors,
|
|
@@ -3646,6 +3639,7 @@ declare function renderMindmap(container: HTMLDivElement, parsed: ParsedMindmap,
|
|
|
3646
3639
|
onToggleDescriptions?: (active: boolean) => void;
|
|
3647
3640
|
controlsExpanded?: boolean;
|
|
3648
3641
|
onToggleControlsExpand?: () => void;
|
|
3642
|
+
exportMode?: boolean;
|
|
3649
3643
|
}): void;
|
|
3650
3644
|
declare function renderMindmapForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
3651
3645
|
|
|
@@ -3833,6 +3827,8 @@ interface TechRadarRenderOptions {
|
|
|
3833
3827
|
onLegendGroupToggle?: (groupName: string) => void;
|
|
3834
3828
|
/** Active line from the editor cursor — triggers popover/expansion for that blip. */
|
|
3835
3829
|
activeLine?: number | null;
|
|
3830
|
+
/** True when rendering for export (PNG/SVG/PDF) — controls whether collapsed legend pills and cog are stripped. */
|
|
3831
|
+
exportMode?: boolean;
|
|
3836
3832
|
}
|
|
3837
3833
|
|
|
3838
3834
|
declare function parseTechRadar(content: string): ParsedTechRadar;
|
|
@@ -3859,7 +3855,7 @@ declare function getRadarGeometry(width: number, height: number, ringCount: numb
|
|
|
3859
3855
|
};
|
|
3860
3856
|
|
|
3861
3857
|
declare function renderTechRadar(container: HTMLDivElement, parsed: ParsedTechRadar, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: D3ExportDimensions, viewState?: CompactViewState, options?: TechRadarRenderOptions): void;
|
|
3862
|
-
declare function renderTechRadarForExport(container: HTMLDivElement, parsed: ParsedTechRadar, palette: PaletteColors, isDark: boolean, exportDims?: D3ExportDimensions, viewState?: CompactViewState): void;
|
|
3858
|
+
declare function renderTechRadarForExport(container: HTMLDivElement, parsed: ParsedTechRadar, palette: PaletteColors, isDark: boolean, exportDims?: D3ExportDimensions, viewState?: CompactViewState, exportMode?: boolean): void;
|
|
3863
3859
|
|
|
3864
3860
|
declare function renderQuadrantFocus(container: HTMLDivElement, parsed: ParsedTechRadar, quadrantPosition: QuadrantPosition, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: D3ExportDimensions, _options?: TechRadarRenderOptions): void;
|
|
3865
3861
|
declare function renderQuadrantFocusForExport(container: HTMLDivElement, parsed: ParsedTechRadar, quadrantPosition: QuadrantPosition, palette: PaletteColors, isDark: boolean, exportDims: {
|
|
@@ -3982,6 +3978,7 @@ interface CycleRenderOptions {
|
|
|
3982
3978
|
controlsExpanded?: boolean;
|
|
3983
3979
|
onToggleDescriptions?: (active: boolean) => void;
|
|
3984
3980
|
onToggleControlsExpand?: () => void;
|
|
3981
|
+
exportMode?: boolean;
|
|
3985
3982
|
}
|
|
3986
3983
|
/**
|
|
3987
3984
|
* Render a cycle diagram into the given container.
|
|
@@ -3990,7 +3987,7 @@ declare function renderCycle(container: HTMLDivElement, parsed: ParsedCycle, pal
|
|
|
3990
3987
|
/**
|
|
3991
3988
|
* Render for CLI/export (no click handlers).
|
|
3992
3989
|
*/
|
|
3993
|
-
declare function renderCycleForExport(container: HTMLDivElement, parsed: ParsedCycle, palette: PaletteColors, isDark: boolean, exportDims?: D3ExportDimensions, viewState?: CompactViewState): void;
|
|
3990
|
+
declare function renderCycleForExport(container: HTMLDivElement, parsed: ParsedCycle, palette: PaletteColors, isDark: boolean, exportDims?: D3ExportDimensions, viewState?: CompactViewState, exportMode?: boolean): void;
|
|
3994
3991
|
|
|
3995
3992
|
interface JourneyMapAnnotation {
|
|
3996
3993
|
type: 'pain' | 'opportunity' | 'thought';
|
|
@@ -4096,6 +4093,7 @@ interface JourneyMapInteractiveOptions {
|
|
|
4096
4093
|
collapsedPhases?: Set<string>;
|
|
4097
4094
|
/** Called when a phase is toggled */
|
|
4098
4095
|
onPhaseToggle?: (phaseName: string) => void;
|
|
4096
|
+
exportMode?: boolean;
|
|
4099
4097
|
}
|
|
4100
4098
|
declare function renderJourneyMap(container: HTMLElement, parsed: ParsedJourneyMap, palette: PaletteColors, isDark: boolean, options?: JourneyMapInteractiveOptions): void;
|
|
4101
4099
|
declare function renderJourneyMapForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
@@ -4246,9 +4244,10 @@ interface ParsedRaci {
|
|
|
4246
4244
|
/** Display name for each role (parallel to `roles`). */
|
|
4247
4245
|
roleDisplayNames: string[];
|
|
4248
4246
|
/**
|
|
4249
|
-
* Optional per-role palette color from `Cap
|
|
4250
|
-
* roles block
|
|
4251
|
-
*
|
|
4247
|
+
* Optional per-role palette color from the `Cap blue` trailing-token
|
|
4248
|
+
* suffix in the roles block (or the long pipe form `Cap | color: blue`).
|
|
4249
|
+
* Parallel to `roles`; entries default to `undefined` (renderer falls
|
|
4250
|
+
* back to the neutral column tint).
|
|
4252
4251
|
*/
|
|
4253
4252
|
roleColors: Array<string | undefined>;
|
|
4254
4253
|
phases: RaciPhase[];
|
|
@@ -4688,4 +4687,4 @@ declare const themes: {
|
|
|
4688
4687
|
readonly transparent: "transparent";
|
|
4689
4688
|
};
|
|
4690
4689
|
|
|
4691
|
-
export { ALL_CHART_TYPES, AMBIGUITY_THRESHOLD, ARROW_DIAGNOSTIC_CODES, type Activation, type AncestorInfo, type ArcLink, type ArcNodeGroup, type BLCollapseResult, type BLEdge, type BLGroup, type BLLayoutEdge, type BLLayoutGroup, type BLLayoutNode, type BLLayoutResult, type BLNode, type BlipTrend, type C4ArrowType, type C4DeploymentNode, type C4Element, type C4ElementType, type C4Group, type C4LayoutBoundary, type C4LayoutEdge, type C4LayoutNode, type C4LayoutResult, type C4LegendEntry, type C4LegendGroup, type C4Relationship, type C4Shape, type C4TagEntry, type C4TagGroup, CHART_TYPES, CHART_TYPE_DESCRIPTIONS, COMPLETION_REGISTRY, type ChartDataPoint, type ChartEra, type ChartType$1 as ChartType, type Confidence as ChartTypeConfidence, type ChartTypeMeta, type ChartTypeScore, type SuggestionResult as ChartTypeSuggestionResult, type ClassLayoutEdge, type ClassLayoutNode, type ClassLayoutResult, type ClassMember, type ClassModifier, type ClassNode, type ClassRelationship, type CollapsedMindmapResult, type CollapsedOrgResult, type CollapsedSitemapResult, type CollapsedView, type CompactViewState, type ComputedInfraEdge, type ComputedInfraModel, type ComputedInfraNode, type ContextRelationship, type CycleEdge, type CycleLayoutEdge, type CycleLayoutNode, type CycleLayoutResult, type CycleNode, type CycleRenderOptions, type D3ExportDimensions, type DecodedDiagramUrl, type DgmoError, type DgmoSeverity, type DiagramSymbols, type DirectiveSpec, type DirectiveValueSpec, type Duration, type DurationUnit, ENTITY_TYPES, type ERCardinality, type ERColumn, type ERConstraint, type ERLayoutEdge, type ERLayoutNode, type ERLayoutResult, type ERRelationship, type ERTable, type ElseIfBranch, type EncodeDiagramUrlOptions, type EncodeDiagramUrlResult, type ExpandedActivity, type ExtendedChartType, type ExtractFn, type FocusOrgResult, type GanttDependency, type GanttEra, type GanttGroup, type GroupRow as GanttGroupRow, type GanttHolidays, type GanttInteractiveOptions, type LaneHeaderRow as GanttLaneHeaderRow, type GanttMarker, type GanttNode, type GanttOptions, type GanttParallelBlock, type Row as GanttRow, type GanttTask, type TaskRow as GanttTaskRow, type GetOrCreateNameResult, type GraphDirection, type GraphEdge, type GraphGroup, type GraphNode, type GraphShape, INFRA_BEHAVIOR_KEYS, type ImportSource, type InfraAvailabilityPercentiles, type InfraBehaviorKey, type InfraCbState, type InfraComputeParams, type InfraDiagnostic, type InfraEdge, type InfraGroup, type InfraLatencyPercentiles, type InfraLayoutEdge, type InfraLayoutGroup, type InfraLayoutNode, type InfraLayoutResult, type InfraLegendGroup, type InfraNode, type InfraPlaybackState, type InfraProperty, type InfraRole, type InfraTagGroup, type InlineSpan, type JourneyMapAnnotation, type JourneyMapInteractiveOptions, type JourneyMapLayout, type JourneyMapPersona, type JourneyMapPhase, type JourneyMapStep, type KanbanCard, type KanbanColumn, type KanbanTagEntry, type KanbanTagGroup, LEGEND_GEAR_PILL_W, LEGEND_HEIGHT, type LayoutEdge, type LayoutGroup, type LayoutNode, type LayoutOptions, type LayoutResult$1 as LayoutResult, type LegendCallbacks, type LegendConfig, type LegendControl, type LegendGroupData, type LegendHandle, type LegendLayout, type LegendMode, type LegendPalette, type LegendPosition, type LegendState, METADATA_KEY_SET, MIN_PRIMARY_SCORE, type MemberVisibility, type MindmapLayoutEdge, type MindmapLayoutNode, type MindmapLayoutResult, type MindmapNode, type MonteCarloResult, type NameEntry, type NodeDetail, type OrgContainerBounds, type OrgLayoutEdge, type OrgLayoutNode, type OrgLayoutResult, type OrgNode, PERT_LEGEND_PILL_HEIGHT, PIPE_METADATA, type PaletteColors, type PaletteConfig, type ParseInArrowLabelResult, type ParsedBoxesAndLines, type ParsedC4, type ParsedChart, type ParsedClassDiagram, type ParsedCycle, type ParsedERDiagram, type ParsedExtendedChart, type ParsedGantt, type ParsedGraph, type ParsedInfra, type ParsedJourneyMap, type ParsedKanban, type ParsedMindmap, type ParsedOrg, type ParsedPert, type ParsedPyramid, type ParsedRaci, type ParsedRing, type ParsedSequenceDgmo, type ParsedSitemap, type ParsedTechRadar, type ParsedVisualization, type ParsedWireframe, type ParticipantType, type PertActivity, type Anchor as PertAnchor, type PertDirection, type PertEdge, type PertGroup, type PertLayoutEdge, type PertLayoutGroup, type PertLayoutNode, type LayoutOverrides as PertLayoutOverrides, type LayoutResult as PertLayoutResult, type PertMilestone, type PertOptions, type PertRenderOptions, type PipeKeySpec, type PyramidLayer, type QuadrantPosition, RACI_ERROR_CODES, VARIANTS as RACI_VARIANTS, RACI_WARNING_CODES, RECOGNIZED_COLOR_NAMES, RULE_COUNT, type RaciDragSource, type RaciInteractionHandlers, type RaciMarker, type RaciPhase, type RaciRoleAssignment, type RaciTask, type RaciVariant, type ReadFileFn, type RelationshipType, type RenderCategory, type RenderStep, type ResolveImportsResult, type ResolvedActivity, type ResolvedGroup$1 as ResolvedGroup, type ResolvedPert, type ResolvedGroup as ResolvedPertGroup, type ResolvedSchedule, type ResolvedTask, type RingLayer, type ScatterLabelPoint, type SectionMessageGroup, type SequenceBlock, type SequenceElement, type SequenceGroup, type SequenceMessage, type SequenceNote, type SequenceParticipant, type SequenceRenderOptions, type SequenceSection, type SimulateOptions, type SitemapContainerBounds, type SitemapDirection, type SitemapEdge, type SitemapLayoutEdge, type SitemapLayoutNode, type SitemapLayoutResult, type SitemapLegendEntry, type SitemapLegendGroup, type SitemapNode, type StateCollapseResult, type TagEntry, type TagGroup, type TechRadarBlip, type TechRadarLayoutPoint, type TechRadarQuadrant, type TechRadarRing, type Theme, type VisualizationType, type WireframeElement, type WireframeElementType, type WireframeFormFactor, type WireframeLayout, type WireframeLayoutNode, addDurationToDate, analyzePert, applyCollapseProjection, applyGroupOrdering, applyPositionOverrides, boldPalette, buildExtendedChartOption, buildNoteMessageMap, buildRenderSequence, buildSimpleChartOption, buildSimulationContext, buildTagLaneRowList, calculateSchedule, catppuccinPalette, confidence as chartTypeConfidence, chartTypeParsers, chartTypes, collapseBoxesAndLines, collapseMindmapTree, collapseOrgTree, collapseSitemapTree, collapseStateGroups, collectDiagramRoles, collectTasks, colorNames, computeActivations, computeCardArchive, computeCardMove, computeCycleLayout, computeInfra, computeInfraLegendGroups, computeLegendLayout, computeRadarLayout, computeScatterLabelGraphics, computeTimeTicks, contrastText, controlsGroupCapsuleWidth, decodeDiagramUrl, decodeViewState, displayName, draculaPalette, encodeDiagramUrl, encodeViewState, extractDiagramSymbols, extractPertSymbols, extractTagDeclarations, focusOrgTree, formatDateLabel, formatDgmoError, getAllChartTypes, getAvailablePalettes, getExtendedChartLegendGroups, getLegendReservedHeight, getOrCreateName, getPalette, getRadarGeometry, getRenderCategory, getSeriesColors, getSimpleChartLegendGroups, groupMessagesBySection, gruvboxPalette, hexToHSL, hexToHSLString, highlightPertCriticalPath, highlightPertSet, hslToHex, inferParticipantType, inferRoles, isArchiveColumn, isExtendedChartType, isRecognizedColorName, isSequenceBlock, isSequenceNote, isValidHex, knownChartTypeIds, layoutBoxesAndLines, layoutC4Components, layoutC4Containers, layoutC4Context, layoutC4Deployment, layoutClassDiagram, layoutERDiagram, layoutGraph, layoutInfra, layoutJourneyMap, layoutMindmap, layoutOrg, layoutPert, layoutSitemap, layoutWireframe, looksLikeClassDiagram, looksLikeERDiagram, looksLikeFlowchart, looksLikePert, looksLikeSequence, looksLikeSitemap, looksLikeState, makeDgmoError, matchColorParens, matchesContiguously, measurePertAnalysisBlock, mix, monokaiPalette, mulberry32, nord, nordPalette, normalize as normalizeChartTypePrompt, normalizeName, normalizePertSourceForShare, oneDarkPalette, orderArcNodes, palettes, parseAndLayoutInfra, parseBoxesAndLines, parseC4, parseChart, parseClassDiagram, parseCycle, parseDataRowValues, parseDgmo, parseDgmoChartType, parseERDiagram, parseExtendedChart, parseFirstLine, parseFlowchart, parseGantt, parseInArrowLabel, parseInfra, parseInlineMarkdown, parseJourneyMap, parseKanban, parseMindmap, parseOrg, parsePert, parsePyramid, parseRaci, parseRing, parseSequenceDgmo, parseSequenceDgmo as parseSequenceDiagram, parseSitemap, parseState, parseTechRadar, parseTimelineDate, parseVisualization, parseWireframe, pertLegendBlockWidth, pertLegendEntries, cellAppendMarker as raciCellAppendMarker, cellCycle as raciCellCycle, cellRemove as raciCellRemove, cellReplace as raciCellReplace, registerExtractor, registerPalette, relayoutPert, render, renderArcDiagram, renderBoxesAndLines, renderBoxesAndLinesForExport, renderC4ComponentsForExport, renderC4Containers, renderC4ContainersForExport, renderC4Context, renderC4ContextForExport, renderC4Deployment, renderC4DeploymentForExport, renderClassDiagram, renderClassDiagramForExport, renderCycle, renderCycleForExport, renderERDiagram, renderERDiagramForExport, renderExtendedChartForExport, renderFlowchart, renderFlowchartForExport, renderForExport, renderGantt, renderInfra, renderJourneyMap, renderJourneyMapForExport, renderKanban, renderKanbanForExport, renderLegendD3, renderLegendSvg, renderLegendSvgFromConfig, renderMindmap, renderMindmapForExport, renderOrg, renderOrgForExport, renderPert, renderPertAnalysisBlock, renderPertForExport, renderLegendBlock as renderPertLegendBlock, renderPyramid, renderPyramidForExport, renderQuadrant, renderQuadrantFocus, renderQuadrantFocusForExport, renderRaci, renderRaciForExport, renderRing, renderRingForExport, renderSequenceDiagram, renderSitemap, renderSitemapForExport, renderSlopeChart, renderState, renderStateForExport, renderTechRadar, renderTechRadarForExport, renderTimeline, renderVenn, renderWireframe, renderWordCloud, resetPertCriticalPath, resetPertHighlight, resolveColor, resolveColorWithDiagnostic, resolveOrgImports, resolveTaskName, rollUpContextRelationships, rosePinePalette, sampleBetaPert, scoreChartType, seriesColors, shade, shapeFill, simulateCanonical, simulateFast, solarizedPalette, suggestChartTypes, themes, tint, tokyoNightPalette, truncateBareUrl, parseDgmo as validate, validateComputed, validateInfra, validateLabelCharacters };
|
|
4690
|
+
export { ALL_CHART_TYPES, AMBIGUITY_THRESHOLD, ARROW_DIAGNOSTIC_CODES, type Activation, type AncestorInfo, type ArcLink, type ArcNodeGroup, type BLCollapseResult, type BLEdge, type BLGroup, type BLLayoutEdge, type BLLayoutGroup, type BLLayoutNode, type BLLayoutResult, type BLNode, type BlipTrend, type C4ArrowType, type C4DeploymentNode, type C4Element, type C4ElementType, type C4Group, type C4LayoutBoundary, type C4LayoutEdge, type C4LayoutNode, type C4LayoutResult, type C4LegendEntry, type C4LegendGroup, type C4Relationship, type C4Shape, type C4TagEntry, type C4TagGroup, CHART_TYPES, CHART_TYPE_DESCRIPTIONS, COMPLETION_REGISTRY, type ChartDataPoint, type ChartEra, type ChartType$1 as ChartType, type Confidence as ChartTypeConfidence, type ChartTypeMeta, type ChartTypeScore, type SuggestionResult as ChartTypeSuggestionResult, type ClassLayoutEdge, type ClassLayoutNode, type ClassLayoutResult, type ClassMember, type ClassModifier, type ClassNode, type ClassRelationship, type CollapsedMindmapResult, type CollapsedOrgResult, type CollapsedSitemapResult, type CollapsedView, type CompactViewState, type ComputedInfraEdge, type ComputedInfraModel, type ComputedInfraNode, type ContextRelationship, type CycleEdge, type CycleLayoutEdge, type CycleLayoutNode, type CycleLayoutResult, type CycleNode, type CycleRenderOptions, type D3ExportDimensions, type DecodedDiagramUrl, type DgmoError, type DgmoSeverity, type DiagramSymbols, type DirectiveSpec, type DirectiveValueSpec, type Duration, type DurationUnit, ENTITY_TYPES, type ERCardinality, type ERColumn, type ERConstraint, type ERLayoutEdge, type ERLayoutNode, type ERLayoutResult, type ERRelationship, type ERTable, type ElseIfBranch, type EncodeDiagramUrlOptions, type EncodeDiagramUrlResult, type ExpandedActivity, type ExtendedChartType, type ExtractFn, type FocusOrgResult, type GanttDependency, type GanttEra, type GanttGroup, type GroupRow as GanttGroupRow, type GanttHolidays, type GanttInteractiveOptions, type LaneHeaderRow as GanttLaneHeaderRow, type GanttMarker, type GanttNode, type GanttOptions, type GanttParallelBlock, type Row as GanttRow, type GanttTask, type TaskRow as GanttTaskRow, type GetOrCreateNameResult, type GraphDirection, type GraphEdge, type GraphGroup, type GraphNode, type GraphShape, INFRA_BEHAVIOR_KEYS, type ImportSource, type InfraAvailabilityPercentiles, type InfraBehaviorKey, type InfraCbState, type InfraComputeParams, type InfraDiagnostic, type InfraEdge, type InfraGroup, type InfraLatencyPercentiles, type InfraLayoutEdge, type InfraLayoutGroup, type InfraLayoutNode, type InfraLayoutResult, type InfraLegendGroup, type InfraNode, type InfraPlaybackState, type InfraProperty, type InfraRole, type InfraTagGroup, type InlineSpan, type JourneyMapAnnotation, type JourneyMapInteractiveOptions, type JourneyMapLayout, type JourneyMapPersona, type JourneyMapPhase, type JourneyMapStep, type KanbanCard, type KanbanColumn, type KanbanTagEntry, type KanbanTagGroup, LEGEND_GEAR_PILL_W, LEGEND_HEIGHT, type LayoutEdge, type LayoutGroup, type LayoutNode, type LayoutOptions, type LayoutResult$1 as LayoutResult, type LegendCallbacks, type LegendConfig, type LegendControl, type LegendGroupData, type LegendHandle, type LegendLayout, type LegendMode, type LegendPalette, type LegendPosition, type LegendState, METADATA_KEY_SET, MIN_PRIMARY_SCORE, type MemberVisibility, type MindmapLayoutEdge, type MindmapLayoutNode, type MindmapLayoutResult, type MindmapNode, type MonteCarloResult, type NameEntry, type NodeDetail, type OrgContainerBounds, type OrgLayoutEdge, type OrgLayoutNode, type OrgLayoutResult, type OrgNode, PERT_LEGEND_PILL_HEIGHT, PIPE_METADATA, type PaletteColors, type PaletteConfig, type ParseInArrowLabelResult, type ParsedBoxesAndLines, type ParsedC4, type ParsedChart, type ParsedClassDiagram, type ParsedCycle, type ParsedERDiagram, type ParsedExtendedChart, type ParsedGantt, type ParsedGraph, type ParsedInfra, type ParsedJourneyMap, type ParsedKanban, type ParsedMindmap, type ParsedOrg, type ParsedPert, type ParsedPyramid, type ParsedRaci, type ParsedRing, type ParsedSequenceDgmo, type ParsedSitemap, type ParsedTechRadar, type ParsedVisualization, type ParsedWireframe, type ParticipantType, type PertActivity, type Anchor as PertAnchor, type PertDirection, type PertEdge, type PertGroup, type PertLayoutEdge, type PertLayoutGroup, type PertLayoutNode, type LayoutOverrides as PertLayoutOverrides, type LayoutResult as PertLayoutResult, type PertMilestone, type PertOptions, type PertRenderOptions, type PipeKeySpec, type PyramidLayer, type QuadrantPosition, RACI_ERROR_CODES, VARIANTS as RACI_VARIANTS, RACI_WARNING_CODES, RECOGNIZED_COLOR_NAMES, RULE_COUNT, type RaciDragSource, type RaciInteractionHandlers, type RaciMarker, type RaciPhase, type RaciRoleAssignment, type RaciTask, type RaciVariant, type ReadFileFn, type RelationshipType, type RenderCategory, type RenderStep, type ResolveImportsResult, type ResolvedActivity, type ResolvedGroup$1 as ResolvedGroup, type ResolvedPert, type ResolvedGroup as ResolvedPertGroup, type ResolvedSchedule, type ResolvedTask, type RingLayer, type ScatterLabelPoint, type SectionMessageGroup, type SequenceBlock, type SequenceElement, type SequenceGroup, type SequenceMessage, type SequenceNote, type SequenceParticipant, type SequenceRenderOptions, type SequenceSection, type SimulateOptions, type SitemapContainerBounds, type SitemapDirection, type SitemapEdge, type SitemapLayoutEdge, type SitemapLayoutNode, type SitemapLayoutResult, type SitemapLegendEntry, type SitemapLegendGroup, type SitemapNode, type StateCollapseResult, type TagEntry, type TagGroup, type TechRadarBlip, type TechRadarLayoutPoint, type TechRadarQuadrant, type TechRadarRing, type Theme, type VisualizationType, type WireframeElement, type WireframeElementType, type WireframeFormFactor, type WireframeLayout, type WireframeLayoutNode, addDurationToDate, analyzePert, applyCollapseProjection, applyGroupOrdering, applyPositionOverrides, boldPalette, buildExtendedChartOption, buildNoteMessageMap, buildRenderSequence, buildSimpleChartOption, buildSimulationContext, buildTagLaneRowList, calculateSchedule, catppuccinPalette, confidence as chartTypeConfidence, chartTypeParsers, chartTypes, collapseBoxesAndLines, collapseMindmapTree, collapseOrgTree, collapseSitemapTree, collapseStateGroups, collectDiagramRoles, collectTasks, colorNames, computeActivations, computeCardArchive, computeCardMove, computeCycleLayout, computeInfra, computeInfraLegendGroups, computeLegendLayout, computeRadarLayout, computeScatterLabelGraphics, computeTimeTicks, contrastText, controlsGroupCapsuleWidth, decodeDiagramUrl, decodeViewState, displayName, draculaPalette, encodeDiagramUrl, encodeViewState, extractDiagramSymbols, extractPertSymbols, extractTagDeclarations, focusOrgTree, formatDateLabel, formatDgmoError, getAllChartTypes, getAvailablePalettes, getExtendedChartLegendGroups, getLegendReservedHeight, getOrCreateName, getPalette, getRadarGeometry, getRenderCategory, getSeriesColors, getSimpleChartLegendGroups, groupMessagesBySection, gruvboxPalette, hexToHSL, hexToHSLString, highlightPertCriticalPath, highlightPertSet, hslToHex, inferParticipantType, inferRoles, isArchiveColumn, isExtendedChartType, isRecognizedColorName, isSequenceBlock, isSequenceNote, isValidHex, knownChartTypeIds, layoutBoxesAndLines, layoutC4Components, layoutC4Containers, layoutC4Context, layoutC4Deployment, layoutClassDiagram, layoutERDiagram, layoutGraph, layoutInfra, layoutJourneyMap, layoutMindmap, layoutOrg, layoutPert, layoutSitemap, layoutWireframe, looksLikeClassDiagram, looksLikeERDiagram, looksLikeFlowchart, looksLikePert, looksLikeSequence, looksLikeSitemap, looksLikeState, makeDgmoError, matchesContiguously, measurePertAnalysisBlock, mix, monokaiPalette, mulberry32, nord, nordPalette, normalize as normalizeChartTypePrompt, normalizeName, normalizePertSourceForShare, oneDarkPalette, orderArcNodes, palettes, parseAndLayoutInfra, parseBoxesAndLines, parseC4, parseChart, parseClassDiagram, parseCycle, parseDataRowValues, parseDgmo, parseDgmoChartType, parseERDiagram, parseExtendedChart, parseFirstLine, parseFlowchart, parseGantt, parseInArrowLabel, parseInfra, parseInlineMarkdown, parseJourneyMap, parseKanban, parseMindmap, parseOrg, parsePert, parsePyramid, parseRaci, parseRing, parseSequenceDgmo, parseSequenceDgmo as parseSequenceDiagram, parseSitemap, parseState, parseTechRadar, parseTimelineDate, parseVisualization, parseWireframe, pertLegendBlockWidth, pertLegendEntries, cellAppendMarker as raciCellAppendMarker, cellCycle as raciCellCycle, cellRemove as raciCellRemove, cellReplace as raciCellReplace, registerExtractor, registerPalette, relayoutPert, render, renderArcDiagram, renderBoxesAndLines, renderBoxesAndLinesForExport, renderC4ComponentsForExport, renderC4Containers, renderC4ContainersForExport, renderC4Context, renderC4ContextForExport, renderC4Deployment, renderC4DeploymentForExport, renderClassDiagram, renderClassDiagramForExport, renderCycle, renderCycleForExport, renderERDiagram, renderERDiagramForExport, renderExtendedChartForExport, renderFlowchart, renderFlowchartForExport, renderForExport, renderGantt, renderInfra, renderJourneyMap, renderJourneyMapForExport, renderKanban, renderKanbanForExport, renderLegendD3, renderLegendSvg, renderLegendSvgFromConfig, renderMindmap, renderMindmapForExport, renderOrg, renderOrgForExport, renderPert, renderPertAnalysisBlock, renderPertForExport, renderLegendBlock as renderPertLegendBlock, renderPyramid, renderPyramidForExport, renderQuadrant, renderQuadrantFocus, renderQuadrantFocusForExport, renderRaci, renderRaciForExport, renderRing, renderRingForExport, renderSequenceDiagram, renderSitemap, renderSitemapForExport, renderSlopeChart, renderState, renderStateForExport, renderTechRadar, renderTechRadarForExport, renderTimeline, renderVenn, renderWireframe, renderWordCloud, resetPertCriticalPath, resetPertHighlight, resolveColor, resolveColorWithDiagnostic, resolveOrgImports, resolveTaskName, rollUpContextRelationships, rosePinePalette, sampleBetaPert, scoreChartType, seriesColors, shade, shapeFill, simulateCanonical, simulateFast, solarizedPalette, suggestChartTypes, themes, tint, tokyoNightPalette, truncateBareUrl, parseDgmo as validate, validateComputed, validateInfra, validateLabelCharacters };
|