feat(web/input): number input type

This commit is contained in:
Luke
2022-06-19 14:57:03 +02:00
parent b1056c1246
commit 5183607279
4 changed files with 48 additions and 5 deletions

View File

@@ -12,7 +12,7 @@ import { Row } from "../../../interfaces/dialog";
interface Props {
row: Row;
index: number;
handleChange: (value: string | boolean, index: number) => void;
handleChange: (value: string | number | boolean, index: number) => void;
passwordStates: boolean[];
handlePasswordStates: (index: number) => void;
}