Sha256: 7698d56b5742bce1ad79038f7a00f2ee39f912f44a14a6989aeeaf16ddc0ca2c
Contents?: true
Size: 667 Bytes
Versions: 2
Compression:
Stored size: 667 Bytes
Contents
import { GlobalProps } from "../utilities/globalProps"; declare type MultiLevelSelectProps = { aria?: { [key: string]: string; }; className?: string; data?: { [key: string]: string; }; id?: string; inputDisplay?: "pills" | "none"; inputName?: string; name?: string; returnAllSelected?: boolean; treeData?: { [key: string]: string; }[]; onSelect?: (prop: { [key: string]: any; }) => void; selectedIds?: string[]; variant?: "multi" | "single"; } & GlobalProps; declare const MultiLevelSelect: (props: MultiLevelSelectProps) => JSX.Element; export default MultiLevelSelect;
Version data entries
2 entries across 2 versions & 1 rubygems