profinansy-ui-lib 3.5.2 → 3.5.4
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/blocks/header/components/header-link-item/header-link-item.styled.d.ts +1 -0
- package/dist/components/uikit/Button/Button.typed.d.ts +4 -1
- package/dist/components/uikit/Table/Table.d.ts +1 -1
- package/dist/components/uikit/Table/Table.styled.d.ts +1 -0
- package/dist/components/uikit/Table/Table.typed.d.ts +2 -0
- package/dist/components/uikit/Table/hooks/useStickHeader.d.ts +1 -1
- package/dist/index.js +65 -24
- package/dist/theme/theme.const.d.ts +20 -0
- package/dist/urls/products/investments/investments.d.ts +3 -26
- package/dist/urls/products/myMoney/myMoney.d.ts +2 -10
- package/dist/utils/parseJwt.d.ts +2 -0
- package/package.json +1 -1
|
@@ -147,6 +147,16 @@ export declare const palette: {
|
|
|
147
147
|
top: string;
|
|
148
148
|
bottom: string;
|
|
149
149
|
};
|
|
150
|
+
club: {
|
|
151
|
+
primary: string;
|
|
152
|
+
primaryHover: string;
|
|
153
|
+
secondary: string;
|
|
154
|
+
secondaryHover: string;
|
|
155
|
+
buttonBackground: string;
|
|
156
|
+
green: string;
|
|
157
|
+
primaryGradient: string;
|
|
158
|
+
secondaryGradient: string;
|
|
159
|
+
};
|
|
150
160
|
};
|
|
151
161
|
dark: {
|
|
152
162
|
background: {
|
|
@@ -296,5 +306,15 @@ export declare const palette: {
|
|
|
296
306
|
top: string;
|
|
297
307
|
bottom: string;
|
|
298
308
|
};
|
|
309
|
+
club: {
|
|
310
|
+
primary: string;
|
|
311
|
+
primaryHover: string;
|
|
312
|
+
secondary: string;
|
|
313
|
+
secondaryHover: string;
|
|
314
|
+
buttonBackground: string;
|
|
315
|
+
green: string;
|
|
316
|
+
primaryGradient: string;
|
|
317
|
+
secondaryGradient: string;
|
|
318
|
+
};
|
|
299
319
|
};
|
|
300
320
|
};
|
|
@@ -13,7 +13,6 @@ export declare const getInvestmentsLinks: (hostname: string, hostnameLenta: stri
|
|
|
13
13
|
description: string;
|
|
14
14
|
subPages?: undefined;
|
|
15
15
|
isHit?: undefined;
|
|
16
|
-
isNew?: undefined;
|
|
17
16
|
} | {
|
|
18
17
|
name: string;
|
|
19
18
|
Icon: any;
|
|
@@ -24,7 +23,6 @@ export declare const getInvestmentsLinks: (hostname: string, hostnameLenta: stri
|
|
|
24
23
|
description?: undefined;
|
|
25
24
|
subPages?: undefined;
|
|
26
25
|
isHit?: undefined;
|
|
27
|
-
isNew?: undefined;
|
|
28
26
|
} | {
|
|
29
27
|
name: string;
|
|
30
28
|
href: string;
|
|
@@ -45,7 +43,6 @@ export declare const getInvestmentsLinks: (hostname: string, hostnameLenta: stri
|
|
|
45
43
|
innerPages?: undefined;
|
|
46
44
|
description?: undefined;
|
|
47
45
|
isHit?: undefined;
|
|
48
|
-
isNew?: undefined;
|
|
49
46
|
} | {
|
|
50
47
|
name: string;
|
|
51
48
|
href: string;
|
|
@@ -56,23 +53,6 @@ export declare const getInvestmentsLinks: (hostname: string, hostnameLenta: stri
|
|
|
56
53
|
innerPages?: undefined;
|
|
57
54
|
subPages?: undefined;
|
|
58
55
|
isHit?: undefined;
|
|
59
|
-
isNew?: undefined;
|
|
60
|
-
} | {
|
|
61
|
-
name: string;
|
|
62
|
-
Icon: any;
|
|
63
|
-
href: string;
|
|
64
|
-
locked: boolean;
|
|
65
|
-
unavailable: boolean;
|
|
66
|
-
isHit: boolean;
|
|
67
|
-
description: string;
|
|
68
|
-
innerPages: string[];
|
|
69
|
-
subPages: {
|
|
70
|
-
name: string;
|
|
71
|
-
href: string;
|
|
72
|
-
locked: boolean;
|
|
73
|
-
unavailable: boolean;
|
|
74
|
-
}[];
|
|
75
|
-
isNew?: undefined;
|
|
76
56
|
} | {
|
|
77
57
|
name: string;
|
|
78
58
|
Icon: any;
|
|
@@ -88,30 +68,28 @@ export declare const getInvestmentsLinks: (hostname: string, hostnameLenta: stri
|
|
|
88
68
|
unavailable: boolean;
|
|
89
69
|
}[];
|
|
90
70
|
isHit?: undefined;
|
|
91
|
-
isNew?: undefined;
|
|
92
71
|
} | {
|
|
93
72
|
name: string;
|
|
94
73
|
Icon: any;
|
|
95
74
|
href: string;
|
|
96
75
|
locked: boolean;
|
|
97
76
|
unavailable: boolean;
|
|
98
|
-
|
|
77
|
+
isHit: boolean;
|
|
99
78
|
description: string;
|
|
100
79
|
innerPages: string[];
|
|
101
80
|
subPages: ({
|
|
102
81
|
name: string;
|
|
103
82
|
href: string;
|
|
104
83
|
locked: boolean;
|
|
105
|
-
|
|
84
|
+
isHit: boolean;
|
|
106
85
|
unavailable: boolean;
|
|
107
86
|
} | {
|
|
108
87
|
name: string;
|
|
109
88
|
href: string;
|
|
110
89
|
locked: boolean;
|
|
111
90
|
unavailable: boolean;
|
|
112
|
-
|
|
91
|
+
isHit?: undefined;
|
|
113
92
|
})[];
|
|
114
|
-
isHit?: undefined;
|
|
115
93
|
} | {
|
|
116
94
|
name: string;
|
|
117
95
|
Icon: any;
|
|
@@ -122,6 +100,5 @@ export declare const getInvestmentsLinks: (hostname: string, hostnameLenta: stri
|
|
|
122
100
|
description?: undefined;
|
|
123
101
|
subPages?: undefined;
|
|
124
102
|
isHit?: undefined;
|
|
125
|
-
isNew?: undefined;
|
|
126
103
|
})[];
|
|
127
104
|
};
|
|
@@ -2,14 +2,7 @@ export declare const getMyMoney: (hostname: string, isGuest: boolean) => {
|
|
|
2
2
|
name: string;
|
|
3
3
|
Icon: any;
|
|
4
4
|
href: string;
|
|
5
|
-
subPages:
|
|
6
|
-
name: string;
|
|
7
|
-
Icon: any;
|
|
8
|
-
href: string;
|
|
9
|
-
locked: boolean;
|
|
10
|
-
innerPages: string[];
|
|
11
|
-
subPages?: undefined;
|
|
12
|
-
} | {
|
|
5
|
+
subPages: {
|
|
13
6
|
name: string;
|
|
14
7
|
Icon: any;
|
|
15
8
|
href: string;
|
|
@@ -18,6 +11,5 @@ export declare const getMyMoney: (hostname: string, isGuest: boolean) => {
|
|
|
18
11
|
name: string;
|
|
19
12
|
href: string;
|
|
20
13
|
}[];
|
|
21
|
-
|
|
22
|
-
})[];
|
|
14
|
+
}[];
|
|
23
15
|
};
|