rbro-tat-uds 1.0.25 → 1.0.27
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/Checkbox/Checkbox.d.ts +1 -0
- package/dist/components/ConfigurationFlexicredit/ConfigurationFlexicredit.d.ts +5 -3
- package/dist/components/Icon/Icon.types.d.ts +1 -1
- package/dist/components/Icon/IconsList.d.ts +5 -0
- package/dist/components/LabeledText/LabeledText.d.ts +2 -2
- package/dist/components/ProposalFlexicredit/ProposalFlexicredit.d.ts +2 -0
- package/dist/components/SidebarItem/SidebarItem.d.ts +1 -0
- package/dist/components/Slider/index.d.ts +1 -1
- package/dist/components/Spinner/Spinner.d.ts +1 -1
- package/dist/components/TextInput/TextInput.d.ts +2 -2
- package/dist/index.cjs.js +179 -142
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +1068 -970
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
@@ -1,13 +1,15 @@
|
|
1
1
|
import React, { HTMLAttributes } from "react";
|
2
|
-
export interface
|
2
|
+
export interface ConfigurationFlexicreditProps extends HTMLAttributes<HTMLDivElement> {
|
3
3
|
amount?: string;
|
4
4
|
currency?: string;
|
5
5
|
period?: string;
|
6
6
|
insurance?: string;
|
7
7
|
date?: string;
|
8
8
|
branch?: string;
|
9
|
+
clickable?: boolean;
|
9
10
|
disabled?: boolean;
|
11
|
+
disabledText?: string;
|
10
12
|
onClick?: () => void;
|
11
13
|
}
|
12
|
-
declare const
|
13
|
-
export default
|
14
|
+
declare const ConfigurationFlexicredit: React.FC<ConfigurationFlexicreditProps>;
|
15
|
+
export default ConfigurationFlexicredit;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/// <reference types="react" />
|
2
|
-
export type IconsListProp = "empty" | "enter" | "home" | "go-right" | "spinner" | "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";
|
2
|
+
export type IconsListProp = "empty" | "enter" | "home" | "go-right" | "spinner" | "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";
|
3
3
|
export type IconProps = Omit<React.SVGProps<SVGSVGElement>, "ref"> & {
|
4
4
|
icon: IconsListProp;
|
5
5
|
size?: 8 | 12 | 14 | 16 | 20 | 24 | 32 | 40;
|
@@ -24,5 +24,10 @@ declare const IconsList: {
|
|
24
24
|
invoice_seal: string;
|
25
25
|
"money-bag-incoming": string;
|
26
26
|
"money-bag-outlined": string;
|
27
|
+
forward: string;
|
28
|
+
"money-investment": string;
|
29
|
+
libra: string;
|
30
|
+
offer: string;
|
31
|
+
"man-outlined": string;
|
27
32
|
};
|
28
33
|
export default IconsList;
|
@@ -4,8 +4,8 @@ export interface LabeledTextProps extends HTMLAttributes<HTMLDivElement> {
|
|
4
4
|
text: string;
|
5
5
|
label?: string;
|
6
6
|
gap?: number;
|
7
|
-
labelFontSize?:
|
8
|
-
textFontSize?:
|
7
|
+
labelFontSize?: 12 | 14 | 16 | 18;
|
8
|
+
textFontSize?: 14 | 16 | 18 | 20;
|
9
9
|
labelColor?: keyof typeof colors;
|
10
10
|
textColor?: keyof typeof colors;
|
11
11
|
}
|
@@ -7,7 +7,9 @@ export interface ProposalFlexicreditProps extends HTMLAttributes<HTMLDivElement>
|
|
7
7
|
refinantare?: string;
|
8
8
|
date?: string;
|
9
9
|
type?: undefined | "sumaCeruta" | "sumaMaxima";
|
10
|
+
clickable?: boolean;
|
10
11
|
disabled?: boolean;
|
12
|
+
disabledText?: string;
|
11
13
|
onClick?: () => void;
|
12
14
|
}
|
13
15
|
declare const ProposalFlexicredit: React.FC<ProposalFlexicreditProps>;
|
@@ -1 +1 @@
|
|
1
|
-
export { default as Slider } from
|
1
|
+
export { default as Slider } from "./Slider";
|
@@ -5,8 +5,8 @@ export interface TextInputProps extends Omit<InputHTMLAttributes<HTMLInputElemen
|
|
5
5
|
type?: "text" | "email" | "password" | "number";
|
6
6
|
name?: string;
|
7
7
|
placeholder?: string;
|
8
|
-
value
|
9
|
-
setValue
|
8
|
+
value: string | number;
|
9
|
+
setValue: (newValue: string | number) => void;
|
10
10
|
size?: "medium" | "large";
|
11
11
|
intent?: "default" | "danger" | "success";
|
12
12
|
loading?: boolean;
|