ng-pell
TypeScript icon, indicating that this package has built-in type declarations

0.7.4 • Public • Published

ng-pell

What is this

It's a port of pell for Angular 4+.

How do I use it

In a component like this

./example/example.component.ts

import { Component } from '@angular/core';
 
@Component({
  selector: 'example-component',
  template: `<ng-pell-component [(ngModel)]="html"></ng-pell-component>`
})
export class ExampleComponent {
  html: string
}

and it must be included in the respective module like this

./example/example.module.ts

import {BrowserModule} from '@angular/platform-browser'
import {NgModule} from '@angular/core'
 
import {ExampleComponent} from './example.component'
import {NgPellModule} from 'ng-pell'
 
@NgModule({
  declarations: [
    ExampleComponent
  ],
  imports: [
    BrowserModule,
    NgPellModule
  ],
  providers: [],
  bootstrap: [ExampleComponent]
})
export class ExampleModule {}

Installation

It can be added to your project like this

yarn add ng-pell

Package Sidebar

Install

npm i ng-pell

Weekly Downloads

0

Version

0.7.4

License

GPLv3

Last publish

Collaborators

  • snood1205