@diagrammo/dgmo 0.6.0 → 0.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/commands/dgmo.md +76 -0
- package/dist/cli.cjs +164 -162
- package/dist/index.cjs +1146 -647
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +9 -21
- package/dist/index.d.ts +9 -21
- package/dist/index.js +1146 -647
- package/dist/index.js.map +1 -1
- package/docs/ai-integration.md +33 -50
- package/package.json +4 -3
- package/src/c4/layout.ts +75 -72
- package/src/c4/renderer.ts +122 -119
- package/src/cli.ts +130 -40
- package/src/d3.ts +55 -35
- package/src/echarts.ts +24 -24
- package/src/er/classify.ts +206 -0
- package/src/er/layout.ts +259 -94
- package/src/er/renderer.ts +246 -26
- package/src/index.ts +2 -2
- package/src/infra/compute.ts +1 -21
- package/src/infra/layout.ts +60 -13
- package/src/infra/parser.ts +5 -32
- package/src/infra/renderer.ts +403 -196
- package/src/infra/types.ts +1 -11
- package/src/initiative-status/layout.ts +46 -27
- package/src/kanban/renderer.ts +28 -24
- package/src/org/renderer.ts +24 -23
- package/src/render.ts +2 -2
- package/src/sequence/renderer.ts +24 -19
- package/src/sitemap/layout.ts +7 -14
- package/src/sitemap/renderer.ts +30 -29
- package/src/utils/legend-constants.ts +25 -0
- package/.claude/skills/dgmo-chart/SKILL.md +0 -141
- package/.claude/skills/dgmo-flowchart/SKILL.md +0 -61
- package/.claude/skills/dgmo-generate/SKILL.md +0 -59
- package/.claude/skills/dgmo-sequence/SKILL.md +0 -104
package/dist/index.d.cts
CHANGED
|
@@ -39,7 +39,7 @@ declare function render(content: string, options?: {
|
|
|
39
39
|
c4Level?: 'context' | 'containers' | 'components' | 'deployment';
|
|
40
40
|
c4System?: string;
|
|
41
41
|
c4Container?: string;
|
|
42
|
-
|
|
42
|
+
tagGroup?: string;
|
|
43
43
|
}): Promise<string>;
|
|
44
44
|
|
|
45
45
|
/**
|
|
@@ -573,7 +573,7 @@ declare function renderForExport(content: string, theme: 'light' | 'dark' | 'tra
|
|
|
573
573
|
c4Level?: 'context' | 'containers' | 'components' | 'deployment';
|
|
574
574
|
c4System?: string;
|
|
575
575
|
c4Container?: string;
|
|
576
|
-
|
|
576
|
+
tagGroup?: string;
|
|
577
577
|
}): Promise<string>;
|
|
578
578
|
|
|
579
579
|
/**
|
|
@@ -996,7 +996,9 @@ declare function layoutERDiagram(parsed: ParsedERDiagram): ERLayoutResult;
|
|
|
996
996
|
declare function renderERDiagram(container: HTMLDivElement, parsed: ParsedERDiagram, layout: ERLayoutResult, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: {
|
|
997
997
|
width?: number;
|
|
998
998
|
height?: number;
|
|
999
|
-
}, activeTagGroup?: string | null
|
|
999
|
+
}, activeTagGroup?: string | null,
|
|
1000
|
+
/** When false, semantic role colors are suppressed and entities use a neutral color. */
|
|
1001
|
+
semanticColorsActive?: boolean): void;
|
|
1000
1002
|
declare function renderERDiagramForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
1001
1003
|
|
|
1002
1004
|
interface InlineSpan {
|
|
@@ -1610,12 +1612,6 @@ interface InfraTagGroup {
|
|
|
1610
1612
|
defaultValue?: string;
|
|
1611
1613
|
lineNumber: number;
|
|
1612
1614
|
}
|
|
1613
|
-
interface InfraScenario {
|
|
1614
|
-
name: string;
|
|
1615
|
-
/** Node property overrides: nodeId -> { key: value } */
|
|
1616
|
-
overrides: Record<string, Record<string, string | number>>;
|
|
1617
|
-
lineNumber: number;
|
|
1618
|
-
}
|
|
1619
1615
|
interface ParsedInfra {
|
|
1620
1616
|
type: 'infra';
|
|
1621
1617
|
title: string | null;
|
|
@@ -1625,7 +1621,6 @@ interface ParsedInfra {
|
|
|
1625
1621
|
edges: InfraEdge[];
|
|
1626
1622
|
groups: InfraGroup[];
|
|
1627
1623
|
tagGroups: InfraTagGroup[];
|
|
1628
|
-
scenarios: InfraScenario[];
|
|
1629
1624
|
options: Record<string, string>;
|
|
1630
1625
|
diagnostics: DgmoError[];
|
|
1631
1626
|
error: string | null;
|
|
@@ -1633,9 +1628,7 @@ interface ParsedInfra {
|
|
|
1633
1628
|
interface InfraComputeParams {
|
|
1634
1629
|
rps?: number;
|
|
1635
1630
|
instanceOverrides?: Record<string, number>;
|
|
1636
|
-
|
|
1637
|
-
/** Per-node property overrides: nodeId -> { propertyKey: numericValue }.
|
|
1638
|
-
* Applied after scenario overrides. Lets sliders adjust cache-hit, etc. */
|
|
1631
|
+
/** Per-node property overrides: nodeId -> { propertyKey: numericValue }. */
|
|
1639
1632
|
propertyOverrides?: Record<string, Record<string, number>>;
|
|
1640
1633
|
/** Set of group IDs that should be treated as collapsed (virtual nodes). */
|
|
1641
1634
|
collapsedGroups?: Set<string>;
|
|
@@ -1792,6 +1785,7 @@ interface InfraLayoutResult {
|
|
|
1792
1785
|
groups: InfraLayoutGroup[];
|
|
1793
1786
|
/** Diagram-level options (e.g., default-latency-ms, default-uptime). */
|
|
1794
1787
|
options: Record<string, string>;
|
|
1788
|
+
direction: 'LR' | 'TB';
|
|
1795
1789
|
width: number;
|
|
1796
1790
|
height: number;
|
|
1797
1791
|
}
|
|
@@ -1828,13 +1822,7 @@ interface InfraLegendGroup {
|
|
|
1828
1822
|
}
|
|
1829
1823
|
/** Build legend groups from roles + tags. */
|
|
1830
1824
|
declare function computeInfraLegendGroups(nodes: InfraLayoutNode[], tagGroups: InfraTagGroup[], palette: PaletteColors, edges?: InfraLayoutEdge[]): InfraLegendGroup[];
|
|
1831
|
-
|
|
1832
|
-
expanded: boolean;
|
|
1833
|
-
paused: boolean;
|
|
1834
|
-
speed: number;
|
|
1835
|
-
speedOptions: readonly number[];
|
|
1836
|
-
}
|
|
1837
|
-
declare function renderInfra(container: HTMLDivElement, layout: InfraLayoutResult, palette: PaletteColors, isDark: boolean, title: string | null, titleLineNumber: number | null, tagGroups?: InfraTagGroup[], activeGroup?: string | null, animate?: boolean, playback?: InfraPlaybackState | null, expandedNodeIds?: Set<string> | null, exportMode?: boolean, collapsedNodes?: Set<string> | null): void;
|
|
1825
|
+
declare function renderInfra(container: HTMLDivElement, layout: InfraLayoutResult, palette: PaletteColors, isDark: boolean, title: string | null, titleLineNumber: number | null, tagGroups?: InfraTagGroup[], activeGroup?: string | null, animate?: boolean, _playback?: unknown, expandedNodeIds?: Set<string> | null, exportMode?: boolean, collapsedNodes?: Set<string> | null): void;
|
|
1838
1826
|
declare function parseAndLayoutInfra(content: string): {
|
|
1839
1827
|
parsed: ParsedInfra;
|
|
1840
1828
|
computed: null;
|
|
@@ -2038,4 +2026,4 @@ declare function decodeDiagramUrl(hash: string): DecodedDiagramUrl;
|
|
|
2038
2026
|
*/
|
|
2039
2027
|
declare function injectBranding(svgHtml: string, mutedColor: string): string;
|
|
2040
2028
|
|
|
2041
|
-
export { type Activation, type ArcLink, type ArcNodeGroup, 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, type ChartDataPoint, type ChartEra, type ChartType, type ClassLayoutEdge, type ClassLayoutNode, type ClassLayoutResult, type ClassMember, type ClassModifier, type ClassNode, type ClassRelationship, type CollapseResult, type CollapsedOrgResult, type CollapsedSitemapResult, type ComputedInfraEdge, type ComputedInfraModel, type ComputedInfraNode, type ContextRelationship, type D3ExportDimensions, type DecodedDiagramUrl, type DgmoError, type DgmoSeverity, type DiagramViewState, type ERCardinality, type ERColumn, type ERConstraint, type ERLayoutEdge, type ERLayoutNode, type ERLayoutResult, type ERRelationship, type ERTable, type ElseIfBranch, type EncodeDiagramUrlOptions, type EncodeDiagramUrlResult, type ExtendedChartType, type GraphDirection, type GraphEdge, type GraphGroup, type GraphNode, type GraphShape, INFRA_BEHAVIOR_KEYS, type ISEdge, type ISGroup, type ISLayoutEdge, type ISLayoutGroup, type ISLayoutNode, type ISLayoutResult, type ISNode, 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
|
|
2029
|
+
export { type Activation, type ArcLink, type ArcNodeGroup, 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, type ChartDataPoint, type ChartEra, type ChartType, type ClassLayoutEdge, type ClassLayoutNode, type ClassLayoutResult, type ClassMember, type ClassModifier, type ClassNode, type ClassRelationship, type CollapseResult, type CollapsedOrgResult, type CollapsedSitemapResult, type ComputedInfraEdge, type ComputedInfraModel, type ComputedInfraNode, type ContextRelationship, type D3ExportDimensions, type DecodedDiagramUrl, type DgmoError, type DgmoSeverity, type DiagramViewState, type ERCardinality, type ERColumn, type ERConstraint, type ERLayoutEdge, type ERLayoutNode, type ERLayoutResult, type ERRelationship, type ERTable, type ElseIfBranch, type EncodeDiagramUrlOptions, type EncodeDiagramUrlResult, type ExtendedChartType, type GraphDirection, type GraphEdge, type GraphGroup, type GraphNode, type GraphShape, INFRA_BEHAVIOR_KEYS, type ISEdge, type ISGroup, type ISLayoutEdge, type ISLayoutGroup, type ISLayoutNode, type ISLayoutResult, type ISNode, 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 InfraProperty, type InfraRole, type InfraTagGroup, type InitiativeStatus, type InlineSpan, type KanbanCard, type KanbanColumn, type KanbanTagEntry, type KanbanTagGroup, type LayoutEdge, type LayoutGroup, type LayoutNode, type LayoutResult, type MemberVisibility, type OrgContainerBounds, type OrgLayoutEdge, type OrgLayoutNode, type OrgLayoutResult, type OrgNode, type OrgTagEntry, type OrgTagGroup, type PaletteColors, type PaletteConfig, type ParsedC4, type ParsedChart, type ParsedClassDiagram, type ParsedERDiagram, type ParsedExtendedChart, type ParsedGraph, type ParsedInfra, type ParsedInitiativeStatus, type ParsedKanban, type ParsedOrg, type ParsedQuadrant, type ParsedSequenceDgmo, type ParsedSitemap, type ParsedVisualization, type ParticipantType, RULE_COUNT, type ReadFileFn, type RelationshipType, type RenderCategory, type RenderStep, type ResolveImportsResult, type SectionMessageGroup, type SequenceBlock, type SequenceElement, type SequenceGroup, type SequenceMessage, type SequenceNote, type SequenceParticipant, type SequenceRenderOptions, type SequenceSection, type SitemapContainerBounds, type SitemapDirection, type SitemapEdge, type SitemapLayoutEdge, type SitemapLayoutNode, type SitemapLayoutResult, type SitemapLegendEntry, type SitemapLegendGroup, type SitemapNode, type TagEntry, type TagGroup, type VisualizationType, addDurationToDate, applyGroupOrdering, applyPositionOverrides, boldPalette, buildExtendedChartOption, buildMermaidQuadrant, buildMermaidThemeVars, buildNoteMessageMap, buildRenderSequence, buildSimpleChartOption, buildThemeCSS, catppuccinPalette, collapseInitiativeStatus, collapseOrgTree, collapseSitemapTree, collectDiagramRoles, colorNames, computeActivations, computeCardArchive, computeCardMove, computeInfra, computeInfraLegendGroups, computeTimeTicks, contrastText, decodeDiagramUrl, encodeDiagramUrl, formatDateLabel, formatDgmoError, getAvailablePalettes, getPalette, getRenderCategory, getSeriesColors, groupMessagesBySection, gruvboxPalette, hexToHSL, hexToHSLString, hslToHex, inferParticipantType, inferRoles, injectBranding, isArchiveColumn, isExtendedChartType, isSequenceBlock, isSequenceNote, isValidHex, layoutC4Components, layoutC4Containers, layoutC4Context, layoutC4Deployment, layoutClassDiagram, layoutERDiagram, layoutGraph, layoutInfra, layoutInitiativeStatus, layoutOrg, layoutSitemap, looksLikeClassDiagram, looksLikeERDiagram, looksLikeFlowchart, looksLikeInitiativeStatus, looksLikeSequence, looksLikeSitemap, looksLikeState, makeDgmoError, mute, nord, nordPalette, oneDarkPalette, orderArcNodes, parseAndLayoutInfra, parseC4, parseChart, parseClassDiagram, parseDgmo, parseDgmoChartType, parseERDiagram, parseExtendedChart, parseFlowchart, parseInfra, parseInitiativeStatus, parseInlineMarkdown, parseKanban, parseOrg, parseQuadrant, parseSequenceDgmo, parseSitemap, parseState, parseTimelineDate, parseVisualization, registerPalette, render, renderArcDiagram, renderC4ComponentsForExport, renderC4Containers, renderC4ContainersForExport, renderC4Context, renderC4ContextForExport, renderC4Deployment, renderC4DeploymentForExport, renderClassDiagram, renderClassDiagramForExport, renderERDiagram, renderERDiagramForExport, renderExtendedChartForExport, renderFlowchart, renderFlowchartForExport, renderForExport, renderInfra, renderInitiativeStatus, renderInitiativeStatusForExport, renderKanban, renderKanbanForExport, renderOrg, renderOrgForExport, renderQuadrant, renderSequenceDiagram, renderSitemap, renderSitemapForExport, renderSlopeChart, renderState, renderStateForExport, renderTimeline, renderVenn, renderWordCloud, resolveColor, resolveOrgImports, rollUpContextRelationships, rosePinePalette, seriesColors, shade, solarizedPalette, tint, tokyoNightPalette, truncateBareUrl, validateComputed, validateInfra };
|
package/dist/index.d.ts
CHANGED
|
@@ -39,7 +39,7 @@ declare function render(content: string, options?: {
|
|
|
39
39
|
c4Level?: 'context' | 'containers' | 'components' | 'deployment';
|
|
40
40
|
c4System?: string;
|
|
41
41
|
c4Container?: string;
|
|
42
|
-
|
|
42
|
+
tagGroup?: string;
|
|
43
43
|
}): Promise<string>;
|
|
44
44
|
|
|
45
45
|
/**
|
|
@@ -573,7 +573,7 @@ declare function renderForExport(content: string, theme: 'light' | 'dark' | 'tra
|
|
|
573
573
|
c4Level?: 'context' | 'containers' | 'components' | 'deployment';
|
|
574
574
|
c4System?: string;
|
|
575
575
|
c4Container?: string;
|
|
576
|
-
|
|
576
|
+
tagGroup?: string;
|
|
577
577
|
}): Promise<string>;
|
|
578
578
|
|
|
579
579
|
/**
|
|
@@ -996,7 +996,9 @@ declare function layoutERDiagram(parsed: ParsedERDiagram): ERLayoutResult;
|
|
|
996
996
|
declare function renderERDiagram(container: HTMLDivElement, parsed: ParsedERDiagram, layout: ERLayoutResult, palette: PaletteColors, isDark: boolean, onClickItem?: (lineNumber: number) => void, exportDims?: {
|
|
997
997
|
width?: number;
|
|
998
998
|
height?: number;
|
|
999
|
-
}, activeTagGroup?: string | null
|
|
999
|
+
}, activeTagGroup?: string | null,
|
|
1000
|
+
/** When false, semantic role colors are suppressed and entities use a neutral color. */
|
|
1001
|
+
semanticColorsActive?: boolean): void;
|
|
1000
1002
|
declare function renderERDiagramForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
1001
1003
|
|
|
1002
1004
|
interface InlineSpan {
|
|
@@ -1610,12 +1612,6 @@ interface InfraTagGroup {
|
|
|
1610
1612
|
defaultValue?: string;
|
|
1611
1613
|
lineNumber: number;
|
|
1612
1614
|
}
|
|
1613
|
-
interface InfraScenario {
|
|
1614
|
-
name: string;
|
|
1615
|
-
/** Node property overrides: nodeId -> { key: value } */
|
|
1616
|
-
overrides: Record<string, Record<string, string | number>>;
|
|
1617
|
-
lineNumber: number;
|
|
1618
|
-
}
|
|
1619
1615
|
interface ParsedInfra {
|
|
1620
1616
|
type: 'infra';
|
|
1621
1617
|
title: string | null;
|
|
@@ -1625,7 +1621,6 @@ interface ParsedInfra {
|
|
|
1625
1621
|
edges: InfraEdge[];
|
|
1626
1622
|
groups: InfraGroup[];
|
|
1627
1623
|
tagGroups: InfraTagGroup[];
|
|
1628
|
-
scenarios: InfraScenario[];
|
|
1629
1624
|
options: Record<string, string>;
|
|
1630
1625
|
diagnostics: DgmoError[];
|
|
1631
1626
|
error: string | null;
|
|
@@ -1633,9 +1628,7 @@ interface ParsedInfra {
|
|
|
1633
1628
|
interface InfraComputeParams {
|
|
1634
1629
|
rps?: number;
|
|
1635
1630
|
instanceOverrides?: Record<string, number>;
|
|
1636
|
-
|
|
1637
|
-
/** Per-node property overrides: nodeId -> { propertyKey: numericValue }.
|
|
1638
|
-
* Applied after scenario overrides. Lets sliders adjust cache-hit, etc. */
|
|
1631
|
+
/** Per-node property overrides: nodeId -> { propertyKey: numericValue }. */
|
|
1639
1632
|
propertyOverrides?: Record<string, Record<string, number>>;
|
|
1640
1633
|
/** Set of group IDs that should be treated as collapsed (virtual nodes). */
|
|
1641
1634
|
collapsedGroups?: Set<string>;
|
|
@@ -1792,6 +1785,7 @@ interface InfraLayoutResult {
|
|
|
1792
1785
|
groups: InfraLayoutGroup[];
|
|
1793
1786
|
/** Diagram-level options (e.g., default-latency-ms, default-uptime). */
|
|
1794
1787
|
options: Record<string, string>;
|
|
1788
|
+
direction: 'LR' | 'TB';
|
|
1795
1789
|
width: number;
|
|
1796
1790
|
height: number;
|
|
1797
1791
|
}
|
|
@@ -1828,13 +1822,7 @@ interface InfraLegendGroup {
|
|
|
1828
1822
|
}
|
|
1829
1823
|
/** Build legend groups from roles + tags. */
|
|
1830
1824
|
declare function computeInfraLegendGroups(nodes: InfraLayoutNode[], tagGroups: InfraTagGroup[], palette: PaletteColors, edges?: InfraLayoutEdge[]): InfraLegendGroup[];
|
|
1831
|
-
|
|
1832
|
-
expanded: boolean;
|
|
1833
|
-
paused: boolean;
|
|
1834
|
-
speed: number;
|
|
1835
|
-
speedOptions: readonly number[];
|
|
1836
|
-
}
|
|
1837
|
-
declare function renderInfra(container: HTMLDivElement, layout: InfraLayoutResult, palette: PaletteColors, isDark: boolean, title: string | null, titleLineNumber: number | null, tagGroups?: InfraTagGroup[], activeGroup?: string | null, animate?: boolean, playback?: InfraPlaybackState | null, expandedNodeIds?: Set<string> | null, exportMode?: boolean, collapsedNodes?: Set<string> | null): void;
|
|
1825
|
+
declare function renderInfra(container: HTMLDivElement, layout: InfraLayoutResult, palette: PaletteColors, isDark: boolean, title: string | null, titleLineNumber: number | null, tagGroups?: InfraTagGroup[], activeGroup?: string | null, animate?: boolean, _playback?: unknown, expandedNodeIds?: Set<string> | null, exportMode?: boolean, collapsedNodes?: Set<string> | null): void;
|
|
1838
1826
|
declare function parseAndLayoutInfra(content: string): {
|
|
1839
1827
|
parsed: ParsedInfra;
|
|
1840
1828
|
computed: null;
|
|
@@ -2038,4 +2026,4 @@ declare function decodeDiagramUrl(hash: string): DecodedDiagramUrl;
|
|
|
2038
2026
|
*/
|
|
2039
2027
|
declare function injectBranding(svgHtml: string, mutedColor: string): string;
|
|
2040
2028
|
|
|
2041
|
-
export { type Activation, type ArcLink, type ArcNodeGroup, 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, type ChartDataPoint, type ChartEra, type ChartType, type ClassLayoutEdge, type ClassLayoutNode, type ClassLayoutResult, type ClassMember, type ClassModifier, type ClassNode, type ClassRelationship, type CollapseResult, type CollapsedOrgResult, type CollapsedSitemapResult, type ComputedInfraEdge, type ComputedInfraModel, type ComputedInfraNode, type ContextRelationship, type D3ExportDimensions, type DecodedDiagramUrl, type DgmoError, type DgmoSeverity, type DiagramViewState, type ERCardinality, type ERColumn, type ERConstraint, type ERLayoutEdge, type ERLayoutNode, type ERLayoutResult, type ERRelationship, type ERTable, type ElseIfBranch, type EncodeDiagramUrlOptions, type EncodeDiagramUrlResult, type ExtendedChartType, type GraphDirection, type GraphEdge, type GraphGroup, type GraphNode, type GraphShape, INFRA_BEHAVIOR_KEYS, type ISEdge, type ISGroup, type ISLayoutEdge, type ISLayoutGroup, type ISLayoutNode, type ISLayoutResult, type ISNode, 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
|
|
2029
|
+
export { type Activation, type ArcLink, type ArcNodeGroup, 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, type ChartDataPoint, type ChartEra, type ChartType, type ClassLayoutEdge, type ClassLayoutNode, type ClassLayoutResult, type ClassMember, type ClassModifier, type ClassNode, type ClassRelationship, type CollapseResult, type CollapsedOrgResult, type CollapsedSitemapResult, type ComputedInfraEdge, type ComputedInfraModel, type ComputedInfraNode, type ContextRelationship, type D3ExportDimensions, type DecodedDiagramUrl, type DgmoError, type DgmoSeverity, type DiagramViewState, type ERCardinality, type ERColumn, type ERConstraint, type ERLayoutEdge, type ERLayoutNode, type ERLayoutResult, type ERRelationship, type ERTable, type ElseIfBranch, type EncodeDiagramUrlOptions, type EncodeDiagramUrlResult, type ExtendedChartType, type GraphDirection, type GraphEdge, type GraphGroup, type GraphNode, type GraphShape, INFRA_BEHAVIOR_KEYS, type ISEdge, type ISGroup, type ISLayoutEdge, type ISLayoutGroup, type ISLayoutNode, type ISLayoutResult, type ISNode, 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 InfraProperty, type InfraRole, type InfraTagGroup, type InitiativeStatus, type InlineSpan, type KanbanCard, type KanbanColumn, type KanbanTagEntry, type KanbanTagGroup, type LayoutEdge, type LayoutGroup, type LayoutNode, type LayoutResult, type MemberVisibility, type OrgContainerBounds, type OrgLayoutEdge, type OrgLayoutNode, type OrgLayoutResult, type OrgNode, type OrgTagEntry, type OrgTagGroup, type PaletteColors, type PaletteConfig, type ParsedC4, type ParsedChart, type ParsedClassDiagram, type ParsedERDiagram, type ParsedExtendedChart, type ParsedGraph, type ParsedInfra, type ParsedInitiativeStatus, type ParsedKanban, type ParsedOrg, type ParsedQuadrant, type ParsedSequenceDgmo, type ParsedSitemap, type ParsedVisualization, type ParticipantType, RULE_COUNT, type ReadFileFn, type RelationshipType, type RenderCategory, type RenderStep, type ResolveImportsResult, type SectionMessageGroup, type SequenceBlock, type SequenceElement, type SequenceGroup, type SequenceMessage, type SequenceNote, type SequenceParticipant, type SequenceRenderOptions, type SequenceSection, type SitemapContainerBounds, type SitemapDirection, type SitemapEdge, type SitemapLayoutEdge, type SitemapLayoutNode, type SitemapLayoutResult, type SitemapLegendEntry, type SitemapLegendGroup, type SitemapNode, type TagEntry, type TagGroup, type VisualizationType, addDurationToDate, applyGroupOrdering, applyPositionOverrides, boldPalette, buildExtendedChartOption, buildMermaidQuadrant, buildMermaidThemeVars, buildNoteMessageMap, buildRenderSequence, buildSimpleChartOption, buildThemeCSS, catppuccinPalette, collapseInitiativeStatus, collapseOrgTree, collapseSitemapTree, collectDiagramRoles, colorNames, computeActivations, computeCardArchive, computeCardMove, computeInfra, computeInfraLegendGroups, computeTimeTicks, contrastText, decodeDiagramUrl, encodeDiagramUrl, formatDateLabel, formatDgmoError, getAvailablePalettes, getPalette, getRenderCategory, getSeriesColors, groupMessagesBySection, gruvboxPalette, hexToHSL, hexToHSLString, hslToHex, inferParticipantType, inferRoles, injectBranding, isArchiveColumn, isExtendedChartType, isSequenceBlock, isSequenceNote, isValidHex, layoutC4Components, layoutC4Containers, layoutC4Context, layoutC4Deployment, layoutClassDiagram, layoutERDiagram, layoutGraph, layoutInfra, layoutInitiativeStatus, layoutOrg, layoutSitemap, looksLikeClassDiagram, looksLikeERDiagram, looksLikeFlowchart, looksLikeInitiativeStatus, looksLikeSequence, looksLikeSitemap, looksLikeState, makeDgmoError, mute, nord, nordPalette, oneDarkPalette, orderArcNodes, parseAndLayoutInfra, parseC4, parseChart, parseClassDiagram, parseDgmo, parseDgmoChartType, parseERDiagram, parseExtendedChart, parseFlowchart, parseInfra, parseInitiativeStatus, parseInlineMarkdown, parseKanban, parseOrg, parseQuadrant, parseSequenceDgmo, parseSitemap, parseState, parseTimelineDate, parseVisualization, registerPalette, render, renderArcDiagram, renderC4ComponentsForExport, renderC4Containers, renderC4ContainersForExport, renderC4Context, renderC4ContextForExport, renderC4Deployment, renderC4DeploymentForExport, renderClassDiagram, renderClassDiagramForExport, renderERDiagram, renderERDiagramForExport, renderExtendedChartForExport, renderFlowchart, renderFlowchartForExport, renderForExport, renderInfra, renderInitiativeStatus, renderInitiativeStatusForExport, renderKanban, renderKanbanForExport, renderOrg, renderOrgForExport, renderQuadrant, renderSequenceDiagram, renderSitemap, renderSitemapForExport, renderSlopeChart, renderState, renderStateForExport, renderTimeline, renderVenn, renderWordCloud, resolveColor, resolveOrgImports, rollUpContextRelationships, rosePinePalette, seriesColors, shade, solarizedPalette, tint, tokyoNightPalette, truncateBareUrl, validateComputed, validateInfra };
|