@mikezimm/fps-library-v2
Version:
Library of reusable typescript/javascript functions, interfaces and constants
28 lines • 860 B
TypeScript
/// <reference types="react" />
export interface IFpsMultiSelectDropdownProps {
key: string;
label: string;
description?: string | JSX.Element;
multiSelect?: boolean;
maxVsibleRows?: number;
options: IFpsMultiSelectDropdownOption[];
selectedKeys: string[];
onChange: (selectedKeys: string[], selectedIdx: number[]) => void;
styles?: React.CSSProperties;
className?: string;
labelStyles?: React.CSSProperties;
autoClose?: boolean;
showCount?: boolean;
required?: boolean;
disabled?: boolean;
}
export interface IFpsMultiSelectDropdownOption {
key: string;
text: string;
style?: React.CSSProperties;
icon?: string | JSX.Element;
heading?: boolean;
disabled?: boolean;
category?: string;
}
//# sourceMappingURL=IFpsMultiSelectDropdownProps.d.ts.map