import { Alignment } from "@blueprintjs/core"; import { LabelPosition } from "components/constants"; import IconSVG from "./icon.svg"; import Widget from "./widget"; export const CONFIG = { features: { dynamicHeight: true, }, type: Widget.getWidgetType(), name: "Multi TreeSelect", iconSVG: IconSVG, needsMeta: true, searchTags: ["dropdown"], defaults: { rows: 7, columns: 20, mode: "SHOW_ALL", animateLoading: true, options: [ { label: "Blue", value: "BLUE", children: [ { label: "Dark Blue", value: "DARK BLUE", }, { label: "Light Blue", value: "LIGHT BLUE", }, ], }, { label: "Green", value: "GREEN" }, { label: "Red", value: "RED" }, ], widgetName: "MultiTreeSelect", defaultOptionValue: ["GREEN"], version: 1, isVisible: true, isRequired: false, isDisabled: false, allowClear: false, expandAll: false, placeholderText: "Select option(s)", labelText: "Label", labelPosition: LabelPosition.Top, labelAlignment: Alignment.LEFT, labelWidth: 5, labelTextSize: "0.875rem", }, properties: { derived: Widget.getDerivedPropertiesMap(), default: Widget.getDefaultPropertiesMap(), meta: Widget.getMetaPropertiesMap(), config: Widget.getPropertyPaneConfig(), contentConfig: Widget.getPropertyPaneContentConfig(), styleConfig: Widget.getPropertyPaneStyleConfig(), }, }; export default Widget;