@ckeditor/ckeditor5-style 48.1.1 → 48.2.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/dist/index.js CHANGED
@@ -633,7 +633,8 @@ class StyleUtils extends Plugin {
633
633
  });
634
634
  // Execute the command when a style is selected in the styles panel.
635
635
  // Also focus the editable after executing the command.
636
- // It overrides a default behaviour where the focus is moved to the dropdown button (#12125).
636
+ // It overrides a default behaviour where the focus is moved to the dropdown button.
637
+ // See https://github.com/ckeditor/ckeditor5/issues/12125.
637
638
  dropdown.on('execute', (evt)=>{
638
639
  editor.execute('style', {
639
640
  styleName: evt.source.styleDefinition.name
@@ -812,7 +813,8 @@ class StyleUtils extends Plugin {
812
813
  }
813
814
  /**
814
815
  * Returns classes that are defined only in the supplied definition and not in any other active definition. It's used
815
- * to ensure that classes used by other definitions are preserved when a style is removed. See #11748.
816
+ * to ensure that classes used by other definitions are preserved when a style is removed.
817
+ * See https://github.com/ckeditor/ckeditor5/issues/11748.
816
818
  *
817
819
  * @param activeDefinitions All currently active definitions affecting selected element(s).
818
820
  * @param definition Definition whose classes will be compared with all other active definition classes.