change congig.schema.yaml for consistency

This commit is contained in:
Hans Blankenhaus 2023-09-19 19:24:16 +02:00
parent f256a57f27
commit 589f90762a
2 changed files with 3 additions and 1 deletions

View File

@ -139,7 +139,6 @@ export interface MermaidConfig {
* You can set this attribute to base the seed on a static string.
*
*/
markdownAutoWrap?: boolean;
deterministicIDSeed?: string;
flowchart?: FlowchartDiagramConfig;
sequence?: SequenceDiagramConfig;
@ -159,6 +158,7 @@ export interface MermaidConfig {
dompurifyConfig?: DOMPurifyConfiguration;
wrap?: boolean;
fontSize?: number;
markdownAutoWrap?: boolean;
}
/**
* This interface was referenced by `MermaidConfig`'s JSON-Schema

View File

@ -217,6 +217,8 @@ properties:
fontSize:
type: number
default: 16
markdownAutoWrap:
type: boolean
$defs: # JSON Schema definition (maybe we should move these to a seperate file)
BaseDiagramConfig: