62.73.0 • Published 2 years ago

@imsuresh206/testing v62.73.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

react-combo-box

react-combo-box is a select control component which helps to Narrow down your results by selecting one or more options provided.

Installation

Install react-combo-box with npm

  npm install @imsuresh206/testing

Usage/Examples

Simple Example

import React from 'react';
import { ComboBox } from '@imsuresh206/testing';

const dataProvider = [
  { label: 'Apple', value: 111 },
  { label: 'Pineapple', value: 112 },
  { label: 'Litchi', value: 113 },
  { label: 'Orange', value: 114 },
  { label: 'Banana', value: 115 },
];

export default function App() {
  const [selectedItems, setSelectedItems] = React.useState([]);

  return (
    <div>
      <ComboBox
        dataProvider={dataProvider}
        value={selectedItems}
        onComplete={(value) => {
          setSelectedItems(value);
        }}
      />
    </div>
  );
}

Select items by default

import React from 'react';
import { ComboBox } from '@imsuresh206/testing';

const dataProvider = [
  { label: 'Apple', value: 111 },
  { label: 'Pineapple', value: 112 },
  { label: 'Litchi', value: 113 },
  { label: 'Orange', value: 114 },
  { label: 'Banana', value: 115 },
];

export default function App() {
  const [selectedItems, setSelectedItems] = React.useState([
    { label: 'Apple', value: 111 },
    { label: 'Pineapple', value: 112 },
  ]);

  return (
    <div>
      <ComboBox
        dataProvider={dataProvider}
        value={selectedItems}
        onComplete={(value) => {
          setSelectedItems(value);
        }}
      />
    </div>
  );
}

Props

Common props you may want to specify include:

  • cancelText - text which replaces CANCEL text
  • dataProvider - specify list of options for users to select
  • leftAdornment - icon which appears left side of the Filter box
  • onComplete - handler to get the selected items || [] on submit
  • placeHolder - text which replaces Select... text
  • primaryColor - color String which changes Button and Checkbox color
  • rightAdornment - icon which appears right side of the Filter box
  • selectAllText - text which replaces Select All text
  • submitText - text which replaces OK text
  • value - control the current value

Demo

https://6480578bad52defd0eefe6ae-atroopthpc.chromatic.com/?path=/story/combo-box--simple

Codesandbox

https://codesandbox.io/s/sparkling-breeze-4czv7l

Features

  • Customalizable
  • Cross browser supported
  • Light weighted
  • Search and Filter options

Contributing

Contributions are always welcome! For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

Authors

  • @imsuresh206

Feedback

If you have any feedback, please reach out to us at suresh@softsuave.com

License

MIT License

Copyright (c) 2023 Suresh-SS

62.66.0

2 years ago

62.70.0

2 years ago

62.63.0

2 years ago

62.67.0

2 years ago

62.71.0

2 years ago

62.64.0

2 years ago

62.68.0

2 years ago

62.72.0

2 years ago

62.65.0

2 years ago

62.69.0

2 years ago

62.73.0

2 years ago

62.62.0

2 years ago

62.60.0

2 years ago

62.61.0

2 years ago

62.59.0

2 years ago

62.58.0

2 years ago

62.57.0

2 years ago

62.56.0

2 years ago

62.55.0

2 years ago

62.54.0

2 years ago

62.53.0

2 years ago

62.52.0

2 years ago

62.51.0

2 years ago

62.50.0

2 years ago

62.48.0

2 years ago

62.47.0

2 years ago

62.46.0

2 years ago

62.45.0

2 years ago

62.44.0

2 years ago

62.43.0

2 years ago

62.42.0

2 years ago

62.41.0

2 years ago

62.40.0

2 years ago

62.38.0

2 years ago

62.37.0

2 years ago

62.36.0

2 years ago

62.35.0

2 years ago

62.34.0

2 years ago

62.33.0

2 years ago

62.32.0

2 years ago

62.31.0

2 years ago

62.30.0

2 years ago

62.29.0

2 years ago

62.28.0

2 years ago

62.27.0

2 years ago

62.26.0

2 years ago

62.25.0

2 years ago

62.24.0

2 years ago

62.23.0

2 years ago

62.22.0

2 years ago

62.21.0

2 years ago

62.20.0

2 years ago

62.19.0

2 years ago

62.18.0

2 years ago

62.17.0

2 years ago

62.16.0

2 years ago

62.15.0

2 years ago

62.14.0

2 years ago

62.13.0

2 years ago

62.12.0

2 years ago

62.11.0

2 years ago

62.10.0

2 years ago

62.9.0

2 years ago

62.8.0

2 years ago

62.7.0

2 years ago

62.6.0

2 years ago

62.5.0

2 years ago

62.4.0

2 years ago

62.3.0

2 years ago

62.2.0

2 years ago

62.1.0

2 years ago

62.0.0

2 years ago

61.1.0

2 years ago

61.0.0

2 years ago

60.0.0

2 years ago

59.0.0

2 years ago

58.0.0

2 years ago

57.0.0

2 years ago

56.0.0

2 years ago

55.0.0

2 years ago

54.0.0

2 years ago

53.0.2

2 years ago

53.0.1

2 years ago

53.0.0

2 years ago

52.0.0

2 years ago

51.0.0

2 years ago

50.0.0

2 years ago

49.0.0

2 years ago

48.0.0

2 years ago

47.0.0

2 years ago

46.0.0

2 years ago

45.0.0

2 years ago

44.0.0

2 years ago

43.0.0

2 years ago

42.0.0

2 years ago

41.0.0

2 years ago

40.0.0

2 years ago

39.0.0

2 years ago

38.0.0

2 years ago

37.0.0

2 years ago

36.0.0

2 years ago

35.0.0

2 years ago

34.0.0

2 years ago

33.0.0

2 years ago

32.0.0

2 years ago

31.0.0

2 years ago

30.0.0

2 years ago

29.0.0

2 years ago

28.0.0

2 years ago

27.0.0

2 years ago

26.0.0

2 years ago

25.0.0

2 years ago

24.0.0

2 years ago

23.0.0

2 years ago

22.0.0

2 years ago

21.0.0

2 years ago

20.0.0

2 years ago

19.0.0

2 years ago

18.0.0

2 years ago

17.0.0

2 years ago

16.0.0

2 years ago

15.0.0

2 years ago

14.0.0

2 years ago

13.0.0

2 years ago

12.0.0

2 years ago

11.0.0

2 years ago

10.0.0

2 years ago

9.0.0

2 years ago

8.0.0

2 years ago

7.0.0

2 years ago

6.0.0

2 years ago

5.0.0

2 years ago

4.0.0

2 years ago

3.0.5

2 years ago

3.0.4

2 years ago

3.0.3

2 years ago

3.0.2

2 years ago

3.0.1

2 years ago

3.0.0

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago