From d4329dc76f4157a5f95c69e849952863ddc739a8 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: Thu, 18 Aug 2022 08:52:30 +0300 Subject: [PATCH] Fixed #2863 - InputNumber: invalid 'placeholder' prop type (TS only) --- src/components/inputnumber/InputNumber.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/inputnumber/InputNumber.d.ts b/src/components/inputnumber/InputNumber.d.ts index efad211c0..ef06f4c3a 100755 --- a/src/components/inputnumber/InputNumber.d.ts +++ b/src/components/inputnumber/InputNumber.d.ts @@ -144,7 +144,7 @@ export interface InputNumberProps { /** * Placeholder text for the input. */ - placeholder?: boolean | undefined; + placeholder?: string | undefined; /** * Identifier of the focus input to match a label defined for the chips. */