rbro-tat-uds 1.0.33 → 1.0.35
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/Bar/Bar.d.ts +11 -0
- package/dist/components/Bar/index.d.ts +1 -0
- package/dist/components/Divider/Divider.d.ts +9 -0
- package/dist/components/Divider/index.d.ts +1 -0
- package/dist/components/Icon/Icon.types.d.ts +1 -1
- package/dist/components/Icon/IconsList.d.ts +8 -0
- package/dist/components/ObjectiveCard/ObjectiveCard.d.ts +3 -1
- package/dist/components/ObjectiveCardSmall/ObjectiveCardSmall.d.ts +12 -0
- package/dist/components/ObjectiveCardSmall/index.d.ts +1 -0
- package/dist/components/TimedButton/TimedButton.d.ts +14 -0
- package/dist/components/TimedButton/index.d.ts +1 -0
- package/dist/components/index.d.ts +4 -0
- package/dist/index.cjs.js +183 -82
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +1264 -1052
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
@@ -0,0 +1,11 @@
|
|
1
|
+
import React, { HTMLAttributes } from "react";
|
2
|
+
import { colors } from "../../utils";
|
3
|
+
export interface BarProps extends HTMLAttributes<HTMLDivElement> {
|
4
|
+
value?: number;
|
5
|
+
leftColor?: keyof typeof colors;
|
6
|
+
rightColor?: keyof typeof colors;
|
7
|
+
height?: 8 | 16 | 24 | 32 | 40;
|
8
|
+
radius?: 2 | 4 | 8 | 12 | 16;
|
9
|
+
}
|
10
|
+
declare const Bar: React.FC<BarProps>;
|
11
|
+
export default Bar;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as Bar } from './Bar';
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import React, { HTMLAttributes } from "react";
|
2
|
+
import { colors } from "../../utils";
|
3
|
+
export interface DividerProps extends HTMLAttributes<HTMLDivElement> {
|
4
|
+
color?: keyof typeof colors;
|
5
|
+
margin?: string;
|
6
|
+
weight?: number;
|
7
|
+
}
|
8
|
+
declare const Divider: React.FC<DividerProps>;
|
9
|
+
export default Divider;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as Divider } from './Divider';
|
@@ -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";
|
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";
|
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;
|
@@ -29,5 +29,13 @@ declare const IconsList: {
|
|
29
29
|
libra: string;
|
30
30
|
offer: string;
|
31
31
|
"man-outlined": string;
|
32
|
+
"retry-1": string;
|
33
|
+
"doc-error": string;
|
34
|
+
"clear-ring": string;
|
35
|
+
"clear-ring-filled": string;
|
36
|
+
"clear-ring-outlined": string;
|
37
|
+
mail: string;
|
38
|
+
mobile: string;
|
39
|
+
"to-person": string;
|
32
40
|
};
|
33
41
|
export default IconsList;
|
@@ -1,7 +1,9 @@
|
|
1
1
|
import React, { HTMLAttributes } from "react";
|
2
2
|
export interface ObjectiveCardProps extends HTMLAttributes<HTMLDivElement> {
|
3
|
-
text
|
3
|
+
text?: string;
|
4
4
|
img?: string;
|
5
|
+
textFontSize?: 14 | 16 | 18 | 20 | 24;
|
6
|
+
textFontWeight?: 200 | 300 | 400 | 500 | 700 | 800;
|
5
7
|
selected?: boolean;
|
6
8
|
disabled?: boolean;
|
7
9
|
buttonLabel?: string;
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import React, { HTMLAttributes } from "react";
|
2
|
+
export interface ObjectiveCardSmallProps extends HTMLAttributes<HTMLDivElement> {
|
3
|
+
text?: string;
|
4
|
+
img?: string;
|
5
|
+
textFontSize?: 14 | 16 | 18 | 20 | 24;
|
6
|
+
textFontWeight?: 200 | 300 | 400 | 500 | 700 | 800;
|
7
|
+
width?: string;
|
8
|
+
selected?: boolean;
|
9
|
+
disabled?: boolean;
|
10
|
+
}
|
11
|
+
declare const ObjectiveCardSmall: React.FC<ObjectiveCardSmallProps>;
|
12
|
+
export default ObjectiveCardSmall;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as ObjectiveCardSmall } from './ObjectiveCardSmall';
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import React, { HTMLAttributes } from "react";
|
2
|
+
export interface TimedButtonProps extends HTMLAttributes<HTMLButtonElement> {
|
3
|
+
actionText?: string;
|
4
|
+
reActionText?: string;
|
5
|
+
error?: boolean;
|
6
|
+
errorText?: string;
|
7
|
+
success?: boolean;
|
8
|
+
successText?: string;
|
9
|
+
delay?: number;
|
10
|
+
actionButtonOnClick?: () => void;
|
11
|
+
reActionButtonOnClick?: () => void;
|
12
|
+
}
|
13
|
+
declare const TimedButton: React.FC<TimedButtonProps>;
|
14
|
+
export default TimedButton;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as TimedButton } from './TimedButton';
|
@@ -27,3 +27,7 @@ export * from "./Slider";
|
|
27
27
|
export * from "./ConfigurationFlexicredit";
|
28
28
|
export * from "./ProposalFlexicredit";
|
29
29
|
export * from "./PageTitle";
|
30
|
+
export * from "./ObjectiveCardSmall";
|
31
|
+
export * from "./Divider";
|
32
|
+
export * from "./Bar";
|
33
|
+
export * from "./TimedButton";
|