rbro-tat-uds 1.4.4 → 1.4.6

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,12 +1,7 @@
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;
1
+ import React, { HTMLAttributes } from "react";
2
+ import { colors } from "../..";
3
+ export interface GraficPlanInvestitiiProps extends HTMLAttributes<SVGSVGElement> {
4
+ height?: number;
10
5
  paddingLeft?: number;
11
6
  paddingRight?: number;
12
7
  paddingTop?: number;
@@ -15,7 +10,19 @@ interface GraficPlanInvestitiiProps extends HTMLAttributes<ReactSVGElement> {
15
10
  max?: number;
16
11
  line?: number;
17
12
  min?: number;
13
+ textLeft?: string;
14
+ textValueLeft?: number;
15
+ textTop?: string;
16
+ col1Value?: number;
17
+ col2Value?: number;
18
+ col3Value?: number;
19
+ col4Value?: number;
20
+ col1Color?: keyof typeof colors;
21
+ col2Color?: keyof typeof colors;
22
+ col3Color?: keyof typeof colors;
23
+ col4Color?: keyof typeof colors;
18
24
  currency?: "RON" | "USD" | "EUR";
25
+ dev?: boolean;
19
26
  }
20
27
  declare const GraficPlanInvestitii: React.FC<GraficPlanInvestitiiProps>;
21
28
  export default GraficPlanInvestitii;
@@ -15,6 +15,8 @@ interface ProductTeaserParametersProps extends HTMLAttributes<HTMLDivElement> {
15
15
  message?: boolean;
16
16
  messageText?: string;
17
17
  messageIcon?: IconsListProp;
18
+ textColor?: keyof typeof colors;
19
+ iconColor?: keyof typeof colors;
18
20
  buttonOnClick?: () => void;
19
21
  }
20
22
  declare const ProductTeaserParameters: React.FC<ProductTeaserParametersProps>;