Skip to content

Commit

Permalink
fix: accessibility for selectInput (#343)
Browse files Browse the repository at this point in the history
* fix: accessibility for selectInput

* updated release note

* Update RELEASE.md

Co-authored-by: Martina Bustacchini <[email protected]>

* Update RELEASE.md

Co-authored-by: Martina Bustacchini <[email protected]>

---------
* Update RELEASE.md

Co-authored-by: Martina Bustacchini <[email protected]>
  • Loading branch information
sabrina-bongiovanni and deodorhunter authored Sep 20, 2023
1 parent 0f9f872 commit c4b1e66
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
5 changes: 3 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,18 @@
- ...
-->


## Versione x.x.x (dd/mm/yyyy)

### Migliorie

Nel template Blocco link solo immagini con link esterni, icona accessibilità per link esterni ora è disattivabile attraverso opzione del template
- Nel template Blocco link solo immagini con link esterni, icona accessibilità per link esterni ora è disattivabile attraverso opzione del template
- Migliorata l'accessibilità e il supporto Screen Reader per il menu a tendina "Ordina Per" nella pagina di ricerca

### Fix

- Fissato il layout del template Blocco link solo immagini con link esterni, icona accessibilità per link esterni ora è posizionata invece in overlay se presente


## Versione 7.21.0 (19/09/2023)

### Novità
Expand Down
7 changes: 6 additions & 1 deletion src/components/ItaliaTheme/Search/Search.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -643,9 +643,14 @@ const Search = () => {
sortOnOptions.filter((o) => o.value === sortOn)[0]
}
label={intl.formatMessage(messages.orderBy)}
placeholder={intl.formatMessage(messages.orderBy)}
placeholder={
sortOnOptions.find((o) => o.value === sortOn).label
}
onChange={(opt) => setSortOn(opt.value)}
options={sortOnOptions}
defaultValue={sortOnOptions.find(
(o) => o.value === 'relevance',
)}
/>
</Col>
</Row>
Expand Down
6 changes: 5 additions & 1 deletion src/components/SelectInput/SelectInput.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,7 @@ const SelectInput = ({
options,
components = {},
reactSelect,
defaultValue,
}) => {
const intl = useIntl();
const Select = reactSelect.default;
Expand All @@ -319,14 +320,17 @@ const SelectInput = ({
}}
id={id}
value={value}
defaultValue={defaultValue}
onChange={onChange}
options={options}
placeholder={placeholder}
isDisabled={isDisabled}
isSearchable={isSearchable}
isMulti={isMulti}
isClearable={isClearable}
aria-label={placeholder}
aria-label={label}
aria-live="polite"
aria-labelledby={id}
ariaLiveMessages={getSelectAriaLiveMessages(intl)}
noOptionsMessage={() =>
intl.formatMessage(messages.select_noOptionsMessage)
Expand Down

0 comments on commit c4b1e66

Please sign in to comment.