To install this library, run:
$ npm install sp-multi-select-dropdown --save
and then from your Angular AppModule
:
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:
<!-- You can now use SpMultiSelectDropdown component in app.component.html -->
<h1>
{{title}}
</h1>
<sp-multi-select-dropdown [placeholder]="'placeholder text'" [items]="items" (change)="onChange($event)"></sp-multi-select-dropdown>
To generate all *.js
, *.d.ts
and *.metadata.json
files:
$ npm run build
To lint all *.ts
files:
$ npm run lint
MIT © srjn45
added keywords
added placeholder