@highoutput/hds-combobox
TypeScript icon, indicating that this package has built-in type declarations

0.1.3 • Public • Published

Getting started

We aim to build a library of custom ReactJS components that implements our unique UI design conventions. The ReactJS components will be based primarily on Chakra UI components. React Storybook will be used for documentation and testing.

Commands

To install package, use:

npm i @highoutput/hds-combobox

Usage

import { ThemeProvider, Box, Icon } from '@highoutput/hds';
import { Combobox } from '@highoutput/hds-comoobox';
import { SearchIcon } from './icons';

export default function Component() {
  return (
    <ThemeProvider>
      <Box h="500px">
        <Combobox
          options={[
            { value: 1, label: 'John' },
            { value: 2, label: 'Paul' },
            { value: 3, label: 'Mark' },
            { value: 4, label: 'Mary' },
            { value: 5, label: 'Jake' },
          ]}
          placeholder="Select something"
          onChange={function (newValue) {
            console.log(newValue);
          }}
          zIndex={9}
          leftIcon={<Icon as={SearchIcon} w={5} h={5} />}
          isClearable
        />
      </Box>
    </ThemeProvider>
  );
}

Readme

Keywords

none

Package Sidebar

Install

npm i @highoutput/hds-combobox

Weekly Downloads

1

Version

0.1.3

License

MIT

Unpacked Size

78.3 kB

Total Files

22

Last publish

Collaborators

  • ccpacillos
  • rrmadjos
  • glvnzn
  • highoutputventures
  • highoutputdev
  • calvojp
  • boniqx09