Release Notes - March 2024
Two bug fixes for ZUI Shell and ZUI Button Group components.
Minor release to address two small bugs that affect the visual appearance of the components <zui-shell-nav-item>
and <zui-button-group>
.
Bug fixes
Declare size for all icon types in ZUI Shell Nav
Previously, we only declared the size of navigation icons embedded via <zui-icon>
, <zui-svg>
, and <svg>
elements inside <zui-shell-nav-item>
. Now, we've included all icon types to ensure consistent sizing in the ZUI Shell side navigation, including icons that are embedded via <img>
.
<zui-shell-nav-item>
<img src="/images/icons/home.svg" slot="icon" />
<a href="#">Home</a>
</zui-shell-nav-item>
Learn about icon rules for ZUI Shell Nav in our documentation.
ZUI Button Group's secondary style was missing the bottom border
The bottom border was missing for the secondary style of <zui-button-group>
. This has been fixed and the bottom border will now display as expected.
<zui-button-group>
<zui-button type="secondary">Button 1</zui-button>
<zui-button type="secondary">Button 2</zui-button>
<zui-button type="secondary">Button 3</zui-button>
</zui-button-group>
Learn more about the ZUI Button Group component in our documentation.