How to use the @blueprintjs/select/lib/esm/common.Classes.SELECT_POPOVER function in @blueprintjs/select

To help you get started, we’ve selected a few @blueprintjs/select examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github alephdata / aleph / ui / src / components / common / Suggest.jsx View on Github external
const { inputProps = {}, popoverProps = {} } = this.props;
    const { isOpen, selectedItem } = this.state;
    const { handleKeyDown, handleKeyUp } = listProps;
    const { placeholder = 'Search...' } = inputProps;

    const selectedItemText = selectedItem ? this.props.inputValueRenderer(selectedItem) : '';
    return (
      
        
        <div>
          {listProps.itemList}
        </div>