# ng5-simple-select

> Simple select component for Angular 5.

Latest version **0.0.3** (published 2017-11-30) · MIT license · 0 weekly downloads

## Install

```sh
npm install ng5-simple-select
pnpm add ng5-simple-select
yarn add ng5-simple-select
bun add ng5-simple-select
```

## Health

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

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.3 |
| Published | 2017-11-30 |
| First published | 2017-11-29 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Vadym Ruchka |
| Maintainers | tv1ster |
| Keywords | angular5, angular 5, simple-select, simple select angular 5, simple-selct angular 5, simpleselect, simpleselct angular 5 |

## Links

- npm: https://www.npmjs.com/package/ng5-simple-select
- Repository: https://github.com/tv1ster/ng5-simple-select
- Issues: https://github.com/tv1ster/ng5-simple-select/issues
- npm.io page: https://npm.io/package/ng5-simple-select

## Recent versions

- 0.0.3 (latest) — 2017-11-30
- 0.0.2 — 2017-11-29
- 0.0.1 — 2017-11-29

## README

# ng5-simple-select

Simple select for Angular 5, still working on it. You can check docs [here](https://tv1ster.github.io/ng5-simple-select/).

## Usage:

This is some simple example of this select

```js
import {NgSimpleSelectModule} from 'ng5-simple-select';
```  

```html
<ng-simple-select [(ngModel)]="arrayModel"
                  [displayValue]="arrayModel?.displayValue"
                  name="fieldName"
                  ngDefaultControl>
  <ng-simple-select-option *ngFor="let option of arrayOptions"
                           [value]="option">
    {{option.displayValue}}
  </ng-simple-select-option>
</ng-simple-select>
```

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