Skip to content

Commit

Permalink
Merge branch 'feature/6.8/DOC-2181' into feature/6.8/DOC-2181_TINY-10367
Browse files Browse the repository at this point in the history
  • Loading branch information
kemister85 authored Nov 27, 2023
2 parents 5d1078c + 062993a commit 6b440a5
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
2 changes: 2 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ The format is loosely based on [Keep a Changelog](https://keepachangelog.com/en/
### Unreleased

- DOC-2181: add fix documentation for TINY-10367 to the 6.8 release notes.
- DOC-2181: add fix documentation for TINY-10291 to the 6.8 release notes.
- DOC-2181: add fix documentation for TINY-10343 to the 6.8 release notes.
- DOC-2181: add fix documentation for TINY-10174 to the 6.8 release notes.
- DOC-2181: added fix documentation for TINY-10229 to the 6.8 release notes.
- DOC-2181: add fix documentation for TINY-10172 to the 6.8 release notes.
Expand Down
20 changes: 20 additions & 0 deletions modules/ROOT/pages/6.8-release-notes.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,16 @@ As a consequence, the plugin failed to detect if the selection was at the beginn

{productname} 6.8 addresses this issue, now, the predicate considers that the selection can be right before the `summary` element, so the Accordion toggling can work as expected on Safari.

=== Directionality would not be consistently applied to the entire accordion block.
// #TINY-10291
Previously, when applying directionality to the accordion, the `dir` attribute was modified in both the `summary` and auxiliary accordion body `div` element. However, the auxiliary accordion body `div` element disappeared during the editor serialization process, resulting in the loss of the applied `dir` value for the accordion content.

As a consequence, when selecting the accordion block and applying **RTL** directionality, the alignment was only applied to the `summary`, not the entire accordion.

{productname} 6.8 addresses this issue, now, when the {productname} editor is **focused**, a selection normalization process refines the editor selection directly to the element contents.

As a result, when selecting an accordion component, the selection now encompasses the entire details element. This ensures that alignment is applied to the entire accordion block when applying directionality, such as **RTL**, to the component.

=== Adjacent SVG block level elements adds extra paragraph
// #TINY-10273

Expand Down Expand Up @@ -561,6 +571,16 @@ As a consequence, these issues manifested between the first and second initializ

{productname} 6.8 addresses this issue, now the editor removes the redundant second initialization of the toolbar, and fix the 'fontsizeinput' 'destroy' action, so all its components are now properly unmounted. This fix ensures that updates are only applied to components that genuinely exist.

=== Menubar buttons with more than one word would sometimes wrap into two lines.
// #TINY-10343
Previously when rendering the menubar in sync with the fetch of the styles, it was possible in some situations that the styles would render after the menubar.

As a consequence, the menubar would not correctly render such as the `width` of a button, as a result the button width would force the button to wrap vertically rather then display the button content as intended.

{productname} 6.8 addresses this issue, now, the rendering for the toolbar is done after the styles have been fetched.

As a result, the `width` of the buttons now display correctly.

=== Dialog collection items would not display any icons chosen from icon pack.
// #TINY-10174
In earlier versions of {productname}, collection items set in a xref:dialog-components.adoc#collection[collection dialog component] would not display any icon as set in the `+icon+` property, instead only displaying the `+string+` itself.
Expand Down

0 comments on commit 6b440a5

Please sign in to comment.