PromucFlow_constructor/app/client/src/widgets/DropdownWidget/constants.ts
2021-09-09 20:40:22 +05:30

15 lines
403 B
TypeScript

import { Intent as BlueprintIntent } from "@blueprintjs/core";
import { IconName } from "@blueprintjs/icons";
export type SelectionType = "SINGLE_SELECT" | "MULTI_SELECT";
export interface DropdownOption {
label: string;
value: string;
icon?: IconName;
subText?: string;
id?: string;
onSelect?: (option: DropdownOption) => void;
children?: DropdownOption[];
intent?: BlueprintIntent;
}