Add dynamic value to input

This commit is contained in:
Tilen Komel
2024-08-23 18:09:16 +02:00
parent cd0056783c
commit 06c20fa950
2 changed files with 3 additions and 1 deletions

View File

@@ -9,6 +9,7 @@ import { Controller, type FieldValues } from "react-hook-form";
export interface InputFieldProps<T> extends BaseFormBuilderProps<T> {
type: "text" | "number" | "password";
properties?: {
value?: string;
prefix?: string;
suffix?: string;
step?: number;

View File

@@ -31,7 +31,7 @@ export interface InputProps
}
const Input = React.forwardRef<HTMLInputElement, InputProps>(
({ className, variant, prefix, suffix, action, ...props }, ref) => {
({ className, value, variant, prefix, suffix, action, ...props }, ref) => {
return (
<div className="relative w-full">
{prefix && (
@@ -45,6 +45,7 @@ const Input = React.forwardRef<HTMLInputElement, InputProps>(
className,
inputVariants({ variant }),
)}
value={value}
ref={ref}
{...props}
/>