Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
AlekseyManetov committed Jan 30, 2025
1 parent 0e5bd16 commit c16befc
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
19 changes: 10 additions & 9 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
# 5.xx.xx - xx.xx.2024
# 5.13.0 - 30.01.2025
**What's New**
* Update UUI packages JS target from ES6 to ES2021
* `PickerInputBaseProps` interface was moved from @epam/uui-components to '@epam/uui-core' package
* Update UUI packages JS target from `ES6` to `ES2021`
* `PickerInputBaseProps` interface was moved from `@epam/uui-components` to `@epam/uui-core` package
* [MainMenuAvatar]: added `RawProps` prop
* [CountIndicator]: text size increased for prop 'size' 12px from 8px to 10px
* [DropdownMenuBody]: added `maxHeight` prop
* [FiltersPanel]: add 'minCharsToSearch' and 'renderFooter' props for picker filter configuration
* [FiltersPanel]: added `minCharsToSearch` and `renderFooter` props for picker filter configuration


**What's Fixed**
* [PickerInput]: show 'N selected' instead of '+N' tag if maxItems=0
* [useForm]: reset `serverValidationState` by valid form save action
* [PickerInput]: show 'N selected' instead of '+N' tag if `maxItems=0`
* [DropdownContainer]: autofocus first active element on dropdown open
* [PickerInput/FiltersPickerInput]: always show picker footer if picker has some selection
* [useForm]: reset serverValidationState by valid form save action
* [DropdownMenuButton]: fixed cropping of icons located to the right of the text
* [PresetsPanel]: added scroll to `More` dropdown
* [NotificationCard]: changed size of actions from '36' to '30'
* [CountIndicator]: text size increased from `8px` to `10px` for 12 size
* [MainMenuButton]: removed unnecessary `role` and `aria-haspopup` attributes ([#2733](https://github.com/epam/UUI/pull/2733))
* [MainMenuButton]: Add `aria-current` attribute with value `page` for active links ([#2734](https://github.com/epam/UUI/pull/2734))
* [MainMenuButton]: added `aria-current` attribute with value `page` for active links ([#2734](https://github.com/epam/UUI/pull/2734))
* [DataTableRow]: fixed `ref` prop
* [PickerInput]: fixed toggler selected value styles in case of single mode, searchPosition !== input and minCharsToSearch > 0 and for case with readonly=true and searchPosition !== input.
* [PickerInput]: fixed toggler selected value styles in case of single mode, `searchPosition !== input` and `minCharsToSearch > 0` and for case with `readonly=true` and `searchPosition !== input`


# 5.12.1 - 17.12.2024
Expand Down
2 changes: 1 addition & 1 deletion uui-components/src/overlays/DropdownContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export const DropdownContainer = React.forwardRef((props: DropdownContainerProps
persistentFocus={ persistentFocus }
lockProps={ { ...({ onKeyDown: handleEscape }), ...props.lockProps } }
shards={ props.shards }
autoFocus={ false }
autoFocus={ props.autoFocus || true }
as={ props.as }
>
{renderDropdownContainer()}
Expand Down

0 comments on commit c16befc

Please sign in to comment.