@ckeditor/ckeditor5-style 40.1.0 → 40.2.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-style",
3
- "version": "40.1.0",
3
+ "version": "40.2.0",
4
4
  "description": "Style feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -12,7 +12,7 @@
12
12
  ],
13
13
  "main": "src/index.js",
14
14
  "dependencies": {
15
- "ckeditor5": "40.1.0",
15
+ "ckeditor5": "40.2.0",
16
16
  "lodash-es": "4.17.21"
17
17
  },
18
18
  "author": "CKSource (http://cksource.com/)",
@@ -48,7 +48,7 @@ export default class StyleCommand extends Command {
48
48
  */
49
49
  refresh(): void;
50
50
  /**
51
- * Executes the command — applies the style classes to the selection or removes it from the selection.
51
+ * Executes the command – applies the style classes to the selection or removes it from the selection.
52
52
  *
53
53
  * If the command value already contains the requested style, it will remove the style classes. Otherwise, it will set it.
54
54
  *
@@ -74,7 +74,7 @@ export default class StyleCommand extends Command {
74
74
  this.value = this.isEnabled ? Array.from(value).sort() : [];
75
75
  }
76
76
  /**
77
- * Executes the command — applies the style classes to the selection or removes it from the selection.
77
+ * Executes the command – applies the style classes to the selection or removes it from the selection.
78
78
  *
79
79
  * If the command value already contains the requested style, it will remove the style classes. Otherwise, it will set it.
80
80
  *