rbro-tat-uds 1.5.22 → 1.5.24

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.
@@ -7,6 +7,7 @@ export interface FormFieldProps extends HTMLAttributes<HTMLDivElement> {
7
7
  showHelpButton?: boolean;
8
8
  leftHelperText?: string;
9
9
  rightHelperText?: string;
10
+ helperTextSize?: 12 | 14;
10
11
  helperIntent?: "info" | "success" | "danger" | "warning";
11
12
  labelFor?: string;
12
13
  helpButtonOnClick?(): 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" | "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" | "people-2" | "chart-bar-2" | "certificate" | "chart-line" | "rating" | "select-hide" | "refresh-repeat" | "clear-rec" | "shield-check" | "like" | "mobile-connecting" | "bundle-of-money" | "eye-opened";
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" | "people-2" | "chart-bar-2" | "certificate" | "chart-line" | "rating" | "select-hide" | "refresh-repeat" | "clear-rec" | "shield-check" | "like" | "mobile-connecting" | "bundle-of-money" | "eye-opened" | "mountains" | "autoservice-3";
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;
@@ -79,5 +79,7 @@ declare const IconsList: {
79
79
  "mobile-connecting": string;
80
80
  "bundle-of-money": string;
81
81
  "eye-opened": string;
82
+ mountains: string;
83
+ "autoservice-3": string;
82
84
  };
83
85
  export default IconsList;
@@ -0,0 +1,23 @@
1
+ import React, { HTMLAttributes } from "react";
2
+ export interface PropunereAsigurariCalatorieProps extends HTMLAttributes<HTMLDivElement> {
3
+ title?: string;
4
+ numar_asigurati?: string;
5
+ prima_totala_pe_an?: string;
6
+ sporturi_extreme?: string;
7
+ accidente?: string;
8
+ selected?: boolean;
9
+ refused?: boolean;
10
+ disabled?: boolean;
11
+ hideButton?: boolean;
12
+ empty?: boolean;
13
+ emptyText?: string;
14
+ iconButtonOnClick?: () => void;
15
+ buttonOnClick?: () => void;
16
+ }
17
+ type ContentSlotProps = {
18
+ children: React.ReactNode;
19
+ };
20
+ declare const PropunereAsigurariCalatorie: React.FC<PropunereAsigurariCalatorieProps> & {
21
+ ContentSlot: React.FC<ContentSlotProps>;
22
+ };
23
+ export default PropunereAsigurariCalatorie;
@@ -0,0 +1 @@
1
+ export { default as PropunereAsigurariCalatorie } from './PropunereAsigurariCalatorie';
@@ -1,5 +1,5 @@
1
1
  import React from "react";
2
- interface SelectionPillProps extends React.InputHTMLAttributes<HTMLInputElement> {
2
+ interface SelectionPillProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "size"> {
3
3
  name?: string;
4
4
  id?: string;
5
5
  checked?: boolean;
@@ -7,6 +7,9 @@ interface SelectionPillProps extends React.InputHTMLAttributes<HTMLInputElement>
7
7
  disabled?: boolean;
8
8
  onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
9
9
  value?: string | number;
10
+ variant?: "primary" | "secondary";
11
+ size?: "small" | "medium";
12
+ shape?: "default" | "rounded";
10
13
  }
11
14
  declare const SelectionPill: React.FC<SelectionPillProps>;
12
15
  export default SelectionPill;
@@ -9,7 +9,8 @@ export interface ShortcutCardProps extends HTMLAttributes<HTMLDivElement> {
9
9
  textFontSize?: 14 | 16;
10
10
  textFontWeight?: 200 | 300 | 400 | 500 | 700 | 800;
11
11
  icon?: IconsListProp;
12
- buttonVariant?: "primary" | "secondaryOutlined" | "secondaryOutlinedInfo";
12
+ buttonVariant?: "primary" | "secondaryOutlined" | "secondary" | "tertiary";
13
+ buttonIntent?: "accent" | "info" | "danger";
13
14
  buttonLabel?: string;
14
15
  buttonGrow?: boolean;
15
16
  disabled?: boolean;
@@ -59,3 +59,4 @@ export * from "./ContentDropdown";
59
59
  export * from "./GraficFondInvestitiiInflatie";
60
60
  export * from "./Numpad";
61
61
  export * from "./PropunereFondInvestitii";
62
+ export * from "./PropunereAsigurariCalatorie";