@ckeditor/ckeditor5-style 47.7.1-alpha.0 → 47.7.2-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-style",
3
- "version": "47.7.1-alpha.0",
3
+ "version": "47.7.2-alpha.0",
4
4
  "description": "Style feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -13,14 +13,14 @@
13
13
  "type": "module",
14
14
  "main": "src/index.js",
15
15
  "dependencies": {
16
- "@ckeditor/ckeditor5-core": "47.7.1-alpha.0",
17
- "@ckeditor/ckeditor5-html-support": "47.7.1-alpha.0",
18
- "@ckeditor/ckeditor5-list": "47.7.1-alpha.0",
19
- "@ckeditor/ckeditor5-table": "47.7.1-alpha.0",
20
- "@ckeditor/ckeditor5-typing": "47.7.1-alpha.0",
21
- "@ckeditor/ckeditor5-ui": "47.7.1-alpha.0",
22
- "@ckeditor/ckeditor5-utils": "47.7.1-alpha.0",
23
- "ckeditor5": "47.7.1-alpha.0",
16
+ "@ckeditor/ckeditor5-core": "47.7.2-alpha.0",
17
+ "@ckeditor/ckeditor5-html-support": "47.7.2-alpha.0",
18
+ "@ckeditor/ckeditor5-list": "47.7.2-alpha.0",
19
+ "@ckeditor/ckeditor5-table": "47.7.2-alpha.0",
20
+ "@ckeditor/ckeditor5-typing": "47.7.2-alpha.0",
21
+ "@ckeditor/ckeditor5-ui": "47.7.2-alpha.0",
22
+ "@ckeditor/ckeditor5-utils": "47.7.2-alpha.0",
23
+ "ckeditor5": "47.7.2-alpha.0",
24
24
  "es-toolkit": "1.39.5"
25
25
  },
26
26
  "author": "CKSource (http://cksource.com/)",
@@ -174,7 +174,8 @@ export class StyleCommand extends Command {
174
174
  }
175
175
  /**
176
176
  * Returns classes that are defined only in the supplied definition and not in any other active definition. It's used
177
- * to ensure that classes used by other definitions are preserved when a style is removed. See #11748.
177
+ * to ensure that classes used by other definitions are preserved when a style is removed.
178
+ * See https://github.com/ckeditor/ckeditor5/issues/11748.
178
179
  *
179
180
  * @param activeDefinitions All currently active definitions affecting selected element(s).
180
181
  * @param definition Definition whose classes will be compared with all other active definition classes.
package/src/styleui.js CHANGED
@@ -89,7 +89,8 @@ export class StyleUI extends Plugin {
89
89
  });
90
90
  // Execute the command when a style is selected in the styles panel.
91
91
  // Also focus the editable after executing the command.
92
- // It overrides a default behaviour where the focus is moved to the dropdown button (#12125).
92
+ // It overrides a default behaviour where the focus is moved to the dropdown button.
93
+ // See https://github.com/ckeditor/ckeditor5/issues/12125.
93
94
  dropdown.on('execute', evt => {
94
95
  editor.execute('style', { styleName: evt.source.styleDefinition.name });
95
96
  editor.editing.view.focus();