profinansy-ui-lib 4.0.87 → 4.0.88
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/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 +740 -739
- package/dist/profinansy-ui-lib.cjs.map +1 -1
- package/dist/profinansy-ui-lib.es.js +9016 -8941
- 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
package/dist/common.types.d.ts
CHANGED
|
@@ -115,6 +115,8 @@ export type THeaderLinkSubPage = {
|
|
|
115
115
|
isDeleteCommonNavigation?: boolean;
|
|
116
116
|
/** Заливка иконки **/
|
|
117
117
|
isFill?: boolean;
|
|
118
|
+
/** Не перекрашивать иконку в цвет темы (градиент и цвета из SVG) **/
|
|
119
|
+
preserveIconColor?: boolean;
|
|
118
120
|
/** Не переносить текст **/
|
|
119
121
|
nowrap?: boolean;
|
|
120
122
|
/** Показать иконку короны **/
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { TSideMenuCategory } from './SideMenuV2.typed';
|
|
2
2
|
import { UserRole } from '../../../common.types';
|
|
3
|
-
export declare const useGetSideMenuData: (category: TSideMenuCategory, hostname: string, hostnameLenta: string, hostnameLMS: string, userRole: UserRole, isLeaderboardPermission: boolean, isEmployee?: boolean) => any;
|
|
3
|
+
export declare const useGetSideMenuData: (category: TSideMenuCategory, hostname: string, hostnameLenta: string, hostnameLMS: string, userRole: UserRole, isLeaderboardPermission: boolean, isEmployee?: boolean, showMethodInvestIdeas?: boolean) => any;
|
package/dist/config.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ interface IConfigProps {
|
|
|
14
14
|
/** Элемент ссылки. Нужен, чтобы прокидывать некстовый роутинг или роутинг библиотек **/
|
|
15
15
|
LinkWrapper: ElementType;
|
|
16
16
|
defaultSideMenuOpen?: StateTypeOpenMenu;
|
|
17
|
+
showMethodInvestIdeas?: boolean;
|
|
17
18
|
}
|
|
18
19
|
interface IConfig extends IConfigProps {
|
|
19
20
|
hostnames: {
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -143,6 +143,7 @@ export declare const Urls_translations: {
|
|
|
143
143
|
method_achievements: string;
|
|
144
144
|
method_kfp: string;
|
|
145
145
|
method_budget: string;
|
|
146
|
+
method_invest_ideas: string;
|
|
146
147
|
method_screener: string;
|
|
147
148
|
method_portfolios: string;
|
|
148
149
|
myMoney: string;
|
|
@@ -366,6 +367,7 @@ export declare const Urls_translations: {
|
|
|
366
367
|
method_achievements: string;
|
|
367
368
|
method_kfp: string;
|
|
368
369
|
method_budget: string;
|
|
370
|
+
method_invest_ideas: string;
|
|
369
371
|
method_screener: string;
|
|
370
372
|
method_portfolios: string;
|
|
371
373
|
myMoney: string;
|