1.0.0 • Published 2 years ago

@w11k/ngx-select v1.0.0

Weekly downloads
1
License
-
Repository
-
Last release
2 years 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

2 years ago

0.13.0

5 years ago

0.12.0

6 years ago

0.11.0

6 years ago

0.10.0

6 years ago

0.9.1

6 years ago

0.9.0

6 years ago

0.8.0

6 years ago

0.7.0

7 years ago

0.6.1

7 years ago

0.6.0

7 years ago

0.5.1

7 years ago

0.5.0

7 years ago

0.4.1

7 years ago

0.4.0

7 years ago

0.2.0

7 years ago

0.1.0

7 years ago

0.0.1

7 years ago