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

ng-ws-select-search-ahead

v1.0.0

Published

A customizable select/multiselect for Angular 17 applications.

Downloads

57

Readme

NgWsSelectSearchAhead

This select/multiselect is a powerful and customizable Angular component for creating searchable dropdown selects with advanced features.

Features

  • Single and multi-select options
  • Search functionality with highlighting
  • Customizable styling
  • Loading state support
  • Keyboard navigation (Enter to open, Escape to close)

Installation

npm install ng-ws-select-search-ahead

Usage

  <ng-ws-select-search-ahead
  optionLabel="name"
  [listItems]="items"
  [pending]="pendingState"
  [isDisabled]="disabledState"
  [isMultiple]="true"

  (selectionChange)="onSelectionChange($event)"
  (onToggleAllChange)="onToggleSelectChange($event)"
  (onSearchInputChange)="onSeearchInputChange($event)"
  (onItemClicked)="onClick($event)"
  (onClose)="onClose($event)"
/>

Inputs

| Input | Type | Default | Description | |----------------------|-----------|-------------|-------------| | listItems | any[] | Required | Array of items to display in the dropdown | | optionLabel | string | Required | Property name to use as the display label for each item | | pending | boolean | false | Shows loading state when true | | isDisabled | boolean | false | Disables the component when true | | isMultiple | boolean | false | Enables multi-select when true | | hideCheckboxes | boolean | false | Hides checkboxes when true | | placeHolder | string | 'Select' | Placeholder text | | loadingLabel | string | 'Loading' | Text to display during loading state | | loadingIcon | string | '' | URL for custom loading icon | | noDataLabel | string | 'No Items' | Text to display when no items match the search | | wrapperClasses | string | '' | Additional CSS classes for the wrapper | | boxClasses | string | '' | Additional CSS classes for the select box | | boxTextClasses | string | '' | Additional CSS classes for the box text | | overlayClasses | string | '' | Additional CSS classes for the dropdown overlay | | searchWrapperClasses | string | '' | Additional CSS classes for the search wrapper | | checkboxClasses | string | '' | Additional CSS classes for checkboxes | | searchInputWrapperClasses | string | '' | Additional CSS classes for the search input wrapper | | closeBtnClasses | string | '' | Additional CSS classes for the close button | | itemClasses | string | '' | Additional CSS classes for list items | | loaderClasses | string | '' | Additional CSS classes for the loader | | itemLabelClasses | string | '' | Additional CSS classes for item labels | | noDataClasses | string | '' | Additional CSS classes for the no data message | | noDataTextClasses | string | '' | Additional CSS classes for the no data text |

Outputs

| Output | Type | Description | |---------------------|------------------------|-------------| | selectionChange | EventEmitter<any | any[]> | Emits when the selection changes | | onItemClicked | EventEmitter | Emits when an item is clicked | | onToggleAllChange | EventEmitter | Emits when the "Select All" checkbox changes | | onSearchInputChange | EventEmitter | Emits when the search input changes | | onClose | EventEmitter | Emits when the dropdown closes |

Customization

This select/multiselect offers extensive customization options through CSS classes.
You can pass additional classes to various parts of the component to adjust its appearance to match your application's design.