can not select font when editor into modal ( example: modal of bootstrap )
I have a problem, when I use editor into bootstrap modal then I can not action to select font ( hover, click not work ) It seems that the functions are working well, except for the issue I mentioned above. Please try your best to support me
I have a problem, when I use editor into bootstrap modal then I can not action to select font ( hover, click not work ) It seems that the functions are working well, except for the issue I mentioned above. Please try your best to support me
@wfpena can you fix my issue @wfpena
I am getting an error in Angular 19 with Tailwind CSS
When using encapsulation: ViewEncapsulation.ShadowDom (run angular editor, but the issue is you can not change in editor )
core.mjs:6547 ERROR TypeError: Cannot read properties of null (reading 'classList')
at EmulatedEncapsulationDomRenderer2.removeClass (dom_renderer-DGKzginR.mjs:652:8)
at BaseAnimationRenderer.removeClass (browser.mjs:3860:19)
at wfpena-angular-wysiwyg.mjs:1188:16
at Array.forEach (
@meghal-befree are you using the latest version of the component?
this error happens when you have an image inside the editor? what is the scenario so I can try to reproduce.
@VoBaQuan I believe the issues you mentioned here were fixed right? Does it persist?
@wfpena
We recently upgraded our project from Angular 17 to Angular 19. After the update, I noticed that when using Tailwind CSS with the WYSIWYG editor, the page would freeze or become unresponsive.
To resolve this, I attempted to isolate styles using Shadow DOM. However, after implementing Shadow DOM, I started encountering the following error:
core.mjs:6547 ERROR TypeError: Cannot read properties of null (reading 'classList')
at EmulatedEncapsulationDomRenderer2.removeClass (dom_renderer-DGKzginR.mjs:652:8)
at BaseAnimationRenderer.removeClass (browser.mjs:3860:19)
...
This error does not seem to be related to any image loading issues. Instead, it appears to be triggered during editor interaction, particularly when certain toolbar actions are executed. The stack trace points to the removeClass method failing because it's trying to access classList on a null element.
Now I'm trying to identify the root cause and fix it.
@meghal-befree when adding the component are you adding an id to it like this:
<angular-editor id="editor1" [config]="editorConfig"></angular-editor>
If not could you please try adding one and see if the error stops.
Or if you have multiple angular-editor components on the same page, are you using the same id for any of them?
@meghal-befree @VoBaQuan can I close this issue?