profinansy-ui-lib 3.6.38 → 3.6.39
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/uikit/Dropdown/Dropdown.d.ts +2 -2
- package/dist/components/uikit/FilterButton/Drop/Drop.d.ts +2 -2
- package/dist/components/uikit/Hint/Hint.d.ts +2 -2
- package/dist/components/uikit/Popup/Popup.d.ts +2 -2
- package/dist/components/uikit/Tooltip/Tooltip.d.ts +2 -2
- package/dist/index.js +8 -8
- package/dist/utils/eventBus/events.d.ts +4 -2
- package/package.json +1 -1
|
@@ -9,6 +9,8 @@ export declare enum BusEvent {
|
|
|
9
9
|
SearchInputValue = "search/input-value",
|
|
10
10
|
/** Обновляем на профинансах список избранного, чтобы синхронизировать их с хэдером */
|
|
11
11
|
refreshFavourite = "favourites/refresh",
|
|
12
|
-
/** Удаление из корзины */
|
|
13
|
-
|
|
12
|
+
/** Удаление из корзины в магазине. События будут идти из магазина. */
|
|
13
|
+
BasketShopRemove = "basket/shop-remove",
|
|
14
|
+
/** Удаление из корзины в магазине. События будут идти из хэдера. */
|
|
15
|
+
BasketHeaderRemove = "basket/header-remove"
|
|
14
16
|
}
|