rbro-tat-uds 1.5.7 → 1.5.8

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.
@@ -10,6 +10,7 @@ export interface ContentDropdownProps extends HTMLAttributes<HTMLDivElement> {
10
10
  setValue: (value: string | number) => void;
11
11
  disabled?: boolean;
12
12
  placeholder?: ReactNode | JSX.Element | string | Element;
13
+ dropdownOpened?: (value: boolean) => void;
13
14
  }
14
15
  declare const ContentDropdown: React.FC<ContentDropdownProps>;
15
16
  export default ContentDropdown;
@@ -0,0 +1,29 @@
1
+ import React, { HTMLAttributes } from "react";
2
+ import { colors } from "../..";
3
+ export interface GraficFondInvestitiiInflatieProps extends HTMLAttributes<SVGSVGElement> {
4
+ height?: number;
5
+ paddingLeft?: number;
6
+ paddingRight?: number;
7
+ paddingTop?: number;
8
+ paddingBottom?: number;
9
+ gap?: number;
10
+ max?: number;
11
+ line?: number;
12
+ min?: number;
13
+ textLeft?: string;
14
+ textValueLeft?: number;
15
+ textTop?: string;
16
+ col1Value?: number;
17
+ col1Text?: string;
18
+ col2Value?: number;
19
+ col2Text?: string;
20
+ col3Value?: number;
21
+ col3Text?: string;
22
+ col1Color?: keyof typeof colors;
23
+ col2Color?: keyof typeof colors;
24
+ col3Color?: keyof typeof colors;
25
+ currency?: "RON" | "USD" | "EUR";
26
+ dev?: boolean;
27
+ }
28
+ declare const GraficFondInvestitiiInflatie: React.FC<GraficFondInvestitiiInflatieProps>;
29
+ export default GraficFondInvestitiiInflatie;
@@ -0,0 +1 @@
1
+ export { default as GraficFondInvestitiiInflatie } from './GraficFondInvestitiiInflatie';
@@ -56,3 +56,4 @@ export * from "./GraficPropunerePensii";
56
56
  export * from "./GraficConfiguratiePensii";
57
57
  export * from "./GraficPlanInvestitii";
58
58
  export * from "./ContentDropdown";
59
+ export * from "./GraficFondInvestitiiInflatie";