profinansy-ui-lib 2.0.71 → 2.0.73
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/footer/components/About/About.d.ts +2 -0
- package/dist/components/footer/components/About/About.styled.d.ts +2 -0
- package/dist/components/footer/components/Applications/Applications.styled.d.ts +4 -0
- package/dist/components/footer/components/Contacts/Contacts.d.ts +5 -0
- package/dist/components/footer/components/Contacts/Contacts.styled.d.ts +6 -0
- package/dist/components/footer/components/Documents/Documents.d.ts +6 -0
- package/dist/components/footer/components/Documents/Documents.styled.d.ts +1 -0
- package/dist/components/footer/components/Information/Information.d.ts +5 -0
- package/dist/components/footer/components/Information/Information.styled.d.ts +1 -0
- package/dist/components/footer/components/Navigation/Navigation.d.ts +10 -0
- package/dist/components/footer/components/Navigation/Navigation.styled.d.ts +5 -0
- package/dist/components/footer/components/Networks/Networks.d.ts +2 -0
- package/dist/components/footer/components/Networks/Networks.styled.d.ts +1 -0
- package/dist/components/footer/constants.d.ts +8 -10
- package/dist/components/footer/footer.styled.d.ts +5 -30
- package/dist/components/header/contstants/authLinks.d.ts +14 -0
- package/dist/components/header/contstants/paidLinks.d.ts +14 -9
- package/dist/index.js +194 -230
- package/package.json +69 -69
- package/dist/components/footer/components/AddressBlock/AddressBlock.d.ts +0 -5
- package/dist/components/footer/components/AddressBlock/AddressBlock.styled.d.ts +0 -3
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export declare const Container: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
2
|
+
export declare const Item: import("styled-components").StyledComponent<"a", import("styled-components").DefaultTheme, {}, never>;
|
|
3
|
+
export declare const Text: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, {}, never>;
|
|
4
|
+
export declare const Name: import("styled-components").StyledComponent<"p", import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export declare const Container: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
2
|
+
export declare const Contacts: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
3
|
+
export declare const Contact: import("styled-components").StyledComponent<"a", import("styled-components").DefaultTheme, {}, never>;
|
|
4
|
+
export declare const AddressBlock: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
5
|
+
export declare const Address: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
6
|
+
export declare const CompanyName: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const Link: import("styled-components").StyledComponent<"a", import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const Container: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { UserRole } from '../../../../common.types';
|
|
2
|
+
interface IProps {
|
|
3
|
+
userRole: UserRole;
|
|
4
|
+
clubAccess: boolean;
|
|
5
|
+
leaderboardPermission: boolean;
|
|
6
|
+
hostname: string;
|
|
7
|
+
onRouteChange?: (url: string) => void;
|
|
8
|
+
}
|
|
9
|
+
declare const Navigation: ({ hostname, userRole, clubAccess, leaderboardPermission, onRouteChange }: IProps) => JSX.Element;
|
|
10
|
+
export { Navigation };
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export declare const Container: import("styled-components").StyledComponent<"nav", import("styled-components").DefaultTheme, {}, never>;
|
|
2
|
+
export declare const List: import("styled-components").StyledComponent<"ul", import("styled-components").DefaultTheme, {}, never>;
|
|
3
|
+
export declare const Item: import("styled-components").StyledComponent<"li", import("styled-components").DefaultTheme, {}, never>;
|
|
4
|
+
export declare const MainLink: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
5
|
+
export declare const SubLink: import("styled-components").StyledComponent<"a", import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const Container: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,16 +1,14 @@
|
|
|
1
1
|
import { UserRole } from '../../common.types';
|
|
2
|
-
export declare const getFooterNavRows: (userRole: UserRole, clubAccess: boolean,
|
|
3
|
-
export declare const getFooterDescription: (isLms?: boolean) => string;
|
|
4
|
-
export declare const getFooterLeaderBoardLinks: (permission: boolean, profinansyHostname: string, isGuest?: boolean) => {
|
|
5
|
-
title: string;
|
|
6
|
-
href: string;
|
|
7
|
-
}[];
|
|
8
|
-
type FooterLink = {
|
|
2
|
+
export declare const getFooterNavRows: (userRole: UserRole, clubAccess: boolean, hostname: string, leaderboardPermission?: boolean) => {
|
|
9
3
|
title: string;
|
|
10
4
|
href: string;
|
|
11
|
-
links
|
|
5
|
+
links: {
|
|
12
6
|
title: string;
|
|
13
7
|
href: string;
|
|
14
8
|
}[];
|
|
15
|
-
};
|
|
16
|
-
export
|
|
9
|
+
}[][];
|
|
10
|
+
export declare const getFooterDescription: (isLms?: boolean) => string;
|
|
11
|
+
export declare const getFooterLeaderBoardLinks: (permission: boolean, hostname: string, isGuest?: boolean) => {
|
|
12
|
+
title: string;
|
|
13
|
+
href: string;
|
|
14
|
+
}[];
|
|
@@ -1,30 +1,5 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
export declare const
|
|
3
|
-
export declare const
|
|
4
|
-
export declare const
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const FooterBottomText: import("styled-components").StyledComponent<"p", import("styled-components").DefaultTheme, {}, never>;
|
|
7
|
-
export declare const FooterLinks: import("styled-components").StyledComponent<"nav", import("styled-components").DefaultTheme, {}, never>;
|
|
8
|
-
export declare const LinksRow: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
9
|
-
export declare const LinksUl: import("styled-components").StyledComponent<"ul", import("styled-components").DefaultTheme, {}, never>;
|
|
10
|
-
export declare const LinkLi: import("styled-components").StyledComponent<"li", import("styled-components").DefaultTheme, {}, never>;
|
|
11
|
-
export declare const MainLink: import("styled-components").StyledComponent<"a", import("styled-components").DefaultTheme, {}, never>;
|
|
12
|
-
export declare const LinkA: import("styled-components").StyledComponent<"a", import("styled-components").DefaultTheme, {
|
|
13
|
-
active?: boolean;
|
|
14
|
-
}, never>;
|
|
15
|
-
export declare const DocumentsLinks: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
16
|
-
export declare const AboutCompany: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
17
|
-
export declare const AboutCompanyLink: import("styled-components").StyledComponent<"a", import("styled-components").DefaultTheme, {}, never>;
|
|
18
|
-
export declare const DocumentLink: import("styled-components").StyledComponent<"a", import("styled-components").DefaultTheme, {}, never>;
|
|
19
|
-
export declare const FooterFirstBlock: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
20
|
-
export declare const MainData: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
21
|
-
export declare const DownloadMarketList: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
22
|
-
export declare const DownloadIconWrapper: import("styled-components").StyledComponent<"a", import("styled-components").DefaultTheme, {}, never>;
|
|
23
|
-
export declare const StoreName: import("styled-components").StyledComponent<"p", import("styled-components").DefaultTheme, {}, never>;
|
|
24
|
-
export declare const DownloadDescription: import("styled-components").StyledComponent<"p", import("styled-components").DefaultTheme, {}, never>;
|
|
25
|
-
export declare const HelpBlock: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
26
|
-
export declare const HelpText: import("styled-components").StyledComponent<"a", import("styled-components").DefaultTheme, {}, never>;
|
|
27
|
-
export declare const HelpTextP: import("styled-components").StyledComponent<"p", import("styled-components").DefaultTheme, {}, never>;
|
|
28
|
-
export declare const HelpLink: import("styled-components").StyledComponent<"a", import("styled-components").DefaultTheme, {}, never>;
|
|
29
|
-
export declare const ContactNumbers: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
30
|
-
export declare const CompanyName: import("styled-components").StyledComponent<"p", import("styled-components").DefaultTheme, {}, never>;
|
|
1
|
+
export declare const Main: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
2
|
+
export declare const LeftContent: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
3
|
+
export declare const RightContent: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
4
|
+
export declare const LogoWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
5
|
+
export declare const Support: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,4 +1,18 @@
|
|
|
1
1
|
export declare const authorizedLinks: (hostname: string, leaderBoardPermission: boolean) => ({
|
|
2
|
+
name: string;
|
|
3
|
+
Icon: any;
|
|
4
|
+
href: string;
|
|
5
|
+
subPages: ({
|
|
6
|
+
name: string;
|
|
7
|
+
href: string;
|
|
8
|
+
unavailable?: undefined;
|
|
9
|
+
} | {
|
|
10
|
+
name: string;
|
|
11
|
+
href: string;
|
|
12
|
+
unavailable: boolean;
|
|
13
|
+
})[];
|
|
14
|
+
innerPages?: undefined;
|
|
15
|
+
} | {
|
|
2
16
|
name: string;
|
|
3
17
|
Icon: any;
|
|
4
18
|
href: string;
|
|
@@ -1,4 +1,18 @@
|
|
|
1
1
|
export declare const paidLinks: (hostname: string, leaderBoardPermission: boolean) => ({
|
|
2
|
+
name: string;
|
|
3
|
+
Icon: any;
|
|
4
|
+
href: string;
|
|
5
|
+
subPages: ({
|
|
6
|
+
name: string;
|
|
7
|
+
href: string;
|
|
8
|
+
available?: undefined;
|
|
9
|
+
} | {
|
|
10
|
+
name: string;
|
|
11
|
+
href: string;
|
|
12
|
+
available: boolean;
|
|
13
|
+
})[];
|
|
14
|
+
innerPages?: undefined;
|
|
15
|
+
} | {
|
|
2
16
|
name: string;
|
|
3
17
|
Icon: any;
|
|
4
18
|
href: string;
|
|
@@ -22,13 +36,4 @@ export declare const paidLinks: (hostname: string, leaderBoardPermission: boolea
|
|
|
22
36
|
available?: undefined;
|
|
23
37
|
})[];
|
|
24
38
|
innerPages: string[];
|
|
25
|
-
} | {
|
|
26
|
-
name: string;
|
|
27
|
-
Icon: any;
|
|
28
|
-
href: string;
|
|
29
|
-
subPages: {
|
|
30
|
-
name: string;
|
|
31
|
-
href: string;
|
|
32
|
-
}[];
|
|
33
|
-
innerPages?: undefined;
|
|
34
39
|
})[];
|