Fixed #4106 - InputText: size property

This commit is contained in:
Tuğçe Küçükoğlu 2023-07-04 12:28:31 +03:00
parent 3d49b11814
commit 019f1607e9
3 changed files with 23 additions and 2 deletions

View file

@ -38,6 +38,10 @@ export interface InputTextProps extends InputHTMLAttributes {
* Value of the component.
*/
modelValue?: Nullable<string>;
/**
* Defines the size of the component.
*/
size?: 'small' | 'large' | undefined;
/**
* Uses to pass attributes to DOM elements inside the component.
* @type {InputTextPassThroughOptions}