# ng-qauto-complete

> > `npm install ng-qcontrols`

Latest version **0.1.0** (published 2016-09-30) · ISC license · 0 weekly downloads

## Install

```sh
npm install ng-qauto-complete
pnpm add ng-qauto-complete
yarn add ng-qauto-complete
bun add ng-qauto-complete
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.0 |
| Published | 2016-09-30 |
| First published | 2016-09-30 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | wk |
| Maintainers | wearetherock |

## Links

- npm: https://www.npmjs.com/package/ng-qauto-complete
- npm.io page: https://npm.io/package/ng-qauto-complete

## Recent versions

- 0.1.0 (latest) — 2016-09-30

## README

## QAutoComplete

> `npm install ng-qcontrols`

## Example 

```typescript
import { Component } from "@angular/core";

@Component({
    selector: "auto-complete-example",
    template: `
            <QAutoComplete 
                placeholder="How do I set the size of an HTML text box?" 
                displayProperty="formatted_address"
                pathToData="results"
                [source]="source" 
                [(model)]="model">
            </QAutoComplete>
            <button (click)="show()">Show</button>
    `
})
export class AutoCompleteExample {

    model = { formatted_address : "Hello" };
    source = "https://maps.googleapis.com/maps/api/geocode/json?address=:keyword";

    show() {
        console.log(this.model);
    }
}
```

---
_Source: https://npm.io/package/ng-qauto-complete · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
