RubyGems
npm
PyPI
Organizations
Log in
Sign up
npm
@nativetail/ui
Versions diffs
0.2.0 → 0.2.1
@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.
Files changed (2)
hide
show
package/package.json
+1
-1
package/src/components/form-builder/index.tsx
+1
-1
package/package.json
CHANGED
Viewed
@@ -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": {},
package/src/components/form-builder/index.tsx
CHANGED
Viewed
@@ -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
>