rbro-tat-uds 1.3.3 → 1.4.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.
- package/dist/components/Alert/Alert.d.ts +1 -1
- package/dist/components/Bar/Bar.d.ts +1 -1
- package/dist/components/Container/Container.d.ts +1 -1
- package/dist/components/Divider/Divider.d.ts +1 -1
- package/dist/components/Flex/Flex.d.ts +1 -1
- package/dist/components/FormField/FormField.d.ts +1 -1
- package/dist/components/Icon/Icon.types.d.ts +1 -1
- package/dist/components/Icon/IconsList.d.ts +0 -13
- package/dist/components/IconCard/IconCard.d.ts +1 -1
- package/dist/components/ImageCard/ImageCard.d.ts +1 -1
- package/dist/components/LabeledText/LabeledText.d.ts +1 -1
- package/dist/components/Layout/Layout.d.ts +1 -1
- package/dist/components/ProductTeaser/ProductTeaser.d.ts +1 -1
- package/dist/components/ProductTeaserButton/ProductTeaserButton.d.ts +1 -1
- package/dist/components/ProductTeaserConfiguratieFlexicredit/ProductTeaserConfiguratieFlexicredit.d.ts +13 -0
- package/dist/components/ProductTeaserConfiguratieFlexicredit/index.d.ts +1 -0
- package/dist/components/ProductTeaserStep/ProductTeaserStep.d.ts +1 -1
- package/dist/components/PropunereFlexicredit/PropunereFlexicredit.d.ts +4 -7
- package/dist/components/ShortcutCard/ShortcutCard.d.ts +1 -9
- package/dist/components/SidebarItem/SidebarItem.d.ts +1 -1
- package/dist/components/Slider/Slider.d.ts +3 -4
- package/dist/components/StepTab/StepTab.d.ts +1 -1
- package/dist/components/index.d.ts +1 -12
- package/dist/index.cjs.js +462 -1653
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.es.js +2294 -7429
- package/dist/index.es.js.map +1 -1
- package/dist/utils/colors.d.ts +2 -18
- package/dist/utils/index.d.ts +1 -1
- package/package.json +1 -1
- package/dist/components/DashboardSmallShortcut/DashboardSmallShortcut.d.ts +0 -7
- package/dist/components/DashboardSmallShortcut/index.d.ts +0 -1
- package/dist/components/Datepicker/Calendar.d.ts +0 -8
- package/dist/components/Datepicker/Datepicker.d.ts +0 -14
- package/dist/components/Datepicker/helpers_calendar.d.ts +0 -44
- package/dist/components/Datepicker/index.d.ts +0 -1
- package/dist/components/Dropdown/Dropdown.d.ts +0 -19
- package/dist/components/Dropdown/index.d.ts +0 -1
- package/dist/components/GraficPensii/GraficPensii.d.ts +0 -13
- package/dist/components/GraficPensii/index.d.ts +0 -1
- package/dist/components/GraficPlanInvestitii/GraficPlanInvestitii.d.ts +0 -12
- package/dist/components/GraficPlanInvestitii/index.d.ts +0 -1
- package/dist/components/InvestmentFundItem/InvestmentFundItem.d.ts +0 -12
- package/dist/components/InvestmentFundItem/index.d.ts +0 -1
- package/dist/components/Pill/Pill.d.ts +0 -9
- package/dist/components/Pill/index.d.ts +0 -1
- package/dist/components/ProductTeaserConfiguratie4Parameters/ProductTeaserConfiguratie4Parameters.d.ts +0 -17
- package/dist/components/ProductTeaserConfiguratie4Parameters/index.d.ts +0 -1
- package/dist/components/ProposalPensii/ProposalPensii.d.ts +0 -23
- package/dist/components/ProposalPensii/index.d.ts +0 -1
- package/dist/components/PropunerePlanInvestitii/PropunerePlanInvestitii.d.ts +0 -20
- package/dist/components/PropunerePlanInvestitii/index.d.ts +0 -1
- package/dist/components/Radio/Radio.d.ts +0 -11
- package/dist/components/Radio/index.d.ts +0 -1
- package/dist/components/SelectionPill/SelectionPill.d.ts +0 -12
- package/dist/components/SelectionPill/index.d.ts +0 -1
@@ -1,7 +1,7 @@
|
|
1
1
|
import React, { HTMLAttributes } from "react";
|
2
2
|
import { IconsListProp } from "../Icon/Icon.types";
|
3
3
|
interface AlertProps extends HTMLAttributes<HTMLDivElement> {
|
4
|
-
intent?: "default" | "info" | "featured" | "success" | "danger"
|
4
|
+
intent?: "default" | "info" | "featured" | "success" | "danger";
|
5
5
|
variant?: "default" | "light";
|
6
6
|
icon?: IconsListProp;
|
7
7
|
size?: "small" | "medium" | "large";
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import React, { HTMLAttributes } from "react";
|
2
|
-
import { colors } from "
|
2
|
+
import { colors } from "../../utils";
|
3
3
|
declare const _elements: readonly ["div", "main", "article", "p", "span"];
|
4
4
|
declare const _directions: readonly ["row", "row-reverse", "column", "column-reverse"];
|
5
5
|
declare const _wrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
@@ -7,7 +7,7 @@ export interface FormFieldProps extends HTMLAttributes<HTMLDivElement> {
|
|
7
7
|
showHelpButton?: boolean;
|
8
8
|
leftHelperText?: string;
|
9
9
|
rightHelperText?: string;
|
10
|
-
helperIntent?: "info" | "success" | "danger"
|
10
|
+
helperIntent?: "info" | "success" | "danger";
|
11
11
|
labelFor?: string;
|
12
12
|
helpButtonOnClick?(): void;
|
13
13
|
rightText?: string;
|
@@ -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"
|
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";
|
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;
|
@@ -6,7 +6,6 @@ declare const IconsList: {
|
|
6
6
|
"doc-sent": string;
|
7
7
|
exit: string;
|
8
8
|
"go-right": string;
|
9
|
-
"go-left": string;
|
10
9
|
hint: string;
|
11
10
|
home: string;
|
12
11
|
info_filled: string;
|
@@ -32,7 +31,6 @@ declare const IconsList: {
|
|
32
31
|
"man-outlined": string;
|
33
32
|
"retry-1": string;
|
34
33
|
"doc-error": string;
|
35
|
-
"doc-new": string;
|
36
34
|
"clear-ring": string;
|
37
35
|
"clear-ring-filled": string;
|
38
36
|
"clear-ring-outlined": string;
|
@@ -55,16 +53,5 @@ declare const IconsList: {
|
|
55
53
|
premium: string;
|
56
54
|
flag: string;
|
57
55
|
document: string;
|
58
|
-
up: string;
|
59
|
-
plus: string;
|
60
|
-
"select-open-down": string;
|
61
|
-
search: string;
|
62
|
-
"checkmark-part": string;
|
63
|
-
"tag-price-4": string;
|
64
|
-
cube: string;
|
65
|
-
"chat-ask-raif": string;
|
66
|
-
"code-qr": string;
|
67
|
-
"crane-1": string;
|
68
|
-
"in-progress-ring": string;
|
69
56
|
};
|
70
57
|
export default IconsList;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import React, { HTMLAttributes } from "react";
|
2
|
+
import { colors } from "../../utils";
|
2
3
|
import { IconsListProp } from "../Icon/Icon.types";
|
3
|
-
import { colors } from "../..";
|
4
4
|
interface IconCardProps extends HTMLAttributes<HTMLDivElement> {
|
5
5
|
icon?: IconsListProp;
|
6
6
|
topGap?: 0 | 2 | 4 | 8;
|
@@ -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";
|
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";
|
4
4
|
label?: string;
|
5
5
|
rightIcon?: "forward" | undefined;
|
6
6
|
}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import React, { HTMLAttributes } from "react";
|
2
|
+
import { IconsListProp } from "../Icon/Icon.types";
|
3
|
+
interface ProductTeaserConfiguratieFlexicreditProps extends HTMLAttributes<HTMLDivElement> {
|
4
|
+
sumaNecesara?: string;
|
5
|
+
perioada?: string;
|
6
|
+
rataOrientativa?: string;
|
7
|
+
asigurare?: string;
|
8
|
+
disabled?: boolean;
|
9
|
+
disabledText?: string;
|
10
|
+
disabledIcon?: IconsListProp;
|
11
|
+
}
|
12
|
+
declare const ProductTeaserConfiguratieFlexicredit: React.FC<ProductTeaserConfiguratieFlexicreditProps>;
|
13
|
+
export default ProductTeaserConfiguratieFlexicredit;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as ProductTeaserConfiguratieFlexicredit } from './ProductTeaserConfiguratieFlexicredit';
|
@@ -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";
|
6
6
|
label?: string;
|
7
7
|
stepText?: string;
|
8
8
|
}
|
@@ -1,15 +1,12 @@
|
|
1
1
|
import React, { HTMLAttributes } from "react";
|
2
2
|
interface PropunereFlexicreditProps extends HTMLAttributes<HTMLDivElement> {
|
3
3
|
title?: string;
|
4
|
-
|
5
|
-
|
6
|
-
rataNoua?: string;
|
7
|
-
sumaTotala?: string;
|
8
|
-
rataTotala?: string;
|
4
|
+
suma?: string;
|
5
|
+
rata?: string;
|
9
6
|
perioada?: string;
|
10
7
|
refinantare?: string;
|
11
|
-
|
12
|
-
|
8
|
+
disabled?: boolean;
|
9
|
+
disabledText?: string;
|
13
10
|
buttonOnClick?: () => void;
|
14
11
|
children?: React.ReactNode;
|
15
12
|
}
|
@@ -1,17 +1,9 @@
|
|
1
1
|
import React, { HTMLAttributes } from "react";
|
2
|
-
import { IconsListProp } from "../Icon/Icon.types";
|
3
2
|
export interface ShortcutCardProps extends HTMLAttributes<HTMLDivElement> {
|
4
|
-
filled?: boolean;
|
5
3
|
title?: string;
|
6
|
-
titleFontSize?: 16 | 20;
|
7
|
-
titleFontWeight?: 200 | 300 | 400 | 500 | 700 | 800;
|
8
4
|
text?: string;
|
9
|
-
|
10
|
-
textFontWeight?: 200 | 300 | 400 | 500 | 700 | 800;
|
11
|
-
icon?: IconsListProp;
|
12
|
-
buttonVariant?: "primary" | "secondaryOutlined" | "secondaryOutlinedInfo";
|
5
|
+
buttonVariant?: "primary" | "secondary" | "secondaryOutlined" | "tertiary";
|
13
6
|
buttonLabel?: string;
|
14
|
-
buttonGrow?: boolean;
|
15
7
|
disabled?: boolean;
|
16
8
|
buttonOnClick?(): void;
|
17
9
|
}
|
@@ -5,7 +5,7 @@ export interface SidebarItemProps extends React.ButtonHTMLAttributes<HTMLButtonE
|
|
5
5
|
icon: IconsListProp;
|
6
6
|
disabled?: boolean;
|
7
7
|
selected?: boolean;
|
8
|
-
onClick
|
8
|
+
onClick?(): void;
|
9
9
|
}
|
10
10
|
declare const SidebarItem: React.FC<SidebarItemProps>;
|
11
11
|
export default SidebarItem;
|
@@ -1,15 +1,14 @@
|
|
1
|
-
import React, {
|
2
|
-
export interface SliderProps extends
|
1
|
+
import React, { InputHTMLAttributes } from "react";
|
2
|
+
export interface SliderProps extends InputHTMLAttributes<HTMLInputElement> {
|
3
3
|
id?: string;
|
4
4
|
name?: string;
|
5
5
|
value?: number;
|
6
|
-
setValue
|
6
|
+
setValue: (newValue: number) => void;
|
7
7
|
min?: number;
|
8
8
|
max?: number;
|
9
9
|
showSteppers?: boolean;
|
10
10
|
stepSize?: number;
|
11
11
|
disabled?: boolean;
|
12
|
-
wrapperWidth?: string;
|
13
12
|
height?: 32 | 40 | 48;
|
14
13
|
}
|
15
14
|
declare const Slider: React.FC<SliderProps>;
|
@@ -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"
|
5
|
+
variant?: "default" | "blue" | "purple" | "magenta" | "yellow";
|
6
6
|
label?: string;
|
7
7
|
stepText?: string;
|
8
8
|
}
|
@@ -35,20 +35,9 @@ export * from "./StepTab";
|
|
35
35
|
export * from "./ProductTeaserStep";
|
36
36
|
export * from "./ProductTeaserButton";
|
37
37
|
export * from "./ProductTeaser";
|
38
|
-
export * from "./
|
38
|
+
export * from "./ProductTeaserConfiguratieFlexicredit";
|
39
39
|
export * from "./ProductTeaserPropunere2Parameters";
|
40
40
|
export * from "./Modal";
|
41
41
|
export * from "./ImageCard";
|
42
42
|
export * from "./IconCard";
|
43
43
|
export * from "./Alert";
|
44
|
-
export * from "./Datepicker";
|
45
|
-
export * from "./Dropdown";
|
46
|
-
export * from "./ProposalPensii";
|
47
|
-
export * from "./GraficPensii";
|
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";
|