@agendize/design-system
Version:
Agendize web design system
24 lines • 601 B
TypeScript
import { Mandatory } from "../../../viewModel";
export interface CheckListValue {
label: string;
value: string;
disabled?: boolean;
color?: string;
}
export interface CheckListItem extends CheckListValue {
checked: boolean;
}
export interface CheckListProps {
id: string;
label: string;
modelValue?: string[];
helperMessage?: string;
placeholder?: string;
mandatory: Mandatory;
values: CheckListValue[];
disabled?: boolean;
selectAll?: boolean;
checkboxContainerClass?: string;
sorted?: boolean;
}
//# sourceMappingURL=viewModel.d.ts.map