rbro-tat-uds 1.0.24 → 1.0.26
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 +15 -0
- package/dist/components/ConfigurationFlexicredit/index.d.ts +1 -0
- package/dist/components/Icon/Icon.types.d.ts +1 -1
- package/dist/components/Icon/IconsList.d.ts +10 -0
- package/dist/components/LabeledText/LabeledText.d.ts +2 -2
- package/dist/components/ProposalFlexicredit/ProposalFlexicredit.d.ts +16 -0
- package/dist/components/ProposalFlexicredit/index.d.ts +1 -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/components/index.d.ts +2 -0
- package/dist/index.cjs.js +350 -154
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +1468 -1059
- package/dist/index.es.js.map +1 -1
- package/dist/utils/colors.d.ts +7 -0
- package/package.json +1 -1
@@ -0,0 +1,15 @@
|
|
1
|
+
import React, { HTMLAttributes } from "react";
|
2
|
+
export interface ConfigurationFlexicreditProps extends HTMLAttributes<HTMLDivElement> {
|
3
|
+
amount?: string;
|
4
|
+
currency?: string;
|
5
|
+
period?: string;
|
6
|
+
insurance?: string;
|
7
|
+
date?: string;
|
8
|
+
branch?: string;
|
9
|
+
clickable?: boolean;
|
10
|
+
disabled?: boolean;
|
11
|
+
disabledText?: string;
|
12
|
+
onClick?: () => void;
|
13
|
+
}
|
14
|
+
declare const ConfigurationFlexicredit: React.FC<ConfigurationFlexicreditProps>;
|
15
|
+
export default ConfigurationFlexicredit;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as ConfigurationFlexicredit } from "./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";
|
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";
|
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;
|
@@ -18,5 +18,15 @@ declare const IconsList: {
|
|
18
18
|
"warning-tr-filled": string;
|
19
19
|
minus: string;
|
20
20
|
add: string;
|
21
|
+
doc_edit: string;
|
22
|
+
calendar: string;
|
23
|
+
branch: string;
|
24
|
+
invoice_seal: string;
|
25
|
+
"money-bag-incoming": string;
|
26
|
+
"money-bag-outlined": string;
|
27
|
+
forward: string;
|
28
|
+
"money-investment": string;
|
29
|
+
libra: string;
|
30
|
+
offer: string;
|
21
31
|
};
|
22
32
|
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
|
}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import React, { HTMLAttributes } from "react";
|
2
|
+
export interface ProposalFlexicreditProps extends HTMLAttributes<HTMLDivElement> {
|
3
|
+
amount?: string;
|
4
|
+
currency?: string;
|
5
|
+
period?: string;
|
6
|
+
insurance?: string;
|
7
|
+
refinantare?: string;
|
8
|
+
date?: string;
|
9
|
+
type?: undefined | "sumaCeruta" | "sumaMaxima";
|
10
|
+
clickable?: boolean;
|
11
|
+
disabled?: boolean;
|
12
|
+
disabledText?: string;
|
13
|
+
onClick?: () => void;
|
14
|
+
}
|
15
|
+
declare const ProposalFlexicredit: React.FC<ProposalFlexicreditProps>;
|
16
|
+
export default ProposalFlexicredit;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as ProposalFlexicredit } from "./ProposalFlexicredit";
|
@@ -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;
|