@rehagro/ui 1.0.60 → 1.0.61
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.js +13 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -9
- package/dist/index.mjs.map +1 -1
- package/dist/native.js.map +1 -1
- package/dist/native.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1580,17 +1580,21 @@ var CheckIcon2 = ({ className }) => /* @__PURE__ */ jsx(
|
|
|
1580
1580
|
)
|
|
1581
1581
|
}
|
|
1582
1582
|
);
|
|
1583
|
-
var RadioIcon = ({ isSelected }) => /* @__PURE__ */
|
|
1584
|
-
"
|
|
1583
|
+
var RadioIcon = ({ isSelected }) => /* @__PURE__ */ jsxs(
|
|
1584
|
+
"svg",
|
|
1585
1585
|
{
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
"rh-border rh-rounded-full rh-transition-colors rh-duration-150",
|
|
1590
|
-
isSelected ? "rh-border-primary" : "rh-border-border rh-bg-surface"
|
|
1591
|
-
].filter(Boolean).join(" "),
|
|
1586
|
+
width: "16",
|
|
1587
|
+
height: "16",
|
|
1588
|
+
viewBox: "0 0 16 16",
|
|
1592
1589
|
"aria-hidden": "true",
|
|
1593
|
-
|
|
1590
|
+
className: [
|
|
1591
|
+
"rh-shrink-0 rh-transition-colors rh-duration-150",
|
|
1592
|
+
isSelected ? "rh-text-primary rh-fill-surface" : "rh-text-border rh-fill-surface"
|
|
1593
|
+
].join(" "),
|
|
1594
|
+
children: [
|
|
1595
|
+
/* @__PURE__ */ jsx("circle", { cx: "8", cy: "8", r: "7", stroke: "currentColor", strokeWidth: "1" }),
|
|
1596
|
+
isSelected && /* @__PURE__ */ jsx("circle", { cx: "8", cy: "8", r: "5", className: "rh-fill-primary", stroke: "none" })
|
|
1597
|
+
]
|
|
1594
1598
|
}
|
|
1595
1599
|
);
|
|
1596
1600
|
var Select = forwardRef(function Select2(props, ref) {
|