2.0.4 • Published 7 years ago

ng-neo-completer v2.0.4

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

ng-neo-completer

Autocomplete with object instead of strings

Installation

To install this library, run:

$ npm install ng-neo-completer --save

and then from your Angular AppModule:

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';

// Import library
import { NeoCompleterModule } from 'ng-neo-completer';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,

    // Specify your library as an import
    NeoCompleterModule.forRoot()
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

// Import in child modules for use components
import { NeoCompleterModule } from 'ng-neo-completer';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,

    // Specify library as an import
    NeoCompleterModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class ChildModule { }

// Import NeoCompleterService and use it with DTO
import { NeoCompleterService } from 'ng-neo-completer';

protected concreteCompleterService: NeoCompleterService<ConcreteDTO>;

License

MIT © Neocomplexx

2.0.4

7 years ago

2.0.3

7 years ago

2.0.2

7 years ago

2.0.1

7 years ago

2.0.0

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

8 years ago

0.1.0

8 years ago