@pygmalionjs/pygmalion 0.2.35 → 0.2.36

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.
@@ -1,4 +1,4 @@
1
- import { F as s, N as a, e as r, s as i, a as t } from "./App-phpKmf_I.js";
1
+ import { F as s, N as a, e as r, s as i, a as t } from "./App-BE2sN74X.js";
2
2
  export {
3
3
  s as FrozenRoutePreviewView,
4
4
  a as NodeModel,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pygmalionjs/pygmalion",
3
- "version": "0.2.35",
3
+ "version": "0.2.36",
4
4
  "description": "Code-backed DOM design sandbox and visual QA editor",
5
5
  "license": "UNLICENSED",
6
6
  "publishConfig": {
package/types.d.ts CHANGED
@@ -1196,6 +1196,10 @@ export interface StoryboardGraphEdgeInput {
1196
1196
  id?: string;
1197
1197
  from: string;
1198
1198
  to: string;
1199
+ /** Screen or node identities that inherit this outgoing route connection. */
1200
+ fromScope?: readonly string[];
1201
+ /** Screen or node identities that inherit this incoming route connection. */
1202
+ toScope?: readonly string[];
1199
1203
  kind?: string;
1200
1204
  label?: string;
1201
1205
  }
@@ -1228,6 +1232,10 @@ export interface StoryboardGraphEdge {
1228
1232
  id: string;
1229
1233
  from: string;
1230
1234
  to: string;
1235
+ /** Canonical nodes that expose this edge as an outgoing connection. */
1236
+ fromNodeIds?: readonly string[];
1237
+ /** Canonical nodes that expose this edge as an incoming connection. */
1238
+ toNodeIds?: readonly string[];
1231
1239
  kind?: string;
1232
1240
  label?: string;
1233
1241
  origin: StoryboardGraphEdgeOrigin;