profinansy-ui-lib 3.6.56 → 3.6.57
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/SearchSideMenu/Search.d.ts +8 -0
- package/dist/components/blocks/{sideMenu/components/Search → SearchSideMenu}/compoenents/SearchWindow/SearchWindowSideMenu.d.ts +1 -1
- package/dist/components/blocks/SearchSideMenu/index.d.ts +1 -0
- 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/Table/utils.d.ts +1 -1
- package/dist/components/uikit/Tooltip/Tooltip.d.ts +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +136 -136
- package/package.json +1 -1
- package/dist/components/blocks/sideMenu/components/Search/Search.d.ts +0 -8
- /package/dist/components/blocks/{sideMenu/components/Search → SearchSideMenu}/Search.styled.d.ts +0 -0
- /package/dist/components/blocks/{sideMenu/components/Search → SearchSideMenu}/compoenents/SearchWindow/SearchWindowSideMenu.styled.d.ts +0 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { SearchCategories } from '../search/Search.const';
|
|
2
|
+
interface IProps {
|
|
3
|
+
category: SearchCategories;
|
|
4
|
+
isOpenMode: boolean;
|
|
5
|
+
height: number;
|
|
6
|
+
}
|
|
7
|
+
declare const SearchSideMenu: ({ isOpenMode, height, category }: IProps) => JSX.Element;
|
|
8
|
+
export { SearchSideMenu };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SearchSideMenu } from './Search';
|
|
@@ -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
|
@@ -10,6 +10,8 @@ export { ShareList } from './components/blocks/ShareList';
|
|
|
10
10
|
export { Support } from './components/blocks/Support';
|
|
11
11
|
export { Notification } from './components/blocks/Notification';
|
|
12
12
|
export { NotificationShort } from './components/blocks/Notification';
|
|
13
|
+
export { SearchSideMenu } from './components/blocks/SearchSideMenu';
|
|
14
|
+
export { SearchCategories } from './components/blocks/search/Search.const';
|
|
13
15
|
export { LayoutSideMenu } from './components/layouts/LayoutSideMenu';
|
|
14
16
|
export { useHidingFromApp } from './hooks/useHiddingFromApp';
|
|
15
17
|
export { useHidingChat } from './hooks/useHidingChat';
|