npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

qbs-form-builder

v0.1.21

Published

React Components

Downloads

3,394

Readme

AutoComplete Component

The AutoComplete component offers a user-friendly input experience by presenting suggestions based on their input, allowing for efficient and interactive form filling. This component can work with both local and asynchronous data, and provides single and multi-select functionality.

Table of Contents

Features

  • Single & Multi-select: Allows users to select a single or multiple suggestions.
  • Asynchronous Data Support: Can fetch suggestions from an API or use local data.
  • Pagination: Supports paginated data with a "Load More" feature.
  • Customizable: Provides props for styling, placeholder text, and more.
  • Error Handling: Displays validation errors.

Installation

Before you can use the AutoComplete component, ensure you've imported it properly.


npm install qbs-form-builder
import {AutoComplete} from 'qbs-form-builder';

function ExampleComponent() {
  return (
    <AutoComplete
      label="Search"
      onChange={handleChange}
      getData={fetchSuggestions}
      required={true}
      placeholder="Type to search..."
      type="auto_complete"
      async={true}
    />
  );
}

Props

You can pass the following props to the AutoComplete component:

  • label (string): Label for the input field.
  • onChange (function): Callback when the value changes.
  • getData (function): Asynchronous function to retrieve suggestions. By default, it returns an empty array.
  • data (Array): Local data source for suggestions.
  • errors (object): Validation error messages.
  • required (boolean): Indicates if the input is mandatory. Defaults to false.
  • name (string): Name attribute for the input element.
  • fullWidth (boolean): If true, the input will take the full width of its container. Defaults to false.
  • placeholder (string): Placeholder text for the input.
  • id (string): ID attribute for the input element.
  • type (string): Determines the type of autocomplete (custom_select, auto_complete, or auto_suggestion). Defaults to custom_select.
  • readOnly (boolean): Makes the input read-only if set to true. Defaults to false.
  • disabled (boolean): Disables the input if set to true. Defaults to false.
  • value (string): Value of the input.
  • isMultiple (boolean): If true, allows for multiple selection. Defaults to false.
  • desc (string): The key name for displaying suggestion items. Defaults to 'name'.
  • descId (string): The key name for the unique ID of suggestion items. Defaults to 'id'.
  • singleSelect (boolean): If set to true, adds checkbox functionality in single-select mode.
  • className (string): CSS class for styling the input component.
  • async (boolean): If true, indicates that the getData function is asynchronous.
  • nextBlock (function or boolean): Function for pagination or boolean to determine if pagination is enabled.
  • paginationEnabled (boolean): If true, pagination for suggestions is enabled.

Contribution

If you'd like to contribute to the improvement of the AutoComplete component, please follow the standard contribution guidelines for this project. Your feedback and contributions are valuable!