rbro-tat-uds 1.5.39 → 1.5.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.
@@ -5,7 +5,7 @@ export interface DropdownProps extends HTMLAttributes<HTMLDivElement> {
5
5
  placeholder?: string;
6
6
  value: string;
7
7
  setValue: (value: string) => void;
8
- size?: "medium" | "large";
8
+ size?: "small" | "medium" | "large";
9
9
  intent?: "default" | "danger";
10
10
  disabled?: boolean;
11
11
  searchInput?: boolean;
@@ -15,6 +15,7 @@ export interface DropdownProps extends HTMLAttributes<HTMLDivElement> {
15
15
  value: string;
16
16
  }[];
17
17
  defaultOpen?: boolean;
18
+ dropdownContentWidth?: string;
18
19
  }
19
20
  declare const Dropdown: React.FC<DropdownProps>;
20
21
  export default Dropdown;
@@ -1,4 +1,4 @@
1
- import React, { HTMLAttributes } from "react";
1
+ import React, { CSSProperties, HTMLAttributes } from "react";
2
2
  export interface ModalProps extends HTMLAttributes<HTMLDivElement> {
3
3
  show?: boolean;
4
4
  title?: string;
@@ -6,6 +6,9 @@ export interface ModalProps extends HTMLAttributes<HTMLDivElement> {
6
6
  showFooter?: boolean;
7
7
  onClose?: () => void;
8
8
  children: React.ReactNode;
9
+ contentPadding?: string;
10
+ contentOverflow?: CSSProperties["overflow"];
11
+ contentBodyStyle?: CSSProperties;
9
12
  }
10
13
  type ContentSlotProps = {
11
14
  children: React.ReactNode;
@@ -0,0 +1,12 @@
1
+ import React, { HTMLAttributes } from "react";
2
+ export interface RatesCalculatorProps extends HTMLAttributes<HTMLDivElement> {
3
+ id?: string;
4
+ name?: string;
5
+ placeholder?: string;
6
+ size?: "medium" | "large";
7
+ intent?: "default" | "danger";
8
+ disabled?: boolean;
9
+ getValue?: (value: string) => void;
10
+ }
11
+ declare const RatesCalculator: React.FC<RatesCalculatorProps>;
12
+ export default RatesCalculator;
@@ -0,0 +1 @@
1
+ export { default as RatesCalculator } from "./RatesCalculator";
@@ -7,7 +7,7 @@ export interface TextInputProps extends Omit<InputHTMLAttributes<HTMLInputElemen
7
7
  placeholder?: string;
8
8
  value: string | number;
9
9
  setValue: (newValue: string | number) => void;
10
- size?: "medium" | "large";
10
+ size?: "small" | "medium" | "large";
11
11
  intent?: "default" | "default_white" | "danger" | "success";
12
12
  loading?: boolean;
13
13
  clearButton?: boolean;
@@ -61,3 +61,4 @@ export * from "./PropunereFondInvestitii";
61
61
  export * from "./PropunereAsigurariCalatorie";
62
62
  export * from "./InPageTab";
63
63
  export * from "./CityPicker";
64
+ export * from "./RatesCalculator";