1.1.3 • Published 6 years ago

sp-multi-select-dropdown v1.1.3

Weekly downloads
20
License
MIT
Repository
github
Last release
6 years ago

sp-multi-select-dropdown

Installation

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>

Development

To generate all *.js, *.d.ts and *.metadata.json files:

$ npm run build

To lint all *.ts files:

$ npm run lint

License

MIT © srjn45

Change Log

1.1.3

added keywords

1.1.2

added placeholder

1.1.3

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

1.0.7

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago