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.
Files changed (33) hide show
  1. package/dist/components/ConfigurationSaveInfo/ConfigurationSaveInfo.d.ts +0 -1
  2. package/dist/components/Icon/Icon.types.d.ts +1 -1
  3. package/dist/components/Icon/IconsList.d.ts +5 -0
  4. package/dist/components/PageMessage/PageMessage.d.ts +1 -1
  5. package/dist/components/PageTitle/PageTitle.d.ts +2 -0
  6. package/dist/components/ProductTeaser/ProductTeaser.d.ts +21 -0
  7. package/dist/components/ProductTeaser/index.d.ts +1 -0
  8. package/dist/components/ProductTeaserButton/ProductTeaserButton.d.ts +8 -0
  9. package/dist/components/ProductTeaserButton/index.d.ts +1 -0
  10. package/dist/components/ProductTeaserConfiguratieFlexicredit/ProductTeaserConfiguratieFlexicredit.d.ts +13 -0
  11. package/dist/components/ProductTeaserConfiguratieFlexicredit/index.d.ts +1 -0
  12. package/dist/components/ProductTeaserPropunere2Parameters/ProductTeaserPropunere2Parameters.d.ts +14 -0
  13. package/dist/components/ProductTeaserPropunere2Parameters/index.d.ts +1 -0
  14. package/dist/components/ProductTeaserStep/ProductTeaserStep.d.ts +10 -0
  15. package/dist/components/ProductTeaserStep/index.d.ts +1 -0
  16. package/dist/components/PropunereFlexicredit/PropunereFlexicredit.d.ts +15 -0
  17. package/dist/components/PropunereFlexicredit/index.d.ts +1 -0
  18. package/dist/components/Section/Section.d.ts +1 -0
  19. package/dist/components/{ProductShortcut/ProductShortcut.d.ts → ShortcutCard/ShortcutCard.d.ts} +3 -3
  20. package/dist/components/ShortcutCard/index.d.ts +1 -0
  21. package/dist/components/Slider/Slider.d.ts +1 -0
  22. package/dist/components/StepTab/StepTab.d.ts +10 -0
  23. package/dist/components/StepTab/index.d.ts +1 -0
  24. package/dist/components/index.d.ts +8 -2
  25. package/dist/index.cjs.js +1293 -503
  26. package/dist/index.cjs.js.map +1 -1
  27. package/dist/index.es.js +2951 -1945
  28. package/dist/index.es.js.map +1 -1
  29. package/dist/utils/colors.d.ts +9 -0
  30. package/package.json +5 -3
  31. package/dist/components/ProductShortcut/index.d.ts +0 -1
  32. package/dist/components/ProposalFlexicredit/ProposalFlexicredit.d.ts +0 -16
  33. package/dist/components/ProposalFlexicredit/index.d.ts +0 -1
@@ -1,6 +1,5 @@
1
1
  import React, { HTMLAttributes } from "react";
2
2
  export interface ConfigurationSaveInfoProps extends HTMLAttributes<HTMLDivElement> {
3
- configurationId?: string;
4
3
  date?: string;
5
4
  branchName?: string;
6
5
  buttonOnClick?(): void;
@@ -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;
@@ -37,5 +37,10 @@ declare const IconsList: {
37
37
  mail: string;
38
38
  mobile: string;
39
39
  "to-person": string;
40
+ rejected: string;
41
+ new_tab: string;
42
+ "money-return": string;
43
+ "wallet-2": string;
44
+ back: string;
40
45
  };
41
46
  export default IconsList;
@@ -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;
@@ -3,6 +3,8 @@ export interface PageTitleProps extends HTMLAttributes<HTMLDivElement> {
3
3
  title?: string;
4
4
  topText?: string;
5
5
  bottomText?: string;
6
+ topGap?: number;
7
+ bottomGap?: number;
6
8
  }
7
9
  declare const PageTitle: React.FC<PageTitleProps>;
8
10
  export default PageTitle;
@@ -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';
@@ -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";
@@ -3,6 +3,7 @@ export interface SectionProps extends HTMLAttributes<HTMLDivElement>, ContentTop
3
3
  children: React.ReactNode;
4
4
  title: string;
5
5
  subtitle?: string;
6
+ gap?: number;
6
7
  }
7
8
  type ContentTopRightProps = {
8
9
  children?: React.ReactNode;
@@ -1,5 +1,5 @@
1
1
  import React, { HTMLAttributes } from "react";
2
- export interface ProductShortcutProps extends HTMLAttributes<HTMLDivElement> {
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 ProductShortcut: React.FC<ProductShortcutProps>;
11
- export default ProductShortcut;
10
+ declare const ShortcutCard: React.FC<ShortcutCardProps>;
11
+ export default ShortcutCard;
@@ -0,0 +1 @@
1
+ export { default as ShortcutCard } from "./ShortcutCard";
@@ -9,6 +9,7 @@ export interface SliderProps extends InputHTMLAttributes<HTMLInputElement> {
9
9
  showSteppers?: boolean;
10
10
  stepSize?: number;
11
11
  disabled?: boolean;
12
+ height?: 32 | 40 | 48;
12
13
  }
13
14
  declare const Slider: React.FC<SliderProps>;
14
15
  export default Slider;
@@ -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 "./ProductShortcut";
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 "./ProposalFlexicredit";
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";