From 45ef9b3c8e9aa6d78cc0a94aedc2c45ab9064d14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Fri, 22 Jul 2022 22:03:23 +0300 Subject: [PATCH] Refactor #2801 - InputNumber --- src/components/inputnumber/InputNumber.d.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/inputnumber/InputNumber.d.ts b/src/components/inputnumber/InputNumber.d.ts index f220fe4ac..d57811b96 100755 --- a/src/components/inputnumber/InputNumber.d.ts +++ b/src/components/inputnumber/InputNumber.d.ts @@ -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 {