rbro-tat-uds 1.6.0 → 1.6.1

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.
@@ -5,6 +5,7 @@ export interface ModalProps extends HTMLAttributes<HTMLDivElement> {
5
5
  width?: number;
6
6
  showFooter?: boolean;
7
7
  onClose?: () => void;
8
+ showCloseButton?: boolean;
8
9
  children: React.ReactNode;
9
10
  contentPadding?: string;
10
11
  contentOverflow?: CSSProperties["overflow"];
@@ -10,6 +10,7 @@ export interface PlanFinanciarAUMGraphProps extends HTMLAttributes<SVGSVGElement
10
10
  bottom_label?: string;
11
11
  cash_label_nedistribuit?: string;
12
12
  height?: number;
13
+ test?: boolean;
13
14
  }
14
15
  declare const PlanFinanciarAUMGraph: React.FC<PlanFinanciarAUMGraphProps>;
15
16
  export default PlanFinanciarAUMGraph;
@@ -16,6 +16,7 @@ export interface TextInputProps extends Omit<InputHTMLAttributes<HTMLInputElemen
16
16
  leftButtonIcon?: keyof typeof IconsList;
17
17
  rightButtonIcon?: keyof typeof IconsList;
18
18
  rightButtonOnClick?: () => void;
19
+ onCloseModal?: () => void;
19
20
  numpad?: boolean;
20
21
  numpadOffset?: number;
21
22
  numpadFloatNumber?: boolean;