@nativetail/ui 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nativetail/ui",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "",
5
5
  "main": "src/index.ts",
6
6
  "scripts": {},
@@ -36,7 +36,7 @@ type ZodFormBuilderProps<
36
36
  {
37
37
  render?: (props: {
38
38
  control: Control<IValues, any>;
39
- name: keyof T;
39
+ name: keyof IValues;
40
40
  }) => React.ReactElement;
41
41
  } & InputType
42
42
  >