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

normsup-ng-select

v1.0.1

Published

[![npm version](https://badge.fury.io/js/%40ng-select%2Fng-select.svg)](https://badge.fury.io/js/%40ng-select%2Fng-select) [![Build Status][travis-badge]][travis-badge-url] [![Coverage Status][coveralls-image]][coveralls-url] [![gzip bundle size](http://i

Downloads

4

Readme

npm version Build Status Coverage Status gzip bundle size

Angular ng-select - Lightweight all in one UI Select, Multiselect and Autocomplete

See Demos or try in Stackblitz


Versions

| Angular| ng-select| | ------|:------:| | v6.x | v2.x | | v5.x | v1.x |


Table of contents

Features

  • [x] Custom binding to property or object
  • [x] Custom option, label, header and footer templates
  • [x] Virtual Scroll support with large data sets (>5000 items).
  • [x] Infinite scroll
  • [x] Keyboard navigation
  • [x] Multiselect
  • [x] Flexible autocomplete with client/server filtering
  • [x] Custom search
  • [x] Custom tags
  • [x] Append to
  • [x] Group items
  • [x] Output events
  • [x] Accessibility
  • [x] Good base functionality test coverage
  • [x] Themes

Warning

Library is under active development and may have API breaking changes for subsequent major versions after 1.0.0.

Getting started

Step 1: Install ng-select:

NPM

npm install --save @ng-select/ng-select

YARN

yarn add @ng-select/ng-select

Step 2: Import the NgSelectModule and angular FormsModule module:

import { NgSelectModule } from '@ng-select/ng-select';
import { FormsModule } from '@angular/forms';

@NgModule({
  declarations: [AppComponent],
  imports: [NgSelectModule, FormsModule],
  bootstrap: [AppComponent]
})
export class AppModule {}

Step 3: Include a theme:

To allow customization and theming, ng-select bundle includes only generic styles that are necessary for correct layout and positioning. To get full look of the control, include one of the themes in your application. If you're using the Angular CLI, you can add this to your styles.scss or include it in .angular-cli.json (Angular v5 and below) or angular.json (Angular v6 onwards).

@import "~@ng-select/ng-select/themes/default.theme.css";
// ... or 
@import "~@ng-select/ng-select/themes/material.theme.css";

Step 4 (Optional): Configuration

You can also set global configuration and localization messages by injecting NgSelectConfig service, typically in your root component, and customize the values of its properties in order to provide default values.

  constructor(private config: NgSelectConfig) {
      this.config.notFoundText = 'Custom not found';
  }

SystemJS

If you are using SystemJS, you should also adjust your configuration to point to the UMD bundle.

In your systemjs config file, map needs to tell the System loader where to look for ng-select:

map: {
  '@ng-select/ng-select': 'node_modules/@ng-select/ng-select/bundles/ng-select.umd.js',
}

API

Inputs

| Input | Type | Default | Required | Description | | ------------- | ------------- | ------------- | ------------- | ------------- | | [addTag] | boolean \| ((term: string) => any \| Promise<any>) | false | no | Allows to create custom options. | | addTagText | string | Add item | no | Set custom text when using tagging | | appendTo | string | null | no | Append dropdown to body or any other element using css selector. For correct positioning body should have position:relative | | bindValue | string | - | no | Object property to use for selected model. By default binds to whole object. | | bindLabel | string | label | no | Object property to use for label. Default label | | [closeOnSelect] | boolean | true | no | Whether to close the menu when a value is selected | | clearAllText | string | Clear all | no | Set custom text for clear all icon title | | [clearable] | boolean | true | no | Allow to clear selected value. Default true| | [clearOnBackspace] | boolean | true | no | Clear selected values one by one when clicking backspace. Default true| | [compareWith] | (a: any, b: any) => boolean | (a, b) => a === b | no | A function to compare the option values with the selected values. The first argument is a value from an option. The second is a value from the selection(model). A boolean should be returned. | | dropdownPosition | bottom | top | auto | auto | no | Set the dropdown position on open | | [excludeGroupsFromDefaultSelection] | boolean | false | no | Exclude group from default selection when selectableGroup is true. Default false. | | [groupBy] | string | Function | null | no | Allow to group items by key or function expression | | [groupValue] | (groupKey: string, cildren: any[]) => Object | - | no | Function expression to provide group value | | [selectableGroup] | boolean | false | no | Allow to select group when groupBy is used | | [selectableGroupAsModel] | boolean | true | no | Indicates whether to select all children or group itself | | [items] | Array<any> | [] | yes | Items array | | [loading] | boolean | - | no | You can set the loading state from the outside (e.g. async items loading) | | loadingText | string | Loading... | no | Set custom text when for loading items | | labelForId | string | - | no | Id to associate control with label. | | [markFirst] | boolean | true | no | Marks first item as focused when opening/filtering. | | [isOpen] | boolean | - | no | Allows manual control of dropdown opening and closing. True - won't close. False - won't open. | | maxSelectedItems | number | none | no | When multiple = true, allows to set a limit number of selection. | | [hideSelected] | boolean | false | no | Allows to hide selected items. | | [multiple] | boolean | false | no | Allows to select multiple items. | | notFoundText | string | No items found | no | Set custom text when filter returns empty result | | placeholder | string | - | no | Placeholder text. | | [searchable] | boolean | true | no | Allow to search for value. Default true| | [searchFn] | (term: string, item: any) => boolean | null | no | Allow to filter by custom search function | | [trackByFn] | (item: any) => any | null | no | Provide custom trackBy function | | [clearSearchOnAdd] | boolean | true | no | Clears search input when item is selected. Default true. Default false when closeOnSelect is false | | [selectOnTab] | boolean | false | no | Select marked dropdown item using tab. Default false| | [openOnEnter] | boolean | true | no | Open dropdown using enter. Default true| | [typeahead] | Subject | - | no | Custom autocomplete or advanced filter. | | typeToSearchText | string | Type to search | no | Set custom text when using Typeahead | | [virtualScroll] | boolean | false | no | Enable virtual scroll for better performance when rendering a lot of data | | autoCorrect | string | off | no | Allows control of the autocorrect attribute. | | autoCapitalize | string | off | no | Allows control of the autocapitalize attribute. |

Outputs

| Output | Description | | ------------- | ------------- | | (add) | Fired when item is added while [multiple]="true". Outputs added item | | (blur) | Fired on select blur | | (change) | Fired on model change. Outputs whole model | | (close) | Fired on select dropdown close | | (clear) | Fired on clear icon click | | (focus) | Fired on select focus | | (search) | Fired while typing search term. Outputs search term with filtered items | | (open) | Fired on select dropdown open | | (remove) | Fired when item is removed while [multiple]="true" | | (scroll) | Fired when scrolled. Provides the start and end index of the currently available items. Can be used for loading more items in chunks before the user has scrolled all the way to the bottom of the list. | | (scrollToEnd) | Fired when scrolled to the end of items. Can be used for loading more items in chunks. |

Methods

Name | Description | | ------------- | ------------- | | open | Opens the select dropdown panel | | close | Closes the select dropdown panel | | focus | Focuses the select element |

Other

Name | Type | Description | | ------------- | ------------- | ------------- | | [ngOptionHighlight] | directive | Highlights search term in option. Accepts search term. Should be used on option element. | | NgSelectConfig | configuration | Configuration provider for the NgSelect component. You can inject this service and provide application wide configuration. | | SELECTION_MODEL_FACTORY | service | DI token for SelectionModel implementation. You can provide custom implementation changing selection behaviour. |

Custom selection logic

Ng-select allows to provide custom selection implementation using SELECTION_MODEL_FACTORY. To override default logic provide your factory method in your angular module.

// app.module.ts
providers: [
    { provide: SELECTION_MODEL_FACTORY, useValue: <SelectionModelFactory>CustomSelectionFactory }
]

// selection-model.ts
export function CustomSelectionFactory() {
    return new CustomSelectionModel();
}

export class CustomSelectionModel implements SelectionModel {
    ...
}

Change Detection

Ng-select component implements OnPush change detection which means the dirty checking checks for immutable data types. That means if you do object mutations like:

this.items.push({id: 1, name: 'New item'})

Component will not detect a change. Instead you need to do:

this.items = [...this.items, {id: 1, name: 'New item'}];

This will cause the component to detect the change and update. Some might have concerns that this is a pricey operation, however, it is much more performant than running ngDoCheck and constantly diffing the array.

Custom styles

If you are not happy with default styles you can easily override them with increased selector specificity or creating your own theme. This applies if you are using no ViewEncapsulation or adding styles to global stylesheet. E.g.

<ng-select class="custom"></ng-select>
.ng-select.custom {
    border:0px;
    min-height: 0px;
    border-radius: 0;
}
.ng-select.custom .ng-select-container  {            
    min-height: 0px;
    border-radius: 0;
}

If you are using ViewEncapsulation, your could use special ::ng-deep selector which will prevent scoping for nested selectors altough this is more of a workaround and we recommend using solution described above.

.ng-select.custom ::ng-deep .ng-select-container  {            
    min-height: 0px;
    border-radius: 0;
}

WARNING: Keep in mind that ng-deep is deprecated and there is no alternative to it yet. See Here.

Validation state

By default when you use reactive forms validators or template driven forms validators css class ng-invalid will be applied on ng-select. You can show errors state by adding custom css style

ng-select.ng-invalid.ng-touched .ng-select-container {
    border-color: #dc3545;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px #fde6e8;
}

Contributing

Contributions are welcome. You can start by looking at issues with label Help wanted or creating new Issue with proposal or bug report. Note that we are using https://conventionalcommits.org/ commits format.

Development

Perform the clone-to-launch steps with these terminal commands.

Run demo page in watch mode

git clone https://github.com/ng-select/ng-select
cd ng-select
yarn
yarn run start

Testing

yarn run test
or
yarn run test:watch

Release

To release to npm just run ./release.sh, of course if you have permissions ;)

Inspiration

This component is inspired by React select and Virtual scroll. Check theirs amazing work and components :)