ComboboxMultiSelectPopover API

API reference docs for theComboboxMultiSelectPopovercomponent. For examples and details on the usage of this component, visit the component demo page.

Props

PropTypeDescriptionDefault
shouldUsePortal?booleanDetermines whether the Popover should be rendered in a React Portal. If true, the Popover will be rendered outside the DOM hierarchy of the parent component.true
children?React.ReactNodeContent of the ComboboxList with the options._
inputAppearance?"SearchInput" | "TextInput" | "none"Controls whether to include or exclude an input inside the mobile popover / sheet."SearchInput"
inputPlaceholder?stringThe placeholder text for the input inside the mobile popover / sheet."Search..."
draftSaveButton?(props: { triggerProps: { onClick: () => void } }) => React.ReactNodeUsed to render the mobile-only confirmation button, while in draft-to-save mode. Passes triggerProps that must be spread on the trigger element to handle the action. This is a mobile-only prop._