qlu-20-ui-library 1.1.34 → 1.1.35

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.
@@ -0,0 +1,12 @@
1
+ /// <reference types="react" />
2
+ interface SettingsNavbarProps {
3
+ active: "Personal Information" | "Qmail" | "Organisation" | "Privacy" | "Subscription" | "Password";
4
+ onInfoClick: (event: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
5
+ onPasswordClick: (event: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
6
+ onSubscriptionClick: (event: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
7
+ onPrivacyClick: (event: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
8
+ onOrganizationClick: (event: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
9
+ onQMailClick: (event: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
10
+ }
11
+ declare const SettingsNavbar: ({ active, onInfoClick, onPasswordClick, onSubscriptionClick, onPrivacyClick, onOrganizationClick, onQMailClick }: SettingsNavbarProps) => JSX.Element;
12
+ export default SettingsNavbar;
@@ -104,3 +104,4 @@ export { default as TitleFilterHeader } from './TitleFilterHeader';
104
104
  export { default as ToggleComponent } from './ToggleComponent';
105
105
  export { default as TopNavbar } from './TopNavbar';
106
106
  export { default as TruncateText } from './TruncateText';
107
+ export { default as SettingsNavbar } from './SettingsNavbar';