You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 8, 2020. It is now read-only.
Copy file name to clipboardExpand all lines: client/package.json
+15-6Lines changed: 15 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -62,27 +62,27 @@
62
62
"type": "object",
63
63
"title": "Composer configuration",
64
64
"properties": {
65
-
"composer.pUML.keepSourceFileOpen": {
65
+
"composer.UML.keepSourceFileOpen": {
66
66
"type": "boolean",
67
67
"default": true,
68
68
"description": "Keeps open the 'composer.puml' source file after generating the diagram."
69
69
},
70
-
"composer.pUML.autoShowDiagam": {
70
+
"composer.UML.autoShowDiagam": {
71
71
"type": "boolean",
72
72
"default": true,
73
-
"description": "If true, the pUML diagram will automatically be shown. If false, a 'composer.puml' files will be created without showing the diagram."
73
+
"description": "If true, the PlantUML diagram will automatically be shown. If false, a 'composer.puml' files will be created without showing the diagram."
74
74
},
75
-
"composer.pUML.includeSystemNamespace": {
75
+
"composer.UML.includeSystemNamespace": {
76
76
"type": "string",
77
77
"enum": [
78
78
"none",
79
79
"all",
80
80
"simple"
81
81
],
82
82
"default": "simple",
83
-
"description": "Options to control System Namespace inlusion in pUML diagrams. 'all' will include all System Namespace artifacts. 'none' will remove all System Namespace artifacts. 'simple' keeps the bare minimum of System Namesapce artifacts. The more artifacts kept, the more cluttered the diagram will be."
83
+
"description": "Options to control System Namespace inlusion in PlantUML diagrams. 'all' will include all System Namespace artifacts. 'none' will remove all System Namespace artifacts. 'simple' keeps the bare minimum of System Namesapce artifacts. The more artifacts kept, the more cluttered the diagram will be."
84
84
},
85
-
"composer.pUML.diagramStyle": {
85
+
"composer.UML.diagramStyle": {
86
86
"type": "string",
87
87
"enum": [
88
88
"normal",
@@ -93,6 +93,15 @@
93
93
"default": "normal",
94
94
"description": "Style of diagram to draw."
95
95
},
96
+
"composer.UML.diagramTheme": {
97
+
"type": "string",
98
+
"enum": [
99
+
"yellow",
100
+
"blue"
101
+
],
102
+
"default": "yellow",
103
+
"description": "Diagram PlantUML theme. 'yellow' gives the default yellow diagram theme, where as 'blue' uses the newer blue theme"
0 commit comments