Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 60907b4

Browse files
MarcusNotheisLukas742
andauthoredJun 24, 2024··
feat: update to @ui5/webcomonents 2.0.0-rc.6 (#5940)
BREAKING CHANGE: the `StandardListItem` has been replaced with the `ListItemStandard` component BREAKING CHANGE: the `CustomListItem` has been replaced with the `ListItemCustom` component BREAKING CHANGE: the `MultiComboBoxGroupItem` has been replaced with the `MultiComboBoxItemGroup` component BREAKING CHANGE: the `TableGroupRow` component has been deleted BREAKING CHANGE: the `TableColumn` component has been replaced with the `TableHeaderCell` component BREAKING CHANGE: **VariantManagement**: the `portalContainer` prop has been removed as it is no longer needed. --------- Co-authored-by: Lukas Harbarth <[email protected]>
1 parent 3d4cb44 commit 60907b4

File tree

77 files changed

+9395
-7658
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+9395
-7658
lines changed
 

‎.storybook/components/ProductsTable.tsx

+9-8
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import {
44
Label,
55
Table,
66
TableCell,
7-
TableColumn,
7+
TableHeaderCell,
8+
TableHeaderRow,
89
TableRow,
910
Text
1011
} from '@ui5/webcomponents-react';
@@ -13,13 +14,13 @@ import { ProductCollection } from './products.json';
1314
export const ProductsTable = () => {
1415
return (
1516
<Table
16-
columns={
17-
<>
18-
<TableColumn>Product</TableColumn>
19-
<TableColumn>Supplier</TableColumn>
20-
<TableColumn>Dimensions</TableColumn>
21-
<TableColumn>Price</TableColumn>
22-
</>
17+
headerRow={
18+
<TableHeaderRow>
19+
<TableHeaderCell>Product</TableHeaderCell>
20+
<TableHeaderCell>Supplier</TableHeaderCell>
21+
<TableHeaderCell>Dimensions</TableHeaderCell>
22+
<TableHeaderCell>Price</TableHeaderCell>
23+
</TableHeaderRow>
2324
}
2425
>
2526
{ProductCollection.map((product) => {

‎.storybook/custom-element-manifests/fiori.json

+266-24
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.