Skip to content
This repository has been archived by the owner on May 24, 2024. It is now read-only.

Commit

Permalink
Merge 1ea2582 into fd88a8d
Browse files Browse the repository at this point in the history
  • Loading branch information
adavijit authored May 24, 2024
2 parents fd88a8d + 1ea2582 commit c088c44
Show file tree
Hide file tree
Showing 16 changed files with 31 additions and 3 deletions.
4 changes: 3 additions & 1 deletion packages/terra-form-select/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@

## Unreleased

* Fixed
* Search field value now persists when navigating to another component.

## 6.62.1 - (May 13, 2024)

* Fixed
* Fixed a "prop not recognized" console error.


## 6.62.0 - (May 8, 2024)

* Added
Expand Down
3 changes: 1 addition & 2 deletions packages/terra-form-select/src/search/Frame.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,7 @@ class Frame extends React.Component {

if (this.state.hasSearchChanged) {
this.setState({
searchValue: this.props.display,
hasSearchChanged: false,
searchValue: this.state.searchValue.trim(),
});
}

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions packages/terra-form-select/tests/wdio/select-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -1795,6 +1795,33 @@ Terra.describeViewports('Select', ['tiny'], () => {

after(() => $('#root').click());
});

describe('should retain input value on fucusing another component', () => {
it('retain input and focus using tab key', () => {
$('[data-terra-select]').click();
const input = $('[data-terra-select-combobox] input');
input.setValue('Test');

// Pressing Tab key twice to focus the body
browser.keys('Tab');
browser.keys('Tab');

expect($('body')).toBeFocused();
expect(input).toHaveValue('Test');
});

it('should retain input value and focus body when body is clicked', () => {
const input = $('[data-terra-select-combobox] input');

$('[data-terra-select]').click();
input.setValue('Test');

$('body').click();

expect($('body')).toBeFocused();
expect(input).toHaveValue('Test');
});
});
});

describe('Search Variant - controlled', () => {
Expand Down

0 comments on commit c088c44

Please sign in to comment.