Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/web-acad/ng-quill

Quill editor integration for angular forms
https://github.com/web-acad/ng-quill

angular forms quill

Last synced: about 2 months ago
JSON representation

Quill editor integration for angular forms

Awesome Lists containing this project

README

        

[![NPM version](https://img.shields.io/npm/v/@webacad/ng-quill.svg?style=flat-square)](https://www.npmjs.com/package/@webacad/ng-quill)
[![Build Status](https://img.shields.io/travis/Web-ACAD/ng-quill.svg?style=flat-square)](https://travis-ci.org/Web-ACAD/ng-quill)

# WebACAD/Quill

[Quill](https://quilljs.com/) editor integration for angular forms.

## Dependencies

* `@angular/common`
* `@angular/core`
* `@angular/forms`
* `quill`
* `rxjs`

## Installation

```bash
$ npm install --save @webacad/ng-quill
```

or with yarn

```bash
$ yarn add @webacad/ng-quill
```

## Register module

**app.module.ts:**

```typescript
import {QuillModule} from '@webacad/ng-quill';

@NgModule({
imports: [
QuillModule,
],
})
export class AppModule {}
```

## Usage

```html

```

**Available options:**

* `theme`: quill `theme` options, [docs](https://quilljs.com/docs/themes/)

## Using in angular forms

This package implements all the necessary code for angular forms. That means that you can use it just like any other
ordinary form control.