2.1.0 • Published 1 year ago

reaselct v2.1.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
1 year ago

🚀 Quick Links

🪄 Features

  • Single Select
  • Multi Select
  • Filtering with Fuzzy Search
  • Async Support
  • Groups Support
  • Light and Dark Theme

📦 Usage

Install the package via NPM:

npm i reaselct --save

then use it like:

import React, { FC, useState } from 'react';
import { Select, SelectOption } from 'reaselct';

const MyComponent: FC = () => {
  const [value, setValue] = useState<string | null>(null);
 
 return (
    <Select
      value={value}
      onChange={setValue}
    >
      <SelectOption value="facebook">facebook</SelectOption>
      <SelectOption value="twitter">twitter</SelectOption>
      <SelectOption value="twitch">twitch</SelectOption>
    </Select>
  );
};

🔭 Development

If you want to run reaselct locally, its super easy!

  • Clone the repo
  • yarn install
  • yarn start
  • Browser opens to Storybook page

❤️ Contributors

Thanks to all our contributors!

2.0.10

2 years ago

2.1.0

1 year ago

2.0.7

2 years ago

2.0.9

2 years ago

2.0.8

2 years ago

2.0.5

2 years ago

2.0.4

2 years ago

2.0.6

2 years ago

2.0.3

2 years ago

2.0.2

2 years ago

1.0.10

2 years ago

2.0.1

2 years ago

2.0.0

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

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