@diagrammo/dgmo 0.16.0 → 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/dist/advanced.cjs +133 -280
- package/dist/advanced.d.cts +9 -2
- package/dist/advanced.d.ts +9 -2
- package/dist/advanced.js +133 -280
- package/dist/auto.cjs +135 -269
- package/dist/auto.js +96 -96
- package/dist/auto.mjs +135 -269
- package/dist/cli.cjs +125 -125
- package/dist/index.cjs +132 -266
- package/dist/index.js +132 -266
- package/dist/internal.cjs +133 -280
- package/dist/internal.d.cts +9 -2
- package/dist/internal.d.ts +9 -2
- package/dist/internal.js +133 -280
- package/docs/language-reference.md +14 -18
- package/docs/migration-sequence-color-to-tags.md +1 -1
- package/gallery/fixtures/sequence-tags-protocols.dgmo +3 -3
- package/gallery/fixtures/sequence-tags.dgmo +3 -3
- package/gallery/fixtures/sequence.dgmo +4 -4
- package/package.json +7 -3
- package/src/auto/index.ts +2 -2
- package/src/boxes-and-lines/layout.ts +1 -2
- package/src/c4/parser.ts +1 -1
- package/src/class/parser.ts +1 -1
- package/src/cli.ts +2 -2
- package/src/completion.ts +1 -14
- package/src/cycle/parser.ts +1 -1
- package/src/d3.ts +2 -3
- package/src/diagnostics.ts +20 -0
- package/src/echarts.ts +2 -2
- package/src/editor/dgmo.grammar.d.ts +1 -1
- package/src/er/parser.ts +1 -1
- package/src/graph/flowchart-renderer.ts +3 -0
- package/src/infra/renderer.ts +1 -2
- package/src/journey-map/parser.ts +1 -1
- package/src/kanban/parser.ts +1 -1
- package/src/mindmap/parser.ts +2 -3
- package/src/org/parser.ts +1 -1
- package/src/pert/analyzer.ts +10 -10
- package/src/pert/layout.ts +1 -1
- package/src/pert/parser.ts +1 -1
- package/src/pyramid/parser.ts +1 -1
- package/src/raci/parser.ts +2 -2
- package/src/ring/parser.ts +1 -1
- package/src/sequence/parser.ts +66 -14
- package/src/sequence/participant-inference.ts +18 -181
- package/src/sequence/renderer.ts +47 -136
- package/src/sitemap/parser.ts +1 -1
- package/src/tech-radar/parser.ts +2 -2
- package/src/utils/extract-alias.ts +1 -1
- package/src/utils/inline-markdown.ts +1 -1
- package/src/utils/time-ticks.ts +1 -1
- package/src/wireframe/parser.ts +1 -1
package/dist/internal.d.cts
CHANGED
|
@@ -1184,8 +1184,15 @@ declare function computeTimeTicks(domainMin: number, domainMax: number, scale: d
|
|
|
1184
1184
|
|
|
1185
1185
|
/**
|
|
1186
1186
|
* Participant types that can be declared via "Name is a type" syntax.
|
|
1187
|
-
|
|
1188
|
-
|
|
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`.
|
|
1194
|
+
*/
|
|
1195
|
+
type ParticipantType = 'default' | 'database' | 'actor' | 'queue' | 'cache';
|
|
1189
1196
|
/**
|
|
1190
1197
|
* A declared or inferred participant in the sequence diagram.
|
|
1191
1198
|
*/
|
package/dist/internal.d.ts
CHANGED
|
@@ -1184,8 +1184,15 @@ declare function computeTimeTicks(domainMin: number, domainMax: number, scale: d
|
|
|
1184
1184
|
|
|
1185
1185
|
/**
|
|
1186
1186
|
* Participant types that can be declared via "Name is a type" syntax.
|
|
1187
|
-
|
|
1188
|
-
|
|
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`.
|
|
1194
|
+
*/
|
|
1195
|
+
type ParticipantType = 'default' | 'database' | 'actor' | 'queue' | 'cache';
|
|
1189
1196
|
/**
|
|
1190
1197
|
* A declared or inferred participant in the sequence diagram.
|
|
1191
1198
|
*/
|