profinansy-ui-lib 4.0.87 → 4.0.89
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/common.types.d.ts +2 -0
- package/dist/components/blocks/headerV2/constants/linksV2.d.ts +2 -0
- package/dist/components/blocks/sideMenuV2/SideMenuV2.const.d.ts +1 -1
- package/dist/components/uikit/Tooltip/Tooltip.d.ts +2 -1
- package/dist/components/uikit/Tooltip/Tooltip.typed.d.ts +2 -0
- package/dist/config.d.ts +1 -0
- package/dist/fonts/manrope-cyrillic-ext.woff2 +0 -0
- package/dist/fonts/manrope-cyrillic.woff2 +0 -0
- package/dist/fonts/manrope-latin-ext.woff2 +0 -0
- package/dist/fonts/manrope-latin.woff2 +0 -0
- package/dist/localization/translations/urls.d.ts +2 -0
- package/dist/profinansy-ui-lib.cjs +747 -746
- package/dist/profinansy-ui-lib.cjs.map +1 -1
- package/dist/profinansy-ui-lib.es.js +9025 -8944
- package/dist/profinansy-ui-lib.es.js.map +1 -1
- package/dist/urls/products/method/methodLinks.d.ts +25 -1
- package/dist/urls/productsV2/method/method.d.ts +65 -2
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const getMethodLinks: (hostname: string, isPaid: boolean) => {
|
|
1
|
+
export declare const getMethodLinks: (hostname: string, isPaid: boolean, showMethodInvestIdeas?: boolean) => {
|
|
2
2
|
name: string;
|
|
3
3
|
href: string;
|
|
4
4
|
isWithoutSubpage: boolean;
|
|
@@ -13,6 +13,8 @@ export declare const getMethodLinks: (hostname: string, isPaid: boolean) => {
|
|
|
13
13
|
isOpenUnavailable?: undefined;
|
|
14
14
|
isDeleteCommonNavigation?: undefined;
|
|
15
15
|
isOpenNewTab?: undefined;
|
|
16
|
+
preserveIconColor?: undefined;
|
|
17
|
+
isNotVisible?: undefined;
|
|
16
18
|
subPages?: undefined;
|
|
17
19
|
} | {
|
|
18
20
|
name: string;
|
|
@@ -23,6 +25,8 @@ export declare const getMethodLinks: (hostname: string, isPaid: boolean) => {
|
|
|
23
25
|
isOpenUnavailable?: undefined;
|
|
24
26
|
isDeleteCommonNavigation?: undefined;
|
|
25
27
|
isOpenNewTab?: undefined;
|
|
28
|
+
preserveIconColor?: undefined;
|
|
29
|
+
isNotVisible?: undefined;
|
|
26
30
|
subPages?: undefined;
|
|
27
31
|
} | {
|
|
28
32
|
name: string;
|
|
@@ -33,6 +37,8 @@ export declare const getMethodLinks: (hostname: string, isPaid: boolean) => {
|
|
|
33
37
|
isDeleteCommonNavigation: boolean;
|
|
34
38
|
innerPages?: undefined;
|
|
35
39
|
isOpenNewTab?: undefined;
|
|
40
|
+
preserveIconColor?: undefined;
|
|
41
|
+
isNotVisible?: undefined;
|
|
36
42
|
subPages?: undefined;
|
|
37
43
|
} | {
|
|
38
44
|
name: string;
|
|
@@ -43,6 +49,20 @@ export declare const getMethodLinks: (hostname: string, isPaid: boolean) => {
|
|
|
43
49
|
unavailable?: undefined;
|
|
44
50
|
isOpenUnavailable?: undefined;
|
|
45
51
|
isDeleteCommonNavigation?: undefined;
|
|
52
|
+
preserveIconColor?: undefined;
|
|
53
|
+
isNotVisible?: undefined;
|
|
54
|
+
subPages?: undefined;
|
|
55
|
+
} | {
|
|
56
|
+
name: string;
|
|
57
|
+
Icon: ComponentType<void>;
|
|
58
|
+
href: string;
|
|
59
|
+
preserveIconColor: boolean;
|
|
60
|
+
isOpenNewTab: boolean;
|
|
61
|
+
isNotVisible: boolean;
|
|
62
|
+
innerPages?: undefined;
|
|
63
|
+
unavailable?: undefined;
|
|
64
|
+
isOpenUnavailable?: undefined;
|
|
65
|
+
isDeleteCommonNavigation?: undefined;
|
|
46
66
|
subPages?: undefined;
|
|
47
67
|
} | {
|
|
48
68
|
name: string;
|
|
@@ -53,6 +73,8 @@ export declare const getMethodLinks: (hostname: string, isPaid: boolean) => {
|
|
|
53
73
|
innerPages: string[];
|
|
54
74
|
isDeleteCommonNavigation?: undefined;
|
|
55
75
|
isOpenNewTab?: undefined;
|
|
76
|
+
preserveIconColor?: undefined;
|
|
77
|
+
isNotVisible?: undefined;
|
|
56
78
|
subPages?: undefined;
|
|
57
79
|
} | {
|
|
58
80
|
name: string;
|
|
@@ -68,5 +90,7 @@ export declare const getMethodLinks: (hostname: string, isPaid: boolean) => {
|
|
|
68
90
|
unavailable?: undefined;
|
|
69
91
|
isOpenUnavailable?: undefined;
|
|
70
92
|
isOpenNewTab?: undefined;
|
|
93
|
+
preserveIconColor?: undefined;
|
|
94
|
+
isNotVisible?: undefined;
|
|
71
95
|
})[];
|
|
72
96
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const getMethodHeader: (hostname: string, isPaid: boolean, isStandard: boolean) => {
|
|
1
|
+
export declare const getMethodHeader: (hostname: string, isPaid: boolean, isStandard: boolean, showMethodInvestIdeas?: boolean) => {
|
|
2
2
|
title: string;
|
|
3
3
|
href: string;
|
|
4
4
|
Icon: ComponentType<void>;
|
|
@@ -53,6 +53,19 @@ export declare const getMethodHeader: (hostname: string, isPaid: boolean, isStan
|
|
|
53
53
|
href: string;
|
|
54
54
|
icon: ComponentType<void>;
|
|
55
55
|
isFill: boolean;
|
|
56
|
+
preserveIconColor?: undefined;
|
|
57
|
+
isOpenNewTab?: undefined;
|
|
58
|
+
isNotVisible?: undefined;
|
|
59
|
+
unavailable?: undefined;
|
|
60
|
+
isOpenUnavailable?: undefined;
|
|
61
|
+
} | {
|
|
62
|
+
title: string;
|
|
63
|
+
href: string;
|
|
64
|
+
icon: ComponentType<void>;
|
|
65
|
+
preserveIconColor: boolean;
|
|
66
|
+
isOpenNewTab: boolean;
|
|
67
|
+
isNotVisible: boolean;
|
|
68
|
+
isFill?: undefined;
|
|
56
69
|
unavailable?: undefined;
|
|
57
70
|
isOpenUnavailable?: undefined;
|
|
58
71
|
} | {
|
|
@@ -62,6 +75,9 @@ export declare const getMethodHeader: (hostname: string, isPaid: boolean, isStan
|
|
|
62
75
|
unavailable: boolean;
|
|
63
76
|
isOpenUnavailable: boolean;
|
|
64
77
|
isFill: boolean;
|
|
78
|
+
preserveIconColor?: undefined;
|
|
79
|
+
isOpenNewTab?: undefined;
|
|
80
|
+
isNotVisible?: undefined;
|
|
65
81
|
})[];
|
|
66
82
|
image?: undefined;
|
|
67
83
|
href?: undefined;
|
|
@@ -81,6 +97,8 @@ export declare const getMethodHeader: (hostname: string, isPaid: boolean, isStan
|
|
|
81
97
|
isOpenUnavailable?: undefined;
|
|
82
98
|
isDeleteCommonNavigation?: undefined;
|
|
83
99
|
isOpenNewTab?: undefined;
|
|
100
|
+
preserveIconColor?: undefined;
|
|
101
|
+
isNotVisible?: undefined;
|
|
84
102
|
} | {
|
|
85
103
|
name: string;
|
|
86
104
|
href: string;
|
|
@@ -89,6 +107,8 @@ export declare const getMethodHeader: (hostname: string, isPaid: boolean, isStan
|
|
|
89
107
|
isOpenUnavailable?: undefined;
|
|
90
108
|
isDeleteCommonNavigation?: undefined;
|
|
91
109
|
isOpenNewTab?: undefined;
|
|
110
|
+
preserveIconColor?: undefined;
|
|
111
|
+
isNotVisible?: undefined;
|
|
92
112
|
} | {
|
|
93
113
|
name: string;
|
|
94
114
|
href: string;
|
|
@@ -97,6 +117,8 @@ export declare const getMethodHeader: (hostname: string, isPaid: boolean, isStan
|
|
|
97
117
|
isDeleteCommonNavigation: boolean;
|
|
98
118
|
innerPages?: undefined;
|
|
99
119
|
isOpenNewTab?: undefined;
|
|
120
|
+
preserveIconColor?: undefined;
|
|
121
|
+
isNotVisible?: undefined;
|
|
100
122
|
} | {
|
|
101
123
|
name: string;
|
|
102
124
|
href: string;
|
|
@@ -105,6 +127,18 @@ export declare const getMethodHeader: (hostname: string, isPaid: boolean, isStan
|
|
|
105
127
|
unavailable?: undefined;
|
|
106
128
|
isOpenUnavailable?: undefined;
|
|
107
129
|
isDeleteCommonNavigation?: undefined;
|
|
130
|
+
preserveIconColor?: undefined;
|
|
131
|
+
isNotVisible?: undefined;
|
|
132
|
+
} | {
|
|
133
|
+
name: string;
|
|
134
|
+
href: string;
|
|
135
|
+
preserveIconColor: boolean;
|
|
136
|
+
isOpenNewTab: boolean;
|
|
137
|
+
isNotVisible: boolean;
|
|
138
|
+
innerPages?: undefined;
|
|
139
|
+
unavailable?: undefined;
|
|
140
|
+
isOpenUnavailable?: undefined;
|
|
141
|
+
isDeleteCommonNavigation?: undefined;
|
|
108
142
|
} | {
|
|
109
143
|
name: string;
|
|
110
144
|
href: string;
|
|
@@ -113,9 +147,11 @@ export declare const getMethodHeader: (hostname: string, isPaid: boolean, isStan
|
|
|
113
147
|
innerPages: string[];
|
|
114
148
|
isDeleteCommonNavigation?: undefined;
|
|
115
149
|
isOpenNewTab?: undefined;
|
|
150
|
+
preserveIconColor?: undefined;
|
|
151
|
+
isNotVisible?: undefined;
|
|
116
152
|
})[];
|
|
117
153
|
};
|
|
118
|
-
export declare const getMethodSidebar: (hostname: string, isPaid: boolean, isStandard: boolean) => {
|
|
154
|
+
export declare const getMethodSidebar: (hostname: string, isPaid: boolean, isStandard: boolean, showMethodInvestIdeas?: boolean) => {
|
|
119
155
|
name: string;
|
|
120
156
|
href: string;
|
|
121
157
|
isWithoutSubpage: boolean;
|
|
@@ -131,6 +167,8 @@ export declare const getMethodSidebar: (hostname: string, isPaid: boolean, isSta
|
|
|
131
167
|
isOpenUnavailable?: undefined;
|
|
132
168
|
isDeleteCommonNavigation?: undefined;
|
|
133
169
|
isOpenNewTab?: undefined;
|
|
170
|
+
preserveIconColor?: undefined;
|
|
171
|
+
isNotVisible?: undefined;
|
|
134
172
|
subPages?: undefined;
|
|
135
173
|
} | {
|
|
136
174
|
name: string;
|
|
@@ -142,6 +180,8 @@ export declare const getMethodSidebar: (hostname: string, isPaid: boolean, isSta
|
|
|
142
180
|
isOpenUnavailable?: undefined;
|
|
143
181
|
isDeleteCommonNavigation?: undefined;
|
|
144
182
|
isOpenNewTab?: undefined;
|
|
183
|
+
preserveIconColor?: undefined;
|
|
184
|
+
isNotVisible?: undefined;
|
|
145
185
|
subPages?: undefined;
|
|
146
186
|
} | {
|
|
147
187
|
name: string;
|
|
@@ -153,6 +193,8 @@ export declare const getMethodSidebar: (hostname: string, isPaid: boolean, isSta
|
|
|
153
193
|
isOpenUnavailable?: undefined;
|
|
154
194
|
isDeleteCommonNavigation?: undefined;
|
|
155
195
|
isOpenNewTab?: undefined;
|
|
196
|
+
preserveIconColor?: undefined;
|
|
197
|
+
isNotVisible?: undefined;
|
|
156
198
|
subPages?: undefined;
|
|
157
199
|
} | {
|
|
158
200
|
name: string;
|
|
@@ -164,12 +206,29 @@ export declare const getMethodSidebar: (hostname: string, isPaid: boolean, isSta
|
|
|
164
206
|
innerPages?: undefined;
|
|
165
207
|
isFill?: undefined;
|
|
166
208
|
isOpenNewTab?: undefined;
|
|
209
|
+
preserveIconColor?: undefined;
|
|
210
|
+
isNotVisible?: undefined;
|
|
211
|
+
subPages?: undefined;
|
|
212
|
+
} | {
|
|
213
|
+
name: string;
|
|
214
|
+
Icon: ComponentType<void>;
|
|
215
|
+
href: string;
|
|
216
|
+
isOpenNewTab: boolean;
|
|
217
|
+
innerPages?: undefined;
|
|
218
|
+
isFill?: undefined;
|
|
219
|
+
unavailable?: undefined;
|
|
220
|
+
isOpenUnavailable?: undefined;
|
|
221
|
+
isDeleteCommonNavigation?: undefined;
|
|
222
|
+
preserveIconColor?: undefined;
|
|
223
|
+
isNotVisible?: undefined;
|
|
167
224
|
subPages?: undefined;
|
|
168
225
|
} | {
|
|
169
226
|
name: string;
|
|
170
227
|
Icon: ComponentType<void>;
|
|
171
228
|
href: string;
|
|
229
|
+
preserveIconColor: boolean;
|
|
172
230
|
isOpenNewTab: boolean;
|
|
231
|
+
isNotVisible: boolean;
|
|
173
232
|
innerPages?: undefined;
|
|
174
233
|
isFill?: undefined;
|
|
175
234
|
unavailable?: undefined;
|
|
@@ -186,6 +245,8 @@ export declare const getMethodSidebar: (hostname: string, isPaid: boolean, isSta
|
|
|
186
245
|
isFill?: undefined;
|
|
187
246
|
isDeleteCommonNavigation?: undefined;
|
|
188
247
|
isOpenNewTab?: undefined;
|
|
248
|
+
preserveIconColor?: undefined;
|
|
249
|
+
isNotVisible?: undefined;
|
|
189
250
|
subPages?: undefined;
|
|
190
251
|
} | {
|
|
191
252
|
name: string;
|
|
@@ -201,5 +262,7 @@ export declare const getMethodSidebar: (hostname: string, isPaid: boolean, isSta
|
|
|
201
262
|
unavailable?: undefined;
|
|
202
263
|
isOpenUnavailable?: undefined;
|
|
203
264
|
isOpenNewTab?: undefined;
|
|
265
|
+
preserveIconColor?: undefined;
|
|
266
|
+
isNotVisible?: undefined;
|
|
204
267
|
})[];
|
|
205
268
|
};
|