multi select
All checks were successful
deploy to production / deploy (push) Successful in 51s

This commit is contained in:
2023-09-30 11:55:56 +00:00
parent 8449489f34
commit 5d83400713
14 changed files with 279 additions and 2 deletions

12
types/global.d.ts vendored
View File

@@ -216,6 +216,18 @@ interface FormColumn {
datePickerNotRequired: boolean
datePickerProps: DatePickerProps
datePickerEmailTitle: string
showMultiSelect: boolean
multiSelectNotRequired: boolean
multiSelectPlaceholder: string
multiSelectEmailTitle: string
multiSelectOptions: MultiSelectOptions[]
multiSelectProps: {
additionalAddableValues: boolean
}
}
interface MultiSelectOptions {
name: string
}
interface CustomHTMLElement extends HTMLElement {