Skip to content

Commit 7a27b7f

Browse files
MarcusNotheisLukas742
andauthoredJun 13, 2024··
feat: update to UI5 Web Components 2.0 RC (#5861)
BREAKING CHANGE: updated UI5 Web Components to v2. All [breaking changes](https://sap.github.io/ui5-webcomponents/nightly/docs/Migrating%20to%20version%202.0%20guide/) apply to this project as well. BREAKING CHANGE: `ActionSheet`: prop `placementType` has been renamed to `placement`, `onAfterClose` to `onClose` and `onAfterOpen` to `onOpen` BREAKING CHANGE: the `Badge` component has been renamed to `Tag` BREAKING CHANGE: the `ComboBoxGroupItem` component has been renamed to `ComboBoxItemGroup` BREAKING CHANGE: the `GroupHeaderListItem` component has been renamed to `ListItemGroup` BREAKING CHANGE: the `NotificationAction` component has been removed. You can use the `Menu` component instead. BREAKING CHANGE: the `SelectMenu` and `SelectMenuOption` components have been removed. The `Select` and `Option` now allow custom content. BREAKING CHANGE: `SelectDialog`: renamed prop `mode` to `selectionMode` to be aligned with new List API, `onAfterClose` to `onClose` and `onAfterOpen` to `onOpen` --------- Co-authored-by: Lukas Harbarth <[email protected]>
1 parent 0a9fae9 commit 7a27b7f

File tree

330 files changed

+11157
-13666
lines changed

Some content is hidden

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

330 files changed

+11157
-13666
lines changed
 

‎.storybook/components/ArgTypesWithNote.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { ArgTypes } from '@storybook/blocks';
2-
import { MessageStrip, MessageStripDesign } from '@ui5/webcomponents-react';
2+
import MessageStripDesign from '@ui5/webcomponents/dist/types/MessageStripDesign.js';
3+
import { MessageStrip } from '@ui5/webcomponents-react';
34
import { ComponentProps, ReactNode } from 'react';
45
import classes from './ArgTypesWithNote.module.css';
56

‎.storybook/components/ControlsWithNote.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { Controls } from '@storybook/blocks';
2-
import { MessageStrip, MessageStripDesign } from '@ui5/webcomponents-react';
2+
import MessageStripDesign from '@ui5/webcomponents/dist/types/MessageStripDesign.js';
3+
import { MessageStrip } from '@ui5/webcomponents-react';
34
import { ComponentProps, ReactNode } from 'react';
45
import classes from './ControlsWithNote.module.css';
56
import { DomRefTable } from './DomRefTable';

0 commit comments

Comments
 (0)
Please sign in to comment.