UNPKG

@agendize/design-system

Version:
24 lines 601 B
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