-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #281 from ckeditor/migrate-to-esm
Fix: Use type of the passed `editor` prop rather than generic `Editor` type. Closes #282. Internal: Migrate from webpack and Karma to Vite and Vitest. See ckeditor/ckeditor5#16616. MINOR BREAKING CHANGE: Migrate to ESM. See ckeditor/ckeditor5#16616. MINOR BREAKING CHANGE: Migrate to Composition API. Closes #172. MINOR BREAKING CHANGE: Bump required version to Vue 3.4+. See #282. MINOR BREAKING CHANGE: Export the component as `Ckeditor` instead of `default.component`. Closes #284. MINOR BREAKING CHANGE: Remove argument from the `destroy` event, as it was always `null`. Closes #283.
- Loading branch information
Showing
37 changed files
with
3,683 additions
and
4,658 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/** | ||
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved. | ||
* For licensing, see LICENSE.md. | ||
*/ | ||
|
||
import { createApp } from 'vue'; | ||
import CKEditorPlugin from '../src/plugin.js'; | ||
import App from './App.vue'; | ||
|
||
import 'ckeditor5/ckeditor5.css'; | ||
|
||
createApp( App ) | ||
.use( CKEditorPlugin ) | ||
.mount( '#app' ); |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.