From 0f20cb1919b4fbcc6718401cdb2819892fc68e0a 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: Tue, 28 Jun 2022 14:20:46 +0300 Subject: [PATCH] Fixed #2712 - Component: Type error for InputNumber's class --- src/components/inputnumber/InputNumber.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/inputnumber/InputNumber.d.ts b/src/components/inputnumber/InputNumber.d.ts index 4e6d3f0da..f220fe4ac 100755 --- a/src/components/inputnumber/InputNumber.d.ts +++ b/src/components/inputnumber/InputNumber.d.ts @@ -140,19 +140,19 @@ export interface InputNumberProps { /** * Inline style of the input field. */ - inputStyle?: any; + inputStyle?: any | undefined; /** * Style class of the input field. */ - inputClass?: string | undefined; + inputClass?: any | undefined; /** * Inline style of the component. */ - style?: any; + style?: any | undefined; /** * Style class of the element. */ - class?: string | undefined; + class?: any | undefined; } export interface InputNumberSlots {