Feature: Improve result type of useCKEditorCloud to make CKEditorPremiumFeatures and CKBox non-nullable when proper configuration is passed.
Fix: Rename the languages configuration property to translations in useCKEditorCloud.
MINOR BREAKING CHANGE: The languages configuration property has been renamed to translations in useCKEditorCloud.
Suggested merge commit message (convention)
Feature: Improve result type of
useCKEditorCloud
to makeCKEditorPremiumFeatures
andCKBox
non-nullable when proper configuration is passed.Fix: Rename the
languages
configuration property totranslations
inuseCKEditorCloud
.MINOR BREAKING CHANGE: The
languages
configuration property has been renamed totranslations
inuseCKEditorCloud
.Additional information
Must be released before testing:
https://github.com/ckeditor/ckeditor5-integrations-common/pull/25
PRs family: https://github.com/ckeditor/ckeditor5-vue/pull/311
Before:
CKEditorPremiumFeatures
is nullable type.After:
CKEditorPremiumFeatures
is not nullable type becausepremium: true
is passed.