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.
- package/dist/components/SettingsNavbar/index.d.ts +12 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/index.css +1 -1
- package/dist/library.es.js +2256 -2204
- package/dist/library.umd.js +25 -25
- package/package.json +1 -1
|
@@ -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';
|