@nativetail/ui 0.1.9 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -32,11 +32,11 @@ type ZodFormBuilderProps<
|
|
32
32
|
schema: T;
|
33
33
|
inputs?: Partial<
|
34
34
|
Record<
|
35
|
-
keyof
|
35
|
+
keyof IValues,
|
36
36
|
{
|
37
37
|
render?: (props: {
|
38
38
|
control: Control<IValues, any>;
|
39
|
-
name: keyof
|
39
|
+
name: keyof IValues;
|
40
40
|
}) => React.ReactElement;
|
41
41
|
} & InputType
|
42
42
|
>
|