profinansy-ui-lib 4.1.39 → 4.1.41
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/instruments/instruments.typed.d.ts +2 -2
- package/dist/api/search/search.typed.d.ts +2 -2
- package/dist/components/blocks/QuizFunnel/constants/QuizFunnel.const.d.ts +1 -1
- package/dist/components/blocks/search/components/InstrumentItem/InstrumentItem.d.ts +2 -2
- package/dist/localization/translations/urls.d.ts +2 -0
- package/dist/profinansy-ui-lib.cjs +31 -31
- package/dist/profinansy-ui-lib.cjs.map +1 -1
- package/dist/profinansy-ui-lib.es.js +399 -385
- package/dist/profinansy-ui-lib.es.js.map +1 -1
- package/package.json +1 -1
|
@@ -17,8 +17,8 @@ export interface ILastSearch {
|
|
|
17
17
|
positive: boolean;
|
|
18
18
|
countryFlag: string;
|
|
19
19
|
price: number;
|
|
20
|
-
priceChange
|
|
21
|
-
priceChangePositive
|
|
20
|
+
priceChange?: number;
|
|
21
|
+
priceChangePositive?: boolean;
|
|
22
22
|
}
|
|
23
23
|
export type Company = {
|
|
24
24
|
logo?: string;
|
|
@@ -65,8 +65,8 @@ export interface IInstrumentSearch {
|
|
|
65
65
|
subcategory: string;
|
|
66
66
|
code: string;
|
|
67
67
|
price: number;
|
|
68
|
-
priceChangePositive
|
|
69
|
-
priceChange
|
|
68
|
+
priceChangePositive?: boolean;
|
|
69
|
+
priceChange?: number;
|
|
70
70
|
company_id: number;
|
|
71
71
|
currency_code: string;
|
|
72
72
|
countryFlag: string;
|
|
@@ -48,7 +48,7 @@ export declare const QUIZ_FUNNEL_MANAGER_HINT = "\u041E\u0441\u0442\u0430\u043B\
|
|
|
48
48
|
/** Ссылки «задать вопрос» в тултипе менеджера */
|
|
49
49
|
export declare const QUIZ_FUNNEL_MANAGER_LINKS: readonly [{
|
|
50
50
|
readonly label: "Задать вопрос в Телеграм";
|
|
51
|
-
readonly href: "https://
|
|
51
|
+
readonly href: "https://telegram.me/profinansy_assist_bot";
|
|
52
52
|
readonly messenger: "telegram";
|
|
53
53
|
}, {
|
|
54
54
|
readonly label: "Задать вопрос в Ватсапп";
|
|
@@ -7,12 +7,12 @@ interface IProps {
|
|
|
7
7
|
description: string;
|
|
8
8
|
currency: string;
|
|
9
9
|
price: number;
|
|
10
|
-
priceChange
|
|
10
|
+
priceChange?: number;
|
|
11
11
|
market: string;
|
|
12
12
|
profit: number;
|
|
13
13
|
type?: string;
|
|
14
14
|
id: number;
|
|
15
|
-
isPositiveChange
|
|
15
|
+
isPositiveChange?: boolean;
|
|
16
16
|
};
|
|
17
17
|
searchText?: string;
|
|
18
18
|
href: string;
|
|
@@ -33,6 +33,7 @@ export declare const Urls_translations: {
|
|
|
33
33
|
etf_screener: string;
|
|
34
34
|
crypto_screener: string;
|
|
35
35
|
futures_screener: string;
|
|
36
|
+
dfa_screener: string;
|
|
36
37
|
asset_comparison: string;
|
|
37
38
|
asset_comparison_stocks: string;
|
|
38
39
|
asset_comparison_bonds: string;
|
|
@@ -282,6 +283,7 @@ export declare const Urls_translations: {
|
|
|
282
283
|
etf_screener: string;
|
|
283
284
|
crypto_screener: string;
|
|
284
285
|
futures_screener: string;
|
|
286
|
+
dfa_screener: string;
|
|
285
287
|
asset_comparison: string;
|
|
286
288
|
asset_comparison_stocks: string;
|
|
287
289
|
asset_comparison_bonds: string;
|