geoview-core
    Preparing search index...

    Interface CheckboxListProps

    CheckboxList main Props

    interface CheckboxListProps {
        checkedValues: string[];
        listItems: CheckboxListItem[];
        multiselect: boolean;
        onChecked?: (value: string, checked: boolean, allChecked: string[]) => void;
    }
    Index

    Properties

    checkedValues: string[]
    listItems: CheckboxListItem[]
    multiselect: boolean
    onChecked?: (value: string, checked: boolean, allChecked: string[]) => void