@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.js
CHANGED
|
@@ -1586,17 +1586,21 @@ var CheckIcon2 = ({ className }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
|
1586
1586
|
)
|
|
1587
1587
|
}
|
|
1588
1588
|
);
|
|
1589
|
-
var RadioIcon = ({ isSelected }) => /* @__PURE__ */ jsxRuntime.
|
|
1590
|
-
"
|
|
1589
|
+
var RadioIcon = ({ isSelected }) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1590
|
+
"svg",
|
|
1591
1591
|
{
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
"rh-border rh-rounded-full rh-transition-colors rh-duration-150",
|
|
1596
|
-
isSelected ? "rh-border-primary" : "rh-border-border rh-bg-surface"
|
|
1597
|
-
].filter(Boolean).join(" "),
|
|
1592
|
+
width: "16",
|
|
1593
|
+
height: "16",
|
|
1594
|
+
viewBox: "0 0 16 16",
|
|
1598
1595
|
"aria-hidden": "true",
|
|
1599
|
-
|
|
1596
|
+
className: [
|
|
1597
|
+
"rh-shrink-0 rh-transition-colors rh-duration-150",
|
|
1598
|
+
isSelected ? "rh-text-primary rh-fill-surface" : "rh-text-border rh-fill-surface"
|
|
1599
|
+
].join(" "),
|
|
1600
|
+
children: [
|
|
1601
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "8", r: "7", stroke: "currentColor", strokeWidth: "1" }),
|
|
1602
|
+
isSelected && /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "8", r: "5", className: "rh-fill-primary", stroke: "none" })
|
|
1603
|
+
]
|
|
1600
1604
|
}
|
|
1601
1605
|
);
|
|
1602
1606
|
var Select = React9.forwardRef(function Select2(props, ref) {
|