@unizap/uniui 1.0.18 → 1.0.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- export interface ITextInputProps extends React.InputHTMLAttributes<HTMLInputElement> {
1
+ export interface ITextInputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'size'> {
2
2
  placeholder?: string;
3
3
  value?: string;
4
4
  onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
@@ -12,4 +12,6 @@ export interface ITextInputProps extends React.InputHTMLAttributes<HTMLInputElem
12
12
  error?: string;
13
13
  maxLength?: number;
14
14
  label?: string;
15
+ variant?: 'outlined' | 'filled';
16
+ size?: 'small' | 'medium' | 'large';
15
17
  }