# input-element-syligo

> A Syligo's reusable component.

Latest version **1.0.4** (published 2017-11-12) · MIT license · 0 weekly downloads

## Install

```sh
npm install input-element-syligo
pnpm add input-element-syligo
yarn add input-element-syligo
bun add input-element-syligo
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.4 |
| Published | 2017-11-12 |
| First published | 2017-11-10 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Caio Saldanha |
| Maintainers | zscaio.si |
| Keywords | input, syligo, reusable |

## Links

- npm: https://www.npmjs.com/package/input-element-syligo
- npm.io page: https://npm.io/package/input-element-syligo

## Dependencies (1)

- [styled-components](https://npm.io/package/styled-components.md) ^2.2.3

## Recent versions

- 1.0.4 (latest) — 2017-11-12
- 1.0.3 — 2017-11-11
- 1.0.2 — 2017-11-11
- 1.0.1 — 2017-11-11
- 1.0.0 — 2017-11-10

## README

# input-element-syligo
A Syligo's reusable React Component.

# TODO:
- Completar documentação.
- Adicionar melhorias de estilização.
- Traduzir documentação Inglês/Português.

# Usage:
- npm install --save input-element-syligo.
- import {InputElement} from 'input-element-syligo'.
- Conde Snippet:
```
<InputElement type="text" labelName="Name: " maxLength={25} name="name" value={this.state.name} onChange={ (e) => console.log(e.target.value) } />
<InputElement type="radio" radioOptions={ ["M","F"] } labelName="Gender: " name="gender" value={this.state.gender} onChange={ (e) => console.log(e.target.value) } />
<InputElement type="select" selectData={ ["BRAZIL","NEVERLAND"] } labelName="Country: " name="country" value={this.state.country} onChange={ (e) => console.log(e.target.value) } />

```
- Types supported: text, password, number, select, radio, date.
- Prop "type" is ALWAYS REQUIRED!

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