@wise/dynamic-flow-client 1.6.0 → 1.7.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.
@@ -10,6 +10,7 @@ export { default as DynamicHeading } from './heading/DynamicHeading';
10
10
  export { default as DynamicIcon } from './icon/DynamicIcon';
11
11
  export { DynamicInfo, DynamicMarkdown } from './markdown/DynamicMarkdown';
12
12
  export { default as DynamicImage } from './image/DynamicImage';
13
+ export { default as DynamicInstructions } from './instructions/DynamicInstructions';
13
14
  export { default as DynamicLayout } from './DynamicLayout';
14
15
  export { default as DynamicStatusList } from './list/DynamicStatusList';
15
16
  export { default as DynamicLoadingIndicator } from './loadingIndicator/DynamicLoadingIndicator';
@@ -0,0 +1,6 @@
1
+ import { InstructionsLayout } from '@wise/dynamic-flow-types';
2
+ type DynamicInstructionsProps = {
3
+ component: InstructionsLayout;
4
+ };
5
+ declare const DynamicInstructions: ({ component }: DynamicInstructionsProps) => JSX.Element;
6
+ export default DynamicInstructions;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wise/dynamic-flow-client",
3
- "version": "1.6.0",
3
+ "version": "1.7.0",
4
4
  "description": "Dynamic Flow web client",
5
5
  "license": "Apache-2.0",
6
6
  "main": "./build/main.min.js",
@@ -92,7 +92,7 @@
92
92
  "classnames": "2.3.2",
93
93
  "react-webcam": "^7.0.1",
94
94
  "screenfull": "^5.0.2",
95
- "@wise/dynamic-flow-types": "1.2.0"
95
+ "@wise/dynamic-flow-types": "1.3.0"
96
96
  },
97
97
  "prettier": "@transferwise/eslint-config/.prettierrc.js",
98
98
  "scripts": {