-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade ckeditor version error #88
Comments
you can pass an option to the editor plugin. |
Hello! After adding this option, I still see the error popup. I can't seem to figure out what the issue is. <script setup>
import grapesjs from "grapesjs";
import "grapesjs/dist/css/grapes.min.css";
import grapesjsPresetNewsletter from "grapesjs-preset-newsletter";
import grapesjsPluginCkeditor from "grapesjs-plugin-ckeditor";
import grapesJSMJML from "grapesjs-mjml";
const editor = grapesjs.init({
container: "#gjs",
fromElement: true,
plugins: [grapesjsPresetNewsletter, grapesjsPluginCkeditor, grapesJSMJML],
pluginsOpts: {
[grapesjsPluginCkeditor]: {
versionCheck: false,
},
},
... Any ideas why? |
you have to declare versionCheck under "options"
|
Ahh thank you for the quick help!:) |
There's an example here: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm using plugin version 1.0.1 but am getting the following error when editing a text component:
It wants version 4.21.0 to go to 4.24.0
Trying to upgrade it looks like only the typescript definitions are used:
"@types/ckeditor4": "^4.20.0"
Which only goes up to 4.20.7
The website says this:
Looks like they're on ckeditor version 5:
https://www.npmjs.com/package/ckeditor5
https://github.com/ckeditor/ckeditor5#
Are there any plans to upgrade?
Related:
#30
#63
The text was updated successfully, but these errors were encountered: