Skip to content

Commit

Permalink
Bump version of editor
Browse files Browse the repository at this point in the history
  • Loading branch information
Mati365 committed Aug 20, 2024
1 parent 3875bd2 commit f14fe19
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion demos/editor-cdn-suspense/Editor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ import { loadCKEditorCloud } from '../../src/plugin.js';
// Load CKEditor from the CDN
const { CKEditor } = await loadCKEditorCloud( {
version: '42.0.2'
version: '43.0.0'
} );
const { ClassicEditor, Paragraph, Essentials, Heading, Bold, Italic } = CKEditor;
Expand Down
2 changes: 1 addition & 1 deletion demos/editor-cdn/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ import type { EventInfo, ClassicEditor } from 'https://cdn.ckeditor.com/typings/
// Load CKEditor from the CDN
const cloud = useCKEditorCloud( {
version: '42.0.2'
version: '43.0.0'
} );
const TestEditor = computed<typeof ClassicEditor | null>( () => {
Expand Down
2 changes: 1 addition & 1 deletion src/useCKEditorCloud.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import {
* @example
* ```ts
* const { data } = useCKEditorCloud( {
* version: '42.0.0',
* version: '43.0.0',
* languages: [ 'en', 'de' ],
* premium: true
* } );
Expand Down

0 comments on commit f14fe19

Please sign in to comment.