diff --git a/CHANGELOG.md b/CHANGELOG.md index 149aae6b6e..18e16d7fc8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/modules/react/combobox/lib/hooks/useComboboxInput.ts b/modules/react/combobox/lib/hooks/useComboboxInput.ts index 10a30f13f2..adda0cb646 100644 --- a/modules/react/combobox/lib/hooks/useComboboxInput.ts +++ b/modules/react/combobox/lib/hooks/useComboboxInput.ts @@ -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') { diff --git a/modules/react/layout/stories/Box.mdx b/modules/react/layout/stories/Box.mdx index f73e350bf9..57f85148a1 100644 --- a/modules/react/layout/stories/Box.mdx +++ b/modules/react/layout/stories/Box.mdx @@ -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'; diff --git a/modules/react/package.json b/modules/react/package.json index 8c9bdd2cba..5971bf6845 100644 --- a/modules/react/package.json +++ b/modules/react/package.json @@ -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", diff --git a/modules/styling-transform/package.json b/modules/styling-transform/package.json index 331713a3ed..1ab2feeac3 100644 --- a/modules/styling-transform/package.json +++ b/modules/styling-transform/package.json @@ -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" },