ckeditor5-angular
ckeditor5-angular copied to clipboard
Official CKEditor 5 Angular 5+ component.
When a new table is added, you can access it from keyboard, but by using mouse it gets stuck randomly
## 📝 Provide detailed reproduction steps (if any) 1. Go to https://ckeditor.com/docs/ckeditor5/latest/installation/getting-started/frameworks/angular.html. 2. Try to execute the CKEditor in your Angular program and get error like in this [github issue](https://github.com/ckeditor/ckeditor5/issues/12222)....
Recent changes from https://github.com/ckeditor/ckeditor5-angular/pull/328 requires Angular 13. Because of that, the following actions are needed before releasing the new package: - Update [CKEditor 5 docs](https://github.com/ckeditor/ckeditor5/blob/master/docs/installation/frameworks/angular.md) about supported Angular versions. Let's...
I want to develop something like an ide, when a ckeditor plugin or widget is cliked or selected, the plugin or widget parameters are displayed in the right panel, the...
From the user's perspective the CKEditor component is a simple declarative component and it should handle correctly all properties updates without worrying user what method should he use to change...
A follow-up of the below issues: - https://github.com/ckeditor/ckeditor5-angular/issues/122 - https://github.com/ckeditor/ckeditor5-angular/issues/146#issuecomment-545874446 It should be noted that the Stackblitz uses a different module resolution strategy and following the documentation won't work in...
Problem: Without using Angular zones the changes are not visible to the Angular detection system and the component is not updated.
Currently only the `disabled` property can be changed at runtime. Other properties are "immutable", their changes aren't tracked so the component operates only on the passed initial values. We should...
## Steps to reproduce 1. Enable some manual decorators in your editor. 2. Add the following styles to the component's style file: ```css :host ::ng-deep .ck-button__toggle { border-radius: calc(var(--ck-border-radius)*3.5) !important;...
Originally reported in #219. > After looking at the code it seems that the `this.editorComponent.editorInstance` getter can't be yet accessed as the editor creator promise isn't resolved yet - a...