1.0.0 • Published 11 months ago

@w11k/ngx-select v1.0.0

Weekly downloads
1
License
-
Repository
-
Last release
11 months ago

NgxSelect

Simple multiple select with filter.

##Installation Use npm or yarn to install npm install --save @w11k/ngx-select or yarn add @w11k/ngx-select

##Usage Import NgxSelectModule into your AppModule and in your feature module import without forRoot()

@NgModule({ imports: [NgxSelectModule.forRoot()] })
export class AppModule { }

@NgModule({ imports: [NgxSelectModule] })
export class FeatureModule { }

##Customisation You can provide different labes using the Angular dependency injection. Simply provide another implementation of DefaultNgxSelectIntlService

@Injectable()
export class NgxSelectCustomIntlService extends DefaultNgxSelectIntlService {

  allNoneSelect = 'Alle / Keine';
  filterPlaceholder = 'Filter';
  searchFieldPlaceholder = 'Suche';
  selected = 'ausgewählt';

  constructor() {
    super();
  }
}

@NgModule({ imports: [NgxSelectModule.forRoot({intlService: NgxSelectCustomIntlService})] })
export class AppModule { }
1.0.0

11 months ago

0.13.0

4 years ago

0.12.0

5 years ago

0.11.0

5 years ago

0.10.0

5 years ago

0.9.1

5 years ago

0.9.0

5 years ago

0.8.0

5 years ago

0.7.0

6 years ago

0.6.1

6 years ago

0.6.0

6 years ago

0.5.1

6 years ago

0.5.0

6 years ago

0.4.1

6 years ago

0.4.0

6 years ago

0.2.0

6 years ago

0.1.0

6 years ago

0.0.1

6 years ago