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

@@ -30,10 +30,10 @@ interface Props {
// data: {
// heading: "Police locker",
// rows: [
// { type: "input", label: "Locker number" },
// { type: "input", label: "Locker number", placeholder: "420" },
// { type: "checkbox", label: "Some checkbox" },
// { type: "input", label: "Locker PIN", password: true, icon: "lock" },
// { type: "checkbox", label: "Some other checkbox" },
// { type: "checkbox", label: "Some other checkbox", checked: true },
// {
// type: "select",
// label: "Locker type",
@@ -43,7 +43,7 @@ interface Props {
// { value: "option3", label: "Option 3" },
// ],
// },
// { type: "number", label: "Number counter" },
// { type: "number", label: "Number counter", default: 12 },
// ],
// },
// },