@ckeditor/ckeditor5-core 47.6.0-alpha.1 → 47.6.0-alpha.3

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": "47.6.0-alpha.1",
3
+ "version": "47.6.0-alpha.3",
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": "47.6.0-alpha.1",
28
- "@ckeditor/ckeditor5-ui": "47.6.0-alpha.1",
29
- "@ckeditor/ckeditor5-utils": "47.6.0-alpha.1",
30
- "@ckeditor/ckeditor5-watchdog": "47.6.0-alpha.1",
27
+ "@ckeditor/ckeditor5-engine": "47.6.0-alpha.3",
28
+ "@ckeditor/ckeditor5-ui": "47.6.0-alpha.3",
29
+ "@ckeditor/ckeditor5-utils": "47.6.0-alpha.3",
30
+ "@ckeditor/ckeditor5-watchdog": "47.6.0-alpha.3",
31
31
  "es-toolkit": "1.39.5"
32
32
  },
33
33
  "author": "CKSource (http://cksource.com/)",
@@ -419,10 +419,9 @@ export class Editor extends /* #__PURE__ */ ObservableMixin() {
419
419
  window.CKEDITOR_WARNING_SUPPRESSIONS[licenseType] = true;
420
420
  }
421
421
  }
422
- if (['evaluation', 'trial'].includes(licensePayload.licenseType)) {
423
- const licenseType = licensePayload.licenseType;
422
+ if (licensePayload.licenseType === 'evaluation') {
424
423
  const timerId = setTimeout(() => {
425
- blockEditor(`${licenseType}Limit`);
424
+ blockEditor('evaluationLimit');
426
425
  }, 600000);
427
426
  editor.on('destroy', () => {
428
427
  clearTimeout(timerId);