rbro-tat-uds 1.5.64 → 1.6.0
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.
- package/dist/components/AutosaveStatus/AutosaveStatus.d.ts +10 -0
- package/dist/components/AutosaveStatus/index.d.ts +1 -0
- package/dist/components/ButtonLink/ButtonLink.d.ts +10 -3
- package/dist/components/Icon/Icon.types.d.ts +1 -1
- package/dist/components/Icon/IconsList.d.ts +3 -0
- package/dist/components/PlanFinanciarAUMBar/PlanFinanciarAUMBar.d.ts +15 -0
- package/dist/components/PlanFinanciarAUMBar/index.d.ts +1 -0
- package/dist/components/PlanFinanciarAUMGraph/PlanFinanciarAUMGraph.d.ts +15 -0
- package/dist/components/PlanFinanciarAUMGraph/index.d.ts +1 -0
- package/dist/components/ShortcutCard/ShortcutCard.d.ts +1 -0
- package/dist/components/TimedButton/TimedButton.d.ts +8 -4
- package/dist/components/index.d.ts +3 -0
- package/dist/index.cjs.js +331 -248
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +3577 -2986
- package/dist/index.es.js.map +1 -1
- package/dist/utils/colors.d.ts +39 -0
- package/package.json +1 -1
@@ -0,0 +1,10 @@
|
|
1
|
+
import { default as React, HTMLAttributes } from 'react';
|
2
|
+
export interface AutosaveStatusProps extends HTMLAttributes<HTMLDivElement> {
|
3
|
+
label?: string;
|
4
|
+
info?: string;
|
5
|
+
loadingLabel?: string;
|
6
|
+
loadingInfo?: string;
|
7
|
+
loading?: boolean;
|
8
|
+
}
|
9
|
+
declare const AutosaveStatus: React.FC<AutosaveStatusProps>;
|
10
|
+
export default AutosaveStatus;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as AutosaveStatus } from './AutosaveStatus';
|
@@ -1,9 +1,16 @@
|
|
1
1
|
import { default as React, CSSProperties } from 'react';
|
2
|
+
import { IconsListProp } from '../Icon/Icon.types';
|
2
3
|
export interface ButtonLinkProps extends React.AnchorHTMLAttributes<HTMLAnchorElement> {
|
3
|
-
|
4
|
-
|
5
|
-
|
4
|
+
intent?: "default" | "danger" | "accent";
|
5
|
+
leftIcon?: IconsListProp | null;
|
6
|
+
rightIcon?: IconsListProp | null;
|
7
|
+
textSize?: "medium" | "large";
|
8
|
+
buttonHeight?: 18 | 24 | 32 | 40 | 48;
|
9
|
+
label?: string;
|
10
|
+
loading?: boolean;
|
11
|
+
disabled?: boolean;
|
6
12
|
decoration?: CSSProperties["textDecoration"];
|
13
|
+
children?: React.ReactNode;
|
7
14
|
}
|
8
15
|
declare const ButtonLink: React.FC<ButtonLinkProps>;
|
9
16
|
export default ButtonLink;
|
@@ -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" | "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";
|
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" | "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";
|
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;
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import { default as React, HTMLAttributes } from 'react';
|
2
|
+
export interface PlanFinanciarAUMBarProps extends HTMLAttributes<SVGSVGElement> {
|
3
|
+
totalAUM?: number;
|
4
|
+
cash?: number;
|
5
|
+
crestere?: number;
|
6
|
+
conservare?: number;
|
7
|
+
lichiditate?: number;
|
8
|
+
cashCrestere?: number;
|
9
|
+
cashConservare?: number;
|
10
|
+
cashLichiditate?: number;
|
11
|
+
disabled?: boolean;
|
12
|
+
showRightContent?: boolean;
|
13
|
+
}
|
14
|
+
declare const PlanFinanciarAUMBar: React.FC<PlanFinanciarAUMBarProps>;
|
15
|
+
export default PlanFinanciarAUMBar;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as PlanFinanciarAUMBar } from './PlanFinanciarAUMBar';
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import { HTMLAttributes, default as React } from 'react';
|
2
|
+
export interface PlanFinanciarAUMGraphProps extends HTMLAttributes<SVGSVGElement> {
|
3
|
+
cash?: number;
|
4
|
+
crestere?: number;
|
5
|
+
conservare?: number;
|
6
|
+
lichiditate?: number;
|
7
|
+
inflatie?: number;
|
8
|
+
scale_max?: number;
|
9
|
+
top_label?: string;
|
10
|
+
bottom_label?: string;
|
11
|
+
cash_label_nedistribuit?: string;
|
12
|
+
height?: number;
|
13
|
+
}
|
14
|
+
declare const PlanFinanciarAUMGraph: React.FC<PlanFinanciarAUMGraphProps>;
|
15
|
+
export default PlanFinanciarAUMGraph;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as PlanFinanciarAUMGraph } from './PlanFinanciarAUMGraph';
|
@@ -14,6 +14,7 @@ export interface ShortcutCardProps extends HTMLAttributes<HTMLDivElement> {
|
|
14
14
|
buttonLabel?: string;
|
15
15
|
buttonGrow?: boolean;
|
16
16
|
disabled?: boolean;
|
17
|
+
loading?: boolean;
|
17
18
|
buttonOnClick?(): void;
|
18
19
|
}
|
19
20
|
declare const ShortcutCard: React.FC<ShortcutCardProps>;
|
@@ -1,11 +1,15 @@
|
|
1
1
|
import { default as React, HTMLAttributes } from 'react';
|
2
|
+
import { IconsListProp } from '../Icon/Icon.types';
|
2
3
|
export interface TimedButtonProps extends HTMLAttributes<HTMLButtonElement> {
|
3
4
|
actionText?: string;
|
4
5
|
reActionText?: string;
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
6
|
+
intent?: "default" | "danger" | "success";
|
7
|
+
dangerLabel?: string;
|
8
|
+
successLabel?: string;
|
9
|
+
buttonIntent?: "default" | "danger" | "accent";
|
10
|
+
disabled?: boolean;
|
11
|
+
icon?: IconsListProp | undefined | null;
|
12
|
+
size?: "medium" | "large";
|
9
13
|
delay?: number;
|
10
14
|
actionButtonOnClick?: () => void;
|
11
15
|
reActionButtonOnClick?: () => void;
|