rbro-tat-uds 1.4.3 → 1.4.5
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/GraficPlanInvestitii/GraficPlanInvestitii.d.ts +16 -9
- package/dist/components/Icon/Icon.types.d.ts +1 -1
- package/dist/components/Icon/IconsList.d.ts +2 -0
- package/dist/components/ProductTeaserParameters/ProductTeaserParameters.d.ts +2 -0
- package/dist/components/StepsBar/StepsBar.d.ts +19 -0
- package/dist/components/StepsBar/index.d.ts +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/index.cjs.js +374 -345
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +1909 -1787
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
@@ -1,12 +1,7 @@
|
|
1
|
-
import React, { HTMLAttributes
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
perioada_text?: string;
|
6
|
-
favorabil_text?: string;
|
7
|
-
moderat_text?: string;
|
8
|
-
nefavorabil_text?: string;
|
9
|
-
criza_text?: string;
|
1
|
+
import React, { HTMLAttributes } from "react";
|
2
|
+
import { colors } from "../..";
|
3
|
+
export interface GraficPlanInvestitiiProps extends HTMLAttributes<SVGSVGElement> {
|
4
|
+
height?: number;
|
10
5
|
paddingLeft?: number;
|
11
6
|
paddingRight?: number;
|
12
7
|
paddingTop?: number;
|
@@ -15,7 +10,19 @@ interface GraficPlanInvestitiiProps extends HTMLAttributes<ReactSVGElement> {
|
|
15
10
|
max?: number;
|
16
11
|
line?: number;
|
17
12
|
min?: number;
|
13
|
+
textLeft?: string;
|
14
|
+
textValueLeft?: number;
|
15
|
+
textTop?: string;
|
16
|
+
col1Value?: number;
|
17
|
+
col2Value?: number;
|
18
|
+
col3Value?: number;
|
19
|
+
col4Value?: number;
|
20
|
+
col1Color?: keyof typeof colors;
|
21
|
+
col2Color?: keyof typeof colors;
|
22
|
+
col3Color?: keyof typeof colors;
|
23
|
+
col4Color?: keyof typeof colors;
|
18
24
|
currency?: "RON" | "USD" | "EUR";
|
25
|
+
dev?: boolean;
|
19
26
|
}
|
20
27
|
declare const GraficPlanInvestitii: React.FC<GraficPlanInvestitiiProps>;
|
21
28
|
export default GraficPlanInvestitii;
|
@@ -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";
|
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";
|
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;
|
@@ -15,6 +15,8 @@ interface ProductTeaserParametersProps extends HTMLAttributes<HTMLDivElement> {
|
|
15
15
|
message?: boolean;
|
16
16
|
messageText?: string;
|
17
17
|
messageIcon?: IconsListProp;
|
18
|
+
textColor?: keyof typeof colors;
|
19
|
+
iconColor?: keyof typeof colors;
|
18
20
|
buttonOnClick?: () => void;
|
19
21
|
}
|
20
22
|
declare const ProductTeaserParameters: React.FC<ProductTeaserParametersProps>;
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import React, { HTMLAttributes } from "react";
|
2
|
+
declare const _value: readonly [1, 2, 3, 4, 5, 6, 7];
|
3
|
+
declare const _steps: readonly [3, 7];
|
4
|
+
declare const _color: readonly ["info_400", "purple_600"];
|
5
|
+
declare const _backgroundColor: readonly ["gray_100", "blue_100"];
|
6
|
+
declare const _height: readonly [16, 18];
|
7
|
+
declare const _stepWidth: readonly [5, 7];
|
8
|
+
declare const _stepGap: readonly [1, 2];
|
9
|
+
export interface StepsBarProps extends HTMLAttributes<HTMLDivElement> {
|
10
|
+
value?: (typeof _value)[number];
|
11
|
+
steps?: (typeof _steps)[number];
|
12
|
+
color?: (typeof _color)[number];
|
13
|
+
backgroundColor?: (typeof _backgroundColor)[number];
|
14
|
+
height?: (typeof _height)[number];
|
15
|
+
stepWidth?: (typeof _stepWidth)[number];
|
16
|
+
stepGap?: (typeof _stepGap)[number];
|
17
|
+
}
|
18
|
+
declare const StepsBar: React.FC<StepsBarProps>;
|
19
|
+
export default StepsBar;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as StepsBar } from './StepsBar';
|