Skip to content

Releases: Workday/canvas-kit

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

v11.2.7

04 Apr 19:09
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.

v12.5.5

27 Mar 14:14
Compare
Choose a tag to compare

Components

v11.2.6

26 Mar 23:03
Compare
Choose a tag to compare

Components

v12.5.4

25 Mar 18:22
Compare
Choose a tag to compare

Components

  • fix: Add minWidth and minHeight 1px to accessibleHide (#3206) (@toopham, Tu Pham)
    isHidden prop in FormField.Label will now update the minWidth and minHeight to 1px.

v12.5.3

25 Mar 16:58
Compare
Choose a tag to compare

Components