@hxtos/hx-components 0.35.1 → 0.35.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.es.js +3867 -3854
- package/dist/index.umd.js +44 -44
- package/dist/src/components/UserMenu/index.d.ts +1 -5
- package/package.json +1 -1
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
interface UserMenuProps {
|
|
2
2
|
user: any;
|
|
3
|
-
isDarkMode: boolean;
|
|
4
|
-
setIsDarkMode: any;
|
|
5
3
|
isDebuggMode: boolean;
|
|
6
4
|
tenantValue: string;
|
|
7
5
|
onTenantChange: (tenant: any) => void;
|
|
8
|
-
setTheme: any;
|
|
9
|
-
setLanguage: any;
|
|
10
6
|
onSelectTerminal?: any;
|
|
11
7
|
logout: any;
|
|
12
8
|
appNameText: string;
|
|
@@ -21,5 +17,5 @@ interface UserMenuProps {
|
|
|
21
17
|
isMultiTerminal?: boolean;
|
|
22
18
|
onEditProfileClick?: () => void;
|
|
23
19
|
}
|
|
24
|
-
declare function UserMenu({ user,
|
|
20
|
+
declare function UserMenu({ user, isDebuggMode, tenantValue, onTenantChange, onSelectTerminal, logout, appNameText, availablePortalsText, clickToAccessText, clickToChangeTerminal, nightThemeText, logoutText, isOpen, setOpen, terminalName, isMultiTerminal, onEditProfileClick, }: UserMenuProps): import("react/jsx-runtime").JSX.Element;
|
|
25
21
|
export default UserMenu;
|