yarramate 1.29.0 → 1.30.1
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/adapters/visual/wire.d.ts +7 -0
- package/dist/adapters/visual/workspace-model.js +1 -0
- package/dist/visual-app/assets/{elk.bundled-D0nh78xF.js → elk.bundled-D88SKdhr.js} +1 -1
- package/dist/visual-app/assets/index-CZSChZa6.css +1 -0
- package/dist/visual-app/assets/index-DCXoFh-5.js +373 -0
- package/dist/visual-app/index.html +2 -2
- package/dist/visual-app-lib/editor.js +28448 -28386
- package/dist/visual-app-lib/styles.css +1 -1
- package/dist/visual-app-lib/types/adapters/visual/wire.d.ts +7 -0
- package/dist/visual-app-lib/types/visual-app/App.d.ts +3 -1
- package/dist/visual-app-lib/types/visual-app/graph-canvas.d.ts +30 -1
- package/dist/visual-app-lib/types/visual-app/mount.d.ts +8 -1
- package/dist/visual-app-lib/types/visual-app/subject-form.d.ts +8 -0
- package/docs/CONSUMING-YARRAMATE.md +6 -0
- package/package.json +1 -1
- package/dist/visual-app/assets/index-BQf7XNmj.css +0 -1
- package/dist/visual-app/assets/index-BoJ8WvK_.js +0 -373
|
@@ -62,6 +62,13 @@ export interface VisualNextQuestion extends VisualQuestionEntry {
|
|
|
62
62
|
export interface VisualInterrogationOverlay {
|
|
63
63
|
/** `id@version` of the catalogue that asked. */
|
|
64
64
|
readonly catalogue: string;
|
|
65
|
+
/**
|
|
66
|
+
* Every catalogue in the composed set, `id@version` each, in resolution
|
|
67
|
+
* order (#530, ADR 0129) - present only when composition happened, the way
|
|
68
|
+
* the report carries it. The footer names them all; `catalogue` alone is
|
|
69
|
+
* the base and stays for readers that predate this.
|
|
70
|
+
*/
|
|
71
|
+
readonly catalogues?: readonly string[];
|
|
65
72
|
/** Engine condition-semantics version (ADR 0106), carried so a consumer
|
|
66
73
|
* can tell "the model moved" from "the engine moved". */
|
|
67
74
|
readonly semantics: string;
|