profinansy-ui-lib 3.6.21 → 3.6.22
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 +1 -1
- package/dist/components/uikit/FilterButton/Drop/Drop.d.ts +1 -1
- package/dist/components/uikit/Hint/Hint.d.ts +1 -1
- package/dist/components/uikit/Popup/Popup.d.ts +1 -1
- package/dist/components/uikit/Tooltip/Tooltip.d.ts +1 -1
- package/dist/index.d.ts +93 -81
- package/dist/index.js +8 -8
- package/package.json +1 -1
|
@@ -43,7 +43,7 @@ export declare function useDrop({ placement, onOpenList }: {
|
|
|
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>;
|
|
@@ -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>;
|
|
@@ -44,7 +44,7 @@ export declare function useHint({ placement, isClickMobile }?: HintOptions): {
|
|
|
44
44
|
};
|
|
45
45
|
getReferenceProps: (userProps?: React.HTMLProps<Element>) => Record<string, unknown>;
|
|
46
46
|
getFloatingProps: (userProps?: React.HTMLProps<HTMLElement>) => Record<string, unknown>;
|
|
47
|
-
getItemProps: (userProps?: Omit<React.HTMLProps<HTMLElement>, "
|
|
47
|
+
getItemProps: (userProps?: Omit<React.HTMLProps<HTMLElement>, "active" | "selected"> & {
|
|
48
48
|
active?: boolean;
|
|
49
49
|
selected?: boolean;
|
|
50
50
|
}) => Record<string, unknown>;
|
|
@@ -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>;
|
|
@@ -44,7 +44,7 @@ export declare function useTooltip({ placement, isHover, showArrow }: {
|
|
|
44
44
|
};
|
|
45
45
|
getReferenceProps: (userProps?: React.HTMLProps<Element>) => Record<string, unknown>;
|
|
46
46
|
getFloatingProps: (userProps?: React.HTMLProps<HTMLElement>) => Record<string, unknown>;
|
|
47
|
-
getItemProps: (userProps?: Omit<React.HTMLProps<HTMLElement>, "
|
|
47
|
+
getItemProps: (userProps?: Omit<React.HTMLProps<HTMLElement>, "active" | "selected"> & {
|
|
48
48
|
active?: boolean;
|
|
49
49
|
selected?: boolean;
|
|
50
50
|
}) => Record<string, unknown>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,81 +1,93 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
export {
|
|
1
|
+
export { Header } from './components/blocks/header';
|
|
2
|
+
export { HeaderWelcome } from './components/blocks/headerWelcome';
|
|
3
|
+
export { Footer } from './components/blocks/footer';
|
|
4
|
+
export { SideMenu } from './components/blocks/sideMenu';
|
|
5
|
+
export { CompanyInfo } from './components/blocks/CompanyInfo';
|
|
6
|
+
export { Like } from './components/blocks/Like';
|
|
7
|
+
export { Views } from './components/blocks/Views';
|
|
8
|
+
export { Comment } from './components/blocks/Comment';
|
|
9
|
+
export { ShareList } from './components/blocks/ShareList';
|
|
10
|
+
export { Support } from './components/blocks/Support';
|
|
11
|
+
export { Notification } from './components/blocks/Notification';
|
|
12
|
+
export { NotificationShort } from './components/blocks/Notification';
|
|
13
|
+
export { LayoutSideMenu } from './components/layouts/LayoutSideMenu';
|
|
14
|
+
export { useHidingFromApp } from './hooks/useHiddingFromApp';
|
|
15
|
+
export { useHidingChat } from './hooks/useHidingChat';
|
|
16
|
+
export { default as useClickOutside } from './hooks/useClickOutside';
|
|
17
|
+
export { useOpenSideMenu } from './hooks/sideMenu/useOpenSideMenu';
|
|
18
|
+
export { useLoadingNextPage } from './hooks/useLoadingNextPage';
|
|
19
|
+
export { useLastElement } from './hooks/useLastElement';
|
|
20
|
+
export { useDragging } from './hooks/useDragging';
|
|
21
|
+
export { useMediaQuery, breakpoint } from './hooks/useMediaQuery';
|
|
22
|
+
export { PremiumBanner } from './components/banners/PremiumBanner';
|
|
23
|
+
export { CommonBanner } from './components/banners/CommonBanner';
|
|
24
|
+
export { SuccessModal } from './components/modals/SuccessModal';
|
|
25
|
+
export { Alert } from './components/uikit/Alert';
|
|
26
|
+
export { AvatarCompany } from './components/uikit/AvatarCompany';
|
|
27
|
+
export { Hint } from './components/uikit/Hint';
|
|
28
|
+
export { SwiperButton } from './components/uikit/SwiperButton';
|
|
29
|
+
export { Counter } from './components/uikit/Counter';
|
|
30
|
+
export { SegmentControl } from './components/uikit/SegmentControl';
|
|
31
|
+
export { Checkbox } from './components/uikit/Checkbox';
|
|
32
|
+
export { FilterButton } from './components/uikit/FilterButton';
|
|
33
|
+
export { ControlButton } from './components/uikit/ControlButton';
|
|
34
|
+
export { SortingButton } from './components/uikit/SortingButton';
|
|
35
|
+
export { Radio } from './components/uikit/Radio';
|
|
36
|
+
export { Portal } from './components/uikit/Portal';
|
|
37
|
+
export { Loader } from './components/uikit/Loader';
|
|
38
|
+
export { Table } from './components/uikit/Table';
|
|
39
|
+
export { TCellText } from './components/uikit/Table';
|
|
40
|
+
export { IColumnTable } from './components/uikit/Table';
|
|
41
|
+
export { Button } from './components/uikit/Button';
|
|
42
|
+
export { Tabs } from './components/uikit/Tabs';
|
|
43
|
+
export { TextButton } from './components/uikit/TextButton';
|
|
44
|
+
export { TextButtonLink } from './components/uikit/TextButtonLink';
|
|
45
|
+
export { RegexPattern, Input } from './components/uikit/Input';
|
|
46
|
+
export { ErrorText } from './components/uikit/ErrorText';
|
|
47
|
+
export { Avatar } from './components/uikit/Avatar';
|
|
48
|
+
export { Tooltip } from './components/uikit/Tooltip';
|
|
49
|
+
export { Modal } from './components/uikit/Modal';
|
|
50
|
+
export { SideModal } from './components/uikit/SideModal';
|
|
51
|
+
export { SideModalStyled } from './components/uikit/SideModal';
|
|
52
|
+
export { ArrowButton } from './components/uikit/ArrowButton';
|
|
53
|
+
export { HiddenText } from './components/uikit/HiddenText';
|
|
54
|
+
export { PasswordInput } from './components/uikit/PasswordInput';
|
|
55
|
+
export { Dropdown } from './components/uikit/Dropdown';
|
|
56
|
+
export { ModalMobile } from './components/uikit/ModalMobile';
|
|
57
|
+
export { Popup } from './components/uikit/Popup/';
|
|
58
|
+
export { IPopup } from './components/uikit/Popup/Popup.typed';
|
|
59
|
+
export { FieldRow } from './components/uikit/FieldRow';
|
|
60
|
+
export { Card } from './components/uikit/Card';
|
|
61
|
+
export { Switch } from './components/uikit/Switch';
|
|
62
|
+
export { Spinner } from './components/uikit/Spinner';
|
|
63
|
+
export { Skeleton } from './components/uikit/Skeleton';
|
|
64
|
+
export { Textarea } from './components/uikit/Textarea';
|
|
65
|
+
export { TextareaAutoSize } from './components/uikit/Textarea';
|
|
66
|
+
export { Bubbles } from './components/uikit/Bubbles';
|
|
67
|
+
export { Typography } from './components/uikit/Typography';
|
|
68
|
+
export { PageTitle } from './components/uikit/PageTitle';
|
|
69
|
+
export { ButtonPaging } from './components/uikit/ButtonPaging';
|
|
70
|
+
export { Datepicker } from './components/uikit/Datepicker';
|
|
71
|
+
export { Select } from './components/uikit/Select';
|
|
72
|
+
export { ISelectOption } from './components/uikit/Select';
|
|
73
|
+
export { SelectInput } from './components/uikit/Select';
|
|
74
|
+
export { ConfigLibraryProvider } from './config';
|
|
75
|
+
export { useConfigLibrary } from './config';
|
|
76
|
+
export { Locales } from './common.types';
|
|
77
|
+
export { ThemeProvider } from './theme/ThemeProvider';
|
|
78
|
+
export { useMode } from './theme/ThemeProvider';
|
|
79
|
+
export { TTheme } from './theme/ThemeProvider';
|
|
80
|
+
export { palette } from './theme/theme.const';
|
|
81
|
+
export { LocalizationProvider } from './localization/useLocalization';
|
|
82
|
+
export { useLocalization } from './localization/useLocalization';
|
|
83
|
+
export { default as eventBus } from './utils/eventBus';
|
|
84
|
+
export { BusEvent } from './utils/eventBus/events';
|
|
85
|
+
export { setCookie } from './utils/cookie';
|
|
86
|
+
export { deleteCookie } from './utils/cookie';
|
|
87
|
+
export { getCookie } from './utils/cookie';
|
|
88
|
+
export { INSTRUMENTS_TYPES } from './api/search/search.typed';
|
|
89
|
+
export { HEIGHT_HEADER } from './constants/common';
|
|
90
|
+
export { AnimationFunctions } from './constants/animation/animation';
|
|
91
|
+
export { ListItemStyle } from './styles/List';
|
|
92
|
+
export { NotVisibleScroll } from './styles/Scroll';
|
|
93
|
+
export { Scroll } from './styles/Scroll';
|