# ngx-only-letter

> Only letter directive

Latest version **1.0.1** (published 2023-08-16) · MIT license · 0 weekly downloads

## Install

```sh
npm install ngx-only-letter
pnpm add ngx-only-letter
yarn add ngx-only-letter
bun add ngx-only-letter
```

## Health

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

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2023-08-16 |
| First published | 2023-08-14 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 1 |
| Unpacked size | 13.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | UnlimIT |
| Maintainers | utamuratov |
| Keywords | angular, javascript, typescript, onlyLetter, directive |

## Links

- npm: https://www.npmjs.com/package/ngx-only-letter
- Repository: https://github.com/utamuratov/
- Issues: https://github.com/utamuratov/
- npm.io page: https://npm.io/package/ngx-only-letter

## Dependencies (1)

- [tslib](https://npm.io/package/tslib.md) ^2.3.0

## Alternatives

- [@openai/codex-sdk](https://npm.io/package/@openai/codex-sdk.md) — 731.4K weekly downloads
- [babel-plugin-transform-react-jsx](https://npm.io/package/babel-plugin-transform-react-jsx.md) — 565.0K weekly downloads
- [babel-helper-remove-or-void](https://npm.io/package/babel-helper-remove-or-void.md) — 508.5K weekly downloads
- [@pnpm/store-controller-types](https://npm.io/package/@pnpm/store-controller-types.md) — 186.9K weekly downloads
- [react-native-signature-canvas](https://npm.io/package/react-native-signature-canvas.md) — 155.6K weekly downloads

## Recent versions

- 1.0.1 (latest) — 2023-08-16
- 1.0.0 — 2023-08-14

## README

# Only letter Directive

Angular directive for validating only letter. [DEMO](https://stackblitz.com/edit/stackblitz-starters-hkzzuy?file=src%2Fmain.ts)

- Angular directive
- Only letter

## INSTALLATION

Import OnlyLetterModule to the your Module: e.g. App module

```
...
import { OnlyLetterModule } from 'ngx-only-letter';

@NgModule({
  declarations: [AppComponent],
  imports: [
    ...
    OnlyLetterModule, // IMPORTANT THING
  ],
  providers: [{ provide: NZ_I18N, useValue: en_US }],
  bootstrap: [AppComponent],
})
export class AppModule {}
```

And use it like this:

```
<input type="text" ngxOnlyLetter>
```

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