@ui5/webcomponents-react
Version:
React Wrapper for UI5 Web Components and additional components
16 lines (15 loc) • 904 B
JavaScript
'use client';
import { withWebComponent } from '@ui5/webcomponents-react-base';
/**
* The `UserSettingsDialog` is an SAP Fiori-specific web component used in the `UserMenu`.
* It allows the user to easily view information and settings for an account.
*
*
*
* __Note:__ This is a UI5 Web Component! [UserSettingsDialog UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/fiori/UserSettingsDialog) | [Repository](https://github.com/UI5/webcomponents)
*
* @since [2.8.0](https://github.com/UI5/webcomponents/releases/tag/v2.8.0) of __@ui5/webcomponents-fiori__.
*/
const UserSettingsDialog = withWebComponent('ui5-user-settings-dialog', ['headerText'], ['open', 'saveMode', 'showSearchField'], ['fixedItems'], ['before-close', 'cancel', 'close', 'open', 'save', 'selection-change']);
UserSettingsDialog.displayName = 'UserSettingsDialog';
export { UserSettingsDialog };