@ckeditor/ckeditor5-core 47.6.0-alpha.0 → 47.6.0-alpha.2

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/dist/index.js CHANGED
@@ -2211,13 +2211,9 @@ function getPageSessionID() {
2211
2211
  window.CKEDITOR_WARNING_SUPPRESSIONS[licenseType] = true;
2212
2212
  }
2213
2213
  }
2214
- if ([
2215
- 'evaluation',
2216
- 'trial'
2217
- ].includes(licensePayload.licenseType)) {
2218
- const licenseType = licensePayload.licenseType;
2214
+ if (licensePayload.licenseType === 'evaluation') {
2219
2215
  const timerId = setTimeout(()=>{
2220
- blockEditor(`${licenseType}Limit`);
2216
+ blockEditor('evaluationLimit');
2221
2217
  }, 600000);
2222
2218
  editor.on('destroy', ()=>{
2223
2219
  clearTimeout(timerId);