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.
Files changed (57) hide show
  1. package/dist/components/Alert/Alert.d.ts +1 -1
  2. package/dist/components/Bar/Bar.d.ts +1 -1
  3. package/dist/components/Container/Container.d.ts +1 -1
  4. package/dist/components/Divider/Divider.d.ts +1 -1
  5. package/dist/components/Flex/Flex.d.ts +1 -1
  6. package/dist/components/FormField/FormField.d.ts +1 -1
  7. package/dist/components/Icon/Icon.types.d.ts +1 -1
  8. package/dist/components/Icon/IconsList.d.ts +0 -13
  9. package/dist/components/IconCard/IconCard.d.ts +1 -1
  10. package/dist/components/ImageCard/ImageCard.d.ts +1 -1
  11. package/dist/components/LabeledText/LabeledText.d.ts +1 -1
  12. package/dist/components/Layout/Layout.d.ts +1 -1
  13. package/dist/components/ProductTeaser/ProductTeaser.d.ts +1 -1
  14. package/dist/components/ProductTeaserButton/ProductTeaserButton.d.ts +1 -1
  15. package/dist/components/ProductTeaserConfiguratieFlexicredit/ProductTeaserConfiguratieFlexicredit.d.ts +13 -0
  16. package/dist/components/ProductTeaserConfiguratieFlexicredit/index.d.ts +1 -0
  17. package/dist/components/ProductTeaserStep/ProductTeaserStep.d.ts +1 -1
  18. package/dist/components/PropunereFlexicredit/PropunereFlexicredit.d.ts +4 -7
  19. package/dist/components/ShortcutCard/ShortcutCard.d.ts +1 -9
  20. package/dist/components/SidebarItem/SidebarItem.d.ts +1 -1
  21. package/dist/components/Slider/Slider.d.ts +3 -4
  22. package/dist/components/StepTab/StepTab.d.ts +1 -1
  23. package/dist/components/index.d.ts +1 -12
  24. package/dist/index.cjs.js +462 -1653
  25. package/dist/index.cjs.js.map +1 -1
  26. package/dist/index.d.ts +1 -1
  27. package/dist/index.es.js +2294 -7429
  28. package/dist/index.es.js.map +1 -1
  29. package/dist/utils/colors.d.ts +2 -18
  30. package/dist/utils/index.d.ts +1 -1
  31. package/package.json +1 -1
  32. package/dist/components/DashboardSmallShortcut/DashboardSmallShortcut.d.ts +0 -7
  33. package/dist/components/DashboardSmallShortcut/index.d.ts +0 -1
  34. package/dist/components/Datepicker/Calendar.d.ts +0 -8
  35. package/dist/components/Datepicker/Datepicker.d.ts +0 -14
  36. package/dist/components/Datepicker/helpers_calendar.d.ts +0 -44
  37. package/dist/components/Datepicker/index.d.ts +0 -1
  38. package/dist/components/Dropdown/Dropdown.d.ts +0 -19
  39. package/dist/components/Dropdown/index.d.ts +0 -1
  40. package/dist/components/GraficPensii/GraficPensii.d.ts +0 -13
  41. package/dist/components/GraficPensii/index.d.ts +0 -1
  42. package/dist/components/GraficPlanInvestitii/GraficPlanInvestitii.d.ts +0 -12
  43. package/dist/components/GraficPlanInvestitii/index.d.ts +0 -1
  44. package/dist/components/InvestmentFundItem/InvestmentFundItem.d.ts +0 -12
  45. package/dist/components/InvestmentFundItem/index.d.ts +0 -1
  46. package/dist/components/Pill/Pill.d.ts +0 -9
  47. package/dist/components/Pill/index.d.ts +0 -1
  48. package/dist/components/ProductTeaserConfiguratie4Parameters/ProductTeaserConfiguratie4Parameters.d.ts +0 -17
  49. package/dist/components/ProductTeaserConfiguratie4Parameters/index.d.ts +0 -1
  50. package/dist/components/ProposalPensii/ProposalPensii.d.ts +0 -23
  51. package/dist/components/ProposalPensii/index.d.ts +0 -1
  52. package/dist/components/PropunerePlanInvestitii/PropunerePlanInvestitii.d.ts +0 -20
  53. package/dist/components/PropunerePlanInvestitii/index.d.ts +0 -1
  54. package/dist/components/Radio/Radio.d.ts +0 -11
  55. package/dist/components/Radio/index.d.ts +0 -1
  56. package/dist/components/SelectionPill/SelectionPill.d.ts +0 -12
  57. 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" | "warning";
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
  export interface BarProps extends HTMLAttributes<HTMLDivElement> {
4
4
  value?: number;
5
5
  leftColor?: keyof typeof colors;
@@ -1,5 +1,5 @@
1
1
  import React, { HTMLAttributes } from "react";
2
- import { colors } from "../..";
2
+ import { colors } from "../../utils";
3
3
  export interface ContainerProps extends HTMLAttributes<HTMLDivElement> {
4
4
  gap?: number;
5
5
  padding?: string;
@@ -1,5 +1,5 @@
1
1
  import React, { HTMLAttributes } from "react";
2
- import { colors } from "../..";
2
+ import { colors } from "../../utils";
3
3
  export interface DividerProps extends HTMLAttributes<HTMLDivElement> {
4
4
  color?: keyof typeof colors;
5
5
  margin?: string;
@@ -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" | "warning";
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" | "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";
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;
@@ -1,5 +1,5 @@
1
1
  import React, { HTMLAttributes } from "react";
2
- import { colors } from "../..";
2
+ import { colors } from "../../utils";
3
3
  export interface ImageCardProps extends HTMLAttributes<HTMLDivElement> {
4
4
  gap?: 0 | 2 | 4 | 8;
5
5
  title?: string;
@@ -1,5 +1,5 @@
1
1
  import React, { HTMLAttributes } from "react";
2
- import { colors } from "../..";
2
+ import { colors } from "../../utils";
3
3
  export interface LabeledTextProps extends HTMLAttributes<HTMLDivElement> {
4
4
  text: string;
5
5
  label?: string;
@@ -1,5 +1,5 @@
1
1
  import React, { HTMLAttributes } from "react";
2
- import { colors } from "../..";
2
+ import { colors } from "../../utils";
3
3
  export interface LayoutProps extends HTMLAttributes<HTMLDivElement> {
4
4
  children?: React.ReactNode;
5
5
  bgColor?: keyof typeof colors;
@@ -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" | "black";
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" | "black";
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" | "black";
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
- sumaRataTotala?: boolean;
5
- sumaNoua?: string;
6
- rataNoua?: string;
7
- sumaTotala?: string;
8
- rataTotala?: string;
4
+ suma?: string;
5
+ rata?: string;
9
6
  perioada?: string;
10
7
  refinantare?: string;
11
- empty?: boolean;
12
- emptyText?: string;
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
- textFontSize?: 14 | 16;
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?: () => void;
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, { HTMLAttributes } from "react";
2
- export interface SliderProps extends HTMLAttributes<HTMLDivElement> {
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?: (newValue: number) => void;
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" | "black" | "danger";
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 "./ProductTeaserConfiguratie4Parameters";
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";