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.
@@ -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 };
@@ -0,0 +1,6 @@
1
+ import PropunereUniqaProtect from './PropunereUniqaProtect.js';
2
+ export { PropunereUniqaProtectProps } from './PropunereUniqaProtect.js';
3
+
4
+
5
+
6
+ export { PropunereUniqaProtect as default };
@@ -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
 
@@ -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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rbro-tat-uds",
3
- "version": "2.2.21",
3
+ "version": "2.2.23",
4
4
  "type": "module",
5
5
  "main": "build/cjs/index.cjs",
6
6
  "module": "build/esm/index.js",