profinansy-ui-lib 3.3.68 → 3.3.69
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/blocks/Comment/Comment.d.ts +3 -0
- package/dist/components/blocks/Comment/Comment.stories.d.ts +7 -0
- package/dist/components/blocks/Comment/Comment.styled.d.ts +2 -0
- package/dist/components/blocks/Comment/Comment.typed.d.ts +5 -0
- package/dist/components/blocks/Comment/index.d.ts +1 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.js +32 -4
- package/package.json +1 -1
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export declare const Button: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, {}, never>;
|
|
2
|
+
export declare const Comment: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Comment } from './Comment';
|
package/dist/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import { PremiumBanner } from './components/blocks/PremiumBanner';
|
|
|
5
5
|
import { CompanyInfo } from './components/blocks/CompanyInfo';
|
|
6
6
|
import { Like } from './components/blocks/Like';
|
|
7
7
|
import { Views } from './components/blocks/Views';
|
|
8
|
+
import { Comment } from './components/blocks/Comment';
|
|
8
9
|
import { ShareList } from './components/blocks/ShareList';
|
|
9
10
|
import { Notification, NotificationShort } from './components/blocks/Notification';
|
|
10
11
|
import { LayoutSideMenu } from './components/layouts/LayoutSideMenu';
|
|
@@ -63,4 +64,4 @@ import { setCookie, getCookie, deleteCookie } from './utils/cookie';
|
|
|
63
64
|
import { INSTRUMENTS_TYPES } from './hooks/useSearchInstruments';
|
|
64
65
|
import { HEIGHT_HEADER } from './constants/common';
|
|
65
66
|
import { AnimationFunctions } from './constants/animation/animation';
|
|
66
|
-
export { AnimationFunctions, INSTRUMENTS_TYPES, eventBus, BusEvent, SuccessModal, Footer, Header, SideMenu, Notification, NotificationShort, Like, Views, 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, 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 };
|
|
67
|
+
export { AnimationFunctions, INSTRUMENTS_TYPES, eventBus, BusEvent, SuccessModal, Footer, Header, 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, 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 };
|