rbro-tat-uds 2.2.7 → 2.2.9

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 (31) hide show
  1. package/build/cjs/assets/icons/brand-logo.svg.cjs +35 -0
  2. package/build/cjs/components/Button/Button.cjs +1 -0
  3. package/build/cjs/components/DashboardCard/DashboardCard.cjs +24 -1
  4. package/build/cjs/components/Dropdown/Dropdown.cjs +3 -0
  5. package/build/cjs/components/Icon/IconsList.cjs +3 -1
  6. package/build/cjs/components/IconButton/IconButton.cjs +1 -0
  7. package/build/cjs/components/PageMessage/PageMessage.cjs +1 -0
  8. package/build/cjs/components/SelectionAppCard/SelectionAppCard.cjs +53 -0
  9. package/build/cjs/components/SelectionAppCard/index.cjs +12 -0
  10. package/build/cjs/components/TextInput/TextInput.cjs +1 -0
  11. package/build/cjs/components/index.cjs +2 -0
  12. package/build/cjs/index.cjs +640 -562
  13. package/build/esm/assets/icons/brand-logo.svg.js +14 -0
  14. package/build/esm/components/Button/Button.js +1 -0
  15. package/build/esm/components/DashboardCard/DashboardCard.js +24 -1
  16. package/build/esm/components/Dropdown/Dropdown.js +3 -0
  17. package/build/esm/components/Icon/IconsList.js +3 -1
  18. package/build/esm/components/IconButton/IconButton.js +1 -0
  19. package/build/esm/components/PageMessage/PageMessage.js +1 -0
  20. package/build/esm/components/SelectionAppCard/SelectionAppCard.js +49 -0
  21. package/build/esm/components/SelectionAppCard/index.js +8 -0
  22. package/build/esm/components/TextInput/TextInput.js +1 -0
  23. package/build/esm/components/index.js +1 -0
  24. package/build/esm/index.js +640 -563
  25. package/build/types/components/DashboardCard/DashboardCard.d.ts +1 -0
  26. package/build/types/components/Icon/Icon.types.d.ts +1 -1
  27. package/build/types/components/Icon/IconsList.d.ts +1 -0
  28. package/build/types/components/SelectionAppCard/SelectionAppCard.d.ts +13 -0
  29. package/build/types/components/SelectionAppCard/index.d.ts +6 -0
  30. package/build/types/index.d.ts +1 -0
  31. package/package.json +1 -1
@@ -17,6 +17,7 @@ interface DashboardCardProps extends React.HTMLAttributes<HTMLDivElement> {
17
17
  loading?: boolean;
18
18
  statusConfiguratii?: number;
19
19
  retention?: boolean;
20
+ promoText?: string;
20
21
  }
21
22
  declare const DashboardCard: React.FC<DashboardCardProps>;
22
23
 
@@ -1,4 +1,4 @@
1
- type IconsListProp = "exit" | "home" | "go-right" | "trash" | "asterix" | "hint_filled" | "info_filled" | "checkmark_filled" | "warning_filled" | "checkmark" | "checkmark_outlined" | "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" | "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-outlined" | "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" | "ideas-raiting" | "star-person-1" | "history" | "history-partial" | "mobile-send-money" | "cash-transactions" | "heart-outlined" | "task-done" | "purchases" | "card-raif" | "credit-pay-part" | "credit-pay-full" | "notification-outlined" | "mail-out" | "chat-1" | "people-1" | "in-queue" | "warning-exclamation" | "warning-outlined" | "info-outlined" | "hint-outlined" | "face-happy" | "person-level" | "star-reward";
1
+ type IconsListProp = "exit" | "home" | "go-right" | "trash" | "asterix" | "hint_filled" | "info_filled" | "checkmark_filled" | "warning_filled" | "checkmark" | "checkmark_outlined" | "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" | "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-outlined" | "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" | "ideas-raiting" | "star-person-1" | "history" | "history-partial" | "mobile-send-money" | "cash-transactions" | "heart-outlined" | "task-done" | "purchases" | "card-raif" | "credit-pay-part" | "credit-pay-full" | "notification-outlined" | "mail-out" | "chat-1" | "people-1" | "in-queue" | "warning-exclamation" | "warning-outlined" | "info-outlined" | "hint-outlined" | "face-happy" | "person-level" | "star-reward" | "brand-logo";
2
2
  type IconProps = Omit<React.SVGProps<SVGSVGElement>, "ref"> & {
3
3
  icon: IconsListProp;
4
4
  size?: 8 | 12 | 14 | 16 | 18 | 20 | 24 | 32 | 40;
@@ -141,6 +141,7 @@ declare const IconsList: {
141
141
  "face-happy": any;
142
142
  "person-level": any;
143
143
  "star-reward": any;
144
+ "brand-logo": any;
144
145
  };
145
146
 
146
147
  export { IconsList as default };
@@ -0,0 +1,13 @@
1
+ import React from 'react';
2
+ import { colors } from '../../utils/colors.js';
3
+
4
+ interface SelectionAppCardProps extends React.HTMLAttributes<HTMLDivElement> {
5
+ text?: string;
6
+ textColor?: keyof typeof colors;
7
+ bgColor?: keyof typeof colors;
8
+ selected?: boolean;
9
+ }
10
+ declare const SelectionAppCard: React.FC<SelectionAppCardProps>;
11
+
12
+ export { SelectionAppCard as default };
13
+ export type { SelectionAppCardProps };
@@ -0,0 +1,6 @@
1
+ import SelectionAppCard from './SelectionAppCard.js';
2
+ export { SelectionAppCardProps } from './SelectionAppCard.js';
3
+
4
+
5
+
6
+ export { SelectionAppCard as default };
@@ -86,3 +86,4 @@ export { default as VerticalHeat, VerticalHeatProps } from './components/Vertica
86
86
  export { default as Logo, LogoProps } from './components/Logo/Logo.js';
87
87
  export { default as Icon } from './components/Icon/Icon.js';
88
88
  export { default as Spinner } from './components/Spinner/Spinner.js';
89
+ export { default as SelectionAppCard, SelectionAppCardProps } from './components/SelectionAppCard/SelectionAppCard.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rbro-tat-uds",
3
- "version": "2.2.7",
3
+ "version": "2.2.9",
4
4
  "type": "module",
5
5
  "main": "build/cjs/index.cjs",
6
6
  "module": "build/esm/index.js",