@ckeditor/ckeditor5-core 44.2.0-alpha.9 → 44.2.1-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-core",
3
- "version": "44.2.0-alpha.9",
3
+ "version": "44.2.1-alpha.0",
4
4
  "description": "The core architecture of CKEditor 5 – the best browser-based rich text editor.",
5
5
  "keywords": [
6
6
  "wysiwyg",
@@ -24,10 +24,10 @@
24
24
  "type": "module",
25
25
  "main": "src/index.js",
26
26
  "dependencies": {
27
- "@ckeditor/ckeditor5-engine": "44.2.0-alpha.9",
28
- "@ckeditor/ckeditor5-ui": "44.2.0-alpha.9",
29
- "@ckeditor/ckeditor5-utils": "44.2.0-alpha.9",
30
- "@ckeditor/ckeditor5-watchdog": "44.2.0-alpha.9",
27
+ "@ckeditor/ckeditor5-engine": "44.2.1-alpha.0",
28
+ "@ckeditor/ckeditor5-ui": "44.2.1-alpha.0",
29
+ "@ckeditor/ckeditor5-utils": "44.2.1-alpha.0",
30
+ "@ckeditor/ckeditor5-watchdog": "44.2.1-alpha.0",
31
31
  "lodash-es": "4.17.21"
32
32
  },
33
33
  "author": "CKSource (http://cksource.com/)",
@@ -214,8 +214,9 @@ class Editor extends /* #__PURE__ */ ObservableMixin() {
214
214
  if (['development', 'evaluation', 'trial'].includes(licensePayload.licenseType)) {
215
215
  const { licenseType } = licensePayload;
216
216
  const capitalizedLicenseType = licenseType[0].toUpperCase() + licenseType.slice(1);
217
+ const article = licenseType === 'evaluation' ? 'an' : 'a';
217
218
  console.info(`%cCKEditor 5 ${capitalizedLicenseType} License`, 'color: #ffffff; background: #743CCD; font-size: 14px; padding: 4px 8px; border-radius: 4px;');
218
- console.warn(`⚠️ You are using a ${licenseType} license of CKEditor 5` +
219
+ console.warn(`⚠️ You are using ${article} ${licenseType} license of CKEditor 5` +
219
220
  `${licenseType === 'trial' ? ' which is for evaluation purposes only' : ''}. ` +
220
221
  'For production usage, please obtain a production license at https://portal.ckeditor.com/');
221
222
  }