rbro-tat-uds 1.5.17 → 1.5.19

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.
@@ -14,6 +14,7 @@ export interface DropdownProps extends HTMLAttributes<HTMLDivElement> {
14
14
  label: string;
15
15
  value: string;
16
16
  }[];
17
+ defaultOpen?: boolean;
17
18
  }
18
19
  declare const Dropdown: React.FC<DropdownProps>;
19
20
  export default Dropdown;
@@ -12,7 +12,6 @@ export interface GraficFondInvestitiiProps extends HTMLAttributes<SVGSVGElement>
12
12
  min?: number;
13
13
  textLeft?: string;
14
14
  textValueLeft?: number;
15
- textTop?: string;
16
15
  col1Value?: number;
17
16
  col2Value?: number;
18
17
  col3Value?: number;
@@ -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";
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";
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;
@@ -76,5 +76,7 @@ declare const IconsList: {
76
76
  "clear-rec": string;
77
77
  "shield-check": string;
78
78
  like: string;
79
+ "mobile-connecting": string;
80
+ "bundle-of-money": string;
79
81
  };
80
82
  export default IconsList;
@@ -1,4 +1,4 @@
1
- import React, { HTMLAttributes } from "react";
1
+ import React, { HTMLAttributes, ReactNode } from "react";
2
2
  import { IconsListProp } from "../Icon/Icon.types";
3
3
  import { colors } from "../..";
4
4
  interface IconCardProps extends HTMLAttributes<HTMLDivElement> {
@@ -16,6 +16,7 @@ interface IconCardProps extends HTMLAttributes<HTMLDivElement> {
16
16
  textFontSize?: 14 | 16 | 18 | 20 | 24;
17
17
  titleFontWeight?: 200 | 300 | 400 | 500 | 700 | 800;
18
18
  textFontWeight?: 200 | 300 | 400 | 500 | 700 | 800;
19
+ children?: ReactNode;
19
20
  }
20
21
  declare const IconCard: React.FC<IconCardProps>;
21
22
  export default IconCard;