profinansy-ui-lib 3.0.93 → 3.0.95

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.
@@ -1,5 +1,6 @@
1
1
  export declare const Container: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
2
2
  isPremium: boolean;
3
+ isVisible: boolean;
3
4
  }, never>;
4
5
  export declare const Blur: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
5
6
  export declare const Text: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, {}, never>;
@@ -15,6 +15,7 @@ interface IProps {
15
15
  selectedTab: INSTRUMENTS_TYPES;
16
16
  setSelectedTab: (val: INSTRUMENTS_TYPES) => void;
17
17
  handleRouteChange: (val: string, target?: boolean) => void;
18
+ onClose: () => void;
18
19
  }
19
- declare const SearchContent: ({ isEmpty, searchText, isOpen, hostname, setSelectedTab, selectedTab, tabs, favourites, data, handleRouteChange }: IProps) => JSX.Element;
20
+ declare const SearchContent: ({ isEmpty, searchText, isOpen, hostname, setSelectedTab, selectedTab, tabs, favourites, data, onClose, handleRouteChange }: IProps) => JSX.Element;
20
21
  export { SearchContent };
@@ -5,6 +5,7 @@ export declare const Stub: import("styled-components").StyledComponent<"div", im
5
5
  }, never>;
6
6
  export declare const CenterWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
7
7
  export declare const LinksContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
8
+ export declare const Background: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
8
9
  export declare const LinkList: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
9
10
  isOpenSearch: boolean;
10
11
  }, never>;
@@ -1,4 +1,5 @@
1
1
  import { UserRole } from '../../../../common.types';
2
2
  export declare const useIsPremiumNotice: (userRole: UserRole, currentPathName: string) => {
3
3
  isOpen: boolean;
4
+ isVisible: boolean;
4
5
  };
@@ -6,6 +6,7 @@ interface IProps {
6
6
  windowHeight: number;
7
7
  hostname: string;
8
8
  handleRouteChange: (url: string) => void;
9
+ onClose?: () => void;
9
10
  }
10
- declare const Items: ({ hostname, data, activeTab, windowHeight, favourites, handleRouteChange }: IProps) => JSX.Element;
11
+ declare const Items: ({ hostname, data, activeTab, windowHeight, favourites, handleRouteChange, onClose }: IProps) => JSX.Element;
11
12
  export { Items };