Refactor #2801 - InputNumber

pull/2809/head
Tuğçe Küçükoğlu 2022-07-22 22:03:23 +03:00
parent cfa61ce238
commit 45ef9b3c8e
1 changed files with 6 additions and 6 deletions

View File

@ -138,21 +138,21 @@ export interface InputNumberProps {
*/
readonly?: boolean | undefined;
/**
* Inline style of the input field.
* Identifier of the focus input to match a label defined for the chips.
*/
inputStyle?: any | undefined;
inputId?: string | undefined;
/**
* Style class of the input field.
*/
inputClass?: any | undefined;
/**
* Inline style of the component.
* Inline style of the input field.
*/
style?: any | undefined;
inputStyle?: any | undefined;
/**
* Style class of the element.
*
*/
class?: any | undefined;
inputProps?: object | undefined;
}
export interface InputNumberSlots {