Skip to content

Commit

Permalink
update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabricevladimir committed Jan 30, 2024
1 parent df5cfb1 commit a529a81
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/components/input/inputNumber/inputNumber.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,17 @@ import { useInputProps, useNumberMask, type IUseNumberMaskProps } from '../hooks
import { InputContainer, type IInputComponentProps } from '../inputContainer';

export interface IInputNumberProps extends Omit<IInputComponentProps, 'onChange' | 'value' | 'step' | 'min' | 'max'> {
/**
* 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.
Expand Down

0 comments on commit a529a81

Please sign in to comment.