Skip to content

Releases: Workday/canvas-kit

v12.6.0

10 Apr 00:37
Compare
Choose a tag to compare
v12.6.0

v11.2.13

10 Apr 19:35
Compare
Choose a tag to compare

Infrastructure

v12.5.8

09 Apr 23:47
Compare
Choose a tag to compare

Infrastructure

v12.5.7

09 Apr 19:28
Compare
Choose a tag to compare

Components

v11.2.12

09 Apr 23:11
Compare
Choose a tag to compare

Infrastructure

v11.2.11

09 Apr 22:10
Compare
Choose a tag to compare

Infrastructure

v11.2.10

09 Apr 21:53
Compare
Choose a tag to compare

Infrastructure

  • ci: Fix Cypress cache location in forward merge script (@NicholasBoll)

v11.2.9

09 Apr 20:42
Compare
Choose a tag to compare

Infrastructure

v12.5.6

08 Apr 16:17
Compare
Choose a tag to compare

Components

  • fix(popup): Nested Popups using useDisableBodyScroll (#3225) (@NicholasBoll)
    Popups using useDisableBodyScroll, including Modals now use a CSS class conditionally applied to the document.body element instead of setting the overflow: hidden; style directly. !important is used to win over any other style applied to the document.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 the p tag as an identifier for testing or other purposes, you'll need to adjust your implementation, as the underlying element is now a div. Additionally, if you'd like to keep a p tag around the Body text, you'll need to add it manually. Wrapping text in a p 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

08 Apr 16:31
Compare
Choose a tag to compare

Components