uidex 0.3.0 → 0.4.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.
@@ -33,11 +33,16 @@ interface Route {
33
33
  path: string;
34
34
  page: string;
35
35
  }
36
+ interface FlowStep {
37
+ entityId: string;
38
+ action?: string;
39
+ }
36
40
  interface Flow {
37
41
  kind: "flow";
38
42
  id: string;
39
43
  loc: Location;
40
44
  touches: string[];
45
+ steps: FlowStep[];
41
46
  }
42
47
  interface Page extends EntityWithMetaBase {
43
48
  kind: "page";
@@ -179,6 +184,7 @@ interface OverlayShowOptions {
179
184
  borderStyle?: string;
180
185
  borderWidth?: number;
181
186
  fillOpacity?: number;
187
+ backdrop?: boolean;
182
188
  }
183
189
 
184
190
  type Corner = "top-left" | "top-right" | "bottom-left" | "bottom-right";
@@ -33,11 +33,16 @@ interface Route {
33
33
  path: string;
34
34
  page: string;
35
35
  }
36
+ interface FlowStep {
37
+ entityId: string;
38
+ action?: string;
39
+ }
36
40
  interface Flow {
37
41
  kind: "flow";
38
42
  id: string;
39
43
  loc: Location;
40
44
  touches: string[];
45
+ steps: FlowStep[];
41
46
  }
42
47
  interface Page extends EntityWithMetaBase {
43
48
  kind: "page";
@@ -179,6 +184,7 @@ interface OverlayShowOptions {
179
184
  borderStyle?: string;
180
185
  borderWidth?: number;
181
186
  fillOpacity?: number;
187
+ backdrop?: boolean;
182
188
  }
183
189
 
184
190
  type Corner = "top-left" | "top-right" | "bottom-left" | "bottom-right";