valor-software/ng2-bootstrap

View on GitHub
demo/src/app/components/+typeahead/demos/single-world/single-world.html

Summary

Maintainability
Test Coverage
<button type="button" class="btn btn-primary"
        (click)="typeaheadSingleWords = !typeaheadSingleWords">Toggle typeaheadSingleWords
</button>
<pre class="card card-block card-header">
  typeaheadSingleWords: {{typeaheadSingleWords}}
  Model: {{selected | json}}
</pre>
<input [(ngModel)]="selected"
       [typeahead]="states"
       [typeaheadSingleWords]="typeaheadSingleWords"
       class="form-control">