@diagrammo/dgmo 0.15.1 → 0.17.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 +612 -734
- package/dist/advanced.d.cts +42 -36
- package/dist/advanced.d.ts +42 -36
- package/dist/advanced.js +612 -733
- package/dist/auto.cjs +508 -620
- package/dist/auto.js +105 -105
- package/dist/auto.mjs +508 -620
- package/dist/cli.cjs +144 -144
- 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 +497 -608
- package/dist/index.js +497 -608
- package/dist/internal.cjs +612 -734
- package/dist/internal.d.cts +42 -36
- package/dist/internal.d.ts +42 -36
- package/dist/internal.js +612 -733
- package/dist/pert.d.cts +2 -2
- package/dist/pert.d.ts +2 -2
- package/docs/language-reference.md +97 -84
- package/docs/migration-sequence-color-to-tags.md +1 -1
- 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 +11 -11
- package/gallery/fixtures/sequence-tags.dgmo +10 -10
- package/gallery/fixtures/sequence.dgmo +4 -4
- 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 +7 -3
- package/src/advanced.ts +0 -1
- package/src/auto/index.ts +2 -2
- package/src/boxes-and-lines/layout.ts +1 -2
- package/src/boxes-and-lines/renderer.ts +5 -1
- package/src/c4/parser.ts +2 -2
- package/src/c4/renderer.ts +15 -8
- package/src/chart.ts +18 -9
- package/src/class/parser.ts +8 -7
- package/src/class/renderer.ts +17 -6
- package/src/cli.ts +8 -8
- package/src/completion.ts +14 -17
- package/src/cycle/parser.ts +15 -1
- package/src/cycle/renderer.ts +6 -3
- package/src/d3.ts +88 -49
- package/src/diagnostics.ts +20 -0
- package/src/echarts.ts +28 -11
- package/src/editor/dgmo.grammar +1 -3
- package/src/editor/dgmo.grammar.d.ts +1 -1
- 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 +19 -12
- 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 +6 -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 +8 -6
- package/src/journey-map/parser.ts +11 -4
- package/src/journey-map/renderer.ts +3 -1
- package/src/kanban/parser.ts +11 -7
- package/src/kanban/renderer.ts +3 -1
- package/src/mindmap/parser.ts +4 -5
- package/src/mindmap/renderer.ts +2 -1
- package/src/org/parser.ts +3 -3
- package/src/org/renderer.ts +4 -3
- package/src/pert/analyzer.ts +10 -10
- package/src/pert/layout.ts +1 -1
- package/src/pert/parser.ts +8 -8
- package/src/pert/renderer.ts +7 -2
- package/src/pert/types.ts +1 -1
- package/src/pyramid/parser.ts +13 -1
- package/src/raci/parser.ts +42 -12
- package/src/raci/renderer.ts +2 -1
- package/src/raci/types.ts +4 -3
- package/src/ring/parser.ts +13 -1
- package/src/sequence/parser.ts +81 -23
- package/src/sequence/participant-inference.ts +18 -181
- package/src/sequence/renderer.ts +48 -137
- package/src/sitemap/layout.ts +0 -2
- package/src/sitemap/parser.ts +12 -38
- package/src/sitemap/renderer.ts +13 -13
- package/src/sitemap/types.ts +0 -1
- package/src/tech-radar/parser.ts +2 -2
- 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/extract-alias.ts +1 -1
- package/src/utils/inline-markdown.ts +1 -1
- 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/utils/time-ticks.ts +1 -1
- package/src/wireframe/parser.ts +3 -3
package/dist/advanced.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
|
/**
|
|
@@ -1194,8 +1184,15 @@ declare function computeTimeTicks(domainMin: number, domainMax: number, scale: d
|
|
|
1194
1184
|
|
|
1195
1185
|
/**
|
|
1196
1186
|
* Participant types that can be declared via "Name is a type" syntax.
|
|
1187
|
+
*
|
|
1188
|
+
* The 0.16.0 trim retained only the types whose shapes carry semantic
|
|
1189
|
+
* weight at a glance: stick figure (actor), cylinder (database),
|
|
1190
|
+
* dashed cylinder (cache), horizontal pipe (queue), plus the default
|
|
1191
|
+
* rectangle. The legacy `service`/`frontend`/`networking`/`gateway`/
|
|
1192
|
+
* `external` keywords are rejected at parse time via
|
|
1193
|
+
* `E_PARTICIPANT_TYPE_REMOVED`.
|
|
1197
1194
|
*/
|
|
1198
|
-
type ParticipantType = 'default' | '
|
|
1195
|
+
type ParticipantType = 'default' | 'database' | 'actor' | 'queue' | 'cache';
|
|
1199
1196
|
/**
|
|
1200
1197
|
* A declared or inferred participant in the sequence diagram.
|
|
1201
1198
|
*/
|
|
@@ -1401,7 +1398,6 @@ interface LayoutEdge {
|
|
|
1401
1398
|
y: number;
|
|
1402
1399
|
}[];
|
|
1403
1400
|
label?: string;
|
|
1404
|
-
color?: string;
|
|
1405
1401
|
lineNumber: number;
|
|
1406
1402
|
}
|
|
1407
1403
|
interface LayoutGroup {
|
|
@@ -1531,7 +1527,7 @@ declare function layoutClassDiagram(parsed: ParsedClassDiagram): ClassLayoutResu
|
|
|
1531
1527
|
declare function renderClassDiagram(container: HTMLDivElement, parsed: ParsedClassDiagram, layout: ClassLayoutResult, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: {
|
|
1532
1528
|
width?: number;
|
|
1533
1529
|
height?: number;
|
|
1534
|
-
}, legendActive?: boolean | null): void;
|
|
1530
|
+
}, legendActive?: boolean | null, exportMode?: boolean): void;
|
|
1535
1531
|
declare function renderClassDiagramForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
1536
1532
|
|
|
1537
1533
|
type ERConstraint = 'pk' | 'fk' | 'unique' | 'nullable';
|
|
@@ -1615,7 +1611,7 @@ declare function renderERDiagram(container: HTMLDivElement, parsed: ParsedERDiag
|
|
|
1615
1611
|
height?: number;
|
|
1616
1612
|
}, activeTagGroup?: string | null,
|
|
1617
1613
|
/** When false, semantic role colors are suppressed and entities use a neutral color. */
|
|
1618
|
-
semanticColorsActive?: boolean): void;
|
|
1614
|
+
semanticColorsActive?: boolean, exportMode?: boolean): void;
|
|
1619
1615
|
declare function renderERDiagramForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
1620
1616
|
|
|
1621
1617
|
interface InlineSpan {
|
|
@@ -1821,7 +1817,7 @@ declare function focusOrgTree(original: ParsedOrg, focusNodeId: string): FocusOr
|
|
|
1821
1817
|
declare function renderOrg(container: HTMLDivElement, parsed: ParsedOrg, layout: OrgLayoutResult, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: {
|
|
1822
1818
|
width?: number;
|
|
1823
1819
|
height?: number;
|
|
1824
|
-
}, activeTagGroup?: string | null, hiddenAttributes?: Set<string>, ancestorPath?: AncestorInfo[]): void;
|
|
1820
|
+
}, activeTagGroup?: string | null, hiddenAttributes?: Set<string>, ancestorPath?: AncestorInfo[], exportMode?: boolean): void;
|
|
1825
1821
|
declare function renderOrgForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
1826
1822
|
|
|
1827
1823
|
/** @deprecated Use `TagEntry` from `utils/tag-groups` */
|
|
@@ -1892,6 +1888,7 @@ interface KanbanInteractiveOptions {
|
|
|
1892
1888
|
collapsedLanes?: Set<string>;
|
|
1893
1889
|
collapsedColumns?: Set<string>;
|
|
1894
1890
|
compactMeta?: boolean;
|
|
1891
|
+
exportMode?: boolean;
|
|
1895
1892
|
}
|
|
1896
1893
|
declare function renderKanban(container: HTMLElement, parsed: ParsedKanban, palette: PaletteColors, isDark: boolean, options?: KanbanInteractiveOptions): void;
|
|
1897
1894
|
declare function renderKanbanForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
@@ -2048,7 +2045,7 @@ declare function layoutC4Deployment(parsed: ParsedC4, activeTagGroup?: string |
|
|
|
2048
2045
|
declare function renderC4Context(container: HTMLDivElement, parsed: ParsedC4, layout: C4LayoutResult, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: {
|
|
2049
2046
|
width?: number;
|
|
2050
2047
|
height?: number;
|
|
2051
|
-
}, activeTagGroup?: string | null): void;
|
|
2048
|
+
}, activeTagGroup?: string | null, exportMode?: boolean): void;
|
|
2052
2049
|
declare function renderC4ContextForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
2053
2050
|
/**
|
|
2054
2051
|
* Render a C4 container-level diagram showing containers inside a system boundary
|
|
@@ -2057,7 +2054,7 @@ declare function renderC4ContextForExport(content: string, theme: 'light' | 'dar
|
|
|
2057
2054
|
declare function renderC4Containers(container: HTMLDivElement, parsed: ParsedC4, layout: C4LayoutResult, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: {
|
|
2058
2055
|
width?: number;
|
|
2059
2056
|
height?: number;
|
|
2060
|
-
}, activeTagGroup?: string | null): void;
|
|
2057
|
+
}, activeTagGroup?: string | null, exportMode?: boolean): void;
|
|
2061
2058
|
declare function renderC4ContainersForExport(content: string, systemName: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
2062
2059
|
declare function renderC4ComponentsForExport(content: string, systemName: string, containerName: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
2063
2060
|
/**
|
|
@@ -2068,7 +2065,7 @@ declare function renderC4ComponentsForExport(content: string, systemName: string
|
|
|
2068
2065
|
declare function renderC4Deployment(container: HTMLDivElement, parsed: ParsedC4, layout: C4LayoutResult, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: {
|
|
2069
2066
|
width?: number;
|
|
2070
2067
|
height?: number;
|
|
2071
|
-
}, activeTagGroup?: string | null): void;
|
|
2068
|
+
}, activeTagGroup?: string | null, exportMode?: boolean): void;
|
|
2072
2069
|
/**
|
|
2073
2070
|
* Export convenience function for deployment diagrams.
|
|
2074
2071
|
*/
|
|
@@ -2174,6 +2171,7 @@ interface BLRenderOptions {
|
|
|
2174
2171
|
controlsExpanded?: boolean;
|
|
2175
2172
|
onToggleDescriptions?: (active: boolean) => void;
|
|
2176
2173
|
onToggleControlsExpand?: () => void;
|
|
2174
|
+
exportMode?: boolean;
|
|
2177
2175
|
}
|
|
2178
2176
|
declare function renderBoxesAndLines(container: HTMLDivElement, parsed: ParsedBoxesAndLines, layout: BLLayoutResult, palette: PaletteColors, isDark: boolean, options?: BLRenderOptions): void;
|
|
2179
2177
|
declare function renderBoxesAndLinesForExport(container: HTMLDivElement, parsed: ParsedBoxesAndLines, layout: BLLayoutResult, palette: PaletteColors, isDark: boolean, options?: {
|
|
@@ -2183,6 +2181,7 @@ declare function renderBoxesAndLinesForExport(container: HTMLDivElement, parsed:
|
|
|
2183
2181
|
};
|
|
2184
2182
|
activeTagGroup?: string | null;
|
|
2185
2183
|
hiddenTagValues?: Map<string, Set<string>>;
|
|
2184
|
+
exportMode?: boolean;
|
|
2186
2185
|
}): void;
|
|
2187
2186
|
|
|
2188
2187
|
interface BLCollapseResult {
|
|
@@ -2218,7 +2217,6 @@ interface SitemapEdge {
|
|
|
2218
2217
|
sourceId: string;
|
|
2219
2218
|
targetId: string;
|
|
2220
2219
|
label?: string;
|
|
2221
|
-
color?: string;
|
|
2222
2220
|
lineNumber: number;
|
|
2223
2221
|
}
|
|
2224
2222
|
type SitemapDirection = 'TB' | 'LR';
|
|
@@ -2271,7 +2269,6 @@ interface SitemapLayoutEdge {
|
|
|
2271
2269
|
y: number;
|
|
2272
2270
|
}[];
|
|
2273
2271
|
label?: string;
|
|
2274
|
-
color?: string;
|
|
2275
2272
|
lineNumber: number;
|
|
2276
2273
|
/** True for edges deferred from dagre (container endpoints) — use linear curve */
|
|
2277
2274
|
deferred?: boolean;
|
|
@@ -2322,7 +2319,7 @@ declare function layoutSitemap(parsed: ParsedSitemap, hiddenCounts?: Map<string,
|
|
|
2322
2319
|
declare function renderSitemap(container: HTMLDivElement, parsed: ParsedSitemap, layout: SitemapLayoutResult, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: {
|
|
2323
2320
|
width?: number;
|
|
2324
2321
|
height?: number;
|
|
2325
|
-
}, activeTagGroup?: string | null, hiddenAttributes?: Set<string
|
|
2322
|
+
}, activeTagGroup?: string | null, hiddenAttributes?: Set<string>, exportMode?: boolean): void;
|
|
2326
2323
|
declare function renderSitemapForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette?: PaletteColors): Promise<string>;
|
|
2327
2324
|
|
|
2328
2325
|
interface CollapsedSitemapResult {
|
|
@@ -2778,6 +2775,7 @@ interface GanttInteractiveOptions {
|
|
|
2778
2775
|
collapsedLanes?: Set<string>;
|
|
2779
2776
|
onToggleLane?: (laneName: string) => void;
|
|
2780
2777
|
viewMode?: boolean;
|
|
2778
|
+
exportMode?: boolean;
|
|
2781
2779
|
}
|
|
2782
2780
|
declare function renderGantt(container: HTMLDivElement, resolved: ResolvedSchedule, palette: PaletteColors, isDark: boolean, options?: GanttInteractiveOptions, exportDims?: D3ExportDimensions): void;
|
|
2783
2781
|
type GroupRow = {
|
|
@@ -3048,7 +3046,7 @@ interface ParsedPert {
|
|
|
3048
3046
|
groups: PertGroup[];
|
|
3049
3047
|
/**
|
|
3050
3048
|
* Tag groups declared at the top of the diagram (`tag Priority as p
|
|
3051
|
-
* High
|
|
3049
|
+
* High red, Low green`). Drive node fill via `resolveTagColor()`.
|
|
3052
3050
|
* Empty when no `tag` blocks are declared.
|
|
3053
3051
|
*/
|
|
3054
3052
|
tagGroups: TagGroup[];
|
|
@@ -3305,7 +3303,7 @@ interface ParsePertOptions {
|
|
|
3305
3303
|
now?: Date;
|
|
3306
3304
|
/**
|
|
3307
3305
|
* Active palette — used when resolving color names on `tag` entries
|
|
3308
|
-
* (e.g. `High
|
|
3306
|
+
* (e.g. `High red` → palette.colors.red). Optional; when omitted the
|
|
3309
3307
|
* universal default color map is used.
|
|
3310
3308
|
*/
|
|
3311
3309
|
palette?: PaletteColors;
|
|
@@ -3468,6 +3466,8 @@ interface PertRenderOptions {
|
|
|
3468
3466
|
* through to the parsed `active-tag` directive.
|
|
3469
3467
|
*/
|
|
3470
3468
|
activeTagOverride?: string | null;
|
|
3469
|
+
/** True when rendering for export — strips collapsed pills and cog from legend. */
|
|
3470
|
+
exportMode?: boolean;
|
|
3471
3471
|
}
|
|
3472
3472
|
declare function renderPert(container: HTMLDivElement, resolved: ResolvedPert, layout: LayoutResult, palette: PaletteColors, isDark: boolean, options?: PertRenderOptions): void;
|
|
3473
3473
|
declare function renderPertForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors,
|
|
@@ -3646,6 +3646,7 @@ declare function renderMindmap(container: HTMLDivElement, parsed: ParsedMindmap,
|
|
|
3646
3646
|
onToggleDescriptions?: (active: boolean) => void;
|
|
3647
3647
|
controlsExpanded?: boolean;
|
|
3648
3648
|
onToggleControlsExpand?: () => void;
|
|
3649
|
+
exportMode?: boolean;
|
|
3649
3650
|
}): void;
|
|
3650
3651
|
declare function renderMindmapForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
3651
3652
|
|
|
@@ -3833,6 +3834,8 @@ interface TechRadarRenderOptions {
|
|
|
3833
3834
|
onLegendGroupToggle?: (groupName: string) => void;
|
|
3834
3835
|
/** Active line from the editor cursor — triggers popover/expansion for that blip. */
|
|
3835
3836
|
activeLine?: number | null;
|
|
3837
|
+
/** True when rendering for export (PNG/SVG/PDF) — controls whether collapsed legend pills and cog are stripped. */
|
|
3838
|
+
exportMode?: boolean;
|
|
3836
3839
|
}
|
|
3837
3840
|
|
|
3838
3841
|
declare function parseTechRadar(content: string): ParsedTechRadar;
|
|
@@ -3859,7 +3862,7 @@ declare function getRadarGeometry(width: number, height: number, ringCount: numb
|
|
|
3859
3862
|
};
|
|
3860
3863
|
|
|
3861
3864
|
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;
|
|
3865
|
+
declare function renderTechRadarForExport(container: HTMLDivElement, parsed: ParsedTechRadar, palette: PaletteColors, isDark: boolean, exportDims?: D3ExportDimensions, viewState?: CompactViewState, exportMode?: boolean): void;
|
|
3863
3866
|
|
|
3864
3867
|
declare function renderQuadrantFocus(container: HTMLDivElement, parsed: ParsedTechRadar, quadrantPosition: QuadrantPosition, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: D3ExportDimensions, _options?: TechRadarRenderOptions): void;
|
|
3865
3868
|
declare function renderQuadrantFocusForExport(container: HTMLDivElement, parsed: ParsedTechRadar, quadrantPosition: QuadrantPosition, palette: PaletteColors, isDark: boolean, exportDims: {
|
|
@@ -3982,6 +3985,7 @@ interface CycleRenderOptions {
|
|
|
3982
3985
|
controlsExpanded?: boolean;
|
|
3983
3986
|
onToggleDescriptions?: (active: boolean) => void;
|
|
3984
3987
|
onToggleControlsExpand?: () => void;
|
|
3988
|
+
exportMode?: boolean;
|
|
3985
3989
|
}
|
|
3986
3990
|
/**
|
|
3987
3991
|
* Render a cycle diagram into the given container.
|
|
@@ -3990,7 +3994,7 @@ declare function renderCycle(container: HTMLDivElement, parsed: ParsedCycle, pal
|
|
|
3990
3994
|
/**
|
|
3991
3995
|
* Render for CLI/export (no click handlers).
|
|
3992
3996
|
*/
|
|
3993
|
-
declare function renderCycleForExport(container: HTMLDivElement, parsed: ParsedCycle, palette: PaletteColors, isDark: boolean, exportDims?: D3ExportDimensions, viewState?: CompactViewState): void;
|
|
3997
|
+
declare function renderCycleForExport(container: HTMLDivElement, parsed: ParsedCycle, palette: PaletteColors, isDark: boolean, exportDims?: D3ExportDimensions, viewState?: CompactViewState, exportMode?: boolean): void;
|
|
3994
3998
|
|
|
3995
3999
|
interface JourneyMapAnnotation {
|
|
3996
4000
|
type: 'pain' | 'opportunity' | 'thought';
|
|
@@ -4096,6 +4100,7 @@ interface JourneyMapInteractiveOptions {
|
|
|
4096
4100
|
collapsedPhases?: Set<string>;
|
|
4097
4101
|
/** Called when a phase is toggled */
|
|
4098
4102
|
onPhaseToggle?: (phaseName: string) => void;
|
|
4103
|
+
exportMode?: boolean;
|
|
4099
4104
|
}
|
|
4100
4105
|
declare function renderJourneyMap(container: HTMLElement, parsed: ParsedJourneyMap, palette: PaletteColors, isDark: boolean, options?: JourneyMapInteractiveOptions): void;
|
|
4101
4106
|
declare function renderJourneyMapForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
@@ -4246,9 +4251,10 @@ interface ParsedRaci {
|
|
|
4246
4251
|
/** Display name for each role (parallel to `roles`). */
|
|
4247
4252
|
roleDisplayNames: string[];
|
|
4248
4253
|
/**
|
|
4249
|
-
* Optional per-role palette color from `Cap
|
|
4250
|
-
* roles block
|
|
4251
|
-
*
|
|
4254
|
+
* Optional per-role palette color from the `Cap blue` trailing-token
|
|
4255
|
+
* suffix in the roles block (or the long pipe form `Cap | color: blue`).
|
|
4256
|
+
* Parallel to `roles`; entries default to `undefined` (renderer falls
|
|
4257
|
+
* back to the neutral column tint).
|
|
4252
4258
|
*/
|
|
4253
4259
|
roleColors: Array<string | undefined>;
|
|
4254
4260
|
phases: RaciPhase[];
|
|
@@ -4688,4 +4694,4 @@ declare const themes: {
|
|
|
4688
4694
|
readonly transparent: "transparent";
|
|
4689
4695
|
};
|
|
4690
4696
|
|
|
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 };
|
|
4697
|
+
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 };
|