rbro-tat-uds 1.5.15 → 1.5.17
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.
- package/dist/components/Alert/Alert.d.ts +1 -0
- package/dist/components/ContentDropdown/ContentDropdown.d.ts +1 -0
- package/dist/components/Datepicker/Datepicker.d.ts +1 -0
- package/dist/components/FormField/FormField.d.ts +1 -1
- package/dist/components/Icon/Icon.types.d.ts +1 -1
- package/dist/components/Icon/IconsList.d.ts +2 -0
- package/dist/components/Numpad/Numpad.d.ts +4 -4
- package/dist/components/PropunereFondInvestitii/PropunereFondInvestitii.d.ts +21 -0
- package/dist/components/PropunereFondInvestitii/index.d.ts +1 -0
- package/dist/components/PropunerePlanInvestitii/PropunerePlanInvestitii.d.ts +1 -0
- package/dist/components/TextInput/TextInput.d.ts +2 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/index.cjs.js +578 -402
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +2572 -2279
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
@@ -9,6 +9,7 @@ interface AlertProps extends HTMLAttributes<HTMLDivElement> {
|
|
9
9
|
showButton?: boolean;
|
10
10
|
buttonText?: string;
|
11
11
|
buttonIcon?: IconsListProp;
|
12
|
+
buttonFontWeight?: "400" | "500" | "600" | "700" | "800" | "900";
|
12
13
|
buttonOnClick?: () => void;
|
13
14
|
}
|
14
15
|
declare const Alert: React.FC<AlertProps>;
|
@@ -11,6 +11,7 @@ export interface ContentDropdownProps extends HTMLAttributes<HTMLDivElement> {
|
|
11
11
|
disabled?: boolean;
|
12
12
|
placeholder?: ReactNode | JSX.Element | string | Element;
|
13
13
|
dropdownOpened?: (value: boolean) => void;
|
14
|
+
defaultOpen?: boolean;
|
14
15
|
}
|
15
16
|
declare const ContentDropdown: React.FC<ContentDropdownProps>;
|
16
17
|
export default ContentDropdown;
|
@@ -13,5 +13,5 @@ export interface FormFieldProps extends HTMLAttributes<HTMLDivElement> {
|
|
13
13
|
rightText?: string;
|
14
14
|
showLeftHelperIcon?: boolean;
|
15
15
|
}
|
16
|
-
declare const FormField: React.
|
16
|
+
declare const FormField: React.ForwardRefExoticComponent<FormFieldProps & React.RefAttributes<HTMLDivElement>>;
|
17
17
|
export default FormField;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/// <reference types="react" />
|
2
|
-
export type IconsListProp = "exit" | "home" | "go-right" | "trash" | "asterix" | "hint" | "info_filled" | "checkmark_filled" | "warning_filled" | "checkmark" | "checkmark_ring" | "remove_person" | "clear_filled" | "doc-sent" | "man-butterfly" | "satellite-2" | "warning_filled" | "warning-tr-filled" | "minus" | "add" | "doc_edit" | "calendar" | "branch" | "invoice_seal" | "money-bag-incoming" | "money-bag-outlined" | "forward" | "money-investment" | "libra" | "offer" | "man-outlined" | "retry-1" | "doc-error" | "to-person" | "clear-ring-filled" | "clear-ring-outlined" | "clear-ring" | "mail" | "mobile" | "rejected" | "new_tab" | "money-return" | "wallet-2" | "back" | "close" | "card" | "calculator-currency-3" | "inn-1" | "money" | "down-ring" | "up-ring" | "card-heart" | "premium" | "flag" | "document" | "up" | "plus" | "go-left" | "select-open-down" | "search" | "checkmark-part" | "doc-new" | "tag-price-4" | "cube" | "chat-ask-raif" | "code-qr" | "crane-1" | "in-progress-ring" | "people-2" | "chart-bar-2" | "certificate" | "chart-line" | "rating" | "select-hide" | "refresh-repeat" | "clear-rec";
|
2
|
+
export type IconsListProp = "exit" | "home" | "go-right" | "trash" | "asterix" | "hint" | "info_filled" | "checkmark_filled" | "warning_filled" | "checkmark" | "checkmark_ring" | "remove_person" | "clear_filled" | "doc-sent" | "man-butterfly" | "satellite-2" | "warning_filled" | "warning-tr-filled" | "minus" | "add" | "doc_edit" | "calendar" | "branch" | "invoice_seal" | "money-bag-incoming" | "money-bag-outlined" | "forward" | "money-investment" | "libra" | "offer" | "man-outlined" | "retry-1" | "doc-error" | "to-person" | "clear-ring-filled" | "clear-ring-outlined" | "clear-ring" | "mail" | "mobile" | "rejected" | "new_tab" | "money-return" | "wallet-2" | "back" | "close" | "card" | "calculator-currency-3" | "inn-1" | "money" | "down-ring" | "up-ring" | "card-heart" | "premium" | "flag" | "document" | "up" | "plus" | "go-left" | "select-open-down" | "search" | "checkmark-part" | "doc-new" | "tag-price-4" | "cube" | "chat-ask-raif" | "code-qr" | "crane-1" | "in-progress-ring" | "people-2" | "chart-bar-2" | "certificate" | "chart-line" | "rating" | "select-hide" | "refresh-repeat" | "clear-rec" | "shield-check" | "like";
|
3
3
|
export type IconProps = Omit<React.SVGProps<SVGSVGElement>, "ref"> & {
|
4
4
|
icon: IconsListProp;
|
5
5
|
size?: 8 | 12 | 14 | 16 | 18 | 20 | 24 | 32 | 40;
|
@@ -1,17 +1,17 @@
|
|
1
1
|
import React, { HTMLAttributes } from "react";
|
2
2
|
export interface NumpadProps extends HTMLAttributes<HTMLDivElement> {
|
3
|
-
steps?: boolean;
|
4
|
-
stepSize?: number;
|
5
|
-
absolute?: boolean;
|
6
3
|
position?: {
|
7
4
|
top?: string | number;
|
8
5
|
bottom?: string | number;
|
9
6
|
left?: string | number;
|
10
7
|
right?: string | number;
|
11
8
|
};
|
12
|
-
getValue?: (value: string
|
9
|
+
getValue?: (value: string) => void;
|
10
|
+
value?: string | number;
|
13
11
|
label?: string;
|
14
12
|
float?: boolean;
|
13
|
+
handleFooterButton?: () => void;
|
14
|
+
offset?: number;
|
15
15
|
}
|
16
16
|
declare const Numpad: React.FC<NumpadProps>;
|
17
17
|
export default Numpad;
|
@@ -0,0 +1,21 @@
|
|
1
|
+
import React, { HTMLAttributes } from "react";
|
2
|
+
interface PropunereFondInvestitiiProps extends HTMLAttributes<HTMLDivElement> {
|
3
|
+
title?: string;
|
4
|
+
fond?: string;
|
5
|
+
moneda?: string;
|
6
|
+
perioada?: string;
|
7
|
+
sumaInvestita?: string;
|
8
|
+
scenariuFavorabil?: string;
|
9
|
+
empty?: boolean;
|
10
|
+
emptyText?: string;
|
11
|
+
buttonOnClick?: () => void;
|
12
|
+
children?: React.ReactNode;
|
13
|
+
showContentEmpty?: boolean;
|
14
|
+
}
|
15
|
+
type ContentSlotProps = {
|
16
|
+
children: React.ReactNode;
|
17
|
+
};
|
18
|
+
declare const PropunereFondInvestitii: React.FC<PropunereFondInvestitiiProps> & {
|
19
|
+
ContentSlot: React.FC<ContentSlotProps>;
|
20
|
+
};
|
21
|
+
export default PropunereFondInvestitii;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as PropunereFondInvestitii } from "./PropunereFondInvestitii";
|
@@ -16,6 +16,8 @@ export interface TextInputProps extends Omit<InputHTMLAttributes<HTMLInputElemen
|
|
16
16
|
leftButtonIcon?: keyof typeof IconsList;
|
17
17
|
rightButtonIcon?: keyof typeof IconsList;
|
18
18
|
rightButtonOnClick?: () => void;
|
19
|
+
numpad?: boolean;
|
20
|
+
numpadOffset?: number;
|
19
21
|
}
|
20
22
|
declare const TextInput: React.FC<TextInputProps>;
|
21
23
|
export default TextInput;
|