From a529a81397b6c134df1d673223e2e07fb68f198f Mon Sep 17 00:00:00 2001 From: Fabrice Francois Date: Tue, 30 Jan 2024 06:43:26 -0500 Subject: [PATCH] update documentation --- src/components/input/inputNumber/inputNumber.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/components/input/inputNumber/inputNumber.tsx b/src/components/input/inputNumber/inputNumber.tsx index 6cfad1275..d939e7946 100644 --- a/src/components/input/inputNumber/inputNumber.tsx +++ b/src/components/input/inputNumber/inputNumber.tsx @@ -7,8 +7,17 @@ import { useInputProps, useNumberMask, type IUseNumberMaskProps } from '../hooks import { InputContainer, type IInputComponentProps } from '../inputContainer'; export interface IInputNumberProps extends Omit { + /** + * The minimum value that the number input accepts + */ min?: number; + /** + * The maximum value that the number input accepts + */ max?: number; + /** + * Specifies the granularity of the intervals for the input value + */ step?: number; /** * The value of the number input.