@wise/dynamic-flow-client 2.1.3 → 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.
- package/build/main.js +61 -33
- package/build/main.min.js +1 -1
- package/build/types/formControl/FormControl.d.ts +1 -0
- package/build/types/jsonSchemaForm/controlFeedback/ControlFeedback.d.ts +1 -0
- package/build/types/jsonSchemaForm/schemaFormControl/SchemaFormControl.d.ts +1 -0
- package/package.json +2 -2
|
@@ -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'];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wise/dynamic-flow-client",
|
|
3
|
-
"version": "2.1.
|
|
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.
|
|
95
|
+
"@wise/dynamic-flow-types": "2.0.1"
|
|
96
96
|
},
|
|
97
97
|
"prettier": "@transferwise/eslint-config/.prettierrc.js",
|
|
98
98
|
"scripts": {
|