rbro-tat-uds 1.5.46 → 1.5.48

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.
@@ -0,0 +1,9 @@
1
+ import { default as React, CSSProperties } from 'react';
2
+ export interface ButtonLinkProps extends React.AnchorHTMLAttributes<HTMLAnchorElement> {
3
+ size?: "default" | "small" | "medium" | "large";
4
+ asChild?: boolean;
5
+ intent?: "accent" | "info" | "danger";
6
+ decoration?: CSSProperties["textDecoration"];
7
+ }
8
+ declare const ButtonLink: React.FC<ButtonLinkProps>;
9
+ export default ButtonLink;
@@ -0,0 +1 @@
1
+ export { default as ButtonLink } from './ButtonLink';
@@ -0,0 +1,9 @@
1
+ import { default as React } from 'react';
2
+ export interface CardCreditProps extends React.HTMLAttributes<HTMLDivElement> {
3
+ selected?: boolean;
4
+ disabled?: boolean;
5
+ img?: string;
6
+ label?: string;
7
+ }
8
+ declare const CardCredit: React.FC<CardCreditProps>;
9
+ export default CardCredit;
@@ -0,0 +1 @@
1
+ export { default as CardCredit } from './CardCredit';
@@ -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" | "mountains" | "autoservice-3" | "payment-auto" | "warning-tr" | "safe" | "lightining" | "credit-cash" | "atm-cards-1" | "card-credit" | "exchange-1" | "cards" | "airplane" | "calculator-currency-2" | "shield" | "menu-up" | "menu-down" | "office-supplies" | "city" | "edit";
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" | "payment-auto" | "warning-tr" | "safe" | "lightining" | "credit-cash" | "atm-cards-1" | "card-credit" | "exchange-1" | "cards" | "airplane" | "calculator-currency-2" | "shield" | "menu-up" | "menu-down" | "office-supplies" | "city" | "edit" | "grocery-2" | "other-goods" | "credit-consumer" | "acc-special";
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;
@@ -98,5 +98,9 @@ declare const IconsList: {
98
98
  "office-supplies": string;
99
99
  city: string;
100
100
  edit: string;
101
+ "grocery-2": string;
102
+ "other-goods": string;
103
+ "credit-consumer": string;
104
+ "acc-special": string;
101
105
  };
102
106
  export default IconsList;
@@ -62,3 +62,5 @@ export * from './PropunereAsigurariCalatorie';
62
62
  export * from './InPageTab';
63
63
  export * from './CityPicker';
64
64
  export * from './RatesCalculator';
65
+ export * from './CardCredit';
66
+ export * from './ButtonLink';