@m4l/components 9.2.62-B10072025beta.2 → 9.2.62-B11072025beta.2

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 (129) hide show
  1. package/components/AppBar/AppBar.js +12 -10
  2. package/components/AppBar/constants.d.ts +1 -1
  3. package/components/AppBar/constants.js +1 -1
  4. package/components/AppBar/slots/AppBarEnum.d.ts +1 -5
  5. package/components/AppBar/slots/AppBarEnum.js +0 -4
  6. package/components/AppBar/slots/AppBarSlots.d.ts +4 -18
  7. package/components/AppBar/slots/AppBarSlots.js +3 -27
  8. package/components/AppBar/styles.js +0 -42
  9. package/components/AppBar/types.d.ts +8 -0
  10. package/components/Chip/ChipStyles.js +1 -1
  11. package/components/DataGrid/Datagrid.styles.js +21 -10
  12. package/components/DataGrid/formatters/ColumnIconFormatter/formatter.d.ts +2 -1
  13. package/components/DataGrid/formatters/ColumnIconFormatter/formatter.js +6 -42
  14. package/components/DataGrid/formatters/ColumnIconFormatter/helpers/renderIcon.d.ts +8 -0
  15. package/components/DataGrid/formatters/ColumnIconFormatter/helpers/renderIcon.js +58 -0
  16. package/components/DataGrid/formatters/ColumnIconFormatter/helpers/renderMultipleIcons.d.ts +7 -0
  17. package/components/DataGrid/formatters/ColumnIconFormatter/helpers/renderMultipleIcons.js +19 -0
  18. package/components/DataGrid/formatters/ColumnIconFormatter/types.d.ts +10 -3
  19. package/components/DataGrid/formatters/ColumnIconFormatter/useColumnIcon.d.ts +2 -2
  20. package/components/DataGrid/slots/DataGridEnum.d.ts +3 -0
  21. package/components/DataGrid/slots/DataGridEnum.js +6 -1
  22. package/components/DataGrid/slots/DataGridSlot.d.ts +6 -0
  23. package/components/DataGrid/slots/DataGridSlot.js +24 -19
  24. package/components/DataGrid/subcomponents/ControlNavigate/ControlNavigate.js +1 -1
  25. package/components/DataGrid/subcomponents/HeaderActions/index.js +1 -1
  26. package/components/DataGrid/subcomponents/HeaderActions/subcomponents/Density/index.js +2 -1
  27. package/components/DataGrid/subcomponents/HeaderActions/subcomponents/RowsCount/index.js +1 -1
  28. package/components/DataGrid/subcomponents/HeaderActions/subcomponents/Settings/subcomponents/ColumnsConfig/index.js +1 -1
  29. package/components/DataGrid/subcomponents/HeaderActions/subcomponents/hooks/useModalSettings/index.js +1 -1
  30. package/components/DataGrid/subcomponents/Table/hooks/useHeaderMenuActions.js +2 -1
  31. package/components/DataGrid/subcomponents/Table/index.js +1 -1
  32. package/components/DataGrid/subcomponents/Table/subcomponents/DraggableHeaderRenderer.js +14 -2
  33. package/components/DataGrid/subcomponents/Table/subcomponents/HeaderRenderClick/HeaderRenderClick.js +1 -1
  34. package/components/DataGrid/subcomponents/editors/TextEditor/index.js +1 -1
  35. package/components/DataGrid/types.d.ts +3 -2
  36. package/components/LoadingError/slots/LoadingErrorSlots.js +1 -1
  37. package/components/ObjectLogs/ObjectLogs.styles.js +2 -1
  38. package/components/ObjectLogs/slots/ObjectLogsEnum.d.ts +1 -0
  39. package/components/ObjectLogs/slots/ObjectLogsEnum.js +1 -0
  40. package/components/ObjectLogs/slots/ObjectLogsSlots.d.ts +3 -0
  41. package/components/ObjectLogs/slots/ObjectLogsSlots.js +7 -2
  42. package/components/PropertyValue/PropertyValue.styles.js +1 -1
  43. package/components/SideBar/SideBar.js +6 -2
  44. package/components/SideBar/constants.d.ts +8 -6
  45. package/components/SideBar/constants.js +8 -8
  46. package/components/SideBar/context/sideBarContext/index.js +9 -10
  47. package/components/SideBar/context/sideBarContext/types.d.ts +2 -10
  48. package/components/SideBar/slots/SideBarEnum.d.ts +8 -7
  49. package/components/SideBar/slots/SideBarEnum.js +6 -5
  50. package/components/SideBar/slots/SideBarSlots.d.ts +12 -9
  51. package/components/SideBar/slots/SideBarSlots.js +36 -28
  52. package/components/SideBar/styles.js +3 -3
  53. package/components/SideBar/subcomponents/ContentComponent/index.js +12 -68
  54. package/components/SideBar/subcomponents/ContentComponent/style.js +134 -107
  55. package/components/SideBar/subcomponents/{Promotion → FooterComponent}/index.d.ts +1 -1
  56. package/components/SideBar/subcomponents/{Promotion → FooterComponent}/index.js +4 -4
  57. package/components/SideBar/subcomponents/{Promotion → FooterComponent}/styles.js +8 -2
  58. package/components/SideBar/subcomponents/HeaderComponent/HeaderComponent.d.ts +5 -0
  59. package/components/SideBar/subcomponents/HeaderComponent/HeaderComponent.js +37 -0
  60. package/components/SideBar/subcomponents/HeaderComponent/index.d.ts +1 -0
  61. package/components/SideBar/subcomponents/HeaderComponent/index.js +1 -0
  62. package/components/SideBar/subcomponents/HeaderComponent/styles.d.ts +2 -0
  63. package/components/SideBar/subcomponents/HeaderComponent/styles.js +40 -0
  64. package/components/SideBar/subcomponents/SideBarDesktop/index.js +4 -3
  65. package/components/SideBar/subcomponents/SideBarDesktop/styles.js +4 -32
  66. package/components/SideBar/subcomponents/SideBarMobile/index.js +1 -1
  67. package/components/SideBar/subcomponents/TreeGroupItems/index.js +4 -3
  68. package/components/SideBar/subcomponents/TreeGroupItems/styles.js +112 -2
  69. package/components/SideBar/subcomponents/TreeGroupItems/subcomponents/AdormentIcon/AdormentIcon.d.ts +7 -0
  70. package/components/SideBar/subcomponents/TreeGroupItems/subcomponents/AdormentIcon/AdormentIcon.js +12 -0
  71. package/components/SideBar/subcomponents/TreeGroupItems/subcomponents/AdormentIcon/types.d.ts +4 -0
  72. package/components/SideBar/subcomponents/TreeGroupItems/subcomponents/NodeMenuItem/index.js +9 -7
  73. package/components/SideBar/subcomponents/TreeGroupItems/subcomponents/NodeMenuItem/types.d.ts +1 -0
  74. package/components/SideBar/subcomponents/TreeGroupItems/subcomponents/NodeMenuItemMain/NodeMenuItemMain.js +11 -6
  75. package/components/SideBar/types.d.ts +12 -7
  76. package/components/commercial/HamburgerMenu/HamburgerMenu.js +1 -2
  77. package/components/formatters/BooleanFormatter/BooleanFormatter.js +7 -4
  78. package/components/formatters/BooleanFormatter/BooleanFormatter.styles.js +9 -1
  79. package/components/formatters/BooleanFormatter/slots/BooleanFormatterEnum.d.ts +2 -1
  80. package/components/formatters/BooleanFormatter/slots/BooleanFormatterEnum.js +1 -0
  81. package/components/formatters/BooleanFormatter/slots/BooleanFormatterSlots.d.ts +3 -0
  82. package/components/formatters/BooleanFormatter/slots/BooleanFormatterSlots.js +6 -1
  83. package/components/formatters/BooleanFormatter/types.d.ts +1 -1
  84. package/components/hook-form/RHFColorPicker/RHFColorPicker.styles.js +1 -2
  85. package/components/hook-form/RHFDateTime/RHFDateTime.styles.js +1 -2
  86. package/components/hook-form/RHFDateTime/styles.d.ts +1 -0
  87. package/components/hook-form/RHFNumberInput/RHFNumberInput.styles.js +1 -2
  88. package/components/hook-form/RHFPeriod/RHFPeriod.styles.js +5 -2
  89. package/components/hook-form/RHFPeriod/slots/RHFPeriodEnum.d.ts +1 -1
  90. package/components/hook-form/RHFPeriod/slots/RHFPeriodEnum.js +1 -1
  91. package/components/hook-form/RHFPeriod/slots/RHFPeriodSlots.d.ts +1 -1
  92. package/components/hook-form/RHFPeriod/slots/RHFPeriodSlots.js +6 -6
  93. package/components/hook-form/RHFPeriod/subcomponents/Period/Period.js +7 -8
  94. package/components/hook-form/RHFPeriod/subcomponents/Period/dictionary.js +5 -4
  95. package/components/hook-form/RHFPeriod/subcomponents/Period/types.d.ts +2 -2
  96. package/components/hook-form/RHFSelect/RHFSelect.styles.js +1 -2
  97. package/components/mui_extended/MenuItem/MenuItem.js +1 -1
  98. package/components/mui_extended/TabContent/TabContent.js +2 -2
  99. package/components/mui_extended/TabContent/TabContent.styles.js +1 -1
  100. package/components/mui_extended/TabContent/types.d.ts +1 -1
  101. package/hooks/useDynamicFilterAndSort/useDynamicFilterAndSort.js +1 -1
  102. package/index.js +8 -8
  103. package/package.json +3 -3
  104. package/storybook/components/DataGrid/DataGrid.stories.d.ts +8 -0
  105. package/storybook/components/DataGrid/helpers/icons.d.ts +6 -0
  106. package/storybook/components/DataGrid/helpers/types.d.ts +12 -0
  107. package/storybook/components/DataGrid/helpers/useColumns.d.ts +2 -1
  108. package/storybook/components/DataGrid/helpers/useSeed.d.ts +1 -1
  109. package/storybook/components/SideBar/SideBar.stories.d.ts +5 -11
  110. package/storybook/components/SideBar/subcomponents/FooterComponentHost/FooterComponentHost.d.ts +4 -0
  111. package/storybook/components/SideBar/subcomponents/FooterComponentHost/index.d.ts +1 -0
  112. package/storybook/components/SideBar/subcomponents/FooterComponentMicrofrontend/FooterComponentMicrofrontend.d.ts +4 -0
  113. package/storybook/components/SideBar/subcomponents/FooterComponentMicrofrontend/FooterComponentMicrofrontend.stories.d.ts +14 -0
  114. package/storybook/components/SideBar/subcomponents/FooterComponentMicrofrontend/constants.d.ts +1 -0
  115. package/storybook/components/SideBar/subcomponents/FooterComponentMicrofrontend/index.d.ts +1 -0
  116. package/storybook/components/SideBar/subcomponents/HeaderComponentHost/HeaderComponentHost.d.ts +5 -0
  117. package/storybook/components/SideBar/subcomponents/HeaderComponentHost/constants.d.ts +1 -0
  118. package/storybook/components/SideBar/subcomponents/HeaderComponentMicrofrontend/HeaderComponentMicrofrontend.d.ts +5 -0
  119. package/storybook/components/SideBar/subcomponents/HeaderComponentMicrofrontend/constants.d.ts +1 -0
  120. package/utils/getSizeStyles/getSizeStyles.d.ts +1 -1
  121. package/components/SideBar/subcomponents/HeaderSidebar/index.d.ts +0 -6
  122. package/components/SideBar/subcomponents/HeaderSidebar/styles.d.ts +0 -2
  123. package/components/SideBar/subcomponents/HeaderSidebar/styles.js +0 -24
  124. package/components/SideBar/subcomponents/HeaderSidebar/types.d.ts +0 -5
  125. package/storybook/components/SideBar/subcomponents/FooterPromotion/FooterPromotion.d.ts +0 -4
  126. package/storybook/components/SideBar/subcomponents/FooterPromotion/index.d.ts +0 -1
  127. /package/components/SideBar/subcomponents/{Promotion → FooterComponent}/styles.d.ts +0 -0
  128. /package/components/SideBar/subcomponents/{Promotion → FooterComponent}/types.d.ts +0 -0
  129. /package/storybook/components/SideBar/subcomponents/{FooterPromotion → FooterComponentHost}/constants.d.ts +0 -0
@@ -8,7 +8,7 @@ import { Theme } from '@mui/material';
8
8
  * - `'string_true_false'`: Displays "True" for `true` and "False" for `false`.
9
9
  * - `'check'`: Displays an icon to represent the boolean value.
10
10
  */
11
- export type PresentationType = 'string_yes_no' | 'string_true_false' | 'check' | 'chip_active_inactive';
11
+ export type PresentationType = 'string_yes_no' | 'string_true_false' | 'check' | 'chip_active_inactive' | 'chip_yes_no';
12
12
  /**
13
13
  * Maps to the keys in `BooleanFormatterSlots`, defining slot-specific styling or customization.
14
14
  */
@@ -6,8 +6,7 @@ const rhfcolorPickerStyles = {
6
6
  root: ({ theme }) => ({
7
7
  display: "flex",
8
8
  flexDirection: "column",
9
- gap: theme.vars.size.baseSpacings["sp0-5"],
10
- width: "100%"
9
+ gap: theme.vars.size.baseSpacings["sp0-5"]
11
10
  })
12
11
  };
13
12
  export {
@@ -5,8 +5,7 @@ const rhfDateTimeStyles = {
5
5
  root: ({ theme }) => ({
6
6
  display: "flex",
7
7
  flexDirection: "column",
8
- gap: theme.vars.size.baseSpacings["sp0-5"],
9
- width: "100%"
8
+ gap: theme.vars.size.baseSpacings["sp0-5"]
10
9
  })
11
10
  };
12
11
  export {
@@ -0,0 +1 @@
1
+ export declare const RHFDateTimeRoot: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -8,8 +8,7 @@ const rhfNumberInputStyles = {
8
8
  root: ({ theme }) => ({
9
9
  display: "flex",
10
10
  flexDirection: "column",
11
- gap: theme.vars.size.baseSpacings.sp1,
12
- width: "100%"
11
+ gap: theme.vars.size.baseSpacings.sp1
13
12
  })
14
13
  };
15
14
  export {
@@ -23,8 +23,11 @@ const rhfPeriodStyles = {
23
23
  /**
24
24
  * textField class
25
25
  */
26
- numberInput: () => ({
27
- width: "43px !important"
26
+ textField: ({ theme }) => ({
27
+ borderRadius: "50px",
28
+ width: "43px !important",
29
+ border: theme.vars.palette.border.default,
30
+ color: theme.vars.palette.text.disabled
28
31
  }),
29
32
  /**
30
33
  * select class
@@ -1,6 +1,6 @@
1
1
  export declare enum RHFPeriodSlots {
2
2
  root = "root",
3
3
  periodRoot = "periodRoot",
4
- numberInput = "numberInput",
4
+ textField = "textField",
5
5
  select = "select"
6
6
  }
@@ -1,7 +1,7 @@
1
1
  var RHFPeriodSlots = /* @__PURE__ */ ((RHFPeriodSlots2) => {
2
2
  RHFPeriodSlots2["root"] = "root";
3
3
  RHFPeriodSlots2["periodRoot"] = "periodRoot";
4
- RHFPeriodSlots2["numberInput"] = "numberInput";
4
+ RHFPeriodSlots2["textField"] = "textField";
5
5
  RHFPeriodSlots2["select"] = "select";
6
6
  return RHFPeriodSlots2;
7
7
  })(RHFPeriodSlots || {});
@@ -1,4 +1,4 @@
1
1
  export declare const RHFPeriodRootStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
2
2
  export declare const PeriodRootStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
3
- export declare const NumberInputStyled: import('@emotion/styled').StyledComponent<Pick<import('../../../NumberInput/types').NumberInputProps & import('react').RefAttributes<HTMLDivElement>, keyof import('react').RefAttributes<HTMLDivElement> | keyof import('../../../NumberInput/types').NumberInputProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown>, {}, {}>;
3
+ export declare const TextFieldStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../../mui_extended/TextField/types').TextFieldProps, "ref"> & import('react').RefAttributes<HTMLDivElement>, "value" | "size" | "children" | "title" | "component" | "name" | "error" | "select" | "rows" | "id" | "type" | "disabled" | "hidden" | "content" | "style" | "variant" | "margin" | "translate" | "className" | "classes" | "sx" | "label" | "slot" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "dataTestId" | "autoComplete" | "placeholder" | "required" | keyof import('react').RefAttributes<HTMLDivElement> | "maxRows" | "fullWidth" | "inputProps" | "inputRef" | "focused" | "hiddenLabel" | "InputProps" | "FormHelperTextProps" | "helperText" | "InputLabelProps" | "multiline" | "minRows" | "SelectProps"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown>, {}, {}>;
4
4
  export declare const SelectStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../../mui_extended/Select').SelectProps<string | number, boolean | undefined>, "ref"> & import('react').RefAttributes<HTMLDivElement>, "value" | "size" | "children" | "onClose" | "title" | "name" | "error" | "input" | "options" | "rows" | "id" | "type" | "disabled" | "components" | "hidden" | "content" | "style" | "open" | "multiple" | "variant" | "margin" | "translate" | "className" | "classes" | "sx" | "slots" | "slotProps" | "label" | "slot" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "componentsProps" | "onOpen" | "dataTestId" | "autoComplete" | "placeholder" | "readOnly" | "required" | keyof import('react').RefAttributes<HTMLDivElement> | "maxRows" | "fullWidth" | "inputProps" | "inputRef" | "multiline" | "minRows" | "disableInjectingGlobalStyles" | "endAdornment" | "inputComponent" | "renderSuffix" | "startAdornment" | "disableUnderline" | "autoWidth" | "defaultOpen" | "displayEmpty" | "IconComponent" | "labelId" | "MenuProps" | "native" | "renderValue" | "SelectDisplayProps"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown>, {}, {}>;
@@ -2,7 +2,7 @@ import { styled } from "@mui/material/styles";
2
2
  import { R as RHF_PERIOD_KEY_COMPONENT } from "../constants.js";
3
3
  import { r as rhfPeriodStyles } from "../RHFPeriod.styles.js";
4
4
  import { R as RHFPeriodSlots } from "./RHFPeriodEnum.js";
5
- import { N as NumberInput } from "../../../NumberInput/NumberInput.js";
5
+ import { T as TextField } from "../../../mui_extended/TextField/TextField.js";
6
6
  import { S as Select } from "../../../mui_extended/Select/Select.js";
7
7
  const RHFPeriodRootStyled = styled("div", {
8
8
  name: RHF_PERIOD_KEY_COMPONENT,
@@ -12,17 +12,17 @@ const PeriodRootStyled = styled("div", {
12
12
  name: RHF_PERIOD_KEY_COMPONENT,
13
13
  slot: RHFPeriodSlots.periodRoot
14
14
  })(rhfPeriodStyles?.periodRoot);
15
- const NumberInputStyled = styled(NumberInput, {
15
+ const TextFieldStyled = styled(TextField, {
16
16
  name: RHF_PERIOD_KEY_COMPONENT,
17
- slot: RHFPeriodSlots.numberInput
18
- })(rhfPeriodStyles?.numberInput);
17
+ slot: RHFPeriodSlots.textField
18
+ })(rhfPeriodStyles?.textField);
19
19
  const SelectStyled = styled(Select, {
20
20
  name: RHF_PERIOD_KEY_COMPONENT,
21
21
  slot: RHFPeriodSlots.select
22
22
  })(rhfPeriodStyles?.select);
23
23
  export {
24
- NumberInputStyled as N,
25
24
  PeriodRootStyled as P,
26
25
  RHFPeriodRootStyled as R,
27
- SelectStyled as S
26
+ SelectStyled as S,
27
+ TextFieldStyled as T
28
28
  };
@@ -4,7 +4,7 @@ import { E as ETimePeriods } from "./types.js";
4
4
  import { d as dictionary } from "./dictionary.js";
5
5
  import { useMemo } from "react";
6
6
  import { u as useComponentSize } from "../../../../../hooks/useComponentSize/useComponentSize.js";
7
- import { P as PeriodRootStyled, S as SelectStyled, N as NumberInputStyled } from "../../slots/RHFPeriodSlots.js";
7
+ import { P as PeriodRootStyled, S as SelectStyled, T as TextFieldStyled } from "../../slots/RHFPeriodSlots.js";
8
8
  import { I as Icon } from "../../../../Icon/Icon.js";
9
9
  const Period = (props) => {
10
10
  const {
@@ -27,7 +27,7 @@ const Period = (props) => {
27
27
  );
28
28
  const getSingleValue = (period) => {
29
29
  if (!period) {
30
- return null;
30
+ return "";
31
31
  }
32
32
  if (period.singleValue !== void 0) {
33
33
  return period.singleValue;
@@ -41,7 +41,7 @@ const Period = (props) => {
41
41
  if (period.days && period.days > 0) {
42
42
  return period.days;
43
43
  }
44
- return null;
44
+ return "";
45
45
  };
46
46
  const getSelPeriodTime = (period) => {
47
47
  if (!period) {
@@ -68,7 +68,7 @@ const Period = (props) => {
68
68
  selPeriodTime: newPeriodTime,
69
69
  singleValue: newValue
70
70
  };
71
- if (newValue && newValue > 0) {
71
+ if (newValue !== "" && newValue > 0) {
72
72
  newPeriod.years = 0;
73
73
  newPeriod.months = 0;
74
74
  newPeriod.days = 0;
@@ -117,14 +117,13 @@ const Period = (props) => {
117
117
  }
118
118
  ),
119
119
  /* @__PURE__ */ jsx(
120
- NumberInputStyled,
120
+ TextFieldStyled,
121
121
  {
122
122
  type: "number",
123
123
  variant: "outlined",
124
124
  value: singleValue,
125
- withDecimal: true,
126
- onChange: (_event, newValue) => {
127
- onTotalChange(selPeriodTime, newValue);
125
+ onChange: (e) => {
126
+ onTotalChange(selPeriodTime, e.target.value === "" ? "" : parseInt(e.target.value));
128
127
  }
129
128
  }
130
129
  )
@@ -1,11 +1,12 @@
1
1
  import { g as getCommonActionsDictionary } from "../../../../CommonActions/dictionary.js";
2
+ const DICTIONARY_KEY = "rhf_period";
2
3
  const dictionary = {
3
- LABEL_YEARS: "period.label_years",
4
- LABEL_MONTHS: "period.label_months",
5
- LABEL_DAYS: "period.label_days"
4
+ LABEL_YEARS: `${DICTIONARY_KEY}.label_years`,
5
+ LABEL_MONTHS: `${DICTIONARY_KEY}.label_months`,
6
+ LABEL_DAYS: `${DICTIONARY_KEY}.label_days`
6
7
  };
7
8
  function getPeriodComponetsDictionary() {
8
- return ["period"].concat(getCommonActionsDictionary());
9
+ return [DICTIONARY_KEY].concat(getCommonActionsDictionary());
9
10
  }
10
11
  export {
11
12
  dictionary as d,
@@ -9,8 +9,8 @@ export type PeriodTime = {
9
9
  label: string;
10
10
  };
11
11
  export type PeriodType = {
12
- selPeriodTime: null | ETimePeriods | undefined;
13
- singleValue: number | null;
12
+ selPeriodTime: '' | ETimePeriods | undefined;
13
+ singleValue: number | '';
14
14
  years?: number;
15
15
  months?: number;
16
16
  days?: number;
@@ -5,8 +5,7 @@ const rhfSelectStyles = {
5
5
  root: ({ theme }) => ({
6
6
  display: "flex",
7
7
  flexDirection: "column",
8
- gap: theme.vars.size.baseSpacings.sp1,
9
- width: "100%"
8
+ gap: theme.vars.size.baseSpacings.sp1
10
9
  }),
11
10
  /**
12
11
  * Estilos del Label.
@@ -94,7 +94,7 @@ const MenuItem = (props) => {
94
94
  disabled
95
95
  }
96
96
  ),
97
- /* @__PURE__ */ jsxs(MenuItemContainerStyled, { ownerState: { ...ownerState }, children: [
97
+ /* @__PURE__ */ jsxs(MenuItemContainerStyled, { ownerState: { ...ownerState }, className: MENUITEM_CLASSES.menuItemContainer, children: [
98
98
  renderIcon(startIcon, "MenuItemStartIcon", getComponentSlotRoot("MenuItemStartIcon")),
99
99
  /* @__PURE__ */ jsx(
100
100
  MenuItemTypographyStyled,
@@ -3,9 +3,9 @@ import { a as getComponentSlotRoot } from "../../../utils/getComponentSlotRoot.j
3
3
  import { T as TAB_CONTENT_KEY_COMPONENT } from "./constants.js";
4
4
  import { T as TabContentRootStyled } from "./slots/TabContentSlots.js";
5
5
  const TabContent = (props) => {
6
- const { children, className, background = false, ...others } = props;
6
+ const { children, className, hasBackground = false, ...others } = props;
7
7
  const root = getComponentSlotRoot(TAB_CONTENT_KEY_COMPONENT);
8
- return /* @__PURE__ */ jsx(TabContentRootStyled, { className: root, ownerState: { background }, ...others, children });
8
+ return /* @__PURE__ */ jsx(TabContentRootStyled, { className: root, ownerState: { hasBackground }, ...others, children });
9
9
  };
10
10
  export {
11
11
  TabContent as T
@@ -20,7 +20,7 @@ const tabContentStyles = {
20
20
  boxSizing: "border-box",
21
21
  zIndex: "0",
22
22
  top: "-1px",
23
- ...ownerState?.background ? {
23
+ ...ownerState?.hasBackground ? {
24
24
  backgroundColor: theme.vars.palette.background.base,
25
25
  paddingLeft: theme.vars.size.baseSpacings.sp2,
26
26
  paddingRight: theme.vars.size.baseSpacings.sp2,
@@ -7,6 +7,6 @@ export interface TabContentProps extends Omit<React.HTMLAttributes<HTMLDivElemen
7
7
  children: React.ReactNode;
8
8
  style?: React.CSSProperties;
9
9
  key?: Key | null | undefined;
10
- background?: boolean;
10
+ hasBackground?: boolean;
11
11
  }
12
12
  export type TabContentStyles = M4LOverridesStyleRules<keyof typeof TabContentSlots, typeof TABS_KEY_COMPONENT, Theme>;
@@ -251,7 +251,7 @@ const useDynamicFilterAndSort = (props) => {
251
251
  name: sortApplied.columnKey,
252
252
  type: sort?.type || "string",
253
253
  urlIcon: sort?.urlIcon || "",
254
- label: sort?.label || sortApplied.columnKey
254
+ label: sortApplied.label
255
255
  },
256
256
  isSet: true,
257
257
  fixed: isFixed,
package/index.js CHANGED
@@ -144,7 +144,7 @@ import { r } from "./components/hook-form/RHFPeriod/RHFPeriod.styles.js";
144
144
  import { R as R16 } from "./components/hook-form/RHFPeriod/RHFPeriod.js";
145
145
  import { R as R17 } from "./components/hook-form/RHFPeriod/constants.js";
146
146
  import { R as R18 } from "./components/hook-form/RHFPeriod/slots/RHFPeriodEnum.js";
147
- import { N as N3, P as P6, R as R19, S as S6 } from "./components/hook-form/RHFPeriod/slots/RHFPeriodSlots.js";
147
+ import { P as P6, R as R19, S as S6, T as T17 } from "./components/hook-form/RHFPeriod/slots/RHFPeriodSlots.js";
148
148
  import { R as R20 } from "./components/hook-form/RHFNumberInput/RHFNumberInput.js";
149
149
  import { R as R21 } from "./components/hook-form/RHFUpload/RHFUploadImage/RHFUploadImage.js";
150
150
  import { I as I4 } from "./components/Icon/Icon.js";
@@ -160,7 +160,7 @@ import { a as a9, M as M3 } from "./components/MenuActions/MenuActions.js";
160
160
  import { M as M4 } from "./components/MFIsolationApp/MFIsolationApp.js";
161
161
  import { M as M5 } from "./components/MFLoader/MFLoader.js";
162
162
  import { g as g24 } from "./components/MFLoader/dictionary.js";
163
- import { N as N4 } from "./components/NoItemSelected/NoItemSelected.js";
163
+ import { N as N3 } from "./components/NoItemSelected/NoItemSelected.js";
164
164
  import { g as g25 } from "./components/NoItemSelected/dictionary.js";
165
165
  import { g as g26 } from "./components/ObjectLogs/dictionary.js";
166
166
  import { O } from "./components/ObjectLogs/ObjectLogs.js";
@@ -173,8 +173,8 @@ import { P as P11 } from "./components/PrintingSystem/PrintingSystem.js";
173
173
  import { P as P12 } from "./components/PropertyValue/PropertyValue.js";
174
174
  import { S as S7 } from "./components/ScrollBar/ScrollBar.js";
175
175
  import { S as S8 } from "./components/SideBar/SideBar.js";
176
- import { T as T17 } from "./components/ToastContainer/ToastContainer.js";
177
- import { T as T18 } from "./components/ToastContainer/subcomponents/ToastMessage/ToastMessage.js";
176
+ import { T as T18 } from "./components/ToastContainer/ToastContainer.js";
177
+ import { T as T19 } from "./components/ToastContainer/subcomponents/ToastMessage/ToastMessage.js";
178
178
  import { W } from "./components/WindowBase/WindowBase.js";
179
179
  import { u as u14 } from "./components/WindowBase/hooks/useWindowToolsMF/index.js";
180
180
  import { u as u15, a as a11 } from "./components/WindowBase/hooks/useDynamicMFParameters/index.js";
@@ -304,9 +304,8 @@ export {
304
304
  M as MotionContainer,
305
305
  M2 as MotionLazyContainer,
306
306
  N2 as NavLink,
307
- N4 as NoItemSelected,
307
+ N3 as NoItemSelected,
308
308
  N as NumberEditor,
309
- N3 as NumberInputStyled,
310
309
  O as ObjectLogs,
311
310
  O2 as ObjectQueue,
312
311
  P8 as PDFViewer,
@@ -363,8 +362,9 @@ export {
363
362
  a7 as TabProvider,
364
363
  T5 as Tabs,
365
364
  T2 as TextEditor,
366
- T17 as ToastContainer,
367
- T18 as ToastMessage,
365
+ T17 as TextFieldStyled,
366
+ T18 as ToastContainer,
367
+ T19 as ToastMessage,
368
368
  T9 as ToggleButton,
369
369
  T12 as ToggleButtonRootStyled,
370
370
  T11 as ToggleButtonSlots,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m4l/components",
3
- "version": "9.2.62-B10072025beta.2",
3
+ "version": "9.2.62-B11072025beta.2",
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.0.0",
15
- "@m4l/styles": "^7.0.0",
14
+ "@m4l/graphics": "7.1.2-B11072025beta.2",
15
+ "@m4l/styles": "7.1.30-B11072025beta.2",
16
16
  "@microlink/react-json-view": "^1.23.3",
17
17
  "@mui/lab": "5.0.0-alpha.173",
18
18
  "@mui/material": "5.16.7",
@@ -19,6 +19,14 @@ export declare const DataGridWithEventChangeUserColumn: Story;
19
19
  * DataGrid con columns formatters
20
20
  */
21
21
  export declare const DatagridWithFormatters: Story;
22
+ /**
23
+ * DataGrid con columns with actions
24
+ */
25
+ export declare const DatagridWithActions: Story;
26
+ /**
27
+ * DataGrid con columnas con alineación
28
+ */
29
+ export declare const DatagridWithAlign: Story;
22
30
  /**
23
31
  * DataGrid sin pager
24
32
  */
@@ -1,3 +1,9 @@
1
1
  export declare const icons: {
2
2
  roundRefreshIcon: string;
3
+ roundDeleteIcon: string;
4
+ addIcon: string;
5
+ editIcon: string;
6
+ printIcon: string;
7
+ activeIcon: string;
8
+ inactiveIcon: string;
3
9
  };
@@ -1,12 +1,14 @@
1
1
  import { HeaderRendererProps } from 'react-data-grid';
2
2
  import { ChipStatusFormatterProps } from '../../../../src/components/formatters/ChipStatusFormatter/types';
3
3
  import { DeepKeyOf } from '../../../../src/utils/types';
4
+ import { ColumnAlign } from '../../../../src/components/DataGrid/types';
4
5
  export interface SeedProps {
5
6
  quantity: number;
6
7
  withBoolean?: boolean;
7
8
  withConcatenated?: boolean;
8
9
  withDate?: boolean;
9
10
  withIcon?: boolean;
11
+ withMultipleIcons?: boolean;
10
12
  withInteractiveCheck?: boolean;
11
13
  withNestedValue?: boolean;
12
14
  withPoints?: boolean;
@@ -15,6 +17,12 @@ export interface SeedProps {
15
17
  withSetCheck?: boolean;
16
18
  withCesar?: boolean;
17
19
  withChipStatus?: boolean;
20
+ withActions?: boolean;
21
+ withActionsUser?: boolean;
22
+ withBooleanStatus?: boolean;
23
+ withUserType?: boolean;
24
+ aligns?: Record<string, ColumnAlign>;
25
+ names?: Record<string, string>;
18
26
  }
19
27
  export type GetColumnsProps = Omit<SeedProps, 'quantity'>;
20
28
  export type ColumnType = 'string' | 'number' | 'boolean' | 'date' | 'custom';
@@ -48,6 +56,10 @@ export interface RowType {
48
56
  label: string;
49
57
  currentStatus: ChipStatusFormatterProps['status'];
50
58
  };
59
+ userType?: {
60
+ label: string;
61
+ currentStatus: 'superadmin' | 'admin' | 'user';
62
+ };
51
63
  }
52
64
  interface RangesUncertainty {
53
65
  cmcMin: number;
@@ -1,4 +1,5 @@
1
- import { GetColumnsProps, RowType, Column } from './types';
1
+ import { GetColumnsProps, RowType } from './types';
2
+ import { Column } from 'react-data-grid';
2
3
  /**
3
4
  * ****************************************************************
4
5
  * Función que retorna las columnas para el DataGrid de Storybook
@@ -3,7 +3,7 @@ import { SeedProps } from './types';
3
3
  * Función que retorna el seed para el DataGrid de Storybook
4
4
  */
5
5
  export declare const useSeed: (props: SeedProps) => {
6
- columns: readonly import('./types').Column<import('./types').RowType, unknown>[];
6
+ columns: readonly import('react-data-grid').Column<import('./types').RowType, unknown>[];
7
7
  filters: import('../../../../src').FilterField[];
8
8
  sorts: import('../../../../src').SortField[];
9
9
  rows: import('./types').RowType[];
@@ -5,19 +5,13 @@ type Story = StoryObj<typeof SideBar>;
5
5
  /**
6
6
  * SideBar por defecto sin ningún item seleccionado
7
7
  */
8
- export declare const Default: Story;
8
+ export declare const H001_VariantHost: Story;
9
9
  /**
10
- * SideBar colapsado por medio del botón de anclaje
11
- */
12
- export declare const CollapsedWithAnchorButton: Story;
13
- /**
14
- * SideBar colapsado con hover sobre el menú
15
- */
16
- export declare const CollapsedWithHoverOnMenu: Story;
17
- /**
18
- * SideBar colapsado retirando hover sobre el menú
10
+ * SideBar por defecto sin ningún item seleccionado
19
11
  */
20
- export declare const CollapsedWithHoverRemoved: Story;
12
+ export declare const H002_VariantHost_Collapsed: Story;
13
+ export declare const H003_VariantMicrofrontend: Story;
14
+ export declare const H004_VariantMicrofrontend_Collapsed: Story;
21
15
  /**
22
16
  * SideBar con items en el menu, con un item seleccionado y 5 anidaciones incluyendo la sección padre de los menu items
23
17
  */
@@ -0,0 +1,4 @@
1
+ /**
2
+ * Componente que renderiza el footer de la promoción del sidebar.
3
+ */
4
+ export declare const FooterComponentHost: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export { FooterComponentHost as FooterComponent } from './FooterComponentHost';
@@ -0,0 +1,4 @@
1
+ /**
2
+ * Componente que renderiza el footer del sidebar.
3
+ */
4
+ export declare const FooterComponentMicrofrontend: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,14 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { FooterComponentMicrofrontend } from './FooterComponentMicrofrontend';
3
+ declare const meta: Meta<typeof FooterComponentMicrofrontend>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ /**
7
+ * Ejemplo básico del componente FooterComponentMicrofrontend.
8
+ * Este componente renderiza una ilustración SVG en el footer del sidebar.
9
+ */
10
+ export declare const Default: Story;
11
+ /**
12
+ * Ejemplo del componente dentro de un contenedor con fondo.
13
+ */
14
+ export declare const WithBackground: Story;