Gathering detailed insights and metrics for wa-ngx-tinymce
Gathering detailed insights and metrics for wa-ngx-tinymce
npm install wa-ngx-tinymce
Typescript
Module System
Node Version
NPM Version
73.7
Supply Chain
92.1
Quality
75
Maintenance
100
Vulnerability
100
License
Total Downloads
864
Last Day
1
Last Week
4
Last Month
15
Last Year
92
Minified
Minified + Gzipped
Latest Version
1.0.2
Package Id
wa-ngx-tinymce@1.0.2
Unpacked Size
186.41 kB
Size
42.98 kB
File Count
30
NPM Version
5.6.0
Node Version
8.10.0
Cumulative downloads
Total Downloads
Last day
0%
1
Compared to previous day
Last week
-55.6%
4
Compared to previous week
Last month
275%
15
Compared to previous month
Last year
-26.4%
92
Compared to previous year
35
Tinymce Components build with Angular.
Install ngx-tinymce
from npm
1npm install ngx-tinymce --save
Recommend: You will need tinymce.min.js
file via Build Customizer generate.
Import the ngx-tinymce
in to your root AppModule
.
1import { NgxTinymceModule } from 'ngx-tinymce'; 2 3@NgModule({ 4 imports: [ 5 NgxTinymceModule.forRoot({ 6 baseURL: './assets/tinymce/', 7 // or cdn 8 baseURL: '//cdnjs.cloudflare.com/ajax/libs/tinymce/4.9.0/' 9 }) 10 ] 11}) 12export class AppModule { }
1import { Component } from '@angular/core'; 2 3@Component({ 4 selector: 'my-app', 5 template: `<tinymce [(ngModel)]="html"></tinymce>` 6}) 7export class AppComponent { 8 html = ``; 9}
angular-cli
please refer to Installation instructions.stackblitz
sample available here.Name | Type | Default | Summary |
---|---|---|---|
config | any | see configure | |
loading | string,TemplateRef | - | Loading status of tinymce |
disabled | boolean | false | Set tinymce mode is readonly if true |
delay | number | 0 | Delayed rendering, unit is 'millisecond' |
placeholder | string | - | Placeholder for tinymce, NOTE: dependent on tinymce-placeholder |
ready | EventEmitter<any> | - | Tinymce ready callback |
Please follow this guidelines when reporting bugs and feature requests:
Thanks for understanding!
The MIT License (see the LICENSE file for the full text)
No vulnerabilities found.
No security vulnerabilities found.