@wise/dynamic-flow-client 2.1.4 → 2.1.5

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.
@@ -133,6 +133,7 @@ type FormControlProps = {
133
133
  type?: (typeof FormControlType)[keyof typeof FormControlType];
134
134
  uploadProps: UploadProps;
135
135
  value: Date | string | number | boolean | null;
136
+ describedBy: string | undefined;
136
137
  };
137
138
  type FormControlState = {
138
139
  prevValue: FormControlProps['value'];
@@ -17,6 +17,7 @@ type ValidationMessages = {
17
17
  required?: string;
18
18
  };
19
19
  export type ControlFeedbackProps = {
20
+ id: string | undefined;
20
21
  changed: boolean;
21
22
  blurred: boolean;
22
23
  focused: boolean;
@@ -20,5 +20,6 @@ export type SchemaFormControlProps = {
20
20
  onBlur?: () => void;
21
21
  onSearchChange?: (searchValue: string) => void;
22
22
  disabled?: boolean;
23
+ describedBy?: string | undefined;
23
24
  };
24
25
  export default SchemaFormControl;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wise/dynamic-flow-client",
3
- "version": "2.1.4",
3
+ "version": "2.1.5",
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": "2.0.0"
95
+ "@wise/dynamic-flow-types": "2.0.1"
96
96
  },
97
97
  "prettier": "@transferwise/eslint-config/.prettierrc.js",
98
98
  "scripts": {