@m4l/components 9.3.13-JT02092025.beta.2 → 9.3.13-JT02092025.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.
@@ -211,17 +211,15 @@ const stepperStyles = {
211
211
  * Estilos para el contenedor del icono del titulo del Stepper.
212
212
  */
213
213
  wrapperIcon: ({ theme, ownerState }) => ({
214
- ...getSizeStyles(theme, ownerState?.size || "medium", "box", (size) => {
215
- return {
216
- width: size,
217
- height: size
218
- };
219
- }),
220
214
  display: "flex",
221
215
  alignItems: "center",
222
216
  justifyContent: "center",
223
217
  background: theme.vars.palette.primary.enabledOpacity,
224
- borderRadius: theme.vars.size.borderRadius["r1-5"]
218
+ borderRadius: theme.vars.size.borderRadius["r1-5"],
219
+ ...getSizeStyles(theme, ownerState?.size || "medium", "box", (size) => ({
220
+ width: size,
221
+ height: size
222
+ }))
225
223
  }),
226
224
  /**
227
225
  * Estilos para el título del Stepper.
@@ -236,12 +234,10 @@ const stepperStyles = {
236
234
  * Estilos para el icono del Stepper.
237
235
  */
238
236
  icon: ({ theme, ownerState }) => ({
239
- ...getSizeStyles(theme, ownerState?.size || "medium", "case", (size) => {
240
- return {
241
- width: size,
242
- height: size
243
- };
244
- })
237
+ ...getSizeStyles(theme, ownerState?.size || "medium", "case", (size) => ({
238
+ width: size,
239
+ height: size
240
+ }))
245
241
  }),
246
242
  /**
247
243
  * Estilos para el título del Stepper.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m4l/components",
3
- "version": "9.3.13-JT02092025.beta.2",
3
+ "version": "9.3.13-JT02092025.beta.3",
4
4
  "license": "UNLICENSED",
5
5
  "description": "M4L Components",
6
6
  "lint-staged": {