update docs

This commit is contained in:
Tuğçe Küçükoğlu 2022-08-08 17:02:07 +03:00
parent 4d7073e3db
commit 4f2041fac6
29 changed files with 276 additions and 175 deletions

View file

@ -137,6 +137,12 @@ const InputNumberProps = [
default: "false",
description: "When present, it specifies that an input field is read-only."
},
{
name: "inputId",
type: "string",
default: "null",
description: "Identifier of the underlying input element."
},
{
name: "inputStyle",
type: "any",
@ -150,16 +156,22 @@ const InputNumberProps = [
description: "Style class of the input field."
},
{
name: "class",
type: "string",
name: "inputProps",
type: "object",
default: "null",
description: "Style class of the component."
description: "Uses to pass all properties of the HTMLInputElement to the focusable input element inside the component."
},
{
name: "style",
type: "any",
name: "incrementButtonProps",
type: "object",
default: "null",
description: "Inline of the component."
description: "Uses to pass all properties of the HTMLButtonElement to increment button inside the component."
},
{
name: "decrementButtonProps",
type: "object",
default: "null",
description: "Uses to pass all properties of the HTMLButtonElement to decrement button inside the component."
}
];