Skip to content

Commit

Permalink
Merge pull request #2653 from epam/datepicker-in-table-freeze-bug
Browse files Browse the repository at this point in the history
[DatePicker]: fixed body close in date picker input scrolled out from view
  • Loading branch information
AlekseyManetov authored Nov 25, 2024
2 parents 3fae668 + a42f355 commit 23b3536
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 26 deletions.
3 changes: 2 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
**What's New**

**What's Fixed**
* [PickerInput]: fixed unnecessary api calls on body open with `minCharsToSearch` prop and search in body.
* [PickerInput]: fixed unnecessary api calls on body open with `minCharsToSearch` prop and search in body
* [RTE]: fixed image caption not being visible when RTE initially in readonly mode
* [DatePicker]: fixed body close if date picker input scrolled out from view

# 5.11.0 - 15.11.2024

Expand Down
48 changes: 24 additions & 24 deletions uui-build/config/bundleSizeBaseLine.json
Original file line number Diff line number Diff line change
@@ -1,62 +1,62 @@
{
"version": "5.10.0",
"timestamp": "2024-10-15",
"version": "5.11.0",
"timestamp": "2024-11-22",
"sizes": {
"templateApp": {
"css": 300045,
"js": 478744
"css": 303125,
"js": 482762
},
"@epam/app": {
"css": 678966,
"js": 5033790
"css": 731357,
"js": 5035508
},
"@epam/draft-rte": {
"css": 9771,
"js": 45292
"css": 9782,
"js": 45296
},
"@epam/electric": {
"css": 2275,
"js": 2408
"js": 2416
},
"@epam/promo": {
"css": 47627,
"js": 10896
"css": 47140,
"js": 9424
},
"@epam/uui-extra": {
"css": 0,
"js": 213
},
"@epam/loveship": {
"css": 53440,
"js": 42547
"css": 53117,
"js": 40264
},
"@epam/uui-components": {
"css": 22530,
"js": 247001
"css": 22508,
"js": 248024
},
"@epam/uui-core": {
"css": 0,
"js": 345544
"js": 346246
},
"@epam/uui-db": {
"css": 0,
"js": 45769
},
"@epam/uui-docs": {
"css": 2448,
"js": 209641
"css": 2447,
"js": 178066
},
"@epam/uui-editor": {
"css": 12733,
"js": 175284
"css": 12746,
"js": 176104
},
"@epam/uui-timeline": {
"css": 2255,
"js": 79166
"css": 2254,
"js": 80669
},
"@epam/uui": {
"css": 277776,
"js": 343597
"css": 280340,
"js": 346171
}
}
}
1 change: 0 additions & 1 deletion uui-components/src/overlays/Dropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,6 @@ export class Dropdown extends React.Component<DropdownProps, DropdownState> {
if (isReferenceHidden && this.props.closeBodyOnTogglerHidden !== false && this.isOpened()) {
// Yes, we know that it's hack and we can perform setState in render, but we don't have other way to do it in this case
setTimeout(() => this.handleOpenedChange(false), 0);
return null;
}

// @ts-ignore
Expand Down

0 comments on commit 23b3536

Please sign in to comment.