feat(web/input): support default values (#66)

* feat(web/dialog): Support placeholders

* feat(web/dialog): Support default values

* feat(web/dialog): Support default state of checkbox

* feat(web/dialog): Support placeholder for number input

* feat(web/dialog): Support default value for select
This commit is contained in:
ANTOND
2022-08-05 15:10:37 +02:00
committed by GitHub
parent 14a04c4b68
commit 1990e3792f
6 changed files with 38 additions and 5 deletions

View File

@@ -5,6 +5,9 @@ type RowType = "input" | "checkbox" | "select" | "number";
export interface Row {
type: RowType;
label: string;
placeholder?: string;
default?: string | number;
checked?: boolean;
options?: { value: string; label?: string }[];
password?: boolean;
icon?: IconProp;