diff --git a/CHANGELOG.md b/CHANGELOG.md index dd66041a63..80b574e96d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [v11.1.19](https://github.com/Workday/canvas-kit/releases/tag/v11.1.19) (2024-10-28) + +### Components + +- fix: Update Select to open with spacebar ([#3006](https://github.com/Workday/canvas-kit/pull/3006)) ([@mannycarrera4](https://github.com/mannycarrera4), manuel.carrera, [@NicholasBoll](https://github.com/NicholasBoll)) ## [v12.0.6](https://github.com/Workday/canvas-kit/releases/tag/v12.0.6) (2024-10-24) ### Components diff --git a/cypress/component/Select.spec.tsx b/cypress/component/Select.spec.tsx index e7735e5e7c..bc4b6917f0 100644 --- a/cypress/component/Select.spec.tsx +++ b/cypress/component/Select.spec.tsx @@ -305,6 +305,16 @@ describe('Select', () => { ); }); }); + context('when spacebar is typed and no value exists', () => { + beforeEach(() => { + cy.findByRole('combobox').focus(); + cy.focused().realType(' '); + }); + it('should open the menu', () => { + // should open the menu + cy.findByRole('listbox').should('exist'); + }); + }); }); context('given the "Disabled Options" story with a disabled option', () => {