profinansy-ui-lib 3.8.25 → 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.
- package/dist/api/search/search.d.ts +1 -1
- package/dist/components/blocks/SearchSideMenu/compoenents/SearchWindow/SearchWindowSideMenu.styled.d.ts +2 -1
- package/dist/components/blocks/search/components/Navigation/Navigation.styled.d.ts +2 -0
- package/dist/components/blocks/search/components/NonTradable/NonTradable.d.ts +5 -0
- package/dist/components/blocks/search/components/NonTradable/NonTradable.styled.d.ts +3 -0
- package/dist/components/blocks/search/components/SearchNotFound/SearchNotFound.d.ts +4 -1
- package/dist/components/blocks/search/components/SearchNotFound/SearchNotFound.styled.d.ts +1 -3
- package/dist/components/blocks/search/hooks/useGetSearchData.d.ts +1 -0
- package/dist/components/blocks/search/hooks/useSubscribeNonTradable.d.ts +3 -0
- package/dist/localization/translations/common.d.ts +6 -0
- package/dist/profinansy-ui-lib.cjs.js +794 -757
- package/dist/profinansy-ui-lib.cjs.js.map +1 -1
- package/dist/profinansy-ui-lib.es.js +4122 -3984
- package/dist/profinansy-ui-lib.es.js.map +1 -1
- package/dist/utils/eventBus/events.d.ts +2 -0
- package/package.json +1 -1
|
@@ -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,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>>;
|
|
@@ -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
|
};
|