rbro-tat-uds 1.3.0 → 1.3.2
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/DashboardSmallShortcut/DashboardSmallShortcut.d.ts +7 -0
- package/dist/components/DashboardSmallShortcut/index.d.ts +1 -0
- package/dist/components/GraficPlanInvestitii/GraficPlanInvestitii.d.ts +4 -0
- package/dist/components/GraficPlanInvestitii/index.d.ts +1 -0
- package/dist/components/Icon/Icon.types.d.ts +1 -1
- package/dist/components/Icon/IconsList.d.ts +1 -0
- package/dist/components/InvestmentFundItem/InvestmentFundItem.d.ts +12 -0
- package/dist/components/InvestmentFundItem/index.d.ts +1 -0
- package/dist/components/Pill/Pill.d.ts +9 -0
- package/dist/components/Pill/index.d.ts +1 -0
- package/dist/components/ProductTeaser/ProductTeaser.d.ts +1 -1
- package/dist/components/ProductTeaserButton/ProductTeaserButton.d.ts +1 -1
- package/dist/components/ProductTeaserStep/ProductTeaserStep.d.ts +1 -1
- package/dist/components/PropunerePlanInvestitii/PropunerePlanInvestitii.d.ts +20 -0
- package/dist/components/PropunerePlanInvestitii/index.d.ts +1 -0
- package/dist/components/SelectionPill/SelectionPill.d.ts +12 -0
- package/dist/components/SelectionPill/index.d.ts +1 -0
- package/dist/components/StepTab/StepTab.d.ts +1 -1
- package/dist/components/index.d.ts +6 -0
- package/dist/index.cjs.js +764 -301
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +5556 -2470
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
@@ -0,0 +1,7 @@
|
|
1
|
+
import React, { HTMLAttributes } from "react";
|
2
|
+
interface DashboardSmallShortcutProps extends HTMLAttributes<HTMLButtonElement> {
|
3
|
+
intent?: "PlanFinanciar" | "PacheteContCurent";
|
4
|
+
buttonOnClick?: () => void;
|
5
|
+
}
|
6
|
+
declare const DashboardSmallShortcut: React.FC<DashboardSmallShortcutProps>;
|
7
|
+
export default DashboardSmallShortcut;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as DashboardSmallShortcut } from "./DashboardSmallShortcut";
|
@@ -0,0 +1 @@
|
|
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";
|
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";
|
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;
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import React, { HTMLAttributes } from "react";
|
2
|
+
interface InvestmentFundItemProps extends HTMLAttributes<HTMLDivElement> {
|
3
|
+
title?: string;
|
4
|
+
currency?: "RON" | "EUR" | "USD";
|
5
|
+
scenariuText?: string;
|
6
|
+
recomandatText?: string;
|
7
|
+
riscLevel?: 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
8
|
+
selected?: boolean;
|
9
|
+
buttonOnClick?: () => void;
|
10
|
+
}
|
11
|
+
declare const InvestmentFundItem: React.FC<InvestmentFundItemProps>;
|
12
|
+
export default InvestmentFundItem;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as InvestmentFundItem } from './InvestmentFundItem';
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import React, { HTMLAttributes } from "react";
|
2
|
+
interface PillProps extends HTMLAttributes<HTMLDivElement> {
|
3
|
+
intent?: "default" | "info" | "featured" | "success" | "danger" | "warning";
|
4
|
+
variant?: "light" | "default";
|
5
|
+
size?: "small" | "medium";
|
6
|
+
text?: string;
|
7
|
+
}
|
8
|
+
declare const Pill: React.FC<PillProps>;
|
9
|
+
export default Pill;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as Pill } from './Pill';
|
@@ -5,7 +5,7 @@ interface ProductTeaserProps extends HTMLAttributes<HTMLDivElement> {
|
|
5
5
|
buttonLabel?: string;
|
6
6
|
buttonOnClick?: () => void;
|
7
7
|
buttonIcon?: "forward" | undefined | null;
|
8
|
-
buttonVariant?: "blue" | "purple" | "magenta" | "yellow";
|
8
|
+
buttonVariant?: "blue" | "purple" | "magenta" | "yellow" | "black";
|
9
9
|
children: React.ReactNode;
|
10
10
|
}
|
11
11
|
type StepsSlotProps = {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import React from "react";
|
2
2
|
interface ProductTeaserButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
3
|
-
variant?: "blue" | "purple" | "magenta" | "yellow";
|
3
|
+
variant?: "blue" | "purple" | "magenta" | "yellow" | "black";
|
4
4
|
label?: string;
|
5
5
|
rightIcon?: "forward" | undefined;
|
6
6
|
}
|
@@ -2,7 +2,7 @@ import React from "react";
|
|
2
2
|
interface ProductTeaserStepProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
3
3
|
selected?: boolean;
|
4
4
|
inactive?: boolean;
|
5
|
-
variant?: "blue" | "purple" | "magenta" | "yellow";
|
5
|
+
variant?: "blue" | "purple" | "magenta" | "yellow" | "black";
|
6
6
|
label?: string;
|
7
7
|
stepText?: string;
|
8
8
|
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import React, { HTMLAttributes } from "react";
|
2
|
+
interface PropunuerePlanInvestitiiProps extends HTMLAttributes<HTMLDivElement> {
|
3
|
+
title?: string;
|
4
|
+
fond?: string;
|
5
|
+
moneda?: string;
|
6
|
+
perioada?: string;
|
7
|
+
sumaLunara?: string;
|
8
|
+
scenariuCriza?: string;
|
9
|
+
empty?: boolean;
|
10
|
+
emptyText?: string;
|
11
|
+
buttonOnClick?: () => void;
|
12
|
+
children?: React.ReactNode;
|
13
|
+
}
|
14
|
+
type ContentSlotProps = {
|
15
|
+
children: React.ReactNode;
|
16
|
+
};
|
17
|
+
declare const PropunuerePlanInvestitii: React.FC<PropunuerePlanInvestitiiProps> & {
|
18
|
+
ContentSlot: React.FC<ContentSlotProps>;
|
19
|
+
};
|
20
|
+
export default PropunuerePlanInvestitii;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as PropunerePlanInvestitii } from './PropunerePlanInvestitii';
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import React from "react";
|
2
|
+
interface SelectionPillProps extends React.InputHTMLAttributes<HTMLInputElement> {
|
3
|
+
name?: string;
|
4
|
+
id?: string;
|
5
|
+
checked?: boolean;
|
6
|
+
label?: string;
|
7
|
+
disabled?: boolean;
|
8
|
+
onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
|
9
|
+
value?: string | number;
|
10
|
+
}
|
11
|
+
declare const SelectionPill: React.FC<SelectionPillProps>;
|
12
|
+
export default SelectionPill;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as SelectionPill } from './SelectionPill';
|
@@ -2,7 +2,7 @@ import React from "react";
|
|
2
2
|
interface StepTabProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
3
3
|
intent?: "tabs" | "subtabs";
|
4
4
|
selected?: boolean;
|
5
|
-
variant?: "default" | "blue" | "purple" | "magenta" | "yellow" | "danger";
|
5
|
+
variant?: "default" | "blue" | "purple" | "magenta" | "yellow" | "black" | "danger";
|
6
6
|
label?: string;
|
7
7
|
stepText?: string;
|
8
8
|
}
|
@@ -46,3 +46,9 @@ export * from "./Dropdown";
|
|
46
46
|
export * from "./ProposalPensii";
|
47
47
|
export * from "./GraficPensii";
|
48
48
|
export * from "./Radio";
|
49
|
+
export * from "./Pill";
|
50
|
+
export * from "./DashboardSmallShortcut";
|
51
|
+
export * from "./SelectionPill";
|
52
|
+
export * from "./InvestmentFundItem";
|
53
|
+
export * from "./PropunerePlanInvestitii";
|
54
|
+
export * from "./GraficPlanInvestitii";
|