rbro-tat-uds 2.2.21 → 2.2.23
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/build/cjs/components/ConfigurationSaveInfo/ConfigurationSaveInfo.cjs +1 -1
- package/build/cjs/components/PropunereUniqaProtect/PropunereUniqaProtect.cjs +389 -0
- package/build/cjs/components/PropunereUniqaProtect/index.cjs +12 -0
- package/build/cjs/components/UnitlinkGraph/UnitlinkGraph.cjs +29 -15
- package/build/cjs/components/index.cjs +2 -0
- package/build/cjs/index.cjs +432 -43
- package/build/esm/components/ConfigurationSaveInfo/ConfigurationSaveInfo.js +1 -1
- package/build/esm/components/PropunereUniqaProtect/PropunereUniqaProtect.js +385 -0
- package/build/esm/components/PropunereUniqaProtect/index.js +8 -0
- package/build/esm/components/UnitlinkGraph/UnitlinkGraph.js +29 -15
- package/build/esm/components/index.js +1 -0
- package/build/esm/index.js +432 -44
- package/build/types/components/PropunereUniqaProtect/PropunereUniqaProtect.d.ts +30 -0
- package/build/types/components/PropunereUniqaProtect/index.d.ts +6 -0
- package/build/types/components/UnitlinkGraph/UnitlinkGraph.d.ts +9 -0
- package/build/types/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
interface PropunereUniqaProtectProps {
|
|
4
|
+
title?: string;
|
|
5
|
+
contributiaLunara?: string;
|
|
6
|
+
durata?: string;
|
|
7
|
+
taxaDePolita?: string;
|
|
8
|
+
numarPolite?: string;
|
|
9
|
+
featured?: boolean;
|
|
10
|
+
selected?: boolean;
|
|
11
|
+
disabled?: boolean;
|
|
12
|
+
refused?: boolean;
|
|
13
|
+
hideButton?: boolean;
|
|
14
|
+
empty?: boolean;
|
|
15
|
+
emptyText?: string;
|
|
16
|
+
iconButtonOnClick?: () => void;
|
|
17
|
+
buttonOnClick?: () => void;
|
|
18
|
+
contributiaLunaraHintOnClick?: () => void;
|
|
19
|
+
taxaDePolitaHintOnClick?: () => void;
|
|
20
|
+
children?: React.ReactNode;
|
|
21
|
+
}
|
|
22
|
+
type ContentSlotProps = {
|
|
23
|
+
children: React.ReactNode;
|
|
24
|
+
};
|
|
25
|
+
declare const PropunereUniqaProtect: React.FC<PropunereUniqaProtectProps> & {
|
|
26
|
+
ContentSlot: React.FC<ContentSlotProps>;
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export { PropunereUniqaProtect as default };
|
|
30
|
+
export type { PropunereUniqaProtectProps };
|
|
@@ -4,10 +4,14 @@ interface BarConfiguration {
|
|
|
4
4
|
header: string;
|
|
5
5
|
color_primary: string;
|
|
6
6
|
color_secondary: string;
|
|
7
|
+
outline_color?: string;
|
|
7
8
|
percentage: number;
|
|
9
|
+
secondary_percentage?: number;
|
|
8
10
|
actions: Array<{
|
|
9
11
|
label: string;
|
|
10
12
|
sublabel?: string;
|
|
13
|
+
bgColor?: string;
|
|
14
|
+
textColor?: string;
|
|
11
15
|
}>;
|
|
12
16
|
}
|
|
13
17
|
interface UnitLinkGraphProps extends HTMLAttributes<SVGSVGElement> {
|
|
@@ -27,7 +31,12 @@ interface UnitLinkGraphProps extends HTMLAttributes<SVGSVGElement> {
|
|
|
27
31
|
left: string;
|
|
28
32
|
right?: string;
|
|
29
33
|
};
|
|
34
|
+
timeline_text_color?: {
|
|
35
|
+
left: string;
|
|
36
|
+
right: string;
|
|
37
|
+
};
|
|
30
38
|
initialSliderValue?: number;
|
|
39
|
+
lineGraphAreaColor?: string;
|
|
31
40
|
}
|
|
32
41
|
declare const UnitLinkGraph: React.FC<UnitLinkGraphProps>;
|
|
33
42
|
|
package/build/types/index.d.ts
CHANGED
|
@@ -92,3 +92,4 @@ export { default as PropunereAsigurareLocuinta, PropunereAsigurareLocuintaProps
|
|
|
92
92
|
export { default as Textarea, TextareaProps } from './components/Textarea/Textarea.js';
|
|
93
93
|
export { default as FeedbackCard, FeedbackCardProps } from './components/FeedbackCard/FeedbackCard.js';
|
|
94
94
|
export { default as ConfigurationStickyBar, ConfigurationStickyBarProps } from './components/ConfigurationStickyBar/ConfigurationStickyBar.js';
|
|
95
|
+
export { default as PropunereUniqaProtect, PropunereUniqaProtectProps } from './components/PropunereUniqaProtect/PropunereUniqaProtect.js';
|