piral-forms 0.14.3-beta.3296 → 0.14.3
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/package.json +3 -4
- package/src/types.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "piral-forms",
|
|
3
|
-
"version": "0.14.3
|
|
3
|
+
"version": "0.14.3",
|
|
4
4
|
"description": "Plugin for providing advanced form support in Piral.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"piral",
|
|
@@ -40,10 +40,9 @@
|
|
|
40
40
|
"test": "echo \"Error: run tests from root\" && exit 1"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"piral-core": "0.14.3
|
|
43
|
+
"piral-core": "^0.14.3"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"piral-core": "0.14.x"
|
|
47
|
-
}
|
|
48
|
-
"gitHead": "b8a8c6e0f21e4572f308f64299d1e520b5b553b8"
|
|
47
|
+
}
|
|
49
48
|
}
|
package/src/types.ts
CHANGED
|
@@ -123,7 +123,7 @@ export interface FormCreator<TFormData, TRequiredProps> {
|
|
|
123
123
|
/**
|
|
124
124
|
* Form function for wrapping a component.
|
|
125
125
|
*/
|
|
126
|
-
|
|
126
|
+
<TProps extends TRequiredProps>(component: ComponentType<TProps & FormProps<TFormData>>): FC<TProps>;
|
|
127
127
|
}
|
|
128
128
|
|
|
129
129
|
/**
|