rbro-tat-uds 1.0.37 → 1.1.1
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/ConfigurationSaveInfo/ConfigurationSaveInfo.d.ts +0 -1
- package/dist/components/Icon/Icon.types.d.ts +1 -1
- package/dist/components/Icon/IconsList.d.ts +5 -0
- package/dist/components/PageMessage/PageMessage.d.ts +1 -1
- package/dist/components/PageTitle/PageTitle.d.ts +2 -0
- package/dist/components/ProductTeaser/ProductTeaser.d.ts +21 -0
- package/dist/components/ProductTeaser/index.d.ts +1 -0
- package/dist/components/ProductTeaserButton/ProductTeaserButton.d.ts +8 -0
- package/dist/components/ProductTeaserButton/index.d.ts +1 -0
- package/dist/components/ProductTeaserConfiguratieFlexicredit/ProductTeaserConfiguratieFlexicredit.d.ts +13 -0
- package/dist/components/ProductTeaserConfiguratieFlexicredit/index.d.ts +1 -0
- package/dist/components/ProductTeaserPropunere2Parameters/ProductTeaserPropunere2Parameters.d.ts +14 -0
- package/dist/components/ProductTeaserPropunere2Parameters/index.d.ts +1 -0
- package/dist/components/ProductTeaserStep/ProductTeaserStep.d.ts +10 -0
- package/dist/components/ProductTeaserStep/index.d.ts +1 -0
- package/dist/components/PropunereFlexicredit/PropunereFlexicredit.d.ts +15 -0
- package/dist/components/PropunereFlexicredit/index.d.ts +1 -0
- package/dist/components/Section/Section.d.ts +1 -0
- package/dist/components/{ProductShortcut/ProductShortcut.d.ts → ShortcutCard/ShortcutCard.d.ts} +3 -3
- package/dist/components/ShortcutCard/index.d.ts +1 -0
- package/dist/components/Slider/Slider.d.ts +1 -0
- package/dist/components/StepTab/StepTab.d.ts +10 -0
- package/dist/components/StepTab/index.d.ts +1 -0
- package/dist/components/index.d.ts +8 -2
- package/dist/index.cjs.js +1293 -503
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +2951 -1945
- package/dist/index.es.js.map +1 -1
- package/dist/utils/colors.d.ts +9 -0
- package/package.json +5 -3
- package/dist/components/ProductShortcut/index.d.ts +0 -1
- package/dist/components/ProposalFlexicredit/ProposalFlexicredit.d.ts +0 -16
- package/dist/components/ProposalFlexicredit/index.d.ts +0 -1
@@ -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";
|
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";
|
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;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import React, { HTMLAttributes } from "react";
|
2
2
|
import IconsList from "../Icon/IconsList";
|
3
3
|
export interface PageMessageProps extends HTMLAttributes<HTMLDivElement> {
|
4
|
-
intent?: "default" | "info" | "success" | "warning" | "danger";
|
4
|
+
intent?: "default" | "info" | "success" | "warning" | "danger" | "gray";
|
5
5
|
icon?: keyof typeof IconsList;
|
6
6
|
pillText?: string;
|
7
7
|
children: React.ReactNode;
|
@@ -0,0 +1,21 @@
|
|
1
|
+
import React, { HTMLAttributes } from "react";
|
2
|
+
interface ProductTeaserProps extends HTMLAttributes<HTMLDivElement> {
|
3
|
+
title?: string;
|
4
|
+
showButton?: boolean;
|
5
|
+
buttonLabel?: string;
|
6
|
+
buttonOnClick?: () => void;
|
7
|
+
buttonIcon?: "forward" | undefined | null;
|
8
|
+
buttonVariant?: "blue" | "purple" | "magenta" | "yellow";
|
9
|
+
children: React.ReactNode;
|
10
|
+
}
|
11
|
+
type StepsSlotProps = {
|
12
|
+
children: React.ReactNode;
|
13
|
+
};
|
14
|
+
type ContentSlotProps = {
|
15
|
+
children: React.ReactNode;
|
16
|
+
};
|
17
|
+
declare const ProductTeaser: React.FC<ProductTeaserProps> & {
|
18
|
+
StepsSlot: React.FC<StepsSlotProps>;
|
19
|
+
ContentSlot: React.FC<ContentSlotProps>;
|
20
|
+
};
|
21
|
+
export default ProductTeaser;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as ProductTeaser } from './ProductTeaser';
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import React from "react";
|
2
|
+
interface ProductTeaserButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
3
|
+
variant?: "blue" | "purple" | "magenta" | "yellow";
|
4
|
+
label?: string;
|
5
|
+
rightIcon?: "forward" | undefined;
|
6
|
+
}
|
7
|
+
declare const ProductTeaserButton: React.FC<ProductTeaserButtonProps>;
|
8
|
+
export default ProductTeaserButton;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as ProductTeaserButton } from './ProductTeaserButton';
|
@@ -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';
|
package/dist/components/ProductTeaserPropunere2Parameters/ProductTeaserPropunere2Parameters.d.ts
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
import React, { HTMLAttributes } from "react";
|
2
|
+
import { IconsListProp } from "../Icon/Icon.types";
|
3
|
+
interface ProductTeaserPropunere2ParametersProps extends HTMLAttributes<HTMLDivElement> {
|
4
|
+
title?: string;
|
5
|
+
labelLeft?: string;
|
6
|
+
textLeft?: string;
|
7
|
+
labelRight?: string;
|
8
|
+
textRight?: string;
|
9
|
+
disabled?: boolean;
|
10
|
+
disabledText?: string;
|
11
|
+
disabledIcon?: IconsListProp;
|
12
|
+
}
|
13
|
+
declare const ProductTeaserPropunere2Parameters: React.FC<ProductTeaserPropunere2ParametersProps>;
|
14
|
+
export default ProductTeaserPropunere2Parameters;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as ProductTeaserPropunere2Parameters } from './ProductTeaserPropunere2Parameters';
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import React from "react";
|
2
|
+
interface ProductTeaserStepProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
3
|
+
selected?: boolean;
|
4
|
+
inactive?: boolean;
|
5
|
+
variant?: "blue" | "purple" | "magenta" | "yellow";
|
6
|
+
label?: string;
|
7
|
+
stepText?: string;
|
8
|
+
}
|
9
|
+
declare const ProductTeaserStep: React.FC<ProductTeaserStepProps>;
|
10
|
+
export default ProductTeaserStep;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as ProductTeaserStep } from './ProductTeaserStep';
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import React, { HTMLAttributes } from "react";
|
2
|
+
interface PropunereFlexicreditProps extends HTMLAttributes<HTMLDivElement> {
|
3
|
+
title?: string;
|
4
|
+
suma?: string;
|
5
|
+
rata?: string;
|
6
|
+
perioada?: string;
|
7
|
+
refinantare?: boolean;
|
8
|
+
disabled?: boolean;
|
9
|
+
disabledText?: string;
|
10
|
+
benefit1?: string;
|
11
|
+
benefit2?: string[];
|
12
|
+
buttonOnClick?: () => void;
|
13
|
+
}
|
14
|
+
declare const PropunereFlexicredit: React.FC<PropunereFlexicreditProps>;
|
15
|
+
export default PropunereFlexicredit;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as PropunereFlexicredit } from "./PropunereFlexicredit";
|
package/dist/components/{ProductShortcut/ProductShortcut.d.ts → ShortcutCard/ShortcutCard.d.ts}
RENAMED
@@ -1,5 +1,5 @@
|
|
1
1
|
import React, { HTMLAttributes } from "react";
|
2
|
-
export interface
|
2
|
+
export interface ShortcutCardProps extends HTMLAttributes<HTMLDivElement> {
|
3
3
|
title?: string;
|
4
4
|
text?: string;
|
5
5
|
buttonVariant?: "primary" | "secondary" | "secondaryOutlined" | "tertiary";
|
@@ -7,5 +7,5 @@ export interface ProductShortcutProps extends HTMLAttributes<HTMLDivElement> {
|
|
7
7
|
disabled?: boolean;
|
8
8
|
buttonOnClick?(): void;
|
9
9
|
}
|
10
|
-
declare const
|
11
|
-
export default
|
10
|
+
declare const ShortcutCard: React.FC<ShortcutCardProps>;
|
11
|
+
export default ShortcutCard;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as ShortcutCard } from "./ShortcutCard";
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import React from "react";
|
2
|
+
interface StepTabProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
3
|
+
intent?: "tabs" | "subtabs";
|
4
|
+
selected?: boolean;
|
5
|
+
variant?: "default" | "blue" | "purple" | "magenta" | "yellow";
|
6
|
+
label?: string;
|
7
|
+
stepText?: string;
|
8
|
+
}
|
9
|
+
declare const StepTab: React.FC<StepTabProps>;
|
10
|
+
export default StepTab;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as StepTab } from "./StepTab";
|
@@ -13,7 +13,7 @@ export * from "./Tab";
|
|
13
13
|
export * from "./SegmentedTabs";
|
14
14
|
export * from "./LabeledText";
|
15
15
|
export * from "./ConfigurationSaveInfo";
|
16
|
-
export * from "./
|
16
|
+
export * from "./ShortcutCard";
|
17
17
|
export * from "./IconButton";
|
18
18
|
export * from "./Checkbox";
|
19
19
|
export * from "./Section";
|
@@ -25,9 +25,15 @@ export * from "./TextInput";
|
|
25
25
|
export * from "./FormField";
|
26
26
|
export * from "./Slider";
|
27
27
|
export * from "./ConfigurationFlexicredit";
|
28
|
-
export * from "./
|
28
|
+
export * from "./PropunereFlexicredit";
|
29
29
|
export * from "./PageTitle";
|
30
30
|
export * from "./ObjectiveCardSmall";
|
31
31
|
export * from "./Divider";
|
32
32
|
export * from "./Bar";
|
33
33
|
export * from "./TimedButton";
|
34
|
+
export * from "./StepTab";
|
35
|
+
export * from "./ProductTeaserStep";
|
36
|
+
export * from "./ProductTeaserButton";
|
37
|
+
export * from "./ProductTeaser";
|
38
|
+
export * from "./ProductTeaserConfiguratieFlexicredit";
|
39
|
+
export * from "./ProductTeaserPropunere2Parameters";
|