Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [v13.2.50](https://github.com/Workday/canvas-kit/releases/tag/v13.2.50) (2026-01-06)

### Components

- fix: Select should close on blur ([#3674](https://github.com/Workday/canvas-kit/pull/3674)) ([@mannycarrera4](https://github.com/mannycarrera4), manuel.carrera)


## [v13.2.49](https://github.com/Workday/canvas-kit/releases/tag/v13.2.49) (2026-01-06)

### Documentation

- docs: Fixed Box style props links ([#3672](https://github.com/Workday/canvas-kit/pull/3672)) ([@josh-bagwell](https://github.com/josh-bagwell))
Updates style props links in the `Box` component documentation.
## [v14.2.3](https://github.com/Workday/canvas-kit/releases/tag/v14.2.3) (2026-01-02)

### Documentation
Expand Down
2 changes: 1 addition & 1 deletion modules/react/combobox/lib/hooks/useComboboxInput.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const useComboboxInput = composeHooks(
}
},
onBlur(event: React.FocusEvent) {
// model.events.hide(event);
model.events.hide(event);
},
onClick(event: React.MouseEvent) {
if (model.state.visibility === 'hidden') {
Expand Down
4 changes: 2 additions & 2 deletions modules/react/layout/stories/Box.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {ExampleCodeBlock} from '@workday/canvas-kit-docs';
import {Basic} from './examples/Box/Basic';
import { ExampleCodeBlock } from '@workday/canvas-kit-docs';
import { Basic } from './examples/Box/Basic';
import * as BoxStories from './Box.stories';

<Meta of={BoxStories} />
Expand Down
2 changes: 1 addition & 1 deletion modules/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@
"@tanstack/react-virtual": "^3.13.9",
"@workday/canvas-colors-web": "^2.0.0",
"@workday/canvas-kit-popup-stack": "^14.2.3",
"@workday/canvas-kit-preview-react": "^14.2.3",
"@workday/canvas-kit-styling": "^14.2.3",
"@workday/canvas-system-icons-web": "^3.0.36",
"@workday/canvas-tokens-web": "^3.1.1",
"@workday/canvas-kit-preview-react": "^14.2.3",
"@workday/design-assets-types": "^0.2.10",
"chroma-js": "^2.2.0",
"csstype": "^3.0.2",
Expand Down
2 changes: 1 addition & 1 deletion modules/styling-transform/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
"dependencies": {
"@emotion/serialize": "^1.0.2",
"@workday/canvas-kit-styling": "^14.2.3",
"@workday/canvas-tokens-web": "^3.1.1",
"stylis": "4.0.13",
"@workday/canvas-tokens-web": "^3.1.1",
"ts-node": "^10.9.1",
"typescript": "5.0"
},
Expand Down
Loading