Hi,
The editor 3.2.1 is not working with Vaadin 24.3.2.
I have downloaded vaadin starter, added ckeditor maven dependency, whitelisted packages, and created simple editor
VaadinCKEditor classicEditor = new VaadinCKEditorBuilder().with(builder -> { builder.editorData = "<p>This is a classic editor sample.</p>"; builder.editorType = EditorType.CLASSIC; builder.theme = ThemeType.DARK; }).createVaadinCKEditor();add(textField, button, classicEditor);
and after I start project I don’t see editor (just textField and button) and there is error in console
Uncaught (in promise) TypeError: Cannot read properties of undefined (reading ‘VaadinClassicEditor’)