You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should consider using the generic attribute introduced in Vue 3.3 to provide better typings for component events.
Currently, the type of editor passed to the editor prop is ignored and all events (@ready, @focus, @blur, @input) use the generic Editor type, which is inaccurate.
The text was updated successfully, but these errors were encountered:
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.
We should consider using the
generic
attribute introduced in Vue 3.3 to provide better typings for component events.Currently, the type of editor passed to the
editor
prop is ignored and all events (@ready
,@focus
,@blur
,@input
) use the genericEditor
type, which is inaccurate.The text was updated successfully, but these errors were encountered: