@wise/dynamic-flow-types 2.18.4 → 2.19.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.
@@ -32,6 +32,7 @@ export type ButtonLayout = {
32
32
  * @deprecated Only supported on web client
33
33
  */
34
34
  size?: Size;
35
+ pinOrder?: number;
35
36
  };
36
37
  export type ColumnsLayout = {
37
38
  type: 'columns';
@@ -5,8 +5,10 @@ export type Navigation = {
5
5
  * @deprecated Please use back instead
6
6
  */
7
7
  backButton?: BackBehaviour;
8
+ stackBehavior?: StackBehavior;
8
9
  };
9
10
  export type BackBehaviour = {
10
11
  title?: string;
11
12
  action: Action;
12
13
  };
14
+ export type StackBehavior = 'default' | 'remove-previous' | 'remove-all' | 'replace-current';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wise/dynamic-flow-types",
3
- "version": "2.18.4",
3
+ "version": "2.19.0",
4
4
  "description": "Dynamic Flow TypeScript Types",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {