@zealicsolutions/web-ui 0.3.88 → 0.3.89

Sign up to get free protection for your applications and to get access to all the features.
@@ -4,9 +4,11 @@ export declare type AccountButtonContextType = Partial<{
4
4
  userInitials: string;
5
5
  logOutHandler: Callback;
6
6
  goToAccountInfo: Callback;
7
+ username: string;
7
8
  }>;
8
9
  export declare const AccountButtonContext: import("react").Context<Partial<{
9
10
  userInitials: string;
10
11
  logOutHandler: Callback;
11
12
  goToAccountInfo: Callback;
13
+ username: string;
12
14
  }>>;
@@ -4,5 +4,6 @@ export declare type AccountButtonProviderProps = PropsWithChildren<Partial<{
4
4
  userInitials: string;
5
5
  logOutHandler: Callback;
6
6
  goToAccountInfo: Callback;
7
+ username: string;
7
8
  }>>;
8
- export declare const AccountButtonProvider: ({ children, goToAccountInfo, userInitials, logOutHandler, }: AccountButtonProviderProps) => JSX.Element;
9
+ export declare const AccountButtonProvider: ({ children, goToAccountInfo, userInitials, logOutHandler, username, }: AccountButtonProviderProps) => JSX.Element;
@@ -2,4 +2,5 @@ export declare const useAccountButtonContext: () => Partial<{
2
2
  userInitials: string;
3
3
  logOutHandler: import("../../typescript").Callback;
4
4
  goToAccountInfo: import("../../typescript").Callback;
5
+ username: string;
5
6
  }>;