@m4l/components 9.3.35-BE20251128-beta.1 → 9.3.35-BE20251129-beta.1

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.
Files changed (106) hide show
  1. package/@types/export.d.ts +3 -0
  2. package/@types/types.d.ts +40 -5
  3. package/components/AccountPopover/AccountPopover.styles.js +5 -2
  4. package/components/ActionsGroup/ActionsGroup.d.ts +5 -0
  5. package/components/ActionsGroup/ActionsGroup.js +40 -0
  6. package/components/ActionsGroup/ActionsGroup.styles.d.ts +2 -0
  7. package/components/ActionsGroup/ActionsGroup.styles.js +95 -0
  8. package/components/ActionsGroup/__tests__/ActionsGroup.test.d.ts +1 -0
  9. package/components/ActionsGroup/constants.d.ts +2 -0
  10. package/components/ActionsGroup/constants.js +8 -0
  11. package/components/ActionsGroup/icons.d.ts +3 -0
  12. package/components/ActionsGroup/icons.js +6 -0
  13. package/components/ActionsGroup/index.d.ts +1 -0
  14. package/components/ActionsGroup/index.js +1 -0
  15. package/components/ActionsGroup/slots/ActionsGroupEnum.d.ts +8 -0
  16. package/components/ActionsGroup/slots/ActionsGroupEnum.js +12 -0
  17. package/components/ActionsGroup/slots/ActionsGroupSlots.d.ts +15 -0
  18. package/components/ActionsGroup/slots/ActionsGroupSlots.js +35 -0
  19. package/components/ActionsGroup/subcomponents/ActionIconButton/ActionIconButton.d.ts +6 -0
  20. package/components/ActionsGroup/subcomponents/ActionIconButton/ActionIconButton.js +76 -0
  21. package/components/ActionsGroup/subcomponents/ActionIconButton/types.d.ts +7 -0
  22. package/components/ActionsGroup/types.d.ts +60 -0
  23. package/components/DataGrid/DataGrid.js +2 -0
  24. package/components/DataGrid/Datagrid.styles.js +11 -2
  25. package/components/DataGrid/contexts/DataGridContext/index.js +2 -0
  26. package/components/DataGrid/contexts/DataGridContext/types.d.ts +2 -2
  27. package/components/DataGrid/subcomponents/Cards/subcomponents/CardHeader/index.js +15 -7
  28. package/components/DataGrid/subcomponents/CheckboxCellAdapter/index.js +4 -1
  29. package/components/DataGrid/subcomponents/HeaderActions/subcomponents/Density/index.js +0 -3
  30. package/components/DataGrid/subcomponents/Table/hooks/useSortColumnsRows.js +6 -2
  31. package/components/DataGrid/subcomponents/Table/subcomponents/ActionsColumn.js +0 -3
  32. package/components/DataGrid/subcomponents/Table/subcomponents/RadioButtonFormatter.d.ts +6 -0
  33. package/components/DataGrid/subcomponents/Table/subcomponents/RadioButtonFormatter.js +12 -0
  34. package/components/DataGrid/subcomponents/Table/subcomponents/RadioSelectColumn.d.ts +64 -0
  35. package/components/DataGrid/subcomponents/Table/subcomponents/RadioSelectColumn.js +46 -0
  36. package/components/DataGrid/tests/table/subcomponents/RadioButtonFormatter.test.d.ts +1 -0
  37. package/components/DataGrid/tests/table/subcomponents/RadioSelectColumn.test.d.ts +1 -0
  38. package/components/DataGrid/types.d.ts +7 -0
  39. package/components/DynamicFilter/DynamicFilter.styles.js +5 -2
  40. package/components/DynamicSort/DynamicSort.styles.js +5 -2
  41. package/components/GridLayout/styles.js +0 -1
  42. package/components/Label/index.d.ts +1 -1
  43. package/components/Label/types.d.ts +6 -0
  44. package/components/MFLoader/styles.js +0 -1
  45. package/components/ModalDialog/ModalDialog.styles.js +8 -1
  46. package/components/PrintingSystem/PrintingSystem.js +3 -1
  47. package/components/PrintingSystem/PrintingSystem.styles.js +179 -2
  48. package/components/SideBar/subcomponents/SideBarMobile/index.js +0 -3
  49. package/components/TabsNavigator/slots/TabsNavigatorSlots.d.ts +10 -10
  50. package/components/WindowBase/WindowBase.styles.js +8 -0
  51. package/components/WindowBase/subcomponents/Header/useButtonActions.js +23 -13
  52. package/components/commercial/AppBarCommercial/styles.js +1 -3
  53. package/components/commercial/HamburgerMenu/styles.js +1 -3
  54. package/components/commercial/SectionCommercial/styles.js +1 -3
  55. package/components/commercial/TopBar/component/ConteinItem/subcomponets/NavItem/index.js +1 -3
  56. package/components/commercial/TopBar/style.js +1 -3
  57. package/components/hook-form/RHFActionsGroup/RHFActionsGroup.d.ts +7 -0
  58. package/components/hook-form/RHFActionsGroup/RHFActionsGroup.js +87 -0
  59. package/components/hook-form/RHFActionsGroup/RHFActionsGroupStyles.d.ts +2 -0
  60. package/components/hook-form/RHFActionsGroup/RHFActionsGroupStyles.js +14 -0
  61. package/components/hook-form/RHFActionsGroup/constants.d.ts +9 -0
  62. package/components/hook-form/RHFActionsGroup/constants.js +8 -0
  63. package/components/hook-form/RHFActionsGroup/index.d.ts +2 -0
  64. package/components/hook-form/RHFActionsGroup/index.js +1 -0
  65. package/components/hook-form/RHFActionsGroup/slots/RHFActionsGroupEnum.d.ts +3 -0
  66. package/components/hook-form/RHFActionsGroup/slots/RHFActionsGroupEnum.js +7 -0
  67. package/components/hook-form/RHFActionsGroup/slots/RHFActionsGroupSlots.d.ts +1 -0
  68. package/components/hook-form/RHFActionsGroup/slots/RHFActionsGroupSlots.js +11 -0
  69. package/components/hook-form/RHFActionsGroup/slots/index.d.ts +2 -0
  70. package/components/hook-form/RHFActionsGroup/slots/index.js +1 -0
  71. package/components/hook-form/RHFActionsGroup/tests/RHFActionsGroup.test.d.ts +1 -0
  72. package/components/hook-form/RHFActionsGroup/tests/common.d.ts +28 -0
  73. package/components/hook-form/RHFActionsGroup/types.d.ts +54 -0
  74. package/components/hook-form/RHFormProvider/styles.js +4 -3
  75. package/components/hook-form/index.d.ts +1 -0
  76. package/components/index.d.ts +1 -0
  77. package/components/mui_extended/Accordion/styles.js +9 -5
  78. package/components/mui_extended/Autocomplete/Autocomplete.styles.js +11 -1
  79. package/components/mui_extended/DateTimePicker/DateTimePicker.styles.js +5 -1
  80. package/components/mui_extended/ImageButton/styles.js +1 -3
  81. package/components/mui_extended/RadioButton/RadioButton.d.ts +24 -0
  82. package/components/mui_extended/RadioButton/RadioButton.js +110 -0
  83. package/components/mui_extended/RadioButton/RadioButton.styles.d.ts +2 -0
  84. package/components/mui_extended/RadioButton/RadioButton.styles.js +126 -0
  85. package/components/mui_extended/RadioButton/constants.d.ts +1 -0
  86. package/components/mui_extended/RadioButton/constants.js +4 -0
  87. package/components/mui_extended/RadioButton/icons.d.ts +4 -0
  88. package/components/mui_extended/RadioButton/icons.js +7 -0
  89. package/components/mui_extended/RadioButton/index.d.ts +1 -0
  90. package/components/mui_extended/RadioButton/index.js +1 -0
  91. package/components/mui_extended/RadioButton/slots/RadioButtonEnum.d.ts +8 -0
  92. package/components/mui_extended/RadioButton/slots/RadioButtonEnum.js +12 -0
  93. package/components/mui_extended/RadioButton/slots/RadioButtonSlots.d.ts +20 -0
  94. package/components/mui_extended/RadioButton/slots/RadioButtonSlots.js +39 -0
  95. package/components/mui_extended/RadioButton/tests/RadioButton.test.d.ts +1 -0
  96. package/components/mui_extended/RadioButton/types.d.ts +50 -0
  97. package/components/mui_extended/Select/Select.js +2 -18
  98. package/components/mui_extended/Select/Select.styles.js +33 -1
  99. package/components/mui_extended/Select/constants.d.ts +2 -1
  100. package/components/mui_extended/Select/slots/SelectEnum.d.ts +2 -1
  101. package/components/mui_extended/Select/slots/SelectEnum.js +1 -0
  102. package/components/mui_extended/TextField/TextField.styles.js +2 -1
  103. package/components/mui_extended/Tooltip/Tooltip.styles.js +22 -4
  104. package/components/mui_extended/index.d.ts +1 -0
  105. package/index.js +76 -70
  106. package/package.json +3 -3
@@ -0,0 +1,50 @@
1
+ import { RadioProps as MUIRadioProps, Theme } from '@mui/material';
2
+ import { RadioButtonSlots } from './slots/RadioButtonEnum';
3
+ import { ComponentPalletColor, Sizes } from '@m4l/styles';
4
+ import { M4LOverridesStyleRules } from '../../../@types/augmentations';
5
+ import { RADIO_BUTTON_KEY_COMPONENT } from './constants';
6
+ import { LabelProps } from '../../Label/types';
7
+ export interface RadioButtonProps extends MUIRadioProps, Omit<LabelProps, 'label' | 'size'> {
8
+ /**
9
+ * El texto que se muestra junto al radio button
10
+ */
11
+ inlineText?: string;
12
+ /**
13
+ * Tamaño
14
+ */
15
+ size?: Extract<Sizes, 'small' | 'medium'>;
16
+ /**
17
+ * Color
18
+ */
19
+ color?: Extract<ComponentPalletColor, 'default'>;
20
+ }
21
+ export interface RadioButtonOwnerState {
22
+ /**
23
+ * Indica si el RadioButton está marcado.
24
+ */
25
+ checked?: boolean;
26
+ /**
27
+ * Indica si el RadioButton está deshabilitado.
28
+ */
29
+ disabled?: boolean;
30
+ /**
31
+ * El tamaño del RadioButton.
32
+ */
33
+ size: Extract<Sizes, 'small' | 'medium'>;
34
+ /**
35
+ * El color del RadioButton.
36
+ */
37
+ color: Extract<ComponentPalletColor, 'default'>;
38
+ /**
39
+ * Indica si hay un error en el RadioButton.
40
+ */
41
+ error?: boolean;
42
+ }
43
+ /**
44
+ * Tipos de slots de RadioButton
45
+ */
46
+ export type RadioButtonSlotsType = keyof typeof RadioButtonSlots;
47
+ /**
48
+ * Estilos del RadioButton
49
+ */
50
+ export type RadioButtonStyles = M4LOverridesStyleRules<RadioButtonSlotsType, typeof RADIO_BUTTON_KEY_COMPONENT, Theme>;
@@ -8,6 +8,7 @@ import { A as ArrowDownStyled, a as AdormentStyled, S as SelectRootStyled, b as
8
8
  import { I as ICON_ARROW_DOWN, S as SELECT_CLASSES, a as SELECT_KEY_COMPONENT } from "./constants.js";
9
9
  import { S as SELECT_DICTIONARY } from "./dictionary.js";
10
10
  import { a as getPropDataTestId } from "../../../test/getNameDataTestId.js";
11
+ import { s as selectStyles } from "./Select.styles.js";
11
12
  import { u as useComponentSize } from "../../../hooks/useComponentSize/useComponentSize.js";
12
13
  import { C as Chip } from "../../Chip/Chip.js";
13
14
  import { S as SelectSlots } from "./slots/SelectEnum.js";
@@ -215,24 +216,7 @@ const Select = forwardRef(
215
216
  horizontal: "left"
216
217
  },
217
218
  sx: {
218
- "& .MuiPaper-root": {
219
- padding: theme.vars.size.baseSpacings.sp1,
220
- maxHeight: "200px",
221
- overflow: "auto",
222
- minWidth: `${(selectRef?.current?.offsetWidth ?? 0) + 1}px!important`,
223
- // +1 para incluir el border del contenedor root.
224
- "& .MuiList-root": {
225
- padding: 0,
226
- display: "grid",
227
- gridTemplateColumns: "auto",
228
- gap: theme.vars.size.baseSpacings.sp1,
229
- width: "fit-content!important",
230
- minWidth: "100%",
231
- "& .MuiMenuItem-root": {
232
- width: "100%"
233
- }
234
- }
235
- }
219
+ ...typeof selectStyles?.menuPaper === "function" ? selectStyles.menuPaper({ theme, selectRef }) : {}
236
220
  }
237
221
  },
238
222
  children: options.length > 0 ? options.map(
@@ -125,7 +125,6 @@ const selectStyles = {
125
125
  * Styles for the render value typography
126
126
  */
127
127
  renderValueTypography: ({ ownerState }) => ({
128
- lineHeight: "inherit!important",
129
128
  cursor: ownerState?.readOnly || ownerState?.disabled ? "default" : "pointer"
130
129
  }),
131
130
  // chip: () => ({
@@ -167,6 +166,39 @@ const selectStyles = {
167
166
  }
168
167
  }
169
168
  },
169
+ /**
170
+ * Styles for the menu paper component
171
+ * @param {object} theme - The theme object
172
+ * @returns {object} The styles for the menu paper component
173
+ */
174
+ menuPaper: ({ theme, selectRef }) => ({
175
+ "&": {
176
+ "& .MuiPaper-root": {
177
+ backgroundColor: theme.vars.palette.background.default,
178
+ marginTop: theme.vars.size.baseSpacings.sp1,
179
+ padding: theme.vars.size.baseSpacings.sp3,
180
+ boxShadow: theme.vars.customShadows.z4,
181
+ maxHeight: "200px",
182
+ overflow: "auto",
183
+ minWidth: `${(selectRef?.current?.offsetWidth ?? 0) + 1}px!important`,
184
+ // +1 para incluir el border del contenedor root.
185
+ "& .MuiList-root": {
186
+ padding: 0,
187
+ display: "grid",
188
+ gridTemplateColumns: "auto",
189
+ gap: theme.vars.size.baseSpacings.sp1,
190
+ width: "fit-content!important",
191
+ minWidth: "100%",
192
+ "& .MuiMenuItem-root": {
193
+ width: "100%"
194
+ }
195
+ }
196
+ }
197
+ // Estilos personalizados para el menú paper
198
+ // El parámetro theme está disponible para uso futuro
199
+ // Ejemplo: backgroundColor: _theme.vars.palette.background.paper,
200
+ }
201
+ }),
170
202
  /**
171
203
  * Estilos del menuItem que no tiene opciones
172
204
  * @param {object} theme - The theme object
@@ -24,8 +24,9 @@ export declare const COMBINATED_TEXTFIELD_ENUMS: {
24
24
  renderValueTypography: SelectSlots.renderValueTypography;
25
25
  labelOption: SelectSlots.labelOption;
26
26
  labelPlaceholer: SelectSlots.labelPlaceholer;
27
+ menuPaper: SelectSlots.menuPaper;
27
28
  };
28
29
  /**
29
30
  * Inventario de clases CSS para el componente Select
30
31
  */
31
- export declare const SELECT_CLASSES: Record<"text" | "menuItem" | "outlined" | "root" | "adorment" | "menuItemNoOptions" | "renderValueContainer" | "arrowDown" | "renderValueTypography" | "labelOption" | "labelPlaceholer" | "skeletonSelect", string>;
32
+ export declare const SELECT_CLASSES: Record<"text" | "menuItem" | "outlined" | "root" | "adorment" | "menuItemNoOptions" | "renderValueContainer" | "arrowDown" | "renderValueTypography" | "labelOption" | "labelPlaceholer" | "menuPaper" | "skeletonSelect", string>;
@@ -8,7 +8,8 @@ export declare enum SelectSlots {
8
8
  arrowDown = "arrowDown",
9
9
  renderValueTypography = "renderValueTypography",
10
10
  labelOption = "labelOption",
11
- labelPlaceholer = "labelPlaceholer"
11
+ labelPlaceholer = "labelPlaceholer",
12
+ menuPaper = "menuPaper"
12
13
  }
13
14
  export declare enum SelectComplementaryClasses {
14
15
  outlined = "outlined",
@@ -9,6 +9,7 @@ var SelectSlots = /* @__PURE__ */ ((SelectSlots2) => {
9
9
  SelectSlots2["renderValueTypography"] = "renderValueTypography";
10
10
  SelectSlots2["labelOption"] = "labelOption";
11
11
  SelectSlots2["labelPlaceholer"] = "labelPlaceholer";
12
+ SelectSlots2["menuPaper"] = "menuPaper";
12
13
  return SelectSlots2;
13
14
  })(SelectSlots || {});
14
15
  var SelectComplementaryClasses = /* @__PURE__ */ ((SelectComplementaryClasses2) => {
@@ -122,7 +122,8 @@ const textFieldStyles = {
122
122
  "body"
123
123
  ),
124
124
  "&::placeholder": {
125
- color: `${theme.vars.palette.text.disabled}`
125
+ color: `${theme.vars.palette.text.disabled}`,
126
+ opacity: 1
126
127
  },
127
128
  "&:focus": {
128
129
  "&::placeholder": {
@@ -23,21 +23,39 @@ const tooltipStyles = {
23
23
  padding: theme.vars.size.baseSpacings.sp2,
24
24
  borderRadius: theme.vars.size.borderRadius.r1,
25
25
  boxShadow: theme.vars.customShadows.z3,
26
- "&.MuiTooltip-tooltipPlacementLeft .MuiTooltip-arrow": {
27
- marginRight: "-0.6em"
26
+ minWidth: theme.vars.size.baseSpacings.sp6,
27
+ minHeight: theme.vars.size.baseSpacings.sp3,
28
+ "&.MuiTooltip-tooltipPlacementRight .MuiTooltip-arrow": {
29
+ left: "-6px"
28
30
  },
29
31
  "&.MuiTooltip-tooltipPlacementTop .MuiTooltip-arrow": {
30
- marginBottom: "-0.6em"
32
+ bottom: "-6px"
33
+ },
34
+ "&.MuiTooltip-tooltipPlacementBottom .MuiTooltip-arrow": {
35
+ top: "-6px"
36
+ },
37
+ "&.MuiTooltip-tooltipPlacementLeft .MuiTooltip-arrow": {
38
+ right: "-6px"
31
39
  },
32
40
  "&&& .MuiTooltip-arrow": {
41
+ transformOrigin: "unset",
33
42
  overflow: "visible",
43
+ zIndex: -1,
44
+ width: "16px",
45
+ height: "16px",
46
+ display: "flex",
47
+ alignItems: "center",
48
+ justifyContent: "center",
49
+ margin: "unset",
34
50
  "&::before": {
51
+ transformOrigin: "unset",
35
52
  backgroundColor: theme.vars.palette.background.contrastDefault,
36
53
  borderRadius: theme.vars.size.borderRadius["r1"],
37
54
  width: theme.vars.size.baseSpacings.sp3,
38
55
  height: theme.vars.size.baseSpacings.sp3,
39
56
  border: "unset",
40
- margin: "unset"
57
+ margin: "unset",
58
+ transform: "rotate(45deg)"
41
59
  }
42
60
  }
43
61
  })
@@ -8,6 +8,7 @@ export { Breadcrumbs } from './Breadcrumbs';
8
8
  export type { TLink } from './Breadcrumbs/types';
9
9
  export * from './Button/Button';
10
10
  export * from './CheckBox';
11
+ export * from './RadioButton';
11
12
  export { CircularProgress } from './CircularProgress';
12
13
  export { Badge } from './Badge';
13
14
  export * from './ImageButton/ImageButton';
package/index.js CHANGED
@@ -1,34 +1,35 @@
1
1
  import { c } from "./components/ToastContainer/helpers/toaster.js";
2
2
  import { A } from "./components/AccountPopover/AccountPopover.js";
3
3
  import { g } from "./components/AccountPopover/dictionary.js";
4
+ import { A as A2 } from "./components/ActionsGroup/ActionsGroup.js";
4
5
  import { I } from "./components/animate/IconButtonAnimate/index.js";
5
6
  import { M } from "./components/animate/MotionContainer/index.js";
6
7
  import { M as M2 } from "./components/animate/MotionLazyContainer/index.js";
7
8
  import { L } from "./components/animate/LoadingScreen/index.js";
8
- import { A as A2 } from "./components/animate/AnimatedScroll/animatedScroll.js";
9
+ import { A as A3 } from "./components/animate/AnimatedScroll/animatedScroll.js";
9
10
  import { v } from "./components/animate/variants/fade.js";
10
11
  import { v as v2 } from "./components/animate/variants/bounce.js";
11
12
  import { v as v3 } from "./components/animate/variants/container.js";
12
13
  import { a, v as v4, b } from "./components/animate/variants/transition.js";
13
- import { A as A3 } from "./components/AppBar/AppBar.js";
14
+ import { A as A4 } from "./components/AppBar/AppBar.js";
14
15
  import { g as g2 } from "./components/AppBar/dictionary.js";
15
- import { A as A4 } from "./components/areas/components/AreasAdmin/AreasAdmin.js";
16
- import { A as A5 } from "./components/areas/components/AreasViewer/AreasViewer.js";
17
- import { a as a2, A as A6 } from "./components/areas/contexts/AreasContext/index.js";
16
+ import { A as A5 } from "./components/areas/components/AreasAdmin/AreasAdmin.js";
17
+ import { A as A6 } from "./components/areas/components/AreasViewer/AreasViewer.js";
18
+ import { a as a2, A as A7 } from "./components/areas/contexts/AreasContext/index.js";
18
19
  import { u } from "./components/areas/hooks/useAreas/index.js";
19
- import { A as A7, a as a3, L as L2, b as b2, g as g3 } from "./components/areas/dictionary.js";
20
+ import { A as A8, a as a3, L as L2, b as b2, g as g3 } from "./components/areas/dictionary.js";
20
21
  import { B } from "./components/BaseModule/BaseModule.js";
21
22
  import { C } from "./components/Card/Card.js";
22
23
  import { C as C2 } from "./components/Chip/Chip.js";
23
- import { A as A8 } from "./components/commercial/AppBarCommercial/index.js";
24
+ import { A as A9 } from "./components/commercial/AppBarCommercial/index.js";
24
25
  import { H } from "./components/commercial/HamburgerMenu/HamburgerMenu.js";
25
26
  import { T } from "./components/commercial/TopBar/TopBar.js";
26
27
  import { S } from "./components/commercial/SectionCommercial/index.js";
27
- import { A as A9 } from "./components/CommonActions/components/ActionsContainer/ActionsContainer.js";
28
- import { A as A10 } from "./components/CommonActions/components/ActionCancel/ActionCancel.js";
29
- import { A as A11 } from "./components/CommonActions/components/ActionIntro/ActionIntro.js";
30
- import { A as A12 } from "./components/CommonActions/components/ActionFormCancel/ActionFormCancel.js";
31
- import { A as A13 } from "./components/CommonActions/components/ActionFormIntro/ActionFormIntro.js";
28
+ import { A as A10 } from "./components/CommonActions/components/ActionsContainer/ActionsContainer.js";
29
+ import { A as A11 } from "./components/CommonActions/components/ActionCancel/ActionCancel.js";
30
+ import { A as A12 } from "./components/CommonActions/components/ActionIntro/ActionIntro.js";
31
+ import { A as A13 } from "./components/CommonActions/components/ActionFormCancel/ActionFormCancel.js";
32
+ import { A as A14 } from "./components/CommonActions/components/ActionFormIntro/ActionFormIntro.js";
32
33
  import { D, d, g as g4 } from "./components/CommonActions/dictionary.js";
33
34
  import { C as C3 } from "./components/ContainerFlow/ContainerFlow.js";
34
35
  import { D as D2 } from "./components/DataGrid/DataGrid.js";
@@ -82,7 +83,7 @@ import { P } from "./components/extended/React-Spinners/PropagateLoaderSpinner/P
82
83
  import { F } from "./components/extended/React-Window/FixedSizeList/FixedSizeList.js";
83
84
  import { V } from "./components/extended/React-Window/VariableSizeList/VariableSizeList.js";
84
85
  import { R as R3 } from "./components/extended/React-Json-Viewer/ReactJsonViewer.js";
85
- import { A as A14 } from "./components/mui_extended/Avatar/Avatar.js";
86
+ import { A as A15 } from "./components/mui_extended/Avatar/Avatar.js";
86
87
  import { B as B2 } from "./components/mui_extended/BoxIcon/index.js";
87
88
  import { B as B3 } from "./components/mui_extended/Breadcrumbs/index.js";
88
89
  import { C as C18 } from "./components/mui_extended/CircularProgress/CircularProgress.js";
@@ -91,11 +92,12 @@ import { L as L3 } from "./components/mui_extended/LinearProgress/index.js";
91
92
  import { L as L4 } from "./components/mui_extended/LinkWithRoute/index.js";
92
93
  import { L as L5 } from "./components/mui_extended/LoadingButton/LoadingButton.js";
93
94
  import { g as g11 } from "./components/Pager/dicctionary.js";
94
- import { A as A15 } from "./components/mui_extended/Accordion/Accordion.js";
95
+ import { A as A16 } from "./components/mui_extended/Accordion/Accordion.js";
95
96
  import { T as T3 } from "./components/mui_extended/Tooltip/Tooltip.js";
96
97
  import { I as I2 } from "./components/mui_extended/IconButton/IconButton.js";
97
98
  import { B as B5 } from "./components/mui_extended/Button/Button.js";
98
99
  import { C as C19 } from "./components/mui_extended/CheckBox/CheckBox.js";
100
+ import { R as R4 } from "./components/mui_extended/RadioButton/RadioButton.js";
99
101
  import { I as I3 } from "./components/mui_extended/ImageButton/ImageButton.js";
100
102
  import { P as P2 } from "./components/mui_extended/Popover/Popover.js";
101
103
  import { S as S4 } from "./components/mui_extended/Select/Select.js";
@@ -136,37 +138,38 @@ import { u as u17 } from "./components/formatters/DistanceToNowFormatter/hooks/u
136
138
  import { g as g18 } from "./components/formatters/dictionary.js";
137
139
  import { F as F2 } from "./components/FormContainer/FormContainer.js";
138
140
  import { G } from "./components/GridLayout/GridLayout.js";
139
- import { R as R4 } from "./components/GridLayout/subcomponents/Responsive/index.js";
141
+ import { R as R5 } from "./components/GridLayout/subcomponents/Responsive/index.js";
140
142
  import { c as c2, e, d as d3 } from "./components/GridLayout/subcomponents/Responsive/responsiveUtils.js";
141
143
  import { i, k } from "./components/GridLayout/utils.js";
142
144
  import { w } from "./components/GridLayout/subcomponents/withSizeProvider/index.js";
143
145
  import { H as H2 } from "./components/HelmetPage/index.js";
144
146
  import { H as H3 } from "./components/HelperError/HelperError.js";
145
- import { R as R5 } from "./components/hook-form/RHFAutocomplete/RHFAutocomplete.js";
147
+ import { R as R6 } from "./components/hook-form/RHFAutocomplete/RHFAutocomplete.js";
146
148
  import { g as g19 } from "./components/hook-form/RHFAutocomplete/dictionary.js";
147
- import { R as R6 } from "./components/hook-form/RHFAutocompleteAsync/RHFAutocompleteAsync.js";
149
+ import { R as R7 } from "./components/hook-form/RHFAutocompleteAsync/RHFAutocompleteAsync.js";
148
150
  import { g as g20 } from "./components/hook-form/RHFAutocompleteAsync/dictionary.js";
149
- import { R as R7 } from "./components/hook-form/RHFDateTime/RHFDateTime.js";
150
- import { R as R8 } from "./components/hook-form/RHFMultiCheckbox/index.js";
151
- import { R as R9 } from "./components/hook-form/RHFSelect/RHFSelect.js";
152
- import { R as R10 } from "./components/hook-form/RHFHelperError/index.js";
153
- import { R as R11 } from "./components/hook-form/RHFRadioGroup/RHFRadioGroup.js";
154
- import { R as R12 } from "./components/hook-form/RHFUpload/RHFUploadSingleFile/RHFUploadSingleFile.js";
155
- import { R as R13 } from "./components/hook-form/RHFColorPicker/RFHColorPicker.js";
156
- import { R as R14 } from "./components/hook-form/RHFCheckbox/RHFCheckbox.js";
157
- import { R as R15 } from "./components/hook-form/RHFTextField/RHFTextField.js";
158
- import { R as R16 } from "./components/hook-form/RHFTextFieldPassword/RHFTextFieldPassword.js";
151
+ import { R as R8 } from "./components/hook-form/RHFDateTime/RHFDateTime.js";
152
+ import { R as R9 } from "./components/hook-form/RHFMultiCheckbox/index.js";
153
+ import { R as R10 } from "./components/hook-form/RHFSelect/RHFSelect.js";
154
+ import { R as R11 } from "./components/hook-form/RHFHelperError/index.js";
155
+ import { R as R12 } from "./components/hook-form/RHFRadioGroup/RHFRadioGroup.js";
156
+ import { R as R13 } from "./components/hook-form/RHFUpload/RHFUploadSingleFile/RHFUploadSingleFile.js";
157
+ import { R as R14 } from "./components/hook-form/RHFColorPicker/RFHColorPicker.js";
158
+ import { R as R15 } from "./components/hook-form/RHFCheckbox/RHFCheckbox.js";
159
+ import { R as R16 } from "./components/hook-form/RHFTextField/RHFTextField.js";
160
+ import { R as R17 } from "./components/hook-form/RHFTextFieldPassword/RHFTextFieldPassword.js";
159
161
  import { g as g21 } from "./components/hook-form/RHFPeriod/subcomponents/Period/dictionary.js";
160
162
  import { r } from "./components/hook-form/RHFPeriod/RHFPeriod.styles.js";
161
- import { R as R17 } from "./components/hook-form/RHFPeriod/RHFPeriod.js";
162
- import { R as R18 } from "./components/hook-form/RHFPeriod/constants.js";
163
- import { R as R19 } from "./components/hook-form/RHFPeriod/slots/RHFPeriodEnum.js";
164
- import { N as N3, P as P6, R as R20, S as S7 } from "./components/hook-form/RHFPeriod/slots/RHFPeriodSlots.js";
165
- import { R as R21 } from "./components/hook-form/RHFNumberInput/RHFNumberInput.js";
166
- import { R as R22 } from "./components/hook-form/RHFUpload/RHFUploadImage/RHFUploadImage.js";
163
+ import { R as R18 } from "./components/hook-form/RHFPeriod/RHFPeriod.js";
164
+ import { R as R19 } from "./components/hook-form/RHFPeriod/constants.js";
165
+ import { R as R20 } from "./components/hook-form/RHFPeriod/slots/RHFPeriodEnum.js";
166
+ import { N as N3, P as P6, R as R21, S as S7 } from "./components/hook-form/RHFPeriod/slots/RHFPeriodSlots.js";
167
+ import { R as R22 } from "./components/hook-form/RHFNumberInput/RHFNumberInput.js";
168
+ import { R as R23 } from "./components/hook-form/RHFUpload/RHFUploadImage/RHFUploadImage.js";
167
169
  import { V as V2, b as b4, a as a9 } from "./components/hook-form/RHFormProvider/types.js";
168
- import { F as F3, R as R23, u as u18 } from "./components/hook-form/RHFormProvider/RHFormProvider.js";
170
+ import { F as F3, R as R24, u as u18 } from "./components/hook-form/RHFormProvider/RHFormProvider.js";
169
171
  import { d as d4, a as a10, b as b5, c as c3 } from "./components/hook-form/RHFormProvider/schema.js";
172
+ import { R as R25 } from "./components/hook-form/RHFActionsGroup/RHFActionsGroup.js";
170
173
  import { I as I5 } from "./components/Icon/Icon.js";
171
174
  import { I as I6 } from "./components/Image/Image.js";
172
175
  import { L as L6 } from "./components/Label/Label.js";
@@ -227,7 +230,7 @@ import { e as e2 } from "./components/Stepper/helpers/evaluateVisibilityStepCond
227
230
  import { g as g30 } from "./components/Stepper/dictionary.js";
228
231
  import { g as g31 } from "./components/hook-form/RHFormProvider/dictionary.js";
229
232
  import { u as u23 } from "./contexts/AppearanceComponentContext/useAppearanceComponentStore.js";
230
- import { A as A16 } from "./contexts/AppearanceComponentContext/AppearanceComponentContext.js";
233
+ import { A as A17 } from "./contexts/AppearanceComponentContext/AppearanceComponentContext.js";
231
234
  import { a as a17, M as M10 } from "./contexts/ModalContext/index.js";
232
235
  import { u as u24 } from "./hooks/useFormAddEdit/useFormAddEdit.js";
233
236
  import { u as u25 } from "./hooks/useModal/index.js";
@@ -261,24 +264,25 @@ import { g as g40 } from "./utils/getNullGuard.js";
261
264
  import { c as c6, d as d5 } from "./utils/deepShallow.js";
262
265
  import { g as g41 } from "./helpers/getStepsAndValidationSchema/getStepsAndValidationSchema.js";
263
266
  export {
264
- A7 as AREAS_DICCTIONARY,
267
+ A8 as AREAS_DICCTIONARY,
265
268
  a3 as AREAS_DICTIONARY_ID,
266
- A15 as Accordion,
269
+ A16 as Accordion,
267
270
  A as AccountPopover,
268
- A10 as ActionCancel,
269
- A12 as ActionFormCancel,
270
- A13 as ActionFormIntro,
271
- A11 as ActionIntro,
272
- A9 as ActionsContainer,
273
- A2 as AnimatedScroll,
274
- A3 as AppBar,
275
- A8 as AppBarComercial,
276
- A16 as AppearanceComponentProvider,
277
- A4 as AreasAdmin,
271
+ A11 as ActionCancel,
272
+ A13 as ActionFormCancel,
273
+ A14 as ActionFormIntro,
274
+ A12 as ActionIntro,
275
+ A10 as ActionsContainer,
276
+ A2 as ActionsGroup,
277
+ A3 as AnimatedScroll,
278
+ A4 as AppBar,
279
+ A9 as AppBarComercial,
280
+ A17 as AppearanceComponentProvider,
281
+ A5 as AreasAdmin,
278
282
  a2 as AreasContext,
279
- A6 as AreasProvider,
280
- A5 as AreasViewer,
281
- A14 as Avatar,
283
+ A7 as AreasProvider,
284
+ A6 as AreasViewer,
285
+ A15 as Avatar,
282
286
  B4 as Badge,
283
287
  B as BaseModule,
284
288
  B6 as BooleanFormatter,
@@ -378,29 +382,31 @@ export {
378
382
  P11 as PrintingSystem,
379
383
  P as PropagateLoaderSpinner,
380
384
  P12 as PropertyValue,
381
- R5 as RHFAutocomplete,
382
- R6 as RHFAutocompleteAsync,
383
- R14 as RHFCheckbox,
384
- R13 as RHFColorPicker,
385
- R7 as RHFDateTime,
386
- R10 as RHFHelperError,
387
- R8 as RHFMultiCheckbox,
388
- R21 as RHFNumberInput,
389
- R17 as RHFPeriod,
390
- R20 as RHFPeriodRootStyled,
391
- R19 as RHFPeriodSlots,
392
- R11 as RHFRadioGroup,
393
- R9 as RHFSelect,
394
- R15 as RHFTextField,
395
- R16 as RHFTextFieldPassword,
396
- R22 as RHFUploadImage,
397
- R12 as RHFUploadSingleFile,
398
- R18 as RHF_PERIOD_KEY_COMPONENT,
399
- R23 as RHFormProvider,
385
+ R25 as RHFActionsGroup,
386
+ R6 as RHFAutocomplete,
387
+ R7 as RHFAutocompleteAsync,
388
+ R15 as RHFCheckbox,
389
+ R14 as RHFColorPicker,
390
+ R8 as RHFDateTime,
391
+ R11 as RHFHelperError,
392
+ R9 as RHFMultiCheckbox,
393
+ R22 as RHFNumberInput,
394
+ R18 as RHFPeriod,
395
+ R21 as RHFPeriodRootStyled,
396
+ R20 as RHFPeriodSlots,
397
+ R12 as RHFRadioGroup,
398
+ R10 as RHFSelect,
399
+ R16 as RHFTextField,
400
+ R17 as RHFTextFieldPassword,
401
+ R23 as RHFUploadImage,
402
+ R13 as RHFUploadSingleFile,
403
+ R19 as RHF_PERIOD_KEY_COMPONENT,
404
+ R24 as RHFormProvider,
405
+ R4 as RadioButton,
400
406
  R3 as ReactJsonViewer,
401
407
  R as Resizable,
402
408
  R2 as ResizableBox,
403
- R4 as Responsive,
409
+ R5 as Responsive,
404
410
  S21 as SKELETON_SVG_ICON,
405
411
  S8 as ScrollBar,
406
412
  S as SectionCommercial,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m4l/components",
3
- "version": "9.3.35-BE20251128-beta.1",
3
+ "version": "9.3.35-BE20251129-beta.1",
4
4
  "license": "UNLICENSED",
5
5
  "description": "M4L Components",
6
6
  "lint-staged": {
@@ -11,8 +11,8 @@
11
11
  "@googlemaps/js-api-loader": "^1.16.6",
12
12
  "@hookform/resolvers": "2.9.11",
13
13
  "@m4l/core": "^2.0.0",
14
- "@m4l/graphics": "7.2.1-BE20251128-beta.1",
15
- "@m4l/styles": "7.1.36-BE20251128-beta.1",
14
+ "@m4l/graphics": "7.2.1-BE20251129-beta.1",
15
+ "@m4l/styles": "7.1.36-BE20251129-beta.1",
16
16
  "@mui/lab": "5.0.0-alpha.173",
17
17
  "@mui/material": "5.16.7",
18
18
  "@mui/x-date-pickers": "6.20.2",