profinansy-ui-lib 3.2.11 → 3.2.12
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/instruments/instruments.d.ts +16 -1
- package/dist/api/instruments/instruments.typed.d.ts +20 -0
- package/dist/components/blocks/header/components/HeaderCenter/HeaderCenter.d.ts +1 -4
- package/dist/components/blocks/header/components/HeaderRight/HeaderRight.d.ts +1 -3
- package/dist/components/blocks/header/components/Search/components/Content.d.ts +2 -1
- package/dist/components/blocks/header/contstants/links.d.ts +1 -1
- package/dist/components/blocks/search/Search.d.ts +3 -3
- package/dist/components/blocks/search/Search.styled.d.ts +3 -3
- package/dist/components/blocks/search/components/Items/Items.d.ts +3 -2
- package/dist/components/blocks/search/components/Items/Items.styled.d.ts +1 -3
- package/dist/components/blocks/search/components/UserRequests/UserRequests.d.ts +15 -0
- package/dist/components/blocks/search/components/UserRequests/UserRequests.styled.d.ts +21 -0
- package/dist/components/blocks/search/pushToInstrument.d.ts +2 -0
- package/dist/components/blocks/sideMenu/components/Search/compoenents/SearchWindow/SearchWindow.d.ts +0 -1
- package/dist/components/blocks/sideMenu/components/Search/compoenents/SearchWindow/SearchWindow.styled.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/index.d.ts +1 -2
- package/dist/index.js +471 -392
- package/dist/utils/getCurrencySymbol.d.ts +1 -0
- package/dist/utils/getImageFormat.d.ts +3 -0
- package/dist/utils/getLocalStringNumber.d.ts +2 -0
- package/package.json +1 -1
- package/dist/components/blocks/header/mirrors/club/constant.d.ts +0 -19
- package/dist/components/blocks/header/mirrors/lms/constant.d.ts +0 -6
- package/dist/components/uikit/TabListCell/TabListCell.d.ts +0 -3
- package/dist/components/uikit/TabListCell/TabListCell.stories.d.ts +0 -6
- package/dist/components/uikit/TabListCell/TabListCell.styled.d.ts +0 -7
- package/dist/components/uikit/TabListCell/TabListCell.typed.d.ts +0 -25
- package/dist/components/uikit/TabListCell/index.d.ts +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IInstruments, IFavourite } from './instruments.typed';
|
|
1
|
+
import { IInstruments, IFavourite, ILastSearch } from './instruments.typed';
|
|
2
2
|
import { IApiSettings } from '../api';
|
|
3
3
|
export declare const getInstruments: (value: string, apiSettings: IApiSettings) => Promise<{
|
|
4
4
|
data: IInstruments;
|
|
@@ -8,3 +8,18 @@ export declare const getFavouritesInstruments: (apiSettings: IApiSettings) => Pr
|
|
|
8
8
|
data: IFavourite[];
|
|
9
9
|
ok: boolean;
|
|
10
10
|
}>;
|
|
11
|
+
export declare const getLastUserSearch: (apiSettings: IApiSettings) => Promise<{
|
|
12
|
+
data: ILastSearch[] | null;
|
|
13
|
+
ok: boolean;
|
|
14
|
+
}>;
|
|
15
|
+
export declare const deleteLastUserSearch: (apiSettings: IApiSettings) => Promise<any>;
|
|
16
|
+
export declare const getTopUserSearch: (apiSettings: IApiSettings) => Promise<{
|
|
17
|
+
data: ILastSearch[] | null;
|
|
18
|
+
ok: boolean;
|
|
19
|
+
}>;
|
|
20
|
+
export declare const addTopSearch: (apiSettings: IApiSettings, payload: {
|
|
21
|
+
instrument_id: number;
|
|
22
|
+
}) => Promise<{
|
|
23
|
+
data: ILastSearch[] | null;
|
|
24
|
+
ok: boolean;
|
|
25
|
+
}>;
|
|
@@ -33,4 +33,24 @@ export interface IFavourite {
|
|
|
33
33
|
sort_num: number;
|
|
34
34
|
user_id: number;
|
|
35
35
|
}
|
|
36
|
+
export interface ILastSearch {
|
|
37
|
+
instrument_id: number;
|
|
38
|
+
code: string;
|
|
39
|
+
description: string;
|
|
40
|
+
logo: string;
|
|
41
|
+
symbol: string;
|
|
42
|
+
market_code: string;
|
|
43
|
+
market_id: string;
|
|
44
|
+
company_id: number;
|
|
45
|
+
lot_size: number;
|
|
46
|
+
currency_code: string;
|
|
47
|
+
portfolioType: string;
|
|
48
|
+
isin: string;
|
|
49
|
+
candles: number[][];
|
|
50
|
+
positive: boolean;
|
|
51
|
+
countryFlag: string;
|
|
52
|
+
price: number;
|
|
53
|
+
priceChange: number;
|
|
54
|
+
priceChangePositive: boolean;
|
|
55
|
+
}
|
|
36
56
|
export {};
|
|
@@ -6,10 +6,7 @@ interface IProps {
|
|
|
6
6
|
hostnameLenta: string;
|
|
7
7
|
userRole: UserRole;
|
|
8
8
|
leaderBoardPermission: boolean;
|
|
9
|
-
isLmsMirror: boolean;
|
|
10
|
-
isIdvMirror: boolean;
|
|
11
|
-
isClubMirror: boolean;
|
|
12
9
|
handleRouteChange: (val: string, target?: boolean) => void;
|
|
13
10
|
}
|
|
14
|
-
declare const HeaderCenter: ({ apiSettings, hostname, hostnameLenta, userRole, leaderBoardPermission,
|
|
11
|
+
declare const HeaderCenter: ({ apiSettings, hostname, hostnameLenta, userRole, leaderBoardPermission, handleRouteChange }: IProps) => JSX.Element;
|
|
15
12
|
export { HeaderCenter };
|
|
@@ -5,12 +5,10 @@ interface IProps {
|
|
|
5
5
|
userRole: UserRole;
|
|
6
6
|
isProfinansy: boolean;
|
|
7
7
|
isPossibleTrial: boolean;
|
|
8
|
-
isClubMirror: boolean;
|
|
9
|
-
isIdvMirror: boolean;
|
|
10
8
|
trial: number | string;
|
|
11
9
|
handleRouteChange: (val: string) => void;
|
|
12
10
|
setBurgerOpened: (val: boolean) => void;
|
|
13
11
|
onLogout: () => void;
|
|
14
12
|
}
|
|
15
|
-
declare const HeaderRight: ({ user, hostname, userRole, isProfinansy,
|
|
13
|
+
declare const HeaderRight: ({ user, hostname, userRole, isProfinansy, isPossibleTrial, trial, handleRouteChange, setBurgerOpened, onLogout }: IProps) => JSX.Element;
|
|
16
14
|
export { HeaderRight };
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { INSTRUMENTS_TYPES } from '../../../../../../hooks/useSearchInstruments';
|
|
2
2
|
import { IInstruments } from '../../../../../../api/instruments/instruments.typed';
|
|
3
|
+
import { IApiSettings } from '../../../../../../api/api';
|
|
3
4
|
interface IProps {
|
|
4
5
|
isEmpty: boolean;
|
|
5
|
-
searchText: string;
|
|
6
6
|
data: IInstruments | null;
|
|
7
7
|
favourites: number[];
|
|
8
8
|
isOpen: boolean;
|
|
@@ -13,6 +13,7 @@ interface IProps {
|
|
|
13
13
|
dataCount?: number;
|
|
14
14
|
}[];
|
|
15
15
|
selectedTab: INSTRUMENTS_TYPES;
|
|
16
|
+
apiSettings: IApiSettings;
|
|
16
17
|
setSelectedTab: (val: INSTRUMENTS_TYPES) => void;
|
|
17
18
|
handleRouteChange: (val: string, target?: boolean) => void;
|
|
18
19
|
onClose: () => void;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { HeaderLinkType, UserRole } from '../../../../common.types';
|
|
2
|
-
export declare const getMainLinks: (hostname: string, hostnameLenta: string,
|
|
2
|
+
export declare const getMainLinks: (hostname: string, hostnameLenta: string, leaderBoardPermission: boolean, userRole: UserRole) => HeaderLinkType[];
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { IInstruments } from '../../../api/instruments/instruments.typed';
|
|
2
2
|
import { INSTRUMENTS_TYPES } from '../../../hooks/useSearchInstruments';
|
|
3
|
+
import { IApiSettings } from '../../../api/api';
|
|
3
4
|
interface IProps {
|
|
4
5
|
isEmpty: boolean;
|
|
5
|
-
searchText: string;
|
|
6
6
|
data: IInstruments | null;
|
|
7
7
|
favourites: number[];
|
|
8
8
|
hostname: string;
|
|
@@ -14,8 +14,8 @@ interface IProps {
|
|
|
14
14
|
selectedTab: INSTRUMENTS_TYPES;
|
|
15
15
|
setSelectedTab: (val: INSTRUMENTS_TYPES) => void;
|
|
16
16
|
handleRouteChange: (val: string, target?: boolean) => void;
|
|
17
|
-
|
|
17
|
+
apiSettings: IApiSettings;
|
|
18
18
|
onClose: () => void;
|
|
19
19
|
}
|
|
20
|
-
declare const Search: ({ isEmpty,
|
|
20
|
+
declare const Search: ({ isEmpty, hostname, setSelectedTab, selectedTab, tabs, favourites, data, handleRouteChange, apiSettings, onClose }: IProps) => JSX.Element;
|
|
21
21
|
export { Search };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export declare const Icons: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
2
|
-
|
|
3
|
-
}, never>;
|
|
1
|
+
export declare const Icons: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
2
|
+
export declare const Content: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
3
|
+
export declare const Loader: import("styled-components").StyledComponent<({ size, color, className }: import("../../uikit/Spinner/Spinner.typed").ISpinner) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { IInstrumentType } from '../../../../../api/instruments/instruments.typed';
|
|
2
|
+
import { IApiSettings } from '../../../../../api/api';
|
|
2
3
|
interface IProps {
|
|
3
4
|
favourites: number[];
|
|
4
5
|
data: IInstrumentType;
|
|
5
6
|
activeTab: string;
|
|
6
|
-
windowHeight: number;
|
|
7
7
|
hostname: string;
|
|
8
8
|
handleRouteChange: (url: string) => void;
|
|
9
9
|
onClose?: () => void;
|
|
10
|
+
apiSettings: IApiSettings;
|
|
10
11
|
}
|
|
11
|
-
declare const Items: ({ hostname, data, activeTab,
|
|
12
|
+
declare const Items: ({ hostname, data, activeTab, favourites, handleRouteChange, onClose, apiSettings }: IProps) => JSX.Element;
|
|
12
13
|
export { Items };
|
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
export declare const List: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
2
|
-
height: number;
|
|
3
|
-
}, never>;
|
|
1
|
+
export declare const List: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
4
2
|
export declare const Item: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, {}, never>;
|
|
5
3
|
export declare const Left: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
6
4
|
export declare const Right: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { IApiSettings } from '../../../../../api/api';
|
|
2
|
+
import { ILastSearch } from '../../../../../api/instruments/instruments.typed';
|
|
3
|
+
interface IProps {
|
|
4
|
+
items: ILastSearch[];
|
|
5
|
+
apiSettings: IApiSettings;
|
|
6
|
+
type: 'last' | 'top';
|
|
7
|
+
title: string;
|
|
8
|
+
hostname: string;
|
|
9
|
+
handleRouteChange: (url: string) => void;
|
|
10
|
+
handleDelete: () => void;
|
|
11
|
+
onClose?: () => void;
|
|
12
|
+
favourites: number[];
|
|
13
|
+
}
|
|
14
|
+
declare const UserRequests: ({ favourites, items, apiSettings, type, title, hostname, handleRouteChange, handleDelete, onClose }: IProps) => JSX.Element;
|
|
15
|
+
export { UserRequests };
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export declare const Container: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
2
|
+
export declare const Header: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
3
|
+
export declare const Items: import("styled-components").StyledComponent<"ul", import("styled-components").DefaultTheme, {}, never>;
|
|
4
|
+
export declare const Item: import("styled-components").StyledComponent<"li", import("styled-components").DefaultTheme, {}, never>;
|
|
5
|
+
export declare const Left: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
6
|
+
export declare const Right: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
7
|
+
export declare const Price: import("styled-components").StyledComponent<({ tag, className, children, variant, title, ...props }: import("../../../../uikit/Typography/Typography.typed").ITypographyProps & import("react").CSSProperties) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;
|
|
8
|
+
export declare const ChangePrice: import("styled-components").StyledComponent<({ tag, className, children, variant, title, ...props }: import("../../../../uikit/Typography/Typography.typed").ITypographyProps & import("react").CSSProperties) => JSX.Element, import("styled-components").DefaultTheme, {
|
|
9
|
+
isPositive: boolean;
|
|
10
|
+
}, never>;
|
|
11
|
+
export declare const LogoContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
12
|
+
isLogo: boolean;
|
|
13
|
+
}, never>;
|
|
14
|
+
export declare const Favourite: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
15
|
+
export declare const Description: import("styled-components").StyledComponent<({ tag, className, children, variant, title, ...props }: import("../../../../uikit/Typography/Typography.typed").ITypographyProps & import("react").CSSProperties) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;
|
|
16
|
+
export declare const Logo: import("styled-components").StyledComponent<"img", import("styled-components").DefaultTheme, {}, never>;
|
|
17
|
+
export declare const Symbol: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
18
|
+
export declare const TickerLine: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
19
|
+
export declare const Dot: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
20
|
+
export declare const ShowMore: import("styled-components").StyledComponent<({ type, mode, size, text, style, onClick, className, iconLeft, iconRight, disabled }: import("../../../../uikit/TextButton/TextButton.typed").ITextButton) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;
|
|
21
|
+
export declare const Flag: import("styled-components").StyledComponent<"img", import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -6,7 +6,6 @@ declare const Window: import("styled-components").StyledComponent<"div", import(
|
|
|
6
6
|
height: string;
|
|
7
7
|
top: number;
|
|
8
8
|
left: number;
|
|
9
|
-
initialWidth: any;
|
|
10
9
|
}, never>;
|
|
11
10
|
declare const Header: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
12
11
|
declare const Content: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -18,5 +17,6 @@ declare const Input: import("styled-components").StyledComponent<"input", import
|
|
|
18
17
|
value: string;
|
|
19
18
|
}, never>;
|
|
20
19
|
declare const Divider: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
20
|
+
declare const SearchContent: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
21
21
|
declare const Loader: import("styled-components").StyledComponent<({ size, color, className }: import("../../../../../../uikit/Spinner/Spinner.typed").ISpinner) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;
|
|
22
|
-
export { Wrapper, Layout, Window, Content, Header, Close, Input, InputContainer, Search, Delete, Divider, Loader };
|
|
22
|
+
export { Wrapper, Layout, Window, Content, SearchContent, Header, Close, Input, InputContainer, Search, Delete, Divider, Loader };
|
|
@@ -24,9 +24,9 @@ export declare function useDrop({ placement }: {
|
|
|
24
24
|
} & import("@floating-ui/react").ExtendedElements<import("@floating-ui/react").ReferenceType>;
|
|
25
25
|
context: {
|
|
26
26
|
placement: Placement;
|
|
27
|
-
strategy: import("@floating-ui/utils").Strategy;
|
|
28
27
|
x: number;
|
|
29
28
|
y: number;
|
|
29
|
+
strategy: import("@floating-ui/utils").Strategy;
|
|
30
30
|
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
31
31
|
isPositioned: boolean;
|
|
32
32
|
update: () => void;
|
|
@@ -42,7 +42,7 @@ export declare function useDrop({ placement }: {
|
|
|
42
42
|
};
|
|
43
43
|
getReferenceProps: (userProps?: React.HTMLProps<Element>) => Record<string, unknown>;
|
|
44
44
|
getFloatingProps: (userProps?: React.HTMLProps<HTMLElement>) => Record<string, unknown>;
|
|
45
|
-
getItemProps: (userProps?: Omit<React.HTMLProps<HTMLElement>, "
|
|
45
|
+
getItemProps: (userProps?: Omit<React.HTMLProps<HTMLElement>, "active" | "selected"> & {
|
|
46
46
|
active?: boolean;
|
|
47
47
|
selected?: boolean;
|
|
48
48
|
}) => Record<string, unknown>;
|
|
@@ -25,9 +25,9 @@ export declare function useHint({ placement }?: HintOptions): {
|
|
|
25
25
|
} & import("@floating-ui/react").ExtendedElements<import("@floating-ui/react").ReferenceType>;
|
|
26
26
|
context: {
|
|
27
27
|
placement: Placement;
|
|
28
|
-
strategy: import("@floating-ui/utils").Strategy;
|
|
29
28
|
x: number;
|
|
30
29
|
y: number;
|
|
30
|
+
strategy: import("@floating-ui/utils").Strategy;
|
|
31
31
|
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
32
32
|
isPositioned: boolean;
|
|
33
33
|
update: () => void;
|
|
@@ -43,7 +43,7 @@ export declare function useHint({ placement }?: HintOptions): {
|
|
|
43
43
|
};
|
|
44
44
|
getReferenceProps: (userProps?: React.HTMLProps<Element>) => Record<string, unknown>;
|
|
45
45
|
getFloatingProps: (userProps?: React.HTMLProps<HTMLElement>) => Record<string, unknown>;
|
|
46
|
-
getItemProps: (userProps?: Omit<React.HTMLProps<HTMLElement>, "
|
|
46
|
+
getItemProps: (userProps?: Omit<React.HTMLProps<HTMLElement>, "active" | "selected"> & {
|
|
47
47
|
active?: boolean;
|
|
48
48
|
selected?: boolean;
|
|
49
49
|
}) => Record<string, unknown>;
|
|
@@ -29,9 +29,9 @@ export declare function usePopup({ placement, isHover }: {
|
|
|
29
29
|
} & import("@floating-ui/react").ExtendedElements<import("@floating-ui/react").ReferenceType>;
|
|
30
30
|
context: {
|
|
31
31
|
placement: Placement;
|
|
32
|
-
strategy: import("@floating-ui/utils").Strategy;
|
|
33
32
|
x: number;
|
|
34
33
|
y: number;
|
|
34
|
+
strategy: import("@floating-ui/utils").Strategy;
|
|
35
35
|
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
36
36
|
isPositioned: boolean;
|
|
37
37
|
update: () => void;
|
|
@@ -47,7 +47,7 @@ export declare function usePopup({ placement, isHover }: {
|
|
|
47
47
|
};
|
|
48
48
|
getReferenceProps: (userProps?: React.HTMLProps<Element>) => Record<string, unknown>;
|
|
49
49
|
getFloatingProps: (userProps?: React.HTMLProps<HTMLElement>) => Record<string, unknown>;
|
|
50
|
-
getItemProps: (userProps?: Omit<React.HTMLProps<HTMLElement>, "
|
|
50
|
+
getItemProps: (userProps?: Omit<React.HTMLProps<HTMLElement>, "active" | "selected"> & {
|
|
51
51
|
active?: boolean;
|
|
52
52
|
selected?: boolean;
|
|
53
53
|
}) => Record<string, unknown>;
|
package/dist/index.d.ts
CHANGED
|
@@ -40,7 +40,6 @@ import { Card } from './components/uikit/Card';
|
|
|
40
40
|
import { Switch } from './components/uikit/Switch';
|
|
41
41
|
import { Spinner } from './components/uikit/Spinner';
|
|
42
42
|
import { Skeleton } from './components/uikit/Skeleton';
|
|
43
|
-
import { TabListCell } from './components/uikit/TabListCell';
|
|
44
43
|
import { Textarea } from './components/uikit/Textarea';
|
|
45
44
|
import { Bubbles } from './components/uikit/Bubbles';
|
|
46
45
|
import { Typography } from './components/uikit/Typography';
|
|
@@ -50,4 +49,4 @@ import eventBus from './utils/eventBus';
|
|
|
50
49
|
import { BusEvent } from './utils/eventBus/events';
|
|
51
50
|
import { INSTRUMENTS_TYPES } from './hooks/useSearchInstruments';
|
|
52
51
|
import { AnimationFunctions } from './constants/animation/animation';
|
|
53
|
-
export { AnimationFunctions, INSTRUMENTS_TYPES, eventBus, BusEvent, SuccessModal, Footer, Header, SideMenu, Alert, Hint, SegmentControl, SwiperButton, FilterButton, ControlButton, SortingButton, Counter, Checkbox, Radio, Portal, Loader, Button, Tabs, TextButton, RegexPattern, Input, Textarea, ErrorText, Avatar, Tooltip, Typography, DefaultTooltip, Modal, SideModal, CircleButton, ArrowButton, Bubbles, HiddenText, PasswordInput, Dropdown, ModalMobile, Popup, IPopup, FieldRow, Card, Switch, Spinner, Skeleton,
|
|
52
|
+
export { AnimationFunctions, INSTRUMENTS_TYPES, eventBus, BusEvent, SuccessModal, Footer, Header, SideMenu, Alert, Hint, SegmentControl, SwiperButton, FilterButton, ControlButton, SortingButton, Counter, Checkbox, Radio, Portal, Loader, Button, Tabs, TextButton, RegexPattern, Input, Textarea, ErrorText, Avatar, Tooltip, Typography, DefaultTooltip, Modal, SideModal, CircleButton, ArrowButton, Bubbles, HiddenText, PasswordInput, Dropdown, ModalMobile, Popup, IPopup, FieldRow, Card, Switch, Spinner, Skeleton, palette, ThemeProvider, useMode, useHidingChat, useHidingFromApp, useGetHeaderHeight, useHeaderHeightListener, LayoutSideMenu };
|