@m4l/components 9.3.13-JT02092025.beta.2 → 9.3.13-JT02092025.beta.4
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.
|
@@ -164,10 +164,12 @@ const stepperStyles = {
|
|
|
164
164
|
borderLeft: `1px ${isCompleted ? "solid" : "dashed"} ${isCompleted ? theme.vars.palette.primary.enabled : theme.vars.palette.border.default}`
|
|
165
165
|
}
|
|
166
166
|
},
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
167
|
+
width: "20px",
|
|
168
|
+
height: "20px"
|
|
169
|
+
// ...getSizeStyles(theme, ownerState?.size || 'medium', 'case', (size) => ({
|
|
170
|
+
// width: size,
|
|
171
|
+
// height: size,
|
|
172
|
+
// })),
|
|
171
173
|
};
|
|
172
174
|
},
|
|
173
175
|
/**
|
|
@@ -211,17 +213,15 @@ const stepperStyles = {
|
|
|
211
213
|
* Estilos para el contenedor del icono del titulo del Stepper.
|
|
212
214
|
*/
|
|
213
215
|
wrapperIcon: ({ theme, ownerState }) => ({
|
|
214
|
-
...getSizeStyles(theme, ownerState?.size || "medium", "box", (size) => {
|
|
215
|
-
return {
|
|
216
|
-
width: size,
|
|
217
|
-
height: size
|
|
218
|
-
};
|
|
219
|
-
}),
|
|
220
216
|
display: "flex",
|
|
221
217
|
alignItems: "center",
|
|
222
218
|
justifyContent: "center",
|
|
223
219
|
background: theme.vars.palette.primary.enabledOpacity,
|
|
224
|
-
borderRadius: theme.vars.size.borderRadius["r1-5"]
|
|
220
|
+
borderRadius: theme.vars.size.borderRadius["r1-5"],
|
|
221
|
+
...getSizeStyles(theme, ownerState?.size || "medium", "box", (size) => ({
|
|
222
|
+
width: size,
|
|
223
|
+
height: size
|
|
224
|
+
}))
|
|
225
225
|
}),
|
|
226
226
|
/**
|
|
227
227
|
* Estilos para el título del Stepper.
|
|
@@ -236,12 +236,10 @@ const stepperStyles = {
|
|
|
236
236
|
* Estilos para el icono del Stepper.
|
|
237
237
|
*/
|
|
238
238
|
icon: ({ theme, ownerState }) => ({
|
|
239
|
-
...getSizeStyles(theme, ownerState?.size || "medium", "case", (size) => {
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
};
|
|
244
|
-
})
|
|
239
|
+
...getSizeStyles(theme, ownerState?.size || "medium", "case", (size) => ({
|
|
240
|
+
width: size,
|
|
241
|
+
height: size
|
|
242
|
+
}))
|
|
245
243
|
}),
|
|
246
244
|
/**
|
|
247
245
|
* Estilos para el título del Stepper.
|