@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.
- package/components/AppBar/AppBar.js +12 -10
- package/components/AppBar/constants.d.ts +1 -1
- package/components/AppBar/constants.js +1 -1
- package/components/AppBar/slots/AppBarEnum.d.ts +1 -5
- package/components/AppBar/slots/AppBarEnum.js +0 -4
- package/components/AppBar/slots/AppBarSlots.d.ts +4 -18
- package/components/AppBar/slots/AppBarSlots.js +3 -27
- package/components/AppBar/styles.js +0 -42
- package/components/AppBar/types.d.ts +8 -0
- package/components/Chip/ChipStyles.js +1 -1
- package/components/DataGrid/Datagrid.styles.js +21 -10
- package/components/DataGrid/formatters/ColumnIconFormatter/formatter.d.ts +2 -1
- package/components/DataGrid/formatters/ColumnIconFormatter/formatter.js +6 -42
- package/components/DataGrid/formatters/ColumnIconFormatter/helpers/renderIcon.d.ts +8 -0
- package/components/DataGrid/formatters/ColumnIconFormatter/helpers/renderIcon.js +58 -0
- package/components/DataGrid/formatters/ColumnIconFormatter/helpers/renderMultipleIcons.d.ts +7 -0
- package/components/DataGrid/formatters/ColumnIconFormatter/helpers/renderMultipleIcons.js +19 -0
- package/components/DataGrid/formatters/ColumnIconFormatter/types.d.ts +10 -3
- package/components/DataGrid/formatters/ColumnIconFormatter/useColumnIcon.d.ts +2 -2
- package/components/DataGrid/slots/DataGridEnum.d.ts +3 -0
- package/components/DataGrid/slots/DataGridEnum.js +6 -1
- package/components/DataGrid/slots/DataGridSlot.d.ts +6 -0
- package/components/DataGrid/slots/DataGridSlot.js +24 -19
- package/components/DataGrid/subcomponents/ControlNavigate/ControlNavigate.js +1 -1
- package/components/DataGrid/subcomponents/HeaderActions/index.js +1 -1
- package/components/DataGrid/subcomponents/HeaderActions/subcomponents/Density/index.js +2 -1
- package/components/DataGrid/subcomponents/HeaderActions/subcomponents/RowsCount/index.js +1 -1
- package/components/DataGrid/subcomponents/HeaderActions/subcomponents/Settings/subcomponents/ColumnsConfig/index.js +1 -1
- package/components/DataGrid/subcomponents/HeaderActions/subcomponents/hooks/useModalSettings/index.js +1 -1
- package/components/DataGrid/subcomponents/Table/hooks/useHeaderMenuActions.js +2 -1
- package/components/DataGrid/subcomponents/Table/index.js +1 -1
- package/components/DataGrid/subcomponents/Table/subcomponents/DraggableHeaderRenderer.js +14 -2
- package/components/DataGrid/subcomponents/Table/subcomponents/HeaderRenderClick/HeaderRenderClick.js +1 -1
- package/components/DataGrid/subcomponents/editors/TextEditor/index.js +1 -1
- package/components/DataGrid/types.d.ts +3 -2
- package/components/LoadingError/slots/LoadingErrorSlots.js +1 -1
- package/components/ObjectLogs/ObjectLogs.styles.js +2 -1
- package/components/ObjectLogs/slots/ObjectLogsEnum.d.ts +1 -0
- package/components/ObjectLogs/slots/ObjectLogsEnum.js +1 -0
- package/components/ObjectLogs/slots/ObjectLogsSlots.d.ts +3 -0
- package/components/ObjectLogs/slots/ObjectLogsSlots.js +7 -2
- package/components/PropertyValue/PropertyValue.styles.js +1 -1
- package/components/SideBar/SideBar.js +6 -2
- package/components/SideBar/constants.d.ts +8 -6
- package/components/SideBar/constants.js +8 -8
- package/components/SideBar/context/sideBarContext/index.js +9 -10
- package/components/SideBar/context/sideBarContext/types.d.ts +2 -10
- package/components/SideBar/slots/SideBarEnum.d.ts +8 -7
- package/components/SideBar/slots/SideBarEnum.js +6 -5
- package/components/SideBar/slots/SideBarSlots.d.ts +12 -9
- package/components/SideBar/slots/SideBarSlots.js +36 -28
- package/components/SideBar/styles.js +3 -3
- package/components/SideBar/subcomponents/ContentComponent/index.js +12 -68
- package/components/SideBar/subcomponents/ContentComponent/style.js +134 -107
- package/components/SideBar/subcomponents/{Promotion → FooterComponent}/index.d.ts +1 -1
- package/components/SideBar/subcomponents/{Promotion → FooterComponent}/index.js +4 -4
- package/components/SideBar/subcomponents/{Promotion → FooterComponent}/styles.js +8 -2
- package/components/SideBar/subcomponents/HeaderComponent/HeaderComponent.d.ts +5 -0
- package/components/SideBar/subcomponents/HeaderComponent/HeaderComponent.js +37 -0
- package/components/SideBar/subcomponents/HeaderComponent/index.d.ts +1 -0
- package/components/SideBar/subcomponents/HeaderComponent/index.js +1 -0
- package/components/SideBar/subcomponents/HeaderComponent/styles.d.ts +2 -0
- package/components/SideBar/subcomponents/HeaderComponent/styles.js +40 -0
- package/components/SideBar/subcomponents/SideBarDesktop/index.js +4 -3
- package/components/SideBar/subcomponents/SideBarDesktop/styles.js +4 -32
- package/components/SideBar/subcomponents/SideBarMobile/index.js +1 -1
- package/components/SideBar/subcomponents/TreeGroupItems/index.js +4 -3
- package/components/SideBar/subcomponents/TreeGroupItems/styles.js +112 -2
- package/components/SideBar/subcomponents/TreeGroupItems/subcomponents/AdormentIcon/AdormentIcon.d.ts +7 -0
- package/components/SideBar/subcomponents/TreeGroupItems/subcomponents/AdormentIcon/AdormentIcon.js +12 -0
- package/components/SideBar/subcomponents/TreeGroupItems/subcomponents/AdormentIcon/types.d.ts +4 -0
- package/components/SideBar/subcomponents/TreeGroupItems/subcomponents/NodeMenuItem/index.js +9 -7
- package/components/SideBar/subcomponents/TreeGroupItems/subcomponents/NodeMenuItem/types.d.ts +1 -0
- package/components/SideBar/subcomponents/TreeGroupItems/subcomponents/NodeMenuItemMain/NodeMenuItemMain.js +11 -6
- package/components/SideBar/types.d.ts +12 -7
- package/components/commercial/HamburgerMenu/HamburgerMenu.js +1 -2
- package/components/formatters/BooleanFormatter/BooleanFormatter.js +7 -4
- package/components/formatters/BooleanFormatter/BooleanFormatter.styles.js +9 -1
- package/components/formatters/BooleanFormatter/slots/BooleanFormatterEnum.d.ts +2 -1
- package/components/formatters/BooleanFormatter/slots/BooleanFormatterEnum.js +1 -0
- package/components/formatters/BooleanFormatter/slots/BooleanFormatterSlots.d.ts +3 -0
- package/components/formatters/BooleanFormatter/slots/BooleanFormatterSlots.js +6 -1
- package/components/formatters/BooleanFormatter/types.d.ts +1 -1
- package/components/hook-form/RHFColorPicker/RHFColorPicker.styles.js +1 -2
- package/components/hook-form/RHFDateTime/RHFDateTime.styles.js +1 -2
- package/components/hook-form/RHFDateTime/styles.d.ts +1 -0
- package/components/hook-form/RHFNumberInput/RHFNumberInput.styles.js +1 -2
- package/components/hook-form/RHFPeriod/RHFPeriod.styles.js +5 -2
- package/components/hook-form/RHFPeriod/slots/RHFPeriodEnum.d.ts +1 -1
- package/components/hook-form/RHFPeriod/slots/RHFPeriodEnum.js +1 -1
- package/components/hook-form/RHFPeriod/slots/RHFPeriodSlots.d.ts +1 -1
- package/components/hook-form/RHFPeriod/slots/RHFPeriodSlots.js +6 -6
- package/components/hook-form/RHFPeriod/subcomponents/Period/Period.js +7 -8
- package/components/hook-form/RHFPeriod/subcomponents/Period/dictionary.js +5 -4
- package/components/hook-form/RHFPeriod/subcomponents/Period/types.d.ts +2 -2
- package/components/hook-form/RHFSelect/RHFSelect.styles.js +1 -2
- package/components/mui_extended/MenuItem/MenuItem.js +1 -1
- package/components/mui_extended/TabContent/TabContent.js +2 -2
- package/components/mui_extended/TabContent/TabContent.styles.js +1 -1
- package/components/mui_extended/TabContent/types.d.ts +1 -1
- package/hooks/useDynamicFilterAndSort/useDynamicFilterAndSort.js +1 -1
- package/index.js +8 -8
- package/package.json +3 -3
- package/storybook/components/DataGrid/DataGrid.stories.d.ts +8 -0
- package/storybook/components/DataGrid/helpers/icons.d.ts +6 -0
- package/storybook/components/DataGrid/helpers/types.d.ts +12 -0
- package/storybook/components/DataGrid/helpers/useColumns.d.ts +2 -1
- package/storybook/components/DataGrid/helpers/useSeed.d.ts +1 -1
- package/storybook/components/SideBar/SideBar.stories.d.ts +5 -11
- package/storybook/components/SideBar/subcomponents/FooterComponentHost/FooterComponentHost.d.ts +4 -0
- package/storybook/components/SideBar/subcomponents/FooterComponentHost/index.d.ts +1 -0
- package/storybook/components/SideBar/subcomponents/FooterComponentMicrofrontend/FooterComponentMicrofrontend.d.ts +4 -0
- package/storybook/components/SideBar/subcomponents/FooterComponentMicrofrontend/FooterComponentMicrofrontend.stories.d.ts +14 -0
- package/storybook/components/SideBar/subcomponents/FooterComponentMicrofrontend/constants.d.ts +1 -0
- package/storybook/components/SideBar/subcomponents/FooterComponentMicrofrontend/index.d.ts +1 -0
- package/storybook/components/SideBar/subcomponents/HeaderComponentHost/HeaderComponentHost.d.ts +5 -0
- package/storybook/components/SideBar/subcomponents/HeaderComponentHost/constants.d.ts +1 -0
- package/storybook/components/SideBar/subcomponents/HeaderComponentMicrofrontend/HeaderComponentMicrofrontend.d.ts +5 -0
- package/storybook/components/SideBar/subcomponents/HeaderComponentMicrofrontend/constants.d.ts +1 -0
- package/utils/getSizeStyles/getSizeStyles.d.ts +1 -1
- package/components/SideBar/subcomponents/HeaderSidebar/index.d.ts +0 -6
- package/components/SideBar/subcomponents/HeaderSidebar/styles.d.ts +0 -2
- package/components/SideBar/subcomponents/HeaderSidebar/styles.js +0 -24
- package/components/SideBar/subcomponents/HeaderSidebar/types.d.ts +0 -5
- package/storybook/components/SideBar/subcomponents/FooterPromotion/FooterPromotion.d.ts +0 -4
- package/storybook/components/SideBar/subcomponents/FooterPromotion/index.d.ts +0 -1
- /package/components/SideBar/subcomponents/{Promotion → FooterComponent}/styles.d.ts +0 -0
- /package/components/SideBar/subcomponents/{Promotion → FooterComponent}/types.d.ts +0 -0
- /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
|
*/
|
|
@@ -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>, {}>;
|
|
@@ -23,8 +23,11 @@ const rhfPeriodStyles = {
|
|
|
23
23
|
/**
|
|
24
24
|
* textField class
|
|
25
25
|
*/
|
|
26
|
-
|
|
27
|
-
|
|
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,7 +1,7 @@
|
|
|
1
1
|
var RHFPeriodSlots = /* @__PURE__ */ ((RHFPeriodSlots2) => {
|
|
2
2
|
RHFPeriodSlots2["root"] = "root";
|
|
3
3
|
RHFPeriodSlots2["periodRoot"] = "periodRoot";
|
|
4
|
-
RHFPeriodSlots2["
|
|
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
|
|
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 {
|
|
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
|
|
15
|
+
const TextFieldStyled = styled(TextField, {
|
|
16
16
|
name: RHF_PERIOD_KEY_COMPONENT,
|
|
17
|
-
slot: RHFPeriodSlots.
|
|
18
|
-
})(rhfPeriodStyles?.
|
|
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,
|
|
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
|
|
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
|
|
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
|
-
|
|
120
|
+
TextFieldStyled,
|
|
121
121
|
{
|
|
122
122
|
type: "number",
|
|
123
123
|
variant: "outlined",
|
|
124
124
|
value: singleValue,
|
|
125
|
-
|
|
126
|
-
|
|
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:
|
|
4
|
-
LABEL_MONTHS:
|
|
5
|
-
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 [
|
|
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:
|
|
13
|
-
singleValue: number |
|
|
12
|
+
selPeriodTime: '' | ETimePeriods | undefined;
|
|
13
|
+
singleValue: number | '';
|
|
14
14
|
years?: number;
|
|
15
15
|
months?: number;
|
|
16
16
|
days?: number;
|
|
@@ -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,
|
|
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: {
|
|
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?.
|
|
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
|
-
|
|
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:
|
|
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 {
|
|
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
|
|
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
|
|
177
|
-
import { T as
|
|
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
|
-
|
|
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
|
|
367
|
-
T18 as
|
|
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-
|
|
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": "
|
|
15
|
-
"@m4l/styles": "
|
|
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,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
|
|
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('
|
|
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
|
|
8
|
+
export declare const H001_VariantHost: Story;
|
|
9
9
|
/**
|
|
10
|
-
* SideBar
|
|
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
|
|
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 @@
|
|
|
1
|
+
export { FooterComponentHost as FooterComponent } from './FooterComponentHost';
|
|
@@ -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;
|