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.
@@ -58,7 +58,7 @@ const ConfigurationSaveInfo = ({
58
58
  ),
59
59
  /* @__PURE__ */ jsxs("div", { children: [
60
60
  /* @__PURE__ */ jsxs("span", { children: [
61
- isSimulator ? "Simluare" : "Configuratie",
61
+ isSimulator ? "Simulare" : "Configuratie",
62
62
  " din data"
63
63
  ] }),
64
64
  /* @__PURE__ */ jsx("span", { children: date.length ? date : "N/A" })
@@ -0,0 +1,385 @@
1
+ "use strict";
2
+ "use client";
3
+
4
+ import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
5
+ import { colors } from '../../utils';
6
+ import { Children } from 'react';
7
+ import styled, { css } from 'styled-components';
8
+ import IconButton from '../IconButton/IconButton.js';
9
+ import Icon from '../Icon/Icon.js';
10
+
11
+ const PropunereUniqaProtectStyled = styled.div`
12
+ border-radius: 8px;
13
+ border: 1px solid
14
+ ${({ $featured, $selected }) => $selected ? colors.purple_500 : $featured ? colors.accent_600 : colors.gray_200};
15
+ overflow: hidden;
16
+ min-height: ${({ $hideButton }) => $hideButton ? "294px" : "334px"};
17
+ box-sizing: border-box;
18
+ height: 100%;
19
+ width: 100%;
20
+
21
+ ${(props) => !props.$empty ? css`
22
+ outline: ${props.$featured ? `3px solid ${colors.accent_300}` : "none"};
23
+
24
+ & > div:first-of-type {
25
+ & > div:first-child {
26
+ padding: 6px 6px 0px 16px;
27
+ display: flex;
28
+ align-items: center;
29
+ justify-content: space-between;
30
+ gap: 8px;
31
+ background-color: ${props.$refused ? colors.gray_30 : props.$selected ? colors.purple_50 : props.$featured ? colors.accent_100 : "transparent"};
32
+
33
+ & > span {
34
+ font-size: 18px;
35
+ font-weight: 700;
36
+ line-height: 120%;
37
+ color: ${({ $refused }) => $refused ? colors.gray_300 : colors.purple_600};
38
+ }
39
+ }
40
+
41
+ & > div:nth-child(2) {
42
+ box-sizing: border-box;
43
+ display: flex;
44
+ align-items: stretch;
45
+ height: 80px;
46
+
47
+ & > div:first-of-type {
48
+ padding: 8px 4px 12px 16px;
49
+ flex: 1;
50
+ box-sizing: border-box;
51
+ display: flex;
52
+ flex-direction: column;
53
+ gap: 2px;
54
+ background-color: ${props.$refused ? colors.gray_30 : props.$selected ? colors.purple_50 : props.$featured ? colors.accent_100 : "transparent"};
55
+
56
+ & > div {
57
+ display: flex;
58
+ align-items: flex-start;
59
+ gap: 8px;
60
+
61
+ & > svg {
62
+ cursor: pointer;
63
+ }
64
+
65
+ & > span:first-of-type {
66
+ flex: 1;
67
+ font-size: 14px;
68
+ font-weight: ${({ $includePad }) => $includePad ? 700 : 400};
69
+ color: ${({ $refused }) => $refused ? colors.gray_200 : colors.gray_700};
70
+ }
71
+ }
72
+
73
+ & > span {
74
+ font-size: 20px;
75
+ font-weight: 700;
76
+ color: ${({ $refused }) => $refused ? colors.gray_300 : colors.gray_950};
77
+ }
78
+ }
79
+
80
+ & > div:nth-of-type(2) {
81
+ padding: 8px 16px 12px 4px;
82
+ flex: 1;
83
+ box-sizing: border-box;
84
+ display: flex;
85
+ flex-direction: column;
86
+ gap: 2px;
87
+ background-color: ${props.$refused ? colors.gray_30 : props.$selected ? colors.purple_50 : props.$featured ? colors.accent_100 : "transparent"};
88
+
89
+ & > span:first-of-type {
90
+ font-size: 14px;
91
+ font-weight: ${({ $includePad }) => $includePad ? 700 : 400};
92
+ color: ${({ $refused }) => $refused ? colors.gray_200 : colors.gray_700};
93
+ }
94
+
95
+ & > span:nth-of-type(2) {
96
+ font-size: 20px;
97
+ font-weight: 500;
98
+ color: ${({ $refused }) => $refused ? colors.gray_300 : colors.gray_950};
99
+ }
100
+ }
101
+ }
102
+
103
+ & > div:last-child {
104
+ display: flex;
105
+ border-top: 1px solid ${colors.gray_200};
106
+ border-bottom: 1px solid ${colors.gray_200};
107
+ display: flex;
108
+ align-items: stretch;
109
+ box-sizing: border-box;
110
+
111
+ & > div:first-of-type {
112
+ box-sizing: border-box;
113
+ flex: 1;
114
+ height: 58px;
115
+ display: flex;
116
+ align-items: flex-start;
117
+ padding: 12px 16px;
118
+ gap: 8px;
119
+ border-right: 0.5px solid ${colors.gray_200};
120
+ background-color: ${props.$refused ? colors.gray_60 : props.$featured ? colors.white : colors.gray_30};
121
+
122
+ & > div {
123
+ display: flex;
124
+ flex-direction: column;
125
+ gap: 2px;
126
+
127
+ & > div:first-of-type {
128
+ display: flex;
129
+ align-items: center;
130
+ gap: 4px;
131
+
132
+ & > span:first-of-type {
133
+ font-size: 12px;
134
+ font-weight: 400;
135
+ line-height: 120%;
136
+ color: ${({ $refused }) => $refused ? colors.gray_300 : colors.gray_700};
137
+ }
138
+ }
139
+
140
+ & > span {
141
+ font-size: 14px;
142
+ font-weight: 500;
143
+ line-height: 120%;
144
+ color: ${({ $refused }) => $refused ? colors.gray_300 : colors.gray_950};
145
+ }
146
+ }
147
+ }
148
+
149
+ & > div:last-of-type {
150
+ box-sizing: border-box;
151
+ flex: 1;
152
+ height: 58px;
153
+ display: flex;
154
+ align-items: flex-start;
155
+ padding: 12px 16px;
156
+ gap: 8px;
157
+ border-left: 0.5px solid ${colors.gray_200};
158
+ background-color: ${(props2) => props2.$refused ? colors.gray_60 : colors.gray_30};
159
+
160
+ & > div {
161
+ display: flex;
162
+ flex-direction: column;
163
+ gap: 2px;
164
+
165
+ & > span:first-of-type {
166
+ font-size: 12px;
167
+ font-weight: 400;
168
+ line-height: 120%;
169
+ color: ${({ $refused }) => $refused ? colors.gray_300 : colors.gray_700};
170
+ }
171
+
172
+ & > span:nth-of-type(2) {
173
+ font-size: 14px;
174
+ font-weight: 500;
175
+ line-height: 120%;
176
+ color: ${({ $refused }) => $refused ? colors.gray_300 : colors.gray_950};
177
+ }
178
+ }
179
+ }
180
+ }
181
+ }
182
+
183
+ & > div:last-of-type {
184
+ height: 106px;
185
+ box-sizing: border-box;
186
+ }
187
+
188
+ & > button {
189
+ appearance: none;
190
+ border: none;
191
+ outline: none;
192
+ background-color: ${({ $selected, $disabled }) => $selected ? $disabled ? colors.gray_100 : colors.purple_600 : "transparent"};
193
+ padding: 0px;
194
+ width: 100%;
195
+ height: 40px;
196
+ display: flex;
197
+ align-items: center;
198
+ justify-content: center;
199
+ gap: 8px;
200
+ border-top: 1px solid ${colors.gray_200};
201
+ cursor: pointer;
202
+
203
+ & > span {
204
+ font-size: 14px;
205
+ font-weight: 500;
206
+ line-height: 120%;
207
+ color: ${({ $selected, $disabled }) => $selected ? $disabled ? colors.gray_600 : colors.white : $disabled ? colors.gray_300 : colors.purple_600};
208
+ }
209
+ }
210
+ ` : css`
211
+ background-color: ${colors.gray_30};
212
+ display: flex;
213
+ justify-content: center;
214
+ align-items: center;
215
+ padding: 16px;
216
+
217
+ & > div {
218
+ display: flex;
219
+ flex-direction: column;
220
+ gap: 16px;
221
+ justify-content: center;
222
+ align-items: center;
223
+
224
+ & > span {
225
+ font-size: 14px;
226
+ font-weight: 400;
227
+ line-height: 120%;
228
+ color: ${colors.gray_500};
229
+ text-align: center;
230
+ }
231
+ }
232
+ `}
233
+ `;
234
+ const PropunereUniqaProtect = ({
235
+ title = "Fix ce ai cerut!",
236
+ contributiaLunara = "",
237
+ durata = "",
238
+ taxaDePolita = "",
239
+ numarPolite = "",
240
+ featured = false,
241
+ selected = false,
242
+ disabled = false,
243
+ refused = false,
244
+ hideButton = false,
245
+ empty = false,
246
+ emptyText = "Indisponibil",
247
+ iconButtonOnClick,
248
+ buttonOnClick,
249
+ contributiaLunaraHintOnClick,
250
+ taxaDePolitaHintOnClick,
251
+ children,
252
+ ...rest
253
+ }) => {
254
+ let _contentSlot = null;
255
+ Children.toArray(children).filter(Boolean).forEach((child) => {
256
+ const element = child;
257
+ if (element.type === ContentSlot) {
258
+ _contentSlot = child;
259
+ }
260
+ });
261
+ return /* @__PURE__ */ jsx(
262
+ PropunereUniqaProtectStyled,
263
+ {
264
+ $empty: empty,
265
+ $featured: featured,
266
+ $selected: selected,
267
+ $disabled: disabled,
268
+ $refused: refused,
269
+ $hideButton: hideButton,
270
+ ...rest,
271
+ children: !empty ? /* @__PURE__ */ jsxs(Fragment, { children: [
272
+ /* @__PURE__ */ jsxs("div", { children: [
273
+ /* @__PURE__ */ jsxs("div", { children: [
274
+ /* @__PURE__ */ jsx("span", { children: title }),
275
+ /* @__PURE__ */ jsx(
276
+ IconButton,
277
+ {
278
+ onClick: iconButtonOnClick,
279
+ icon: "new_tab",
280
+ intent: "accent",
281
+ variant: "tertiary",
282
+ shape: "rounded",
283
+ color: colors.info_800,
284
+ size: "medium"
285
+ }
286
+ )
287
+ ] }),
288
+ /* @__PURE__ */ jsxs("div", { children: [
289
+ /* @__PURE__ */ jsxs("div", { children: [
290
+ /* @__PURE__ */ jsxs("div", { children: [
291
+ /* @__PURE__ */ jsx("span", { children: "Contributia lunara" }),
292
+ /* @__PURE__ */ jsx(
293
+ Icon,
294
+ {
295
+ onClick: contributiaLunaraHintOnClick,
296
+ icon: "hint_filled",
297
+ size: 16,
298
+ color: refused ? colors.gray_200 : colors.info_700
299
+ }
300
+ )
301
+ ] }),
302
+ /* @__PURE__ */ jsx("span", { children: contributiaLunara || "-" })
303
+ ] }),
304
+ /* @__PURE__ */ jsxs("div", { children: [
305
+ /* @__PURE__ */ jsx("span", { children: "Durata" }),
306
+ /* @__PURE__ */ jsx("span", { children: durata || "-" })
307
+ ] })
308
+ ] }),
309
+ /* @__PURE__ */ jsxs("div", { children: [
310
+ /* @__PURE__ */ jsxs("div", { children: [
311
+ /* @__PURE__ */ jsx(
312
+ Icon,
313
+ {
314
+ icon: "invoice_seal",
315
+ size: 16,
316
+ color: refused ? colors.gray_200 : colors.gray_500
317
+ }
318
+ ),
319
+ /* @__PURE__ */ jsxs("div", { children: [
320
+ /* @__PURE__ */ jsxs("div", { children: [
321
+ /* @__PURE__ */ jsx("span", { children: "Taxa de polita" }),
322
+ /* @__PURE__ */ jsx(
323
+ Icon,
324
+ {
325
+ onClick: taxaDePolitaHintOnClick,
326
+ icon: "hint_filled",
327
+ size: 16,
328
+ color: refused ? colors.gray_200 : colors.info_700
329
+ }
330
+ )
331
+ ] }),
332
+ /* @__PURE__ */ jsx("span", { children: taxaDePolita || "-" })
333
+ ] })
334
+ ] }),
335
+ /* @__PURE__ */ jsxs("div", { children: [
336
+ /* @__PURE__ */ jsx(
337
+ Icon,
338
+ {
339
+ icon: "docs",
340
+ size: 16,
341
+ color: refused ? colors.gray_200 : colors.gray_500
342
+ }
343
+ ),
344
+ /* @__PURE__ */ jsxs("div", { children: [
345
+ /* @__PURE__ */ jsx("span", { children: "Numar polite" }),
346
+ /* @__PURE__ */ jsx("span", { children: numarPolite || "-" })
347
+ ] })
348
+ ] })
349
+ ] })
350
+ ] }),
351
+ /* @__PURE__ */ jsx("div", { children: _contentSlot }),
352
+ !hideButton && /* @__PURE__ */ jsxs(
353
+ "button",
354
+ {
355
+ disabled,
356
+ type: "button",
357
+ onClick: !disabled ? buttonOnClick : () => {
358
+ },
359
+ children: [
360
+ /* @__PURE__ */ jsx(
361
+ Icon,
362
+ {
363
+ icon: selected ? "checkmark_filled" : "checkmark-part",
364
+ size: 16,
365
+ color: selected ? disabled ? colors.gray_600 : colors.white : colors.purple_600,
366
+ style: {
367
+ opacity: disabled && !selected ? "0.25" : "1"
368
+ }
369
+ }
370
+ ),
371
+ /* @__PURE__ */ jsx("span", { children: selected ? "Varianta selectata" : "Vreau aceasta varianta!" })
372
+ ]
373
+ }
374
+ )
375
+ ] }) : /* @__PURE__ */ jsxs("div", { children: [
376
+ /* @__PURE__ */ jsx(Icon, { size: 20, icon: "rejected", color: colors.gray_500 }),
377
+ /* @__PURE__ */ jsx("span", { children: emptyText })
378
+ ] })
379
+ }
380
+ );
381
+ };
382
+ const ContentSlot = ({ children }) => children;
383
+ PropunereUniqaProtect.ContentSlot = ContentSlot;
384
+
385
+ export { PropunereUniqaProtect as default };
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ "use client";
3
+
4
+ import PropunereUniqaProtect from './PropunereUniqaProtect.js';
5
+
6
+
7
+
8
+ export { PropunereUniqaProtect as default };
@@ -32,7 +32,6 @@ const UnitLinkGraphStyled = styled.svg`
32
32
  .text-contribution {
33
33
  font-size: 12px;
34
34
  font-weight: 500;
35
- fill: ${colors.blue_600};
36
35
  }
37
36
  .text-action {
38
37
  font-size: 12px;
@@ -61,6 +60,7 @@ const UnitLinkGraph = ({
61
60
  header: "Placeholder",
62
61
  color_primary: colors.purple_600,
63
62
  color_secondary: colors.purple_50,
63
+ outline_color: colors.white,
64
64
  percentage: 50,
65
65
  place_at_ani: 7,
66
66
  actions: [
@@ -83,6 +83,11 @@ const UnitLinkGraph = ({
83
83
  timeline_texts = {
84
84
  left: "Placeholder"
85
85
  },
86
+ timeline_text_color = {
87
+ left: colors.blue_600,
88
+ right: colors.blue_600
89
+ },
90
+ lineGraphAreaColor,
86
91
  ...rest
87
92
  }) => {
88
93
  const sliderActive = useMemo(() => {
@@ -218,7 +223,9 @@ const UnitLinkGraph = ({
218
223
  wrappedLabel,
219
224
  sublabel: item.sublabel,
220
225
  sublabel_x,
221
- sublabel_y
226
+ sublabel_y,
227
+ bgColor: item.bgColor || void 0,
228
+ textColor: item.textColor || void 0
222
229
  };
223
230
  }
224
231
  return {
@@ -250,7 +257,8 @@ const UnitLinkGraph = ({
250
257
  const dynamic_pos_secondary_x = get_position_at_indicator - APPROXIMATE_BAR_STROKE_WIDTH - configurations.bars.width - configurations.area.indicators.margin;
251
258
  const dynamic_pos_main_x = get_position_at_indicator + APPROXIMATE_BAR_STROKE_WIDTH + configurations.area.indicators.strokeWidth + configurations.area.indicators.margin;
252
259
  const h = mainHeightGraph - configurations.bars.actionsGap - START_Y;
253
- const calculate_filled_bar = floorToHalf(config.percentage / 100 * h);
260
+ const mainPercentage = (config?.secondary_percentage || 0) > 0 ? config.percentage - (config?.secondary_percentage || 0) : config.percentage;
261
+ const calculate_filled_bar = floorToHalf(mainPercentage / 100 * h);
254
262
  const x = floorToHalf(main ? dynamic_pos_main_x : dynamic_pos_secondary_x);
255
263
  const w = floorToHalf(configurations.bars.width);
256
264
  const outlined_y = START_Y + APPROXIMATE_BAR_STROKE_WIDTH + configurations.bars.actionsGap;
@@ -275,7 +283,9 @@ const UnitLinkGraph = ({
275
283
  filled_h: Math.max(filled_h, 0),
276
284
  colorPrimary: config.color_primary,
277
285
  colorSecondary: config.color_secondary,
286
+ outlineColor: config.outline_color || colors.white,
278
287
  strokeWidth: configurations.bars.strokeWidth,
288
+ percentage: config.percentage,
279
289
  barActions: {
280
290
  header: {
281
291
  title: config.header,
@@ -306,7 +316,7 @@ const UnitLinkGraph = ({
306
316
  x1: floorToHalf(mainStart + configurations.area.outersPartsWidth),
307
317
  x2: floorToHalf(barMain.x - configurations.area.outersPartsWidth),
308
318
  y1: mainHeightGraph - configurations.area.strokeWidth,
309
- y2: barMain.filled_y + 1 - configurations.area.additionalSpaceVisualize,
319
+ y2: (barMain.percentage === 100 ? barMain.outlined_y : barMain.filled_y) + 1 - configurations.area.additionalSpaceVisualize,
310
320
  strokeWidth: barMainConfiguration.percentage === 0 ? 0 : configurations.area.graphLineStrokeWidth
311
321
  };
312
322
  const part_3 = {
@@ -314,8 +324,8 @@ const UnitLinkGraph = ({
314
324
  barMain.x - configurations.area.outersPartsWidth - configurations.area.additionalSpaceVisualize
315
325
  ),
316
326
  x2: floorToHalf(barMain.x),
317
- y1: barMain.filled_y + 1 - configurations.area.additionalSpaceVisualize,
318
- y2: barMain.filled_y + 1 - configurations.area.additionalSpaceVisualize,
327
+ y1: (barMain.percentage === 100 ? barMain.outlined_y : barMain.filled_y) + 1 - configurations.area.additionalSpaceVisualize,
328
+ y2: (barMain.percentage === 100 ? barMain.outlined_y : barMain.filled_y) + 1 - configurations.area.additionalSpaceVisualize,
319
329
  strokeWidth: barMainConfiguration.percentage === 0 ? 0 : configurations.area.graphLineStrokeWidth
320
330
  };
321
331
  return {
@@ -521,7 +531,7 @@ const UnitLinkGraph = ({
521
531
  y1: graph.main.area.part_1.y1,
522
532
  y2: graph.main.area.part_1.y2,
523
533
  strokeWidth: graph.main.area.part_1.strokeWidth,
524
- stroke: graph.main.bars.main.colorPrimary
534
+ stroke: lineGraphAreaColor || graph.main.bars.main.colorPrimary
525
535
  }
526
536
  ),
527
537
  /* @__PURE__ */ jsx(
@@ -532,7 +542,7 @@ const UnitLinkGraph = ({
532
542
  y1: graph.main.area.part_2.y1,
533
543
  y2: graph.main.area.part_2.y2,
534
544
  strokeWidth: graph.main.area.part_2.strokeWidth,
535
- stroke: graph.main.bars.main.colorPrimary
545
+ stroke: lineGraphAreaColor || graph.main.bars.main.colorPrimary
536
546
  }
537
547
  ),
538
548
  /* @__PURE__ */ jsx(
@@ -543,15 +553,15 @@ const UnitLinkGraph = ({
543
553
  y1: graph.main.area.part_3.y1,
544
554
  y2: graph.main.area.part_3.y2,
545
555
  strokeWidth: graph.main.area.part_3.strokeWidth,
546
- stroke: graph.main.bars.main.colorPrimary
556
+ stroke: lineGraphAreaColor || graph.main.bars.main.colorPrimary
547
557
  }
548
558
  ),
549
559
  /* @__PURE__ */ jsx(
550
560
  "polygon",
551
561
  {
552
562
  points: `
553
- ${graph.main.area.part_2.x2},${graph.main.bars.main.filled_y + 1.5}
554
- ${graph.main.area.part_3.x2},${graph.main.bars.main.filled_y + 1.5}
563
+ ${graph.main.area.part_2.x2},${(graph.main.bars.main.percentage === 100 ? graph.main.bars.main.outlined_y : graph.main.bars.main.filled_y) + 1.5}
564
+ ${graph.main.area.part_3.x2},${(graph.main.bars.main.percentage === 100 ? graph.main.bars.main.outlined_y : graph.main.bars.main.filled_y) + 1.5}
555
565
  ${graph.main.area.part_3.x2},${graph.mainHeightGraph}
556
566
  ${graph.main.area.part_2.x1},${graph.mainHeightGraph}`,
557
567
  fill: graph.main.bars.main.colorSecondary
@@ -611,6 +621,7 @@ const UnitLinkGraph = ({
611
621
  className: "text-contribution",
612
622
  y: graph.timeline.text.left.y,
613
623
  x: graph.timeline.text.left.x,
624
+ fill: timeline_text_color.left,
614
625
  textAnchor: "end",
615
626
  children: timeline_texts.left
616
627
  }
@@ -621,6 +632,7 @@ const UnitLinkGraph = ({
621
632
  className: "text-contribution",
622
633
  y: graph.timeline.text.right.y,
623
634
  x: graph.timeline.text.right.x,
635
+ fill: timeline_text_color.right,
624
636
  textAnchor: "start",
625
637
  children: timeline_texts.right
626
638
  }
@@ -705,7 +717,7 @@ const RenderBar = ({
705
717
  y: bar.outlined_y,
706
718
  width: bar.w,
707
719
  height: bar.outlined_h,
708
- fill: colors.white,
720
+ fill: bar.outlineColor,
709
721
  stroke: bar.colorPrimary,
710
722
  strokeWidth: bar.strokeWidth
711
723
  }
@@ -733,6 +745,8 @@ const RenderBar = ({
733
745
  ),
734
746
  bar.barActions.actions.map((action, index) => {
735
747
  const isActive = activeAction === index;
748
+ const rectColor = isActive ? bar.colorPrimary : action.bgColor ? action.bgColor : bar.colorSecondary;
749
+ const textColor = isActive ? colors.white : action.textColor ? action.textColor : bar.colorPrimary;
736
750
  return /* @__PURE__ */ jsxs(
737
751
  "g",
738
752
  {
@@ -742,7 +756,7 @@ const RenderBar = ({
742
756
  /* @__PURE__ */ jsx(
743
757
  "rect",
744
758
  {
745
- fill: isActive ? bar.colorPrimary : bar.colorSecondary,
759
+ fill: rectColor,
746
760
  rx: 4,
747
761
  ry: 4,
748
762
  height: action.actions_h,
@@ -757,7 +771,7 @@ const RenderBar = ({
757
771
  className: "text-bar-actions-label",
758
772
  x: action.label_x,
759
773
  y: action.label_y,
760
- fill: isActive ? colors.white : bar.colorPrimary,
774
+ fill: textColor,
761
775
  children: action.wrappedLabel?.map((line, lineIndex) => /* @__PURE__ */ jsx(
762
776
  "tspan",
763
777
  {
@@ -772,7 +786,7 @@ const RenderBar = ({
772
786
  action.sublabel && /* @__PURE__ */ jsx(
773
787
  "text",
774
788
  {
775
- fill: isActive ? colors.white : bar.colorPrimary,
789
+ fill: textColor,
776
790
  className: "text-bar-actions-sublabel",
777
791
  x: action.sublabel_x,
778
792
  y: action.sublabel_y,
@@ -94,3 +94,4 @@ export { default as PropunereAsigurareLocuinta } from './PropunereAsigurareLocui
94
94
  export { default as Textarea } from './Textarea/Textarea.js';
95
95
  export { default as FeedbackCard } from './FeedbackCard/FeedbackCard.js';
96
96
  export { default as ConfigurationStickyBar } from './ConfigurationStickyBar/ConfigurationStickyBar.js';
97
+ export { default as PropunereUniqaProtect } from './PropunereUniqaProtect/PropunereUniqaProtect.js';