feature: fix label manager popup padding & switch input to ControlledInput
This commit is contained in:
@ -83,6 +83,7 @@ type InputProps = {
|
||||
floatingLabel?: boolean;
|
||||
placeholder?: string;
|
||||
icon?: JSX.Element;
|
||||
type?: string;
|
||||
autocomplete?: boolean;
|
||||
id?: string;
|
||||
name?: string;
|
||||
@ -96,6 +97,7 @@ const Input = React.forwardRef(
|
||||
{
|
||||
width = 'auto',
|
||||
variant = 'normal',
|
||||
type = 'text',
|
||||
autocomplete,
|
||||
label,
|
||||
placeholder,
|
||||
@ -125,6 +127,7 @@ const Input = React.forwardRef(
|
||||
hasValue={hasValue}
|
||||
ref={$ref}
|
||||
id={id}
|
||||
type={type}
|
||||
name={name}
|
||||
onClick={onClick}
|
||||
autoComplete={autocomplete ? 'on' : 'off'}
|
||||
|
Reference in New Issue
Block a user