Skip to content

tinymce/tinymce-angular

Repository files navigation

Official TinyMCE Angular Component

About

This package is a thin wrapper around TinyMCE to make it easier to use in an Angular application.

Support

Angular version tinymce-angular version
>=16.x <=21.x 8+
14+ 7.x
13+ 6.x
9+ 4.x
<= 8 3.x
< 5 Not supported

Not yet Zoneless ( >=Angular v21 )

  • This wrapper still requires zone.js to ensure backward compatibility to older Angular versions. Therefore, if your application uses Angular v21 or higher, it needs to include provideZoneDetection() in its providers.
import { NgModule, provideZoneChangeDetection } from '@angular/core';

@NgModule({
  declarations: [
    // ...
  ],
  imports: [
   // ...
  ],
  providers: [ provideZoneChangeDetection() ],
  bootstrap: [ AppComponent ]
})

Issues

Have you found an issue with tinymce-angular or do you have a feature request? Open up an issue and let us know or submit a pull request.

Note: for issues concerning TinyMCE please visit the TinyMCE repository.