rbro-tat-uds 1.4.7 → 1.4.9
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/index.cjs.js +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +4 -9
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
@@ -10501,7 +10501,7 @@ const Pt = b.svg`
|
|
10501
10501
|
width: 100%;
|
10502
10502
|
cursor: pointer;
|
10503
10503
|
padding: 12px 16px;
|
10504
|
-
min-height: 79px;
|
10504
|
+
min-height: ${({ $line1Text: e }) => e && e.length ? "79px" : "60px"};
|
10505
10505
|
height: auto;
|
10506
10506
|
display: flex;
|
10507
10507
|
flex-direction: column;
|
@@ -10594,6 +10594,7 @@ const Pt = b.svg`
|
|
10594
10594
|
{
|
10595
10595
|
onClick: d,
|
10596
10596
|
$line2Text: i,
|
10597
|
+
$line1Text: o,
|
10597
10598
|
...p,
|
10598
10599
|
"data-selected": s,
|
10599
10600
|
children: [
|
@@ -10601,15 +10602,9 @@ const Pt = b.svg`
|
|
10601
10602
|
/* @__PURE__ */ r.jsx("span", { children: e ?? "" }),
|
10602
10603
|
/* @__PURE__ */ r.jsx("span", { children: n ?? "RON" })
|
10603
10604
|
] }),
|
10604
|
-
o && o.length && /* @__PURE__ */ r.
|
10605
|
-
"Scenariu favorabil la 1 an: ",
|
10606
|
-
o ?? ""
|
10607
|
-
] }),
|
10605
|
+
o && o.length && /* @__PURE__ */ r.jsx("span", { children: o }),
|
10608
10606
|
/* @__PURE__ */ r.jsxs("div", { children: [
|
10609
|
-
i && i.length && /* @__PURE__ */ r.
|
10610
|
-
"Recomandat: ",
|
10611
|
-
i ?? ""
|
10612
|
-
] }),
|
10607
|
+
i && i.length && /* @__PURE__ */ r.jsx("span", { children: i }),
|
10613
10608
|
/* @__PURE__ */ r.jsxs("div", { children: [
|
10614
10609
|
/* @__PURE__ */ r.jsx("span", { children: "Risc:" }),
|
10615
10610
|
/* @__PURE__ */ r.jsx(s4, { value: a, stepWidth: 5, height: 16, stepGap: 1 })
|