profinansy-ui-lib 3.8.24 → 3.8.26

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,7 +1,7 @@
1
1
  import { IApiSettings } from '../api';
2
2
  import { ISearch } from './search.typed';
3
3
  import { SearchCategories } from '../../components/blocks/search/Search.const';
4
- export declare const getSearch: (value: string, category: SearchCategories, settings: IApiSettings) => Promise<{
4
+ export declare const getSearch: (value: string, category: SearchCategories, isNonTradableInstruments: boolean, settings: IApiSettings) => Promise<{
5
5
  data: ISearch;
6
6
  ok: boolean;
7
7
  }>;
@@ -11,7 +11,8 @@ declare const Window: import("styled-components/dist/types").IStyledComponentBas
11
11
  }>> & string;
12
12
  declare const Header: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
13
13
  declare const Title: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
14
+ declare const TitleLeft: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
14
15
  declare const Content: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
15
16
  declare const Close: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, never>> & string;
16
17
  declare const SearchContent: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
17
- export { Wrapper, Layout, Window, Content, SearchContent, Title, Close, Header };
18
+ export { Wrapper, Layout, Window, Content, SearchContent, Title, Close, Header, TitleLeft };
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const Container: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
@@ -0,0 +1,5 @@
1
+ interface IProps {
2
+ isShow: boolean;
3
+ }
4
+ declare const NonTradable: ({ isShow }: IProps) => import("react/jsx-runtime").JSX.Element;
5
+ export { NonTradable };
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ export declare const Button: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, never>> & string;
3
+ export declare const Nontradable: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
@@ -1,5 +1,8 @@
1
+ import { SearchCategories } from '../../Search.const';
1
2
  interface IProps {
2
3
  isEmpty: boolean;
4
+ isLoading: boolean;
5
+ category?: SearchCategories;
3
6
  }
4
- declare const SearchNotFound: ({ isEmpty }: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ declare const SearchNotFound: ({ isEmpty, isLoading, category }: IProps) => import("react/jsx-runtime").JSX.Element;
5
8
  export { SearchNotFound };
@@ -1,6 +1,4 @@
1
1
  /// <reference types="react" />
2
+ export declare const SpinnerContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
2
3
  export declare const Container: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
3
4
  export declare const Image: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, never>> & string;
4
- export declare const Text: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<Omit<import("../../../../uikit/Typography/Typography.typed").ITypographyProps & import("react").CSSProperties & import("react").RefAttributes<HTMLElement>, "ref"> & {
5
- ref?: import("react").Ref<HTMLElement>;
6
- }, never>> & string & Omit<import("react").ForwardRefExoticComponent<import("../../../../uikit/Typography/Typography.typed").ITypographyProps & import("react").CSSProperties & import("react").RefAttributes<HTMLElement>>, keyof import("react").Component<any, {}, any>>;
@@ -3,4 +3,5 @@ import { SearchCategories } from '../Search.const';
3
3
  export declare const useGetSearchData: (category: SearchCategories) => {
4
4
  data: ISearch;
5
5
  searchText: string;
6
+ isLoading: boolean;
6
7
  };
@@ -0,0 +1,3 @@
1
+ export declare const useSubscribeNonTradable: () => {
2
+ isShowNonTradable: boolean;
3
+ };
@@ -1,10 +1,11 @@
1
1
  import React, { ReactNode } from 'react';
2
2
  import { Placement } from '@floating-ui/react';
3
3
  import { ITooltipProps } from './Tooltip.typed';
4
- export declare function useTooltip({ placement, isHover, showArrow }: {
4
+ export declare function useTooltip({ placement, isHover, showArrow, onOpenTooltip }: {
5
5
  placement?: Placement;
6
6
  isHover?: boolean;
7
7
  showArrow?: boolean;
8
+ onOpenTooltip?: ITooltipProps['onOpenTooltip'];
8
9
  }): {
9
10
  placement: Placement;
10
11
  strategy: import("@floating-ui/utils").Strategy;
@@ -8,10 +8,13 @@ export declare const common_translation: {
8
8
  search: string;
9
9
  search_club: string;
10
10
  search_header: string;
11
+ search_result: string;
11
12
  theme_light: string;
12
13
  theme_dark: string;
13
14
  not_found: string;
14
15
  try_another: string;
16
+ try_another_instruments: string;
17
+ search_button: string;
15
18
  new: string;
16
19
  };
17
20
  en: {
@@ -23,10 +26,13 @@ export declare const common_translation: {
23
26
  search: string;
24
27
  search_club: string;
25
28
  search_header: string;
29
+ search_result: string;
26
30
  theme_light: string;
27
31
  theme_dark: string;
28
32
  not_found: string;
29
33
  try_another: string;
34
+ try_another_instruments: string;
35
+ search_button: string;
30
36
  new: string;
31
37
  };
32
38
  };