rbro-tat-uds 1.3.1 → 1.3.3

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.
@@ -0,0 +1,12 @@
1
+ import React, { HTMLAttributes, ReactSVGElement } from "react";
2
+ interface GraficPlanInvestitiiProps extends HTMLAttributes<ReactSVGElement> {
3
+ boundary_text?: string;
4
+ boundary_value?: number;
5
+ perioada_text?: string;
6
+ favorabil_text?: string;
7
+ moderat_text?: string;
8
+ nefavorabil_text?: string;
9
+ criza_text?: string;
10
+ }
11
+ declare const GraficPlanInvestitii: React.FC<GraficPlanInvestitiiProps>;
12
+ export default GraficPlanInvestitii;
@@ -0,0 +1 @@
1
+ export { default as GraficPlanInvestitii } from './GraficPlanInvestitii';
@@ -6,6 +6,7 @@ interface InvestmentFundItemProps extends HTMLAttributes<HTMLDivElement> {
6
6
  recomandatText?: string;
7
7
  riscLevel?: 1 | 2 | 3 | 4 | 5 | 6 | 7;
8
8
  selected?: boolean;
9
+ buttonOnClick?: () => void;
9
10
  }
10
11
  declare const InvestmentFundItem: React.FC<InvestmentFundItemProps>;
11
12
  export default InvestmentFundItem;
@@ -5,9 +5,13 @@ interface ProductTeaserConfiguratie4ParametersProps extends HTMLAttributes<HTMLD
5
5
  perioada?: string;
6
6
  rataOrientativa?: string;
7
7
  asigurare?: string;
8
+ title?: string;
9
+ selected?: boolean;
8
10
  disabled?: boolean;
9
- disabledText?: string;
10
- disabledIcon?: IconsListProp;
11
+ message?: boolean;
12
+ messageText?: string;
13
+ messageIcon?: IconsListProp;
14
+ buttonOnClick?: () => void;
11
15
  }
12
16
  declare const ProductTeaserConfiguratie4Parameters: React.FC<ProductTeaserConfiguratie4ParametersProps>;
13
17
  export default ProductTeaserConfiguratie4Parameters;
@@ -51,3 +51,4 @@ export * from "./DashboardSmallShortcut";
51
51
  export * from "./SelectionPill";
52
52
  export * from "./InvestmentFundItem";
53
53
  export * from "./PropunerePlanInvestitii";
54
+ export * from "./GraficPlanInvestitii";