Releases: Workday/canvas-kit
v12.6.0
v12.6.0
v11.2.13
Infrastructure
- ci: Fix forward merge again (last time) (@NicholasBoll)
v12.5.8
Infrastructure
- ci: Fix forward merge workflow (#3234) (@NicholasBoll)
- ci: Fix Cypress cache location in forward merge script (@NicholasBoll)
- ci: Fix forward-merge workflow again (@NicholasBoll)
- ci: Fix forward merge again (@NicholasBoll)
v12.5.7
Components
- fix(icon): Forward
elemProps
inSystemIconCircle
(#3228) (@NicholasBoll)
v11.2.12
Infrastructure
- ci: Fix forward merge again (@NicholasBoll)
v11.2.11
Infrastructure
- ci: Fix forward-merge workflow again (@NicholasBoll)
v11.2.10
Infrastructure
- ci: Fix Cypress cache location in forward merge script (@NicholasBoll)
v11.2.9
Infrastructure
- ci: Fix forward merge workflow (#3234) (@NicholasBoll)
v12.5.6
Components
-
fix(popup): Nested Popups using
useDisableBodyScroll
(#3225) (@NicholasBoll)
Popups usinguseDisableBodyScroll
, includingModal
s now use a CSS class conditionally applied to thedocument.body
element instead of setting theoverflow: hidden;
style directly.!important
is used to win over any other style applied to thedocument.body
. -
fix: Update InformationHighlight.Body to use div (#3222) (@alanbsmith)
There are no visual changes because of this update. However, if you were relying on thep
tag as an identifier for testing or other purposes, you'll need to adjust your implementation, as the underlying element is now adiv
. Additionally, if you'd like to keep ap
tag around theBody
text, you'll need to add it manually. Wrapping text in ap
is not an accessibility requirement, but it can be helpful when you have multiple, separate content blocks.// before <InformationHighlight.Body> Body text goes here. <ul> <li>Point One</li> <li>Point Two</li> <li>Point Three</li> </ul> </InformationHighlight.Body> // after <InformationHighlight.Body> <p style={{ margin: 0 }}>Body text goes here.</p> <ul> <li>Point One</li> <li>Point Two</li> <li>Point Three</li> </ul> </InformationHighlight.Body>
v11.2.8
Components
- fix(icon): Forward
elemProps
inSystemIconCircle
(#3228) (@NicholasBoll)