Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/web-acad/ng-quill
- Owner: Web-ACAD
- License: mit
- Created: 2018-05-13T13:10:08.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-08-24T16:43:13.000Z (over 6 years ago)
- Last Synced: 2024-10-16T11:01:58.041Z (3 months ago)
- Topics: angular, forms, quill
- Language: TypeScript
- Size: 8.79 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.