Skip to content

Commit

Permalink
Merge branch 'develop' into 2663-dropdown-increase-test-coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
siarhei-epam committed Jan 29, 2025
2 parents fe976f1 + 130159c commit 099fa5e
Show file tree
Hide file tree
Showing 23 changed files with 320 additions and 495 deletions.
1 change: 1 addition & 0 deletions app/src/demo/tables/filteredTable/filters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ export const getFilters = (): TableFiltersConfig<Person>[] => {
title: 'Office',
type: 'singlePicker',
dataSource: new LazyDataSource({ api: svc.api.demo.offices }),
minCharsToSearch: 1,
},
{
field: 'managerId',
Expand Down
2 changes: 0 additions & 2 deletions app/src/sandbox/SandboxPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import { AdaptivePanelDemo } from './adaptivePanel/AdaptivePanelDemo';
import { TreeListItem } from '@epam/uui-components';
import { DataRowProps } from '@epam/uui-core';
import { Skills } from './skills';
import TableCellsStylesSandbox from './tableCellStyles/TableCellsStylesSandbox';
import { ProjectTasksDemo } from './tasks/ProjectTasksDemo';
import { RichTextEditorDemo } from './RTE/rteDemo';
import { PalettePage } from './tokens/palette/palettePage';
Expand All @@ -41,7 +40,6 @@ export function SandboxPage() {
{ id: 'theme_electric', name: 'Theme Electric', component: ThemeElectricDemo },
{ id: 'DemoTablePaged', name: 'Table with paging', component: DemoTablePaged },
{ id: 'SkillsBatteryPopover', name: 'Skills', component: Skills },
{ id: 'TableCellsStylesSandbox', name: 'Table Cells/Rows styles', component: TableCellsStylesSandbox },
{ id: 'AdaptivePanel', name: 'Adaptive panel', component: AdaptivePanelDemo },
{ id: 'RTEDemo', name: 'RTE Contents', component: RichTextEditorDemo },
{ id: 'RTE-readonly', name: 'RTE Readonly', component: RichTextEditorDemoReadonly },
Expand Down
329 changes: 0 additions & 329 deletions app/src/sandbox/tableCellStyles/TableCellsStylesSandbox.tsx

This file was deleted.

5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
# 5.xx.xx - xx.xx.2024
**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
* [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


**What's Fixed**
* [PickerInput]: show 'N selected' instead of '+N' tag if maxItems=0
* [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'
* [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))
* [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.


# 5.12.1 - 17.12.2024
Expand Down
Loading

0 comments on commit 099fa5e

Please sign in to comment.