feat(web/input): multi-select row

This commit is contained in:
Luke
2023-01-15 11:54:15 +01:00
parent 8c4d770e46
commit 779ed8dd07
3 changed files with 45 additions and 20 deletions

View File

@@ -23,9 +23,9 @@ export interface ICheckbox {
export type OptionValue = { value: string; label?: string };
export interface ISelect {
type: 'select';
type: 'select' | 'multi-select';
label: string;
default?: string;
default?: string | string[];
options: Array<OptionValue>;
disabled?: boolean;
description?: string;