@diagrammo/dgmo 0.2.20 → 0.2.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.cjs +99 -97
- package/dist/index.cjs +949 -262
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +70 -1
- package/dist/index.d.ts +70 -1
- package/dist/index.js +942 -261
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/d3.ts +44 -1
- package/src/dgmo-router.ts +8 -1
- package/src/index.ts +11 -0
- package/src/kanban/mutations.ts +183 -0
- package/src/kanban/parser.ts +389 -0
- package/src/kanban/renderer.ts +564 -0
- package/src/kanban/types.ts +45 -0
- package/src/org/layout.ts +61 -55
- package/src/org/parser.ts +15 -1
- package/src/org/renderer.ts +79 -160
- package/src/sequence/renderer.ts +7 -5
package/dist/index.d.cts
CHANGED
|
@@ -1009,6 +1009,75 @@ declare function renderOrg(container: HTMLDivElement, parsed: ParsedOrg, layout:
|
|
|
1009
1009
|
}, activeTagGroup?: string | null, hiddenAttributes?: Set<string>): void;
|
|
1010
1010
|
declare function renderOrgForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
1011
1011
|
|
|
1012
|
+
interface KanbanTagEntry {
|
|
1013
|
+
value: string;
|
|
1014
|
+
color: string;
|
|
1015
|
+
lineNumber: number;
|
|
1016
|
+
}
|
|
1017
|
+
interface KanbanTagGroup {
|
|
1018
|
+
name: string;
|
|
1019
|
+
alias?: string;
|
|
1020
|
+
entries: KanbanTagEntry[];
|
|
1021
|
+
defaultValue?: string;
|
|
1022
|
+
lineNumber: number;
|
|
1023
|
+
}
|
|
1024
|
+
interface KanbanCard {
|
|
1025
|
+
id: string;
|
|
1026
|
+
title: string;
|
|
1027
|
+
tags: Record<string, string>;
|
|
1028
|
+
details: string[];
|
|
1029
|
+
lineNumber: number;
|
|
1030
|
+
endLineNumber: number;
|
|
1031
|
+
color?: string;
|
|
1032
|
+
}
|
|
1033
|
+
interface KanbanColumn {
|
|
1034
|
+
id: string;
|
|
1035
|
+
name: string;
|
|
1036
|
+
wipLimit?: number;
|
|
1037
|
+
color?: string;
|
|
1038
|
+
cards: KanbanCard[];
|
|
1039
|
+
lineNumber: number;
|
|
1040
|
+
}
|
|
1041
|
+
interface ParsedKanban {
|
|
1042
|
+
type: 'kanban';
|
|
1043
|
+
title?: string;
|
|
1044
|
+
titleLineNumber?: number;
|
|
1045
|
+
columns: KanbanColumn[];
|
|
1046
|
+
tagGroups: KanbanTagGroup[];
|
|
1047
|
+
options: Record<string, string>;
|
|
1048
|
+
diagnostics: DgmoError[];
|
|
1049
|
+
error?: string;
|
|
1050
|
+
}
|
|
1051
|
+
|
|
1052
|
+
declare function parseKanban(content: string, palette?: PaletteColors): ParsedKanban;
|
|
1053
|
+
|
|
1054
|
+
/**
|
|
1055
|
+
* Compute new file content after moving a card to a different position.
|
|
1056
|
+
*
|
|
1057
|
+
* @param content - original file content string
|
|
1058
|
+
* @param parsed - parsed kanban board
|
|
1059
|
+
* @param cardId - id of the card to move
|
|
1060
|
+
* @param targetColumnId - id of the destination column
|
|
1061
|
+
* @param targetIndex - position within target column (0 = first card)
|
|
1062
|
+
* @returns new content string, or null if move is invalid
|
|
1063
|
+
*/
|
|
1064
|
+
declare function computeCardMove(content: string, parsed: ParsedKanban, cardId: string, targetColumnId: string, targetIndex: number): string | null;
|
|
1065
|
+
/**
|
|
1066
|
+
* Move a card to the Archive section at the end of the file.
|
|
1067
|
+
* Creates `== Archive ==` if it doesn't exist.
|
|
1068
|
+
*
|
|
1069
|
+
* @returns new content string, or null if the card is not found
|
|
1070
|
+
*/
|
|
1071
|
+
declare function computeCardArchive(content: string, parsed: ParsedKanban, cardId: string): string | null;
|
|
1072
|
+
/** Check if a column name is the archive column (case-insensitive). */
|
|
1073
|
+
declare function isArchiveColumn(name: string): boolean;
|
|
1074
|
+
|
|
1075
|
+
declare function renderKanban(container: HTMLElement, parsed: ParsedKanban, palette: PaletteColors, isDark: boolean, _onNavigateToLine?: (line: number) => void, exportDims?: {
|
|
1076
|
+
width: number;
|
|
1077
|
+
height: number;
|
|
1078
|
+
}, activeTagGroup?: string | null): void;
|
|
1079
|
+
declare function renderKanbanForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
1080
|
+
|
|
1012
1081
|
interface CollapsedOrgResult {
|
|
1013
1082
|
/** ParsedOrg with collapsed subtrees pruned (deep-cloned, never mutates original) */
|
|
1014
1083
|
parsed: ParsedOrg;
|
|
@@ -1221,4 +1290,4 @@ declare function decodeDiagramUrl(hash: string): DecodedDiagramUrl;
|
|
|
1221
1290
|
*/
|
|
1222
1291
|
declare function injectBranding(svgHtml: string, mutedColor: string): string;
|
|
1223
1292
|
|
|
1224
|
-
export { type Activation, type ArcLink, type ArcNodeGroup, type ChartDataPoint, type ChartType, type ClassLayoutEdge, type ClassLayoutNode, type ClassLayoutResult, type ClassMember, type ClassModifier, type ClassNode, type ClassRelationship, type CollapsedOrgResult, type D3ChartType, type D3ExportDimensions, DGMO_CHART_TYPE_MAP, type DecodedDiagramUrl, type DgmoError, type DgmoFramework, type DgmoSeverity, type DiagramViewState, type EChartsChartType, type ERCardinality, type ERColumn, type ERConstraint, type ERLayoutEdge, type ERLayoutNode, type ERLayoutResult, type ERRelationship, type ERTable, type ElseIfBranch, type EncodeDiagramUrlOptions, type EncodeDiagramUrlResult, type GraphDirection, type GraphEdge, type GraphGroup, type GraphNode, type GraphShape, 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 ParsedChart, type ParsedClassDiagram, type ParsedD3, type ParsedEChart, type ParsedERDiagram, type ParsedGraph, type ParsedOrg, type ParsedQuadrant, type ParsedSequenceDgmo, type ParticipantType, RULE_COUNT, type ReadFileFn, type RelationshipType, type RenderStep, type ResolveImportsResult, type SectionMessageGroup, type SequenceBlock, type SequenceElement, type SequenceGroup, type SequenceMessage, type SequenceNote, type SequenceParticipant, type SequenceRenderOptions, type SequenceSection, addDurationToDate, applyGroupOrdering, applyPositionOverrides, boldPalette, buildEChartsOption, buildEChartsOptionFromChart, buildMermaidQuadrant, buildMermaidThemeVars, buildNoteMessageMap, buildRenderSequence, buildThemeCSS, catppuccinPalette, collapseOrgTree, colorNames, computeActivations, computeTimeTicks, contrastText, decodeDiagramUrl, encodeDiagramUrl, formatDateLabel, formatDgmoError, getAvailablePalettes, getDgmoFramework, getPalette, getSeriesColors, groupMessagesBySection, gruvboxPalette, hexToHSL, hexToHSLString, hslToHex, inferParticipantType, injectBranding, isSequenceBlock, isSequenceNote, isValidHex, layoutClassDiagram, layoutERDiagram, layoutGraph, layoutOrg, looksLikeClassDiagram, looksLikeERDiagram, looksLikeFlowchart, looksLikeSequence, makeDgmoError, mute, nord, nordPalette, oneDarkPalette, orderArcNodes, parseChart, parseClassDiagram, parseD3, parseDgmo, parseDgmoChartType, parseEChart, parseERDiagram, parseFlowchart, parseOrg, parseQuadrant, parseSequenceDgmo, parseTimelineDate, registerPalette, render, renderArcDiagram, renderClassDiagram, renderClassDiagramForExport, renderD3ForExport, renderEChartsForExport, renderERDiagram, renderERDiagramForExport, renderFlowchart, renderFlowchartForExport, renderOrg, renderOrgForExport, renderQuadrant, renderSequenceDiagram, renderSlopeChart, renderTimeline, renderVenn, renderWordCloud, resolveColor, resolveOrgImports, rosePinePalette, seriesColors, shade, solarizedPalette, tint, tokyoNightPalette };
|
|
1293
|
+
export { type Activation, type ArcLink, type ArcNodeGroup, type ChartDataPoint, type ChartType, type ClassLayoutEdge, type ClassLayoutNode, type ClassLayoutResult, type ClassMember, type ClassModifier, type ClassNode, type ClassRelationship, type CollapsedOrgResult, type D3ChartType, type D3ExportDimensions, DGMO_CHART_TYPE_MAP, type DecodedDiagramUrl, type DgmoError, type DgmoFramework, type DgmoSeverity, type DiagramViewState, type EChartsChartType, type ERCardinality, type ERColumn, type ERConstraint, type ERLayoutEdge, type ERLayoutNode, type ERLayoutResult, type ERRelationship, type ERTable, type ElseIfBranch, type EncodeDiagramUrlOptions, type EncodeDiagramUrlResult, type GraphDirection, type GraphEdge, type GraphGroup, type GraphNode, type GraphShape, 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 ParsedChart, type ParsedClassDiagram, type ParsedD3, type ParsedEChart, type ParsedERDiagram, type ParsedGraph, type ParsedKanban, type ParsedOrg, type ParsedQuadrant, type ParsedSequenceDgmo, type ParticipantType, RULE_COUNT, type ReadFileFn, type RelationshipType, type RenderStep, type ResolveImportsResult, type SectionMessageGroup, type SequenceBlock, type SequenceElement, type SequenceGroup, type SequenceMessage, type SequenceNote, type SequenceParticipant, type SequenceRenderOptions, type SequenceSection, addDurationToDate, applyGroupOrdering, applyPositionOverrides, boldPalette, buildEChartsOption, buildEChartsOptionFromChart, buildMermaidQuadrant, buildMermaidThemeVars, buildNoteMessageMap, buildRenderSequence, buildThemeCSS, catppuccinPalette, collapseOrgTree, colorNames, computeActivations, computeCardArchive, computeCardMove, computeTimeTicks, contrastText, decodeDiagramUrl, encodeDiagramUrl, formatDateLabel, formatDgmoError, getAvailablePalettes, getDgmoFramework, getPalette, getSeriesColors, groupMessagesBySection, gruvboxPalette, hexToHSL, hexToHSLString, hslToHex, inferParticipantType, injectBranding, isArchiveColumn, isSequenceBlock, isSequenceNote, isValidHex, layoutClassDiagram, layoutERDiagram, layoutGraph, layoutOrg, looksLikeClassDiagram, looksLikeERDiagram, looksLikeFlowchart, looksLikeSequence, makeDgmoError, mute, nord, nordPalette, oneDarkPalette, orderArcNodes, parseChart, parseClassDiagram, parseD3, parseDgmo, parseDgmoChartType, parseEChart, parseERDiagram, parseFlowchart, parseKanban, parseOrg, parseQuadrant, parseSequenceDgmo, parseTimelineDate, registerPalette, render, renderArcDiagram, renderClassDiagram, renderClassDiagramForExport, renderD3ForExport, renderEChartsForExport, renderERDiagram, renderERDiagramForExport, renderFlowchart, renderFlowchartForExport, renderKanban, renderKanbanForExport, renderOrg, renderOrgForExport, renderQuadrant, renderSequenceDiagram, renderSlopeChart, renderTimeline, renderVenn, renderWordCloud, resolveColor, resolveOrgImports, rosePinePalette, seriesColors, shade, solarizedPalette, tint, tokyoNightPalette };
|
package/dist/index.d.ts
CHANGED
|
@@ -1009,6 +1009,75 @@ declare function renderOrg(container: HTMLDivElement, parsed: ParsedOrg, layout:
|
|
|
1009
1009
|
}, activeTagGroup?: string | null, hiddenAttributes?: Set<string>): void;
|
|
1010
1010
|
declare function renderOrgForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
1011
1011
|
|
|
1012
|
+
interface KanbanTagEntry {
|
|
1013
|
+
value: string;
|
|
1014
|
+
color: string;
|
|
1015
|
+
lineNumber: number;
|
|
1016
|
+
}
|
|
1017
|
+
interface KanbanTagGroup {
|
|
1018
|
+
name: string;
|
|
1019
|
+
alias?: string;
|
|
1020
|
+
entries: KanbanTagEntry[];
|
|
1021
|
+
defaultValue?: string;
|
|
1022
|
+
lineNumber: number;
|
|
1023
|
+
}
|
|
1024
|
+
interface KanbanCard {
|
|
1025
|
+
id: string;
|
|
1026
|
+
title: string;
|
|
1027
|
+
tags: Record<string, string>;
|
|
1028
|
+
details: string[];
|
|
1029
|
+
lineNumber: number;
|
|
1030
|
+
endLineNumber: number;
|
|
1031
|
+
color?: string;
|
|
1032
|
+
}
|
|
1033
|
+
interface KanbanColumn {
|
|
1034
|
+
id: string;
|
|
1035
|
+
name: string;
|
|
1036
|
+
wipLimit?: number;
|
|
1037
|
+
color?: string;
|
|
1038
|
+
cards: KanbanCard[];
|
|
1039
|
+
lineNumber: number;
|
|
1040
|
+
}
|
|
1041
|
+
interface ParsedKanban {
|
|
1042
|
+
type: 'kanban';
|
|
1043
|
+
title?: string;
|
|
1044
|
+
titleLineNumber?: number;
|
|
1045
|
+
columns: KanbanColumn[];
|
|
1046
|
+
tagGroups: KanbanTagGroup[];
|
|
1047
|
+
options: Record<string, string>;
|
|
1048
|
+
diagnostics: DgmoError[];
|
|
1049
|
+
error?: string;
|
|
1050
|
+
}
|
|
1051
|
+
|
|
1052
|
+
declare function parseKanban(content: string, palette?: PaletteColors): ParsedKanban;
|
|
1053
|
+
|
|
1054
|
+
/**
|
|
1055
|
+
* Compute new file content after moving a card to a different position.
|
|
1056
|
+
*
|
|
1057
|
+
* @param content - original file content string
|
|
1058
|
+
* @param parsed - parsed kanban board
|
|
1059
|
+
* @param cardId - id of the card to move
|
|
1060
|
+
* @param targetColumnId - id of the destination column
|
|
1061
|
+
* @param targetIndex - position within target column (0 = first card)
|
|
1062
|
+
* @returns new content string, or null if move is invalid
|
|
1063
|
+
*/
|
|
1064
|
+
declare function computeCardMove(content: string, parsed: ParsedKanban, cardId: string, targetColumnId: string, targetIndex: number): string | null;
|
|
1065
|
+
/**
|
|
1066
|
+
* Move a card to the Archive section at the end of the file.
|
|
1067
|
+
* Creates `== Archive ==` if it doesn't exist.
|
|
1068
|
+
*
|
|
1069
|
+
* @returns new content string, or null if the card is not found
|
|
1070
|
+
*/
|
|
1071
|
+
declare function computeCardArchive(content: string, parsed: ParsedKanban, cardId: string): string | null;
|
|
1072
|
+
/** Check if a column name is the archive column (case-insensitive). */
|
|
1073
|
+
declare function isArchiveColumn(name: string): boolean;
|
|
1074
|
+
|
|
1075
|
+
declare function renderKanban(container: HTMLElement, parsed: ParsedKanban, palette: PaletteColors, isDark: boolean, _onNavigateToLine?: (line: number) => void, exportDims?: {
|
|
1076
|
+
width: number;
|
|
1077
|
+
height: number;
|
|
1078
|
+
}, activeTagGroup?: string | null): void;
|
|
1079
|
+
declare function renderKanbanForExport(content: string, theme: 'light' | 'dark' | 'transparent', palette: PaletteColors): string;
|
|
1080
|
+
|
|
1012
1081
|
interface CollapsedOrgResult {
|
|
1013
1082
|
/** ParsedOrg with collapsed subtrees pruned (deep-cloned, never mutates original) */
|
|
1014
1083
|
parsed: ParsedOrg;
|
|
@@ -1221,4 +1290,4 @@ declare function decodeDiagramUrl(hash: string): DecodedDiagramUrl;
|
|
|
1221
1290
|
*/
|
|
1222
1291
|
declare function injectBranding(svgHtml: string, mutedColor: string): string;
|
|
1223
1292
|
|
|
1224
|
-
export { type Activation, type ArcLink, type ArcNodeGroup, type ChartDataPoint, type ChartType, type ClassLayoutEdge, type ClassLayoutNode, type ClassLayoutResult, type ClassMember, type ClassModifier, type ClassNode, type ClassRelationship, type CollapsedOrgResult, type D3ChartType, type D3ExportDimensions, DGMO_CHART_TYPE_MAP, type DecodedDiagramUrl, type DgmoError, type DgmoFramework, type DgmoSeverity, type DiagramViewState, type EChartsChartType, type ERCardinality, type ERColumn, type ERConstraint, type ERLayoutEdge, type ERLayoutNode, type ERLayoutResult, type ERRelationship, type ERTable, type ElseIfBranch, type EncodeDiagramUrlOptions, type EncodeDiagramUrlResult, type GraphDirection, type GraphEdge, type GraphGroup, type GraphNode, type GraphShape, 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 ParsedChart, type ParsedClassDiagram, type ParsedD3, type ParsedEChart, type ParsedERDiagram, type ParsedGraph, type ParsedOrg, type ParsedQuadrant, type ParsedSequenceDgmo, type ParticipantType, RULE_COUNT, type ReadFileFn, type RelationshipType, type RenderStep, type ResolveImportsResult, type SectionMessageGroup, type SequenceBlock, type SequenceElement, type SequenceGroup, type SequenceMessage, type SequenceNote, type SequenceParticipant, type SequenceRenderOptions, type SequenceSection, addDurationToDate, applyGroupOrdering, applyPositionOverrides, boldPalette, buildEChartsOption, buildEChartsOptionFromChart, buildMermaidQuadrant, buildMermaidThemeVars, buildNoteMessageMap, buildRenderSequence, buildThemeCSS, catppuccinPalette, collapseOrgTree, colorNames, computeActivations, computeTimeTicks, contrastText, decodeDiagramUrl, encodeDiagramUrl, formatDateLabel, formatDgmoError, getAvailablePalettes, getDgmoFramework, getPalette, getSeriesColors, groupMessagesBySection, gruvboxPalette, hexToHSL, hexToHSLString, hslToHex, inferParticipantType, injectBranding, isSequenceBlock, isSequenceNote, isValidHex, layoutClassDiagram, layoutERDiagram, layoutGraph, layoutOrg, looksLikeClassDiagram, looksLikeERDiagram, looksLikeFlowchart, looksLikeSequence, makeDgmoError, mute, nord, nordPalette, oneDarkPalette, orderArcNodes, parseChart, parseClassDiagram, parseD3, parseDgmo, parseDgmoChartType, parseEChart, parseERDiagram, parseFlowchart, parseOrg, parseQuadrant, parseSequenceDgmo, parseTimelineDate, registerPalette, render, renderArcDiagram, renderClassDiagram, renderClassDiagramForExport, renderD3ForExport, renderEChartsForExport, renderERDiagram, renderERDiagramForExport, renderFlowchart, renderFlowchartForExport, renderOrg, renderOrgForExport, renderQuadrant, renderSequenceDiagram, renderSlopeChart, renderTimeline, renderVenn, renderWordCloud, resolveColor, resolveOrgImports, rosePinePalette, seriesColors, shade, solarizedPalette, tint, tokyoNightPalette };
|
|
1293
|
+
export { type Activation, type ArcLink, type ArcNodeGroup, type ChartDataPoint, type ChartType, type ClassLayoutEdge, type ClassLayoutNode, type ClassLayoutResult, type ClassMember, type ClassModifier, type ClassNode, type ClassRelationship, type CollapsedOrgResult, type D3ChartType, type D3ExportDimensions, DGMO_CHART_TYPE_MAP, type DecodedDiagramUrl, type DgmoError, type DgmoFramework, type DgmoSeverity, type DiagramViewState, type EChartsChartType, type ERCardinality, type ERColumn, type ERConstraint, type ERLayoutEdge, type ERLayoutNode, type ERLayoutResult, type ERRelationship, type ERTable, type ElseIfBranch, type EncodeDiagramUrlOptions, type EncodeDiagramUrlResult, type GraphDirection, type GraphEdge, type GraphGroup, type GraphNode, type GraphShape, 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 ParsedChart, type ParsedClassDiagram, type ParsedD3, type ParsedEChart, type ParsedERDiagram, type ParsedGraph, type ParsedKanban, type ParsedOrg, type ParsedQuadrant, type ParsedSequenceDgmo, type ParticipantType, RULE_COUNT, type ReadFileFn, type RelationshipType, type RenderStep, type ResolveImportsResult, type SectionMessageGroup, type SequenceBlock, type SequenceElement, type SequenceGroup, type SequenceMessage, type SequenceNote, type SequenceParticipant, type SequenceRenderOptions, type SequenceSection, addDurationToDate, applyGroupOrdering, applyPositionOverrides, boldPalette, buildEChartsOption, buildEChartsOptionFromChart, buildMermaidQuadrant, buildMermaidThemeVars, buildNoteMessageMap, buildRenderSequence, buildThemeCSS, catppuccinPalette, collapseOrgTree, colorNames, computeActivations, computeCardArchive, computeCardMove, computeTimeTicks, contrastText, decodeDiagramUrl, encodeDiagramUrl, formatDateLabel, formatDgmoError, getAvailablePalettes, getDgmoFramework, getPalette, getSeriesColors, groupMessagesBySection, gruvboxPalette, hexToHSL, hexToHSLString, hslToHex, inferParticipantType, injectBranding, isArchiveColumn, isSequenceBlock, isSequenceNote, isValidHex, layoutClassDiagram, layoutERDiagram, layoutGraph, layoutOrg, looksLikeClassDiagram, looksLikeERDiagram, looksLikeFlowchart, looksLikeSequence, makeDgmoError, mute, nord, nordPalette, oneDarkPalette, orderArcNodes, parseChart, parseClassDiagram, parseD3, parseDgmo, parseDgmoChartType, parseEChart, parseERDiagram, parseFlowchart, parseKanban, parseOrg, parseQuadrant, parseSequenceDgmo, parseTimelineDate, registerPalette, render, renderArcDiagram, renderClassDiagram, renderClassDiagramForExport, renderD3ForExport, renderEChartsForExport, renderERDiagram, renderERDiagramForExport, renderFlowchart, renderFlowchartForExport, renderKanban, renderKanbanForExport, renderOrg, renderOrgForExport, renderQuadrant, renderSequenceDiagram, renderSlopeChart, renderTimeline, renderVenn, renderWordCloud, resolveColor, resolveOrgImports, rosePinePalette, seriesColors, shade, solarizedPalette, tint, tokyoNightPalette };
|