rbro-tat-uds 1.5.54 → 1.5.56

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.
@@ -1,11 +1,19 @@
1
1
  import { default as React } from 'react';
2
2
  export interface DashboardCardProps extends React.HTMLAttributes<HTMLDivElement> {
3
3
  imgSrc?: string;
4
- label?: string;
5
- showTag?: boolean;
6
- tagVariant?: "inactiv" | "utilizat";
7
- actionType?: "gift" | "add";
8
- showAction?: boolean;
4
+ title?: string;
5
+ text?: string;
6
+ salesText?: string;
7
+ tagType: "default" | "featured" | "warning" | "success" | "danger" | "info" | undefined;
8
+ tagVariant?: "light" | "default" | undefined;
9
+ tagText: string;
10
+ callToAction?: "null" | "addConfig" | "oferte";
11
+ callToActionEvent?: () => void;
12
+ variant?: "default" | "inspect";
13
+ featured?: boolean;
14
+ disabled?: boolean;
15
+ loading?: boolean;
16
+ statusConfiguratii?: number;
9
17
  }
10
18
  declare const DashboardCard: React.FC<DashboardCardProps>;
11
19
  export default DashboardCard;
@@ -0,0 +1,10 @@
1
+ import { default as React } from 'react';
2
+ export interface DashboardCategoryProps extends React.HTMLAttributes<HTMLDivElement> {
3
+ title?: string;
4
+ numberOfCards?: number;
5
+ buttonEventClick?: () => void;
6
+ isOpen?: boolean;
7
+ gap?: number;
8
+ }
9
+ declare const DashboardCategory: React.FC<DashboardCategoryProps>;
10
+ export default DashboardCategory;
@@ -0,0 +1 @@
1
+ export { default as DashboardCategory } from './DashboardCategory';
@@ -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" | "grocery-2" | "other-goods" | "credit-consumer" | "acc-special" | "world" | "atm-cash-1" | "grocery-1" | "hand-cash-1" | "chat-raif" | "insurance-1" | "doc-sign-and-send" | "currency-transfer" | "in-progress" | "calculator" | "card-get" | "phone" | "mail-in" | "to-people";
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" | "world" | "atm-cash-1" | "grocery-1" | "hand-cash-1" | "chat-raif" | "insurance-1" | "doc-sign-and-send" | "currency-transfer" | "in-progress" | "calculator" | "card-get" | "phone" | "mail-in" | "to-people" | "cancel" | "eye-closed";
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;
@@ -116,5 +116,7 @@ declare const IconsList: {
116
116
  phone: string;
117
117
  "mail-in": string;
118
118
  "to-people": string;
119
+ cancel: string;
120
+ "eye-closed": string;
119
121
  };
120
122
  export default IconsList;
@@ -9,6 +9,7 @@ interface ProposalPensiiProps extends HTMLAttributes<HTMLDivElement> {
9
9
  refused?: boolean;
10
10
  disabled?: boolean;
11
11
  hideButton?: boolean;
12
+ hideHeaderButton?: boolean;
12
13
  empty?: boolean;
13
14
  emptyText?: string;
14
15
  iconButtonOnClick?: () => void;
@@ -3,6 +3,7 @@ type SpinnerProps = Omit<React.SVGProps<SVGSVGElement>, "ref" | "direction"> & {
3
3
  size?: 16 | 20 | 24;
4
4
  text?: string;
5
5
  direction?: "vertical" | "horizontal";
6
+ speed?: number;
6
7
  };
7
8
  declare const Spinner: React.FC<SpinnerProps>;
8
9
  export default Spinner;
@@ -65,3 +65,4 @@ export * from './RatesCalculator';
65
65
  export * from './CreditCard';
66
66
  export * from './ButtonLink';
67
67
  export * from './DashboardCard';
68
+ export * from './DashboardCategory';