Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/srjn45/sp-multi-select-dropdown
Dropdown with checkbox list in material design for Angular 5
https://github.com/srjn45/sp-multi-select-dropdown
angular5 checkboxlist chips multiselect
Last synced: 21 days ago
JSON representation
Dropdown with checkbox list in material design for Angular 5
- Host: GitHub
- URL: https://github.com/srjn45/sp-multi-select-dropdown
- Owner: srjn45
- License: mit
- Created: 2018-03-05T07:44:40.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-07T05:19:09.000Z (over 6 years ago)
- Last Synced: 2024-12-15T17:44:26.338Z (about 1 month ago)
- Topics: angular5, checkboxlist, chips, multiselect
- Language: JavaScript
- Size: 122 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sp-multi-select-dropdown
Dropdown with checkbox list in material design for Angular 5## Features
- Multi Select with checkboxes
- selected items appear as chips
- removing chip deselect the item
- horizontal scroll buttons for chips## Installation
To install this library, run:
```bash
$ npm install sp-multi-select-dropdown --save
```and then from your Angular `AppModule`:
```typescript
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';import { AppComponent } from './app.component';
// Import SpMultiSelectDropdownModule
import { SpMultiSelectDropdownModule } from 'sp-multi-select-dropdown';@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,// Specify SpMultiSelectDropdownModule as an import
SpMultiSelectDropdownModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
```Once your library is imported, you can use its SpMultiSelectDropdown in your Angular application:
```xml
{{title}}```
## License
MIT © [srjn45](mailto:[email protected])