@ckeditor/ckeditor5-ui 47.6.2 → 47.7.0-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-ui",
3
- "version": "47.6.2",
3
+ "version": "47.7.0-alpha.0",
4
4
  "description": "The UI framework and standard UI library of CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -17,11 +17,11 @@
17
17
  "type": "module",
18
18
  "main": "src/index.js",
19
19
  "dependencies": {
20
- "@ckeditor/ckeditor5-core": "47.6.2",
21
- "@ckeditor/ckeditor5-editor-multi-root": "47.6.2",
22
- "@ckeditor/ckeditor5-engine": "47.6.2",
23
- "@ckeditor/ckeditor5-icons": "47.6.2",
24
- "@ckeditor/ckeditor5-utils": "47.6.2",
20
+ "@ckeditor/ckeditor5-core": "47.7.0-alpha.0",
21
+ "@ckeditor/ckeditor5-editor-multi-root": "47.7.0-alpha.0",
22
+ "@ckeditor/ckeditor5-engine": "47.7.0-alpha.0",
23
+ "@ckeditor/ckeditor5-icons": "47.7.0-alpha.0",
24
+ "@ckeditor/ckeditor5-utils": "47.7.0-alpha.0",
25
25
  "@types/color-convert": "2.0.4",
26
26
  "color-convert": "3.1.0",
27
27
  "color-parse": "2.0.2",
@@ -88,6 +88,7 @@ class EvaluationBadgeView extends View {
88
88
  * Returns the license type based on the license key.
89
89
  */
90
90
  function getLicenseTypeFromLicenseKey(licenseKey) {
91
+ /* istanbul ignore if -- @preserve */
91
92
  if (licenseKey == 'GPL') {
92
93
  return 'GPL';
93
94
  }
@@ -31,6 +31,7 @@ export class PoweredBy extends Badge {
31
31
  return true;
32
32
  }
33
33
  const licenseKey = editor.config.get('licenseKey');
34
+ /* istanbul ignore if -- @preserve */
34
35
  if (licenseKey == 'GPL') {
35
36
  return true;
36
37
  }