rbro-tat-uds 1.0.25 → 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.
@@ -3,6 +3,7 @@ export interface CheckboxProps extends Omit<React.InputHTMLAttributes<HTMLInputE
3
3
  size?: "small" | "medium" | "large";
4
4
  onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
5
5
  checked?: boolean;
6
+ disabled?: boolean;
6
7
  name?: string;
7
8
  id?: string;
8
9
  }
@@ -1,13 +1,15 @@
1
1
  import React, { HTMLAttributes } from "react";
2
- export interface ConfiguratieFlexicreditProps extends HTMLAttributes<HTMLDivElement> {
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 ConfiguratieFlexicredit: React.FC<ConfiguratieFlexicreditProps>;
13
- export default ConfiguratieFlexicredit;
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";
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,9 @@ 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;
27
31
  };
28
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?: number;
8
- textFontSize?: number;
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>;
@@ -5,6 +5,7 @@ export interface SidebarItemProps extends React.ButtonHTMLAttributes<HTMLButtonE
5
5
  icon: IconsListProp;
6
6
  disabled?: boolean;
7
7
  selected?: boolean;
8
+ onClick?(): void;
8
9
  }
9
10
  declare const SidebarItem: React.FC<SidebarItemProps>;
10
11
  export default SidebarItem;
@@ -1 +1 @@
1
- export { default as Slider } from './Slider';
1
+ export { default as Slider } from "./Slider";
@@ -1,6 +1,6 @@
1
1
  import React from "react";
2
2
  type SpinnerProps = Omit<React.SVGProps<SVGSVGElement>, "ref" | "direction"> & {
3
- size?: 20 | 24;
3
+ size?: 16 | 20 | 24;
4
4
  text?: string;
5
5
  direction?: "vertical" | "horizontal";
6
6
  };
@@ -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?: string | number;
9
- setValue?: (newValue: string) => void;
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;