rbro-tat-uds 1.0.32 → 1.0.34

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.
@@ -2,7 +2,7 @@
2
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";
3
3
  export type IconProps = Omit<React.SVGProps<SVGSVGElement>, "ref"> & {
4
4
  icon: IconsListProp;
5
- size?: 8 | 12 | 14 | 16 | 20 | 24 | 32 | 40;
5
+ size?: 8 | 12 | 14 | 16 | 18 | 20 | 24 | 32 | 40;
6
6
  fullWidth?: boolean;
7
7
  color?: string;
8
8
  };
@@ -4,8 +4,10 @@ export interface LabeledTextProps extends HTMLAttributes<HTMLDivElement> {
4
4
  text: string;
5
5
  label?: string;
6
6
  gap?: number;
7
+ align?: "left" | "center" | "right";
7
8
  labelFontSize?: 12 | 14 | 16 | 18;
8
- textFontSize?: 14 | 16 | 18 | 20;
9
+ textFontSize?: 14 | 16 | 18 | 20 | 24;
10
+ textFontWeight?: 200 | 300 | 400 | 500 | 700 | 800;
9
11
  labelColor?: keyof typeof colors;
10
12
  textColor?: keyof typeof colors;
11
13
  }
@@ -1,7 +1,9 @@
1
1
  import React, { HTMLAttributes } from "react";
2
2
  export interface ObjectiveCardProps extends HTMLAttributes<HTMLDivElement> {
3
- text: string;
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,8 @@
1
+ import React, { HTMLAttributes } from "react";
2
+ export interface PageTitleProps extends HTMLAttributes<HTMLDivElement> {
3
+ title?: string;
4
+ topText?: string;
5
+ bottomText?: string;
6
+ }
7
+ declare const PageTitle: React.FC<PageTitleProps>;
8
+ export default PageTitle;
@@ -0,0 +1 @@
1
+ export { default as PageTitle } from './PageTitle';
@@ -11,7 +11,6 @@ export * from "./Content";
11
11
  export * from "./Flex";
12
12
  export * from "./Tab";
13
13
  export * from "./SegmentedTabs";
14
- export * from "./ProductPageTitle";
15
14
  export * from "./LabeledText";
16
15
  export * from "./ConfigurationSaveInfo";
17
16
  export * from "./ProductShortcut";
@@ -27,3 +26,5 @@ export * from "./FormField";
27
26
  export * from "./Slider";
28
27
  export * from "./ConfigurationFlexicredit";
29
28
  export * from "./ProposalFlexicredit";
29
+ export * from "./PageTitle";
30
+ export * from "./ObjectiveCardSmall";