Skip to content

v7.4.6

Choose a tag to compare

@github-actions github-actions released this 09 Dec 17:48
· 0 commits to 8a5c2e437e25054927de194cf96c5243d0036c5e since this release

Components

  • fix: Fix Expandable exports and types (#1953) (@alanbsmith)
    useExpandableModel wasn't properly exported with the other hooks. It's been moved into the /hooks directory and exported from there. If you were importing this hook from dist, you'll need to update the import.

    // before
    import { useExpandableModel } from "@workday/canvas-kit-labs-react/dist/es6/expandable/lib/useExpandableModel";
    
    // after
    import { useExpandableModel } from "@workday/canvas-kit-labs-react/expandable";