@eccenca/gui-elements
Version:
GUI elements based on other libraries, usable in React application, written in Typescript.
13 lines (11 loc) • 317 B
text/typescript
export interface SuggestFieldItemRendererModifierProps {
active: boolean;
disabled?: boolean;
// The width styles that should be given to the rendered option items
styleWidth?: IElementWidth;
highlightingEnabled: boolean;
}
interface IElementWidth {
minWidth: string;
maxWidth: string;
}