Skip to content

Commit b85b54d

Browse files
authored
feat: update to UI5 Web Components 2.10.0 (#7308)
1 parent 5b75245 commit b85b54d

File tree

53 files changed

+1627
-451
lines changed

Some content is hidden

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

53 files changed

+1627
-451
lines changed

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

Lines changed: 584 additions & 67 deletions
Large diffs are not rendered by default.

.storybook/custom-element-manifests/main.json

Lines changed: 346 additions & 53 deletions
Large diffs are not rendered by default.

config/version-info.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,6 @@
5151
"2.6.0": "2.6.2",
5252
"2.7.0": "2.7.0",
5353
"2.8.0": "2.8.0",
54-
"2.9.0": "2.9.0"
54+
"2.9.0": "2.9.0",
55+
"2.10.0": "2.10.0"
5556
}

docs/knowledge-base/ChangeEvents.mdx

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,9 @@ const onSelectionChange = (event) => {
4646
};
4747

4848
<List mode={ListSelectionMode.MultiSelect} onSelectionChange={onSelectionChange}>
49-
<ListItemStandard additionalText="3" data-custom="custom value of list item 1">
50-
List Item 1
51-
</ListItemStandard>
52-
<ListItemStandard additionalText="2" data-custom="custom value of list item 2">
53-
List Item 2
54-
</ListItemStandard>
55-
<ListItemStandard additionalText="1" data-custom="custom value of list item 3">
56-
List Item 3
57-
</ListItemStandard>
49+
<ListItemStandard additionalText="3" data-custom="custom value of list item 1" text="List Item 1" />
50+
<ListItemStandard additionalText="2" data-custom="custom value of list item 2" text="List Item 2" />
51+
<ListItemStandard additionalText="1" data-custom="custom value of list item 3" text="List Item 3" />
5852
</List>;
5953
```
6054

docs/knowledge-base/Styling.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,9 @@ function MyComponent() {
163163
className="card"
164164
>
165165
<List>
166-
<ListItemStandard description="Software Architect">Richard Wilson</ListItemStandard>
167-
<ListItemStandard description="Visual Designer">Elena Petrova</ListItemStandard>
168-
<ListItemStandard description="Quality Specialist">John Miller</ListItemStandard>
166+
<ListItemStandard description="Software Architect" text="Richard Wilson" />
167+
<ListItemStandard description="Visual Designer" text="Elena Petrova" />
168+
<ListItemStandard description="Quality Specialist" text="John Miller" />
169169
</List>
170170
</Card>
171171
);

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@
4343
"@storybook/react": "8.6.12",
4444
"@storybook/react-vite": "8.6.12",
4545
"@storybook/theming": "8.6.12",
46-
"@ui5/webcomponents": "2.9.0",
47-
"@ui5/webcomponents-ai": "2.9.0",
48-
"@ui5/webcomponents-compat": "2.9.0",
49-
"@ui5/webcomponents-fiori": "2.9.0",
50-
"@ui5/webcomponents-icons": "2.9.0",
46+
"@ui5/webcomponents": "2.10.0",
47+
"@ui5/webcomponents-ai": "2.10.0",
48+
"@ui5/webcomponents-compat": "2.10.0",
49+
"@ui5/webcomponents-fiori": "2.10.0",
50+
"@ui5/webcomponents-icons": "2.10.0",
5151
"react": "^19.0.0",
5252
"react-dom": "^19.0.0",
5353
"remark-gfm": "^4.0.0",
@@ -69,7 +69,7 @@
6969
"@types/node": "^22.0.0",
7070
"@types/react": "^19.0.1",
7171
"@types/react-dom": "^19.0.1",
72-
"@ui5/webcomponents-tools": "2.9.0",
72+
"@ui5/webcomponents-tools": "2.10.0",
7373
"@vitejs/plugin-react": "^4.2.0",
7474
"chromatic": "^11.0.0",
7575
"cssnano": "^7.0.0",

packages/ai/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"@ui5/webcomponents-react-base": "workspace:~"
3434
},
3535
"peerDependencies": {
36-
"@ui5/webcomponents-ai": "~2.9.0",
36+
"@ui5/webcomponents-ai": "~2.10.0",
3737
"react": "^18 || ^19"
3838
},
3939
"publishConfig": {

packages/base/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
},
3333
"peerDependencies": {
3434
"@types/react": "*",
35-
"@ui5/webcomponents-base": "~2.9.0",
35+
"@ui5/webcomponents-base": "~2.10.0",
3636
"react": "^18 || ^19"
3737
},
3838
"peerDependenciesMeta": {

packages/charts/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
"recharts": "2.15.3"
4040
},
4141
"peerDependencies": {
42-
"@ui5/webcomponents-react": "~2.9.0",
43-
"@ui5/webcomponents-react-base": "~2.9.0",
42+
"@ui5/webcomponents-react": "~2.10.0",
43+
"@ui5/webcomponents-react-base": "~2.10.0",
4444
"react": "^18 || ^19"
4545
},
4646
"publishConfig": {

packages/compat/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141
"peerDependencies": {
4242
"@types/react": "*",
4343
"@types/react-dom": "*",
44-
"@ui5/webcomponents-compat": "~2.9.0",
45-
"@ui5/webcomponents-react": "~2.9.0",
44+
"@ui5/webcomponents-compat": "~2.10.0",
45+
"@ui5/webcomponents-react": "~2.10.0",
4646
"react": "^18 || ^19",
4747
"react-dom": "^18 || ^19"
4848
},

0 commit comments

Comments
 (0)