rbro-tat-uds 1.4.14 → 1.5.0

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.
@@ -0,0 +1,14 @@
1
+ import React, { HTMLAttributes, ReactNode } from "react";
2
+ type DataType = {
3
+ id: string | number;
4
+ content: Element | React.ReactNode | ReactNode;
5
+ };
6
+ export interface ContentDropdownProps extends HTMLAttributes<HTMLDivElement> {
7
+ height?: string;
8
+ data?: DataType[];
9
+ value: string | number;
10
+ setValue: (value: string | number) => void;
11
+ disabled?: boolean;
12
+ }
13
+ declare const ContentDropdown: React.FC<ContentDropdownProps>;
14
+ export default ContentDropdown;
@@ -0,0 +1 @@
1
+ export { default as ContentDropdown } from './ContentDropdown';
@@ -0,0 +1,28 @@
1
+ import React, { HTMLAttributes } from "react";
2
+ import { colors } from "../..";
3
+ export interface GraficFondInvestitiiProps extends HTMLAttributes<SVGSVGElement> {
4
+ height?: number;
5
+ paddingLeft?: number;
6
+ paddingRight?: number;
7
+ paddingTop?: number;
8
+ paddingBottom?: number;
9
+ gap?: number;
10
+ max?: number;
11
+ line?: number;
12
+ min?: number;
13
+ textLeft?: string;
14
+ textValueLeft?: number;
15
+ textTop?: string;
16
+ col1Value?: number;
17
+ col2Value?: number;
18
+ col3Value?: number;
19
+ col4Value?: number;
20
+ col1Color?: keyof typeof colors;
21
+ col2Color?: keyof typeof colors;
22
+ col3Color?: keyof typeof colors;
23
+ col4Color?: keyof typeof colors;
24
+ currency?: "RON" | "USD" | "EUR";
25
+ dev?: boolean;
26
+ }
27
+ declare const GraficFondInvestitii: React.FC<GraficFondInvestitiiProps>;
28
+ export default GraficFondInvestitii;
@@ -0,0 +1 @@
1
+ export { default as GraficFondInvestitii } from "./GraficFondInvestitii";
@@ -10,9 +10,10 @@ export interface GraficPlanInvestitiiProps extends HTMLAttributes<SVGSVGElement>
10
10
  max?: number;
11
11
  line?: number;
12
12
  min?: number;
13
- textLeft?: string;
14
- textValueLeft?: number;
15
13
  textTop?: string;
14
+ textValueTop?: number;
15
+ textBottomPrimary?: number;
16
+ textBottomSecondary?: number;
16
17
  col1Value?: number;
17
18
  col2Value?: number;
18
19
  col3Value?: number;
@@ -1 +1 @@
1
- export { default as GraficPlanInvestitii } from './GraficPlanInvestitii';
1
+ export { default as GraficPlanInvestitii } from "./GraficPlanInvestitii";
@@ -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" | "retry-1" | "doc-error" | "to-person" | "clear-ring-filled" | "clear-ring-outlined" | "clear-ring" | "mail" | "mobile" | "rejected" | "new_tab" | "money-return" | "wallet-2" | "back" | "close" | "card" | "calculator-currency-3" | "inn-1" | "money" | "down-ring" | "up-ring" | "card-heart" | "premium" | "flag" | "document" | "up" | "plus" | "go-left" | "select-open-down" | "search" | "checkmark-part" | "doc-new" | "tag-price-4" | "cube" | "chat-ask-raif" | "code-qr" | "crane-1" | "in-progress-ring" | "people-2" | "chart-bar-2" | "certificate" | "chart-line" | "rating";
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" | "rejected" | "new_tab" | "money-return" | "wallet-2" | "back" | "close" | "card" | "calculator-currency-3" | "inn-1" | "money" | "down-ring" | "up-ring" | "card-heart" | "premium" | "flag" | "document" | "up" | "plus" | "go-left" | "select-open-down" | "search" | "checkmark-part" | "doc-new" | "tag-price-4" | "cube" | "chat-ask-raif" | "code-qr" | "crane-1" | "in-progress-ring" | "people-2" | "chart-bar-2" | "certificate" | "chart-line" | "rating" | "select-hide";
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;
@@ -71,5 +71,6 @@ declare const IconsList: {
71
71
  certificate: string;
72
72
  "chart-line": string;
73
73
  rating: string;
74
+ "select-hide": string;
74
75
  };
75
76
  export default IconsList;
@@ -8,7 +8,7 @@ export interface TextInputProps extends Omit<InputHTMLAttributes<HTMLInputElemen
8
8
  value: string | number;
9
9
  setValue: (newValue: string | number) => void;
10
10
  size?: "medium" | "large";
11
- intent?: "default" | "danger" | "success";
11
+ intent?: "default" | "default_white" | "danger" | "success";
12
12
  loading?: boolean;
13
13
  clearButton?: boolean;
14
14
  leftText?: string;
@@ -50,7 +50,9 @@ export * from "./DashboardSmallShortcut";
50
50
  export * from "./SelectionPill";
51
51
  export * from "./InvestmentFundItem";
52
52
  export * from "./PropunerePlanInvestitii";
53
- export * from "./GraficPlanInvestitii";
53
+ export * from "./GraficFondInvestitii";
54
54
  export * from "./StepsBar";
55
55
  export * from "./GraficPropunerePensii";
56
56
  export * from "./GraficConfiguratiePensii";
57
+ export * from "./GraficPlanInvestitii";
58
+ export * from "./ContentDropdown";