@m4l/components 9.3.34-JT25112025.beta.1 → 9.3.34-JT25112025.beta.3
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.
|
@@ -749,6 +749,7 @@ const dataGridStyles = {
|
|
|
749
749
|
minWidth: "280px",
|
|
750
750
|
maxWidth: "580px",
|
|
751
751
|
cursor: "pointer",
|
|
752
|
+
padding: theme.vars.size.baseSpacings["sp2-5"],
|
|
752
753
|
// Si está checked (pero no selected), border de checked
|
|
753
754
|
...ownerState?.checked && !ownerState?.selected && {
|
|
754
755
|
borderColor: theme.vars.palette.primary.activeOpacity
|
|
@@ -789,7 +790,7 @@ const dataGridStyles = {
|
|
|
789
790
|
cardHeaderRight: ({ theme }) => ({
|
|
790
791
|
display: "flex",
|
|
791
792
|
alignItems: "center",
|
|
792
|
-
gap: theme.vars.size.baseSpacings
|
|
793
|
+
gap: theme.vars.size.baseSpacings["sp0-5"]
|
|
793
794
|
}),
|
|
794
795
|
/**
|
|
795
796
|
* Contenido de la card (body)
|
|
@@ -5,15 +5,7 @@ const RadioButtonFormatter = forwardRef(function RadioFormatter({ onChange, chec
|
|
|
5
5
|
function handleChange(e) {
|
|
6
6
|
onChange(e.target.checked, e.nativeEvent.shiftKey);
|
|
7
7
|
}
|
|
8
|
-
return /* @__PURE__ */ jsx(
|
|
9
|
-
RadioButton,
|
|
10
|
-
{
|
|
11
|
-
checked,
|
|
12
|
-
size: "small",
|
|
13
|
-
onChange: handleChange,
|
|
14
|
-
...props
|
|
15
|
-
}
|
|
16
|
-
);
|
|
8
|
+
return /* @__PURE__ */ jsx(RadioButton, { checked, onChange: handleChange, ...props });
|
|
17
9
|
});
|
|
18
10
|
export {
|
|
19
11
|
RadioButtonFormatter as R
|