profinansy-ui-lib 3.8.25 → 3.8.26
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/search/search.d.ts +1 -1
- package/dist/components/blocks/SearchSideMenu/compoenents/SearchWindow/SearchWindowSideMenu.styled.d.ts +2 -1
- package/dist/components/blocks/search/components/Navigation/Navigation.styled.d.ts +2 -0
- package/dist/components/blocks/search/components/NonTradable/NonTradable.d.ts +5 -0
- package/dist/components/blocks/search/components/NonTradable/NonTradable.styled.d.ts +3 -0
- package/dist/components/blocks/search/components/SearchNotFound/SearchNotFound.d.ts +4 -1
- package/dist/components/blocks/search/components/SearchNotFound/SearchNotFound.styled.d.ts +1 -3
- package/dist/components/blocks/search/hooks/useGetSearchData.d.ts +1 -0
- package/dist/components/blocks/search/hooks/useSubscribeNonTradable.d.ts +3 -0
- package/dist/localization/translations/common.d.ts +6 -0
- package/dist/profinansy-ui-lib.cjs.js +794 -757
- package/dist/profinansy-ui-lib.cjs.js.map +1 -1
- package/dist/profinansy-ui-lib.es.js +4122 -3984
- package/dist/profinansy-ui-lib.es.js.map +1 -1
- package/dist/utils/eventBus/events.d.ts +2 -0
- package/package.json +1 -1
|
@@ -7,6 +7,8 @@ export declare enum BusEvent {
|
|
|
7
7
|
SearchText = "search/text",
|
|
8
8
|
/** Заполняем поле поиска. Нужно для прокидывания в поиск выбранного через клавиатуру инструмента */
|
|
9
9
|
SearchInputValue = "search/input-value",
|
|
10
|
+
/** В поиске выбрано показывать неторгуемые инструменты */
|
|
11
|
+
SearchNonTradable = "search/not-tradable",
|
|
10
12
|
/** Обновляем на профинансах список избранного, чтобы синхронизировать их с хэдером */
|
|
11
13
|
refreshFavourite = "favourites/refresh",
|
|
12
14
|
/** Удаление из корзины в магазине. События будут идти из магазина. */
|