rbro-tat-uds 1.5.14 → 1.5.16
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/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/GraficConfiguratiePensii/GraficConfiguratiePensii.d.ts +1 -0
- 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 +2 -0
- package/dist/components/Numpad/index.d.ts +1 -1
- package/dist/index.cjs.js +187 -180
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +1850 -1785
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
@@ -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;
|
@@ -8,6 +8,7 @@ export interface GraficConfiguratiePensiiProps extends HTMLAttributes<SVGSVGElem
|
|
8
8
|
currency?: string;
|
9
9
|
height?: number;
|
10
10
|
selected?: boolean;
|
11
|
+
decimals?: number;
|
11
12
|
}
|
12
13
|
declare const GraficConfiguratiePensii: React.FC<GraficConfiguratiePensiiProps>;
|
13
14
|
export default GraficConfiguratiePensii;
|
@@ -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;
|
@@ -10,6 +10,8 @@ export interface NumpadProps extends HTMLAttributes<HTMLDivElement> {
|
|
10
10
|
right?: string | number;
|
11
11
|
};
|
12
12
|
getValue?: (value: string | number) => void;
|
13
|
+
label?: string;
|
14
|
+
float?: boolean;
|
13
15
|
}
|
14
16
|
declare const Numpad: React.FC<NumpadProps>;
|
15
17
|
export default Numpad;
|
@@ -1 +1 @@
|
|
1
|
-
export { default as Numpad } from
|
1
|
+
export { default as Numpad } from "./Numpad";
|