Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,17 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

## [2.26.0](https://github.com/UI5/webcomponents-react/compare/v2.25.1...v2.26.0) (2026-08-31)


### Features

* **mcp-server:** add Streamable HTTP transport ([#8890](https://github.com/UI5/webcomponents-react/issues/8890)) ([f1bc56e](https://github.com/UI5/webcomponents-react/commit/f1bc56eae398edb261f121c00db3bc20b1b1f6e2))
* **ObjectPage:** add `fitContent` prop for full-height sections in tab-bar mode ([#8852](https://github.com/UI5/webcomponents-react/issues/8852)) ([8f8cac2](https://github.com/UI5/webcomponents-react/commit/8f8cac20539fdca687b884f60f6443cdb2d965ad)), closes [#8801](https://github.com/UI5/webcomponents-react/issues/8801)
* update to UI5 Web Components 2.26.0 ([#8909](https://github.com/UI5/webcomponents-react/issues/8909)) ([690a9f8](https://github.com/UI5/webcomponents-react/commit/690a9f8ae1ee360dc4c85e67f0d9da58ee050271))

- **mcp-server:** add Streamable HTTP transport ([#8890](https://github.com/UI5/webcomponents-react/issues/8890)) ([f1bc56e](https://github.com/UI5/webcomponents-react/commit/f1bc56eae398edb261f121c00db3bc20b1b1f6e2))
- **ObjectPage:** add `fitContent` prop for full-height sections in tab-bar mode ([#8852](https://github.com/UI5/webcomponents-react/issues/8852)) ([8f8cac2](https://github.com/UI5/webcomponents-react/commit/8f8cac20539fdca687b884f60f6443cdb2d965ad)), closes [#8801](https://github.com/UI5/webcomponents-react/issues/8801)
- update to UI5 Web Components 2.26.0 ([#8909](https://github.com/UI5/webcomponents-react/issues/8909)) ([690a9f8](https://github.com/UI5/webcomponents-react/commit/690a9f8ae1ee360dc4c85e67f0d9da58ee050271))

### Bug Fixes

* **AnalyticalTable:** prevent unnecessary scrollbar when CSS-scaled ([#8891](https://github.com/UI5/webcomponents-react/issues/8891)) ([538526b](https://github.com/UI5/webcomponents-react/commit/538526bc0d3bf224a5ee46b2ca8aa738d8214c81))
* **deps:** update dependency @tanstack/react-virtual to v3.14.10 ([#8894](https://github.com/UI5/webcomponents-react/issues/8894)) ([2de684c](https://github.com/UI5/webcomponents-react/commit/2de684c55f93f579c3de809bbcb75a8908c86ebe))
* **ObjectPage:** allow re-expanding collapsed header after `IconTabBar` tab switch ([#8837](https://github.com/UI5/webcomponents-react/issues/8837)) ([1479a45](https://github.com/UI5/webcomponents-react/commit/1479a450a09cfb40e0b848bc9a4d7b75642c0c8e))
- **AnalyticalTable:** prevent unnecessary scrollbar when CSS-scaled ([#8891](https://github.com/UI5/webcomponents-react/issues/8891)) ([538526b](https://github.com/UI5/webcomponents-react/commit/538526bc0d3bf224a5ee46b2ca8aa738d8214c81))
- **deps:** update dependency @tanstack/react-virtual to v3.14.10 ([#8894](https://github.com/UI5/webcomponents-react/issues/8894)) ([2de684c](https://github.com/UI5/webcomponents-react/commit/2de684c55f93f579c3de809bbcb75a8908c86ebe))
- **ObjectPage:** allow re-expanding collapsed header after `IconTabBar` tab switch ([#8837](https://github.com/UI5/webcomponents-react/issues/8837)) ([1479a45](https://github.com/UI5/webcomponents-react/commit/1479a450a09cfb40e0b848bc9a4d7b75642c0c8e))

## [2.25.1](https://github.com/UI5/webcomponents-react/compare/v2.25.0...v2.25.1) (2026-08-17)

Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@
"tocbot": "4.36.8"
},
"devDependencies": {
"@babel/cli": "7.29.7",
"@babel/core": "7.29.7",
"@babel/preset-env": "7.29.7",
"@babel/preset-react": "7.29.7",
"@babel/preset-typescript": "7.29.7",
"@babel/cli": "8.0.1",
"@babel/core": "8.0.1",
"@babel/preset-env": "8.0.2",
"@babel/preset-react": "8.0.1",
"@babel/preset-typescript": "8.0.1",
"@cypress/code-coverage": "4.0.3",
"@eslint/compat": "2.1.0",
"@eslint/js": "9.39.5",
Expand Down
20 changes: 13 additions & 7 deletions packages/main/.babelrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,21 @@
"browserslistEnv": "production"
}
],
[
"@babel/preset-react",
{
"runtime": "automatic",
"useSpread": true
}
],
"@babel/preset-typescript"
],
"overrides": [
{
"test": "**/*.tsx",
"presets": [
[
"@babel/preset-react",
{
"runtime": "automatic"
}
]
]
}
],
"env": {
"ssr": {
"plugins": [
Expand Down
Loading