profinansy-ui-lib 3.1.5 → 3.1.7
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/api/initial.d.ts +2 -1
- package/dist/api/quiz/quiz.d.ts +8 -1
- package/dist/api/quiz/quiz.tyled.d.ts +10 -0
- package/dist/common.types.d.ts +1 -0
- package/dist/components/blocks/footer/constants.d.ts +1 -64
- package/dist/components/blocks/sideMenu/SideMenu.d.ts +2 -1
- package/dist/components/blocks/sideMenu/components/Premium/Premium.d.ts +1 -4
- package/dist/components/blocks/sideMenu/components/Premium/components/ModalQuiz/Content.d.ts +10 -0
- package/dist/components/blocks/sideMenu/components/Premium/components/ModalQuiz/ModalQuiz.d.ts +4 -2
- package/dist/components/blocks/sideMenu/components/Premium/components/ModalQuiz/Step1/Step1.d.ts +3 -1
- package/dist/components/blocks/sideMenu/components/Premium/components/ModalQuiz/Step2/Step2.d.ts +3 -1
- package/dist/components/blocks/sideMenu/components/Premium/components/ModalQuiz/Step3/Step3.d.ts +1 -1
- package/dist/components/blocks/sideMenu/components/SubPages/SubPages.styled.d.ts +2 -2
- package/dist/components/uikit/Modal/Modal.styled.d.ts +4 -1
- package/dist/components/uikit/Modal/Modal.typed.d.ts +0 -2
- package/dist/hooks/useCurrentPath.d.ts +1 -0
- package/dist/index.js +98 -41
- package/dist/urls/products/education/educationLinks.d.ts +10 -0
- package/dist/urls/products/investments/investments.d.ts +38 -17
- package/package.json +1 -1
|
@@ -14,6 +14,11 @@ export declare const getEducationLinks: (hostname: string, hostnameLenta: string
|
|
|
14
14
|
Icon: any;
|
|
15
15
|
href: string;
|
|
16
16
|
subPages: ({
|
|
17
|
+
name: string;
|
|
18
|
+
Icon: any;
|
|
19
|
+
href: string;
|
|
20
|
+
innerPages: string[];
|
|
21
|
+
} | {
|
|
17
22
|
name: string;
|
|
18
23
|
Icon: any;
|
|
19
24
|
href: string;
|
|
@@ -24,11 +29,16 @@ export declare const getEducationLinks: (hostname: string, hostnameLenta: string
|
|
|
24
29
|
href: string;
|
|
25
30
|
locked: boolean;
|
|
26
31
|
innerPages: string[];
|
|
32
|
+
subPages?: undefined;
|
|
27
33
|
} | {
|
|
28
34
|
name: string;
|
|
29
35
|
Icon: any;
|
|
30
36
|
href: string;
|
|
31
37
|
innerPages: string[];
|
|
38
|
+
subPages: {
|
|
39
|
+
name: string;
|
|
40
|
+
href: string;
|
|
41
|
+
}[];
|
|
32
42
|
locked?: undefined;
|
|
33
43
|
})[];
|
|
34
44
|
};
|
|
@@ -3,19 +3,6 @@ export declare const getInvestmentsLinks: (hostname: string, hostnameLenta: stri
|
|
|
3
3
|
Icon: any;
|
|
4
4
|
href: string;
|
|
5
5
|
subPages: ({
|
|
6
|
-
name: string;
|
|
7
|
-
Icon: any;
|
|
8
|
-
locked: boolean;
|
|
9
|
-
subPages: {
|
|
10
|
-
name: string;
|
|
11
|
-
href: string;
|
|
12
|
-
locked: boolean;
|
|
13
|
-
}[];
|
|
14
|
-
href?: undefined;
|
|
15
|
-
unavailable?: undefined;
|
|
16
|
-
available?: undefined;
|
|
17
|
-
innerPages?: undefined;
|
|
18
|
-
} | {
|
|
19
6
|
name: string;
|
|
20
7
|
Icon: any;
|
|
21
8
|
href: string;
|
|
@@ -23,25 +10,58 @@ export declare const getInvestmentsLinks: (hostname: string, hostnameLenta: stri
|
|
|
23
10
|
unavailable: boolean;
|
|
24
11
|
available: boolean;
|
|
25
12
|
innerPages: string[];
|
|
13
|
+
description: string;
|
|
26
14
|
subPages?: undefined;
|
|
27
15
|
} | {
|
|
28
16
|
name: string;
|
|
29
17
|
Icon: any;
|
|
30
18
|
href: string;
|
|
31
19
|
locked?: undefined;
|
|
20
|
+
unavailable?: undefined;
|
|
21
|
+
available?: undefined;
|
|
22
|
+
innerPages?: undefined;
|
|
23
|
+
description?: undefined;
|
|
32
24
|
subPages?: undefined;
|
|
25
|
+
} | {
|
|
26
|
+
name: string;
|
|
27
|
+
href: string;
|
|
28
|
+
Icon: any;
|
|
29
|
+
locked: boolean;
|
|
30
|
+
subPages: ({
|
|
31
|
+
name: string;
|
|
32
|
+
href: string;
|
|
33
|
+
locked: boolean;
|
|
34
|
+
unavailable?: undefined;
|
|
35
|
+
available?: undefined;
|
|
36
|
+
description?: undefined;
|
|
37
|
+
} | {
|
|
38
|
+
name: string;
|
|
39
|
+
href: string;
|
|
40
|
+
locked: boolean;
|
|
41
|
+
unavailable: boolean;
|
|
42
|
+
available: boolean;
|
|
43
|
+
description: string;
|
|
44
|
+
})[];
|
|
33
45
|
unavailable?: undefined;
|
|
34
46
|
available?: undefined;
|
|
35
47
|
innerPages?: undefined;
|
|
48
|
+
description?: undefined;
|
|
36
49
|
} | {
|
|
37
50
|
name: string;
|
|
38
51
|
Icon: any;
|
|
39
52
|
href: string;
|
|
40
53
|
locked: boolean;
|
|
54
|
+
unavailable: boolean;
|
|
55
|
+
available: boolean;
|
|
56
|
+
description: string;
|
|
41
57
|
innerPages: string[];
|
|
42
|
-
subPages
|
|
43
|
-
|
|
44
|
-
|
|
58
|
+
subPages: {
|
|
59
|
+
name: string;
|
|
60
|
+
href: string;
|
|
61
|
+
locked: boolean;
|
|
62
|
+
unavailable: boolean;
|
|
63
|
+
available: boolean;
|
|
64
|
+
}[];
|
|
45
65
|
} | {
|
|
46
66
|
name: string;
|
|
47
67
|
Icon: any;
|
|
@@ -49,7 +69,8 @@ export declare const getInvestmentsLinks: (hostname: string, hostnameLenta: stri
|
|
|
49
69
|
locked: boolean;
|
|
50
70
|
unavailable: boolean;
|
|
51
71
|
available: boolean;
|
|
52
|
-
|
|
72
|
+
description: string;
|
|
53
73
|
innerPages?: undefined;
|
|
74
|
+
subPages?: undefined;
|
|
54
75
|
})[];
|
|
55
76
|
};
|