profinansy-ui-lib 3.1.97 → 3.1.98

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.
@@ -1,7 +1,5 @@
1
1
  interface IProps {
2
2
  isMAFK: boolean;
3
- isIdvMirror: boolean;
4
- isLMS: boolean;
5
3
  }
6
- declare const Contacts: ({ isMAFK, isIdvMirror, isLMS }: IProps) => JSX.Element;
4
+ declare const Contacts: ({ isMAFK }: IProps) => JSX.Element;
7
5
  export { Contacts };
@@ -1,13 +1,10 @@
1
1
  import { UserRole } from '../../../../../common.types';
2
2
  interface IProps {
3
3
  userRole: UserRole;
4
- isLmsMirror: boolean;
5
- isClubMirror: boolean;
6
- isIdvMirror: boolean;
7
4
  leaderboardPermission: boolean;
8
5
  hostname: string;
9
6
  isTest: boolean;
10
7
  onRouteChange?: (url: string) => void;
11
8
  }
12
- declare const Navigation: ({ hostname, userRole, isLmsMirror, isClubMirror, isIdvMirror, leaderboardPermission, onRouteChange, isTest }: IProps) => JSX.Element;
9
+ declare const Navigation: ({ hostname, userRole, leaderboardPermission, onRouteChange, isTest }: IProps) => JSX.Element;
13
10
  export { Navigation };
@@ -1,6 +1,7 @@
1
1
  import { UserRole } from '../../../common.types';
2
- export declare const getFooterNavRows: (userRole: UserRole, isMirrorLMS: boolean, isMirrorClub: boolean, isIdvMirror: boolean, hostname: string, leaderboardPermission: boolean, isTest: boolean) => {
2
+ export declare const getFooterNavRows: (userRole: UserRole, hostname: string, leaderboardPermission: boolean, isTest: boolean) => {
3
3
  name: string;
4
+ Icon: any;
4
5
  href: string;
5
6
  subPages: {
6
7
  name: string;