profinansy-ui-lib 3.3.94 → 3.3.96
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/banners/CommonBanner/CommonBanner.d.ts +2 -0
- package/dist/components/banners/CommonBanner/index.d.ts +1 -0
- package/dist/components/banners/MethodBanner/MethodBanner.d.ts +2 -0
- package/dist/components/banners/MethodBanner/MethodBanner.styled.d.ts +1 -0
- package/dist/components/banners/MethodBanner/index.d.ts +1 -0
- package/dist/index.d.ts +3 -2
- package/dist/index.js +159 -142
- package/dist/utils/eventBus/events.d.ts +2 -1
- package/dist/utils/getCurrencySymbol.d.ts +1 -1
- package/package.json +1 -1
- /package/dist/components/{blocks → banners}/PremiumBanner/PremiumBanner.d.ts +0 -0
- /package/dist/components/{blocks → banners}/PremiumBanner/PremiumBanner.styled.d.ts +0 -0
- /package/dist/components/{blocks → banners}/PremiumBanner/index.d.ts +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CommonBanner } from './CommonBanner';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const Container: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { MethodBanner } from './MethodBanner';
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ import { Header } from './components/blocks/header';
|
|
|
2
2
|
import { HeaderWelcome } from './components/blocks/headerWelcome';
|
|
3
3
|
import { Footer } from './components/blocks/footer';
|
|
4
4
|
import { SideMenu } from './components/blocks/sideMenu';
|
|
5
|
-
import { PremiumBanner } from './components/blocks/PremiumBanner';
|
|
6
5
|
import { CompanyInfo } from './components/blocks/CompanyInfo';
|
|
7
6
|
import { Like } from './components/blocks/Like';
|
|
8
7
|
import { Views } from './components/blocks/Views';
|
|
@@ -15,6 +14,8 @@ import { useHidingChat } from './hooks/useHidingChat';
|
|
|
15
14
|
import { useOpenSideMenu } from './hooks/useOpenSideMenu';
|
|
16
15
|
import { useLoadingNextPage } from './hooks/useLoadingNextPage';
|
|
17
16
|
import { useLastElement } from './hooks/useLastElement';
|
|
17
|
+
import { PremiumBanner } from './components/banners/PremiumBanner';
|
|
18
|
+
import { CommonBanner } from './components/banners/CommonBanner';
|
|
18
19
|
import { SuccessModal } from './components/modals/SuccessModal';
|
|
19
20
|
import { Alert } from './components/uikit/Alert';
|
|
20
21
|
import { AvatarCompany } from './components/uikit/AvatarCompany';
|
|
@@ -68,4 +69,4 @@ import { HEIGHT_HEADER } from './constants/common';
|
|
|
68
69
|
import { AnimationFunctions } from './constants/animation/animation';
|
|
69
70
|
import { ListItemStyle } from './styles/List';
|
|
70
71
|
import { Scroll, NotVisibleScroll } from './styles/Scroll';
|
|
71
|
-
export { AnimationFunctions, INSTRUMENTS_TYPES, eventBus, BusEvent, SuccessModal, Footer, Header, HeaderWelcome, SideMenu, Notification, NotificationShort, Like, Views, Comment, ShareList, PremiumBanner, CompanyInfo, Alert, AvatarCompany, Table, TCellText, Hint, SegmentControl, SwiperButton, FilterButton, ControlButton, SortingButton, Counter, Checkbox, Radio, Portal, Loader, ButtonPaging, Button, Tabs, TextButton, TextButtonLink, RegexPattern, Input, Textarea, TextareaAutoSize, ErrorText, Avatar, Tooltip, Typography, Modal, SideModal, ArrowButton, Bubbles, HiddenText, PasswordInput, Dropdown, ModalMobile, Popup, IPopup, FieldRow, Card, PageTitle, Switch, Spinner, Skeleton, palette, ThemeProvider, useMode, useHidingChat, useHidingFromApp, useOpenSideMenu, useLoadingNextPage, useLastElement, LayoutSideMenu, HEIGHT_HEADER, setCookie, getCookie, deleteCookie, IColumnTable, ListItemStyle, Scroll, NotVisibleScroll };
|
|
72
|
+
export { AnimationFunctions, INSTRUMENTS_TYPES, eventBus, BusEvent, SuccessModal, Footer, Header, HeaderWelcome, SideMenu, Notification, NotificationShort, Like, Views, Comment, ShareList, PremiumBanner, CommonBanner, CompanyInfo, Alert, AvatarCompany, Table, TCellText, Hint, SegmentControl, SwiperButton, FilterButton, ControlButton, SortingButton, Counter, Checkbox, Radio, Portal, Loader, ButtonPaging, Button, Tabs, TextButton, TextButtonLink, RegexPattern, Input, Textarea, TextareaAutoSize, ErrorText, Avatar, Tooltip, Typography, Modal, SideModal, ArrowButton, Bubbles, HiddenText, PasswordInput, Dropdown, ModalMobile, Popup, IPopup, FieldRow, Card, PageTitle, Switch, Spinner, Skeleton, palette, ThemeProvider, useMode, useHidingChat, useHidingFromApp, useOpenSideMenu, useLoadingNextPage, useLastElement, LayoutSideMenu, HEIGHT_HEADER, setCookie, getCookie, deleteCookie, IColumnTable, ListItemStyle, Scroll, NotVisibleScroll };
|