Skip to content

Releases: Workday/canvas-kit

v4.1.1

27 Jul 22:49
c5fa8eb
Compare
Choose a tag to compare

2020-07-27

Components

v4.0.2

27 Jul 22:35
3877bad
Compare
Choose a tag to compare

2020-07-24

Components

v3.9.2

22 Jul 00:14
05a3c02
Compare
Choose a tag to compare

2020-07-21

Components

  • fix(button): Remove literal fontFamily (#787) @lychyi

v4.1.0

17 Jul 22:53
7acb125
Compare
Choose a tag to compare

2020-07-17

Components

Infrastructure

Theming

  • refactor(common): Update pickForegroundColor to use fallback color logic (#752) @donovangini

Breaking Changes:

  • feat(popup-stack): Add adapter API to integrate with other popup systems (#782) @NicholasBoll

This is a potentially breaking change if you use usePopupStack and ReactDOM.createPortal(contents, document.body):
We added createContainer to PopupStack. React no longer controls the element that is given to the the PopupStack. The PopupStack will now create a containing element that your content should render into. If you recognize this pattern, you'll need to render into stackRef.current instead of document.body.

Before:

const ref = React.createRef<HTMLDivElement>(null);

usePopupStack(ref)

React.createPortal(contents, document.body)

Now

const stackRef = usePopupStack()

React.createPortal(contents, stackRef.current)

v4.0.1

08 Jul 22:38
Compare
Choose a tag to compare

2020-07-08

Components

  • fix(combobox): Add explicit arg to initEvent in ComboBox and header SearchBar (#767) @lychyi

v3.9.1

07 Jul 23:08
14ffeaf
Compare
Choose a tag to compare

2020-07-07

Components

  • fix(combobox): Add explicit arg to initEvent in ComboBox and header SearchBar (#767) @lychyi

v4.0.0

16 Jun 00:22
919af47
Compare
Choose a tag to compare

2020-06-15

The changes below are the consolidation of changes made across all 4.0.0 beta versions (v4.0.0-beta.0 - v4.0.0-beta.5).

To review the breaking changes made in this release and get more information on migrating, check out the v4 Migration Guide.

Infrastructure

Theming

Components

v3.9.0

15 Jun 20:45
2b6d866
Compare
Choose a tag to compare

2020-06-15

Infrastructure

Components

v4.0.0-beta.5

12 Jun 20:59
3c05cc9
Compare
Choose a tag to compare
v4.0.0-beta.5 Pre-release
Pre-release

2020-06-12

Infrastructure

Components

v3.8.0

22 May 20:12
7afc74c
Compare
Choose a tag to compare

2020-05-22

Infrastructure

Components