@m4l/components 9.3.34 → 9.3.35-BE20251128-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.
- package/@types/export.d.ts +3 -0
- package/@types/types.d.ts +11 -0
- package/components/AccountPopover/slots/AccountPopoverSlots.d.ts +6 -6
- package/components/AppBar/slots/AppBarSlots.d.ts +1 -1
- package/components/Chip/slots/ChipSlots.d.ts +2 -2
- package/components/CommonActions/components/ActionCancel/slots/ActionsCancelSlots.d.ts +1 -1
- package/components/CommonActions/components/ActionFormCancel/slots/ActionFormCancelSlots.d.ts +1 -1
- package/components/CommonActions/components/ActionIntro/slots/ActionsIntroSlots.d.ts +1 -1
- package/components/CommonActions/components/ActionsContainer/slots/ActionsContainerSlots.d.ts +1 -1
- package/components/DataGrid/Datagrid.styles.js +1 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/ImageFormatterCell.d.ts +13 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/ImageFormatterCell.js +33 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/constants.d.ts +6 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/constants.js +6 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/formatter.d.ts +8 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/formatter.js +25 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/index.d.ts +3 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/index.js +1 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/tests/ColumnImageFormatter.test.d.ts +1 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/types.d.ts +44 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/types.js +1 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/useColumnImage.d.ts +9 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/useColumnImage.js +22 -0
- package/components/DataGrid/formatters/index.d.ts +1 -0
- package/components/DataGrid/subcomponents/Cards/helpers/scrollToCardElement.js +2 -2
- package/components/DataGrid/subcomponents/Cards/index.js +16 -3
- package/components/DataGrid/subcomponents/Cards/subcomponents/CardRow/index.js +1 -0
- package/components/DataGrid/subcomponents/Table/index.js +10 -1
- package/components/DataGrid/tests/helpers/types.d.ts +10 -0
- package/components/DynamicFilter/slots/dynamicFilterSlots.d.ts +2 -2
- package/components/DynamicSort/slots/DynamicSortSlots.d.ts +2 -2
- package/components/EditLabel/constants.d.ts +1 -1
- package/components/EditLabel/slots/EditLabelSlots.d.ts +4 -4
- package/components/HelperError/slots/HelperErrorSlots.d.ts +1 -1
- package/components/ImageText/constants.d.ts +1 -1
- package/components/ImageText/slots/ImageTextSlots.d.ts +2 -2
- package/components/Label/slots/LabelSlots.d.ts +3 -3
- package/components/LanguagePopover/slots/LanguagePopoverSlots.d.ts +1 -1
- package/components/LoadingError/slots/LoadingErrorSlots.d.ts +1 -1
- package/components/MenuActions/slots/MenuActionsSlots.d.ts +2 -2
- package/components/ModalDialog/slots/ModalDialogSlots.d.ts +2 -2
- package/components/NumberInput/slots/NumberInputSlots.d.ts +2 -2
- package/components/ObjectLogs/slots/ObjectLogsSlots.d.ts +1 -1
- package/components/Pager/slots/PagerSlots.d.ts +3 -3
- package/components/PaperForm/slots/PaperFormSlots.d.ts +1 -1
- package/components/SettingsLayout/slots/SettingsLayoutSlots.d.ts +3 -3
- package/components/SideBar/slots/SideBarSlots.d.ts +1 -1
- package/components/Stepper/slots/StepperSlot.d.ts +4 -4
- package/components/TabsNavigator/slots/TabsNavigatorSlots.d.ts +2 -2
- package/components/ToastContainer/slots/toastContainerSlots.d.ts +4 -4
- package/components/WindowBase/slots/WindowBaseSlots.d.ts +2 -2
- package/components/animate/variants/background.d.ts +9 -9
- package/components/animate/variants/bounce.d.ts +9 -9
- package/components/animate/variants/fade.d.ts +20 -20
- package/components/animate/variants/flip.d.ts +6 -6
- package/components/animate/variants/rotate.d.ts +3 -3
- package/components/animate/variants/scale.d.ts +6 -6
- package/components/animate/variants/slide.d.ts +16 -16
- package/components/animate/variants/transition.d.ts +3 -3
- package/components/animate/variants/zoom.d.ts +15 -15
- package/components/areas/components/AreasAdmin/slots/AreasAdminSlots.d.ts +3 -3
- package/components/extended/React-Resizable/Resizable/slots/ResizableSlots.d.ts +1 -1
- package/components/extended/React-Resizable/ResizableBox/slots/ResizableBoxSlots.d.ts +1 -1
- package/components/extended/React-resizable-panels/slots/SplitLayoutSlots.d.ts +6 -6
- package/components/formatters/BooleanFormatter/slots/BooleanFormatterSlots.d.ts +1 -1
- package/components/formatters/ConcatenatedFormatter/slots/ConcatenatedFormatterSlots.d.ts +1 -1
- package/components/formatters/DateFormatter/slots/DateFormatterSlots.d.ts +1 -1
- package/components/formatters/DistanceToNowFormatter/slots/DistanceToNowFormatterSlots.d.ts +1 -1
- package/components/formatters/ImageFormatter/ImageFormatter.d.ts +10 -0
- package/components/formatters/ImageFormatter/ImageFormatter.js +72 -0
- package/components/formatters/ImageFormatter/ImageFormatter.styles.d.ts +2 -0
- package/components/formatters/ImageFormatter/ImageFormatter.styles.js +42 -0
- package/components/formatters/ImageFormatter/constants.d.ts +5 -0
- package/components/formatters/ImageFormatter/constants.js +10 -0
- package/components/formatters/ImageFormatter/index.d.ts +2 -0
- package/components/formatters/ImageFormatter/index.js +1 -0
- package/components/formatters/ImageFormatter/slots/ImageFormatterEnum.d.ts +5 -0
- package/components/formatters/ImageFormatter/slots/ImageFormatterEnum.js +9 -0
- package/components/formatters/ImageFormatter/slots/ImageFormatterSlots.d.ts +9 -0
- package/components/formatters/ImageFormatter/slots/ImageFormatterSlots.js +23 -0
- package/components/formatters/ImageFormatter/tests/ImageFormatter.test.d.ts +1 -0
- package/components/formatters/ImageFormatter/types.d.ts +51 -0
- package/components/formatters/ImageFormatter/types.js +1 -0
- package/components/formatters/PeriodFormatter/slots/PeriodFormatterSlots.d.ts +1 -1
- package/components/formatters/PointsFormatter/slots/ointsFormatterSlots.d.ts +1 -1
- package/components/formatters/PriceFormatter/slots/PriceFormatterSlots.d.ts +1 -1
- package/components/formatters/UncertaintyFormatter/slots/UncertaintyFormatterSlots.d.ts +1 -1
- package/components/formatters/index.d.ts +1 -0
- package/components/hook-form/RHFCheckbox/slots/RHFCheckBoxSlots.d.ts +1 -1
- package/components/hook-form/RHFColorPicker/slots/RHFColorPickerSlots.d.ts +1 -1
- package/components/hook-form/RHFPeriod/slots/RHFPeriodSlots.d.ts +1 -1
- package/components/hook-form/RHFSelect/constants.d.ts +1 -1
- package/components/hook-form/RHFSelect/slots/RHFSlots.d.ts +1 -1
- package/components/hook-form/RHFTextField/slots/RHFTextFieldSlots.d.ts +1 -1
- package/components/hook-form/RHFTextFieldPassword/slots/RHFTextFieldPasswordSlots.d.ts +2 -2
- package/components/hook-form/RHFUpload/RHFUploadImage/slots/RHFUploadImageSlots.d.ts +3 -3
- package/components/hook-form/RHFUpload/RHFUploadSingleFile/constants.d.ts +1 -1
- package/components/hook-form/RHFUpload/RHFUploadSingleFile/slots/RHFUploadSingleFileSlots.d.ts +7 -7
- package/components/hook-form/RHFormProvider/classes/index.d.ts +1 -1
- package/components/mui_extended/Accordion/slots/AccordionSlots.d.ts +3 -3
- package/components/mui_extended/Autocomplete/slots/AutocompleteSlots.d.ts +6 -6
- package/components/mui_extended/Avatar/slots/AvatarSlots.d.ts +1 -1
- package/components/mui_extended/Badge/slots/BadgeSlots.d.ts +1 -1
- package/components/mui_extended/Button/slots/ButtonSlots.d.ts +2 -2
- package/components/mui_extended/CheckBox/slots/CheckBoxSlots.d.ts +2 -2
- package/components/mui_extended/DateTimePicker/slots/DateTimePickerSlots.d.ts +4 -4
- package/components/mui_extended/Divider/slots/DividerSlots.d.ts +1 -1
- package/components/mui_extended/IconButton/constants.d.ts +1 -1
- package/components/mui_extended/IconButton/slots/IconButtonSlots.d.ts +1 -1
- package/components/mui_extended/LoadingButton/slots/LoadingButtonSlots.d.ts +1 -1
- package/components/mui_extended/MenuDivider/slots/MenuDividerSlots.d.ts +1 -1
- package/components/mui_extended/MenuItem/slots/MenuItemSlots.d.ts +2 -2
- package/components/mui_extended/NavLink/slots/NavLinkSlots.d.ts +1 -1
- package/components/mui_extended/Popper/slots/PopperStlots.d.ts +1 -1
- package/components/mui_extended/Select/slots/SelectSlots.d.ts +5 -5
- package/components/mui_extended/Skeleton/Slots/skeletonSlots.d.ts +1 -1
- package/components/mui_extended/Stack/slots/StackSlot.d.ts +1 -1
- package/components/mui_extended/Tab/Slots/TabSlots.d.ts +2 -2
- package/components/mui_extended/Tabs/slots/TabsSlots.d.ts +1 -1
- package/components/mui_extended/TextField/slots/TextFieldSlots.d.ts +4 -4
- package/components/mui_extended/TimePicker/slots/TimePickerSlots.d.ts +3 -3
- package/components/mui_extended/ToggleButton/slots/ToggleButtonSlots.d.ts +1 -1
- package/components/mui_extended/ToggleIconButton/slots/ToggleIconButtonSlots.d.ts +1 -1
- package/components/mui_extended/Tooltip/constants.d.ts +1 -1
- package/components/mui_extended/Typography/slots/typographySlots.d.ts +1 -1
- package/index.js +68 -62
- package/package.json +3 -3
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export declare const ToggleIconButtonRootStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../IconButton/types').IconButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "selected" | "disabled" | "action" | "
|
|
1
|
+
export declare const ToggleIconButtonRootStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../IconButton/types').IconButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "selected" | "disabled" | "action" | "variant" | "color" | "content" | "translate" | "className" | "style" | "classes" | "src" | "sx" | "form" | "slot" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "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" | "tooltip" | "instaceDataTestId" | "placement" | "icon" | "rotationAngle" | "ariaLabel" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "edge" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "badgeProps" | keyof import('react').RefAttributes<HTMLButtonElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('..').ToggleIconButtonOwnerState> & Record<string, unknown> & {
|
|
2
2
|
ownerState: Partial<import('..').ToggleIconButtonOwnerState> & Record<string, unknown>;
|
|
3
3
|
}, {}, {}>;
|
|
@@ -2,7 +2,7 @@ export declare const TOOLTIP_KEY_COMPONENT = "M4LTooltip";
|
|
|
2
2
|
/**
|
|
3
3
|
* Clases del componente Tooltip
|
|
4
4
|
*/
|
|
5
|
-
export declare const TOOLTIP_CLASSES: Record<"text" | "
|
|
5
|
+
export declare const TOOLTIP_CLASSES: Record<"text" | "root" | "tooltip", string>;
|
|
6
6
|
/**
|
|
7
7
|
* Desplazamiento predeterminado del tooltip (X, Y)
|
|
8
8
|
*/
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export declare const StyledMUITypography: import('@emotion/styled').StyledComponent<Pick<import('@mui/material').TypographyOwnProps & import('@mui/material/OverridableComponent').CommonProps & Omit<Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
|
|
5
5
|
ref?: ((instance: HTMLSpanElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLSpanElement> | null | undefined;
|
|
6
|
-
}, "children" | "zIndex" | "paragraph" | "border" | "fontWeight" | "lineHeight" | "letterSpacing" | "fontSize" | "textTransform" | "fontFamily" | "typography" | "
|
|
6
|
+
}, "children" | "zIndex" | "paragraph" | "border" | "fontWeight" | "lineHeight" | "letterSpacing" | "fontSize" | "textTransform" | "fontFamily" | "typography" | "variant" | "color" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxShadow" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "marginBlockEnd" | "marginBlockStart" | "marginBottom" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "top" | "visibility" | "whiteSpace" | "width" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "marginBlock" | "marginInline" | "overflow" | "padding" | "paddingBlock" | "paddingInline" | "className" | "style" | "classes" | "sx" | "p" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "displayPrint" | "align" | "gutterBottom" | "noWrap" | "variantMapping">, "children" | "ref" | "title" | "zIndex" | "id" | "paragraph" | "border" | "fontWeight" | "lineHeight" | "letterSpacing" | "fontSize" | "textTransform" | "fontFamily" | "typography" | "variant" | "color" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxShadow" | "boxSizing" | "columnGap" | "content" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "marginBlockEnd" | "marginBlockStart" | "marginBottom" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "top" | "translate" | "visibility" | "whiteSpace" | "width" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "marginBlock" | "marginInline" | "overflow" | "padding" | "paddingBlock" | "paddingInline" | "className" | "style" | "classes" | "sx" | "p" | "slot" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "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" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "displayPrint" | "align" | "gutterBottom" | "noWrap" | "variantMapping"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown> & {
|
|
7
7
|
ownerState?: (Partial<import('../types').TypographyOwnerState> & Record<string, unknown>) | undefined;
|
|
8
8
|
}, {}, {}>;
|
|
9
9
|
/**
|
package/index.js
CHANGED
|
@@ -62,6 +62,8 @@ import { C as C15 } from "./components/DataGrid/formatters/ColumnTagsFormatter/f
|
|
|
62
62
|
import { u as u13 } from "./components/DataGrid/formatters/ColumnTagsFormatter/useColumnTags.js";
|
|
63
63
|
import { C as C16 } from "./components/DataGrid/formatters/ColumnColorFormatter/formatter.js";
|
|
64
64
|
import { u as u14 } from "./components/DataGrid/formatters/ColumnColorFormatter/useColumnColor.js";
|
|
65
|
+
import { u as u15 } from "./components/DataGrid/formatters/ColumnImageFormatter/useColumnImage.js";
|
|
66
|
+
import { C as C17 } from "./components/DataGrid/formatters/ColumnImageFormatter/formatter.js";
|
|
65
67
|
import { D as D3 } from "./components/DragResizeWindowRND/DragResizeWindowRND.js";
|
|
66
68
|
import { d as d2 } from "./components/DragResizeWindowRND/classes/index.js";
|
|
67
69
|
import { W } from "./components/DragResizeWindowRND/constants.js";
|
|
@@ -83,7 +85,7 @@ import { R as R3 } from "./components/extended/React-Json-Viewer/ReactJsonViewer
|
|
|
83
85
|
import { A as A14 } from "./components/mui_extended/Avatar/Avatar.js";
|
|
84
86
|
import { B as B2 } from "./components/mui_extended/BoxIcon/index.js";
|
|
85
87
|
import { B as B3 } from "./components/mui_extended/Breadcrumbs/index.js";
|
|
86
|
-
import { C as
|
|
88
|
+
import { C as C18 } from "./components/mui_extended/CircularProgress/CircularProgress.js";
|
|
87
89
|
import { B as B4 } from "./components/mui_extended/Badge/Badge.js";
|
|
88
90
|
import { L as L3 } from "./components/mui_extended/LinearProgress/index.js";
|
|
89
91
|
import { L as L4 } from "./components/mui_extended/LinkWithRoute/index.js";
|
|
@@ -93,7 +95,7 @@ import { A as A15 } from "./components/mui_extended/Accordion/Accordion.js";
|
|
|
93
95
|
import { T as T3 } from "./components/mui_extended/Tooltip/Tooltip.js";
|
|
94
96
|
import { I as I2 } from "./components/mui_extended/IconButton/IconButton.js";
|
|
95
97
|
import { B as B5 } from "./components/mui_extended/Button/Button.js";
|
|
96
|
-
import { C as
|
|
98
|
+
import { C as C19 } from "./components/mui_extended/CheckBox/CheckBox.js";
|
|
97
99
|
import { I as I3 } from "./components/mui_extended/ImageButton/ImageButton.js";
|
|
98
100
|
import { P as P2 } from "./components/mui_extended/Popover/Popover.js";
|
|
99
101
|
import { S as S4 } from "./components/mui_extended/Select/Select.js";
|
|
@@ -121,15 +123,16 @@ import { B as B6 } from "./components/formatters/BooleanFormatter/BooleanFormatt
|
|
|
121
123
|
import { D as D8, g as g12 } from "./components/formatters/DateFormatter/DateFormatter.js";
|
|
122
124
|
import { U, g as g13 } from "./components/formatters/UncertaintyFormatter/UncertaintyFormatter.js";
|
|
123
125
|
import { P as P3, g as g14 } from "./components/formatters/PointsFormatter/PointsFormatter.js";
|
|
124
|
-
import { C as
|
|
125
|
-
import { P as P4, u as
|
|
126
|
+
import { C as C20, g as g15 } from "./components/formatters/ConcatenatedFormatter/ConcatenatedFormatter.js";
|
|
127
|
+
import { P as P4, u as u16 } from "./components/formatters/PeriodFormatter/PeriodFormatter.js";
|
|
126
128
|
import { P as P5, g as g16 } from "./components/formatters/PriceFormatter/PriceFormatter.js";
|
|
127
129
|
import { T as T17 } from "./components/formatters/TagsFormatter/TagsFormatter.js";
|
|
128
|
-
import { C as
|
|
129
|
-
import {
|
|
130
|
+
import { C as C21 } from "./components/formatters/ColorFormatter/ColorFormatter.js";
|
|
131
|
+
import { I as I4 } from "./components/formatters/ImageFormatter/ImageFormatter.js";
|
|
132
|
+
import { C as C22 } from "./components/formatters/ChipStatusFormatter/ChipStatusFormatter.js";
|
|
130
133
|
import { g as g17 } from "./components/formatters/DistanceToNowFormatter/dictionary.js";
|
|
131
134
|
import { D as D9 } from "./components/formatters/DistanceToNowFormatter/DistanceToNowFormatter.js";
|
|
132
|
-
import { u as
|
|
135
|
+
import { u as u17 } from "./components/formatters/DistanceToNowFormatter/hooks/useDistanceToNowFormatter.js";
|
|
133
136
|
import { g as g18 } from "./components/formatters/dictionary.js";
|
|
134
137
|
import { F as F2 } from "./components/FormContainer/FormContainer.js";
|
|
135
138
|
import { G } from "./components/GridLayout/GridLayout.js";
|
|
@@ -162,10 +165,10 @@ import { N as N3, P as P6, R as R20, S as S7 } from "./components/hook-form/RHFP
|
|
|
162
165
|
import { R as R21 } from "./components/hook-form/RHFNumberInput/RHFNumberInput.js";
|
|
163
166
|
import { R as R22 } from "./components/hook-form/RHFUpload/RHFUploadImage/RHFUploadImage.js";
|
|
164
167
|
import { V as V2, b as b4, a as a9 } from "./components/hook-form/RHFormProvider/types.js";
|
|
165
|
-
import { F as F3, R as R23, u as
|
|
168
|
+
import { F as F3, R as R23, u as u18 } from "./components/hook-form/RHFormProvider/RHFormProvider.js";
|
|
166
169
|
import { d as d4, a as a10, b as b5, c as c3 } from "./components/hook-form/RHFormProvider/schema.js";
|
|
167
|
-
import { I as
|
|
168
|
-
import { I as
|
|
170
|
+
import { I as I5 } from "./components/Icon/Icon.js";
|
|
171
|
+
import { I as I6 } from "./components/Image/Image.js";
|
|
169
172
|
import { L as L6 } from "./components/Label/Label.js";
|
|
170
173
|
import { L as L7 } from "./components/LanguagePopover/LanguagePopover.js";
|
|
171
174
|
import { L as L8 } from "./components/LinearProgressIndeterminate/LinearProgressIndeterminate.js";
|
|
@@ -178,7 +181,7 @@ import { M as M4 } from "./components/MFIsolationApp/MFIsolationApp.js";
|
|
|
178
181
|
import { M as M5 } from "./components/MFIsolationAppStorybook/MFIsolationAppStorybook.js";
|
|
179
182
|
import { M as M6 } from "./components/MFLoader/MFLoader.js";
|
|
180
183
|
import { g as g24 } from "./components/MFLoader/dictionary.js";
|
|
181
|
-
import { I as
|
|
184
|
+
import { I as I7 } from "./components/ImageText/ImageText.js";
|
|
182
185
|
import { N as N4 } from "./components/NoItemSelected/NoItemSelected.js";
|
|
183
186
|
import { g as g25 } from "./components/NoItemSelected/dictionary.js";
|
|
184
187
|
import { N as N5 } from "./components/NoItemPrivileges/NoItemPrivileges.js";
|
|
@@ -187,7 +190,7 @@ import { g as g27 } from "./components/ObjectLogs/dictionary.js";
|
|
|
187
190
|
import { O } from "./components/ObjectLogs/ObjectLogs.js";
|
|
188
191
|
import { P as P7 } from "./components/PaperForm/PaperForm.js";
|
|
189
192
|
import { P as P8 } from "./components/PDFViewer/PDFViewer.js";
|
|
190
|
-
import { u as
|
|
193
|
+
import { u as u19 } from "./components/popups/components/PopupsProvider/hooks/usePopupsStore.js";
|
|
191
194
|
import { a as a12, P as P9 } from "./components/popups/components/PopupsProvider/contexts/PopupsContext/PopupsContext.js";
|
|
192
195
|
import { P as P10 } from "./components/popups/components/PopupsViewer/PopupsViewer.js";
|
|
193
196
|
import { P as P11 } from "./components/PrintingSystem/PrintingSystem.js";
|
|
@@ -199,8 +202,8 @@ import { T as T19 } from "./components/ToastContainer/subcomponents/ToastMessage
|
|
|
199
202
|
import { T as T20 } from "./components/TabsNavigator/TabsNavigator.js";
|
|
200
203
|
import { g as g28 } from "./components/TabsNavigator/dictionary.js";
|
|
201
204
|
import { W as W2 } from "./components/WindowBase/WindowBase.js";
|
|
202
|
-
import { u as
|
|
203
|
-
import { u as
|
|
205
|
+
import { u as u20 } from "./components/WindowBase/hooks/useWindowToolsMF/index.js";
|
|
206
|
+
import { u as u21, a as a13 } from "./components/WindowBase/hooks/useDynamicMFParameters/index.js";
|
|
204
207
|
import { M as M7, W as W3, a as a14 } from "./components/WindowBase/contexts/WindowToolsMFContext/WindowToolsMFContext.js";
|
|
205
208
|
import { c as c4 } from "./components/WindowBase/contexts/DynamicMFParmsContext/store.js";
|
|
206
209
|
import { D as D10, a as a15, M as M8 } from "./components/WindowBase/contexts/DynamicMFParmsContext/DynamicMFParmsContext.js";
|
|
@@ -209,7 +212,7 @@ import { a as a16, g as g29 } from "./components/ModalDialog/dictionary.js";
|
|
|
209
212
|
import { M as M9 } from "./components/ModalDialog/ModalDialog.js";
|
|
210
213
|
import { S as S10 } from "./components/SettingsLayout/SettingsLayout.js";
|
|
211
214
|
import { P as P13 } from "./components/Pager/Pager.js";
|
|
212
|
-
import { u as
|
|
215
|
+
import { u as u22 } from "./components/Stepper/hooks/useStepper/index.js";
|
|
213
216
|
import { S as S11 } from "./components/Stepper/Stepper.js";
|
|
214
217
|
import { S as S12 } from "./components/Stepper/subcomponents/StepperContent/index.js";
|
|
215
218
|
import { S as S13 } from "./components/Stepper/subcomponents/StepperContent/subcomponents/Step/index.js";
|
|
@@ -223,26 +226,26 @@ import { S as S20 } from "./components/Stepper/subcomponents/StepperButtons/Step
|
|
|
223
226
|
import { e as e2 } from "./components/Stepper/helpers/evaluateVisibilityStepCondition/index.js";
|
|
224
227
|
import { g as g30 } from "./components/Stepper/dictionary.js";
|
|
225
228
|
import { g as g31 } from "./components/hook-form/RHFormProvider/dictionary.js";
|
|
226
|
-
import { u as
|
|
229
|
+
import { u as u23 } from "./contexts/AppearanceComponentContext/useAppearanceComponentStore.js";
|
|
227
230
|
import { A as A16 } from "./contexts/AppearanceComponentContext/AppearanceComponentContext.js";
|
|
228
231
|
import { a as a17, M as M10 } from "./contexts/ModalContext/index.js";
|
|
229
|
-
import { u as
|
|
230
|
-
import { u as
|
|
231
|
-
import { u as
|
|
232
|
+
import { u as u24 } from "./hooks/useFormAddEdit/useFormAddEdit.js";
|
|
233
|
+
import { u as u25 } from "./hooks/useModal/index.js";
|
|
234
|
+
import { u as u26 } from "./hooks/useTab/index.js";
|
|
232
235
|
import { g as g32 } from "./hooks/useFormAddEdit/dictionary.js";
|
|
233
|
-
import { u as
|
|
234
|
-
import { u as
|
|
235
|
-
import { u as
|
|
236
|
-
import { u as
|
|
237
|
-
import { u as
|
|
236
|
+
import { u as u27 } from "./hooks/useFormFocus/index.js";
|
|
237
|
+
import { u as u28 } from "./hooks/useInterval/index.js";
|
|
238
|
+
import { u as u29 } from "./hooks/useComponentSize/useComponentSize.js";
|
|
239
|
+
import { u as u30 } from "./hooks/useFormReadyForUpdate/index.js";
|
|
240
|
+
import { u as u31 } from "./hooks/useStateRef/index.js";
|
|
238
241
|
import { S as S21 } from "./hooks/useSvgColor/constants.js";
|
|
239
|
-
import { u as
|
|
240
|
-
import { u as
|
|
241
|
-
import { u as
|
|
242
|
-
import { u as
|
|
243
|
-
import { u as
|
|
244
|
-
import { u as
|
|
245
|
-
import { u as
|
|
242
|
+
import { u as u32 } from "./hooks/useSvgColor/useSvgColor.js";
|
|
243
|
+
import { u as u33 } from "./hooks/useDynamicFilterAndSort/useDynamicFilterAndSort.js";
|
|
244
|
+
import { u as u34 } from "./hooks/useDataGridPersistence/useDataGridPersistence.js";
|
|
245
|
+
import { u as u35 } from "./hooks/usePopoverContainer/usePopoverContainer.js";
|
|
246
|
+
import { u as u36 } from "./hooks/useIsVisible/useIsVisible.js";
|
|
247
|
+
import { u as u37 } from "./hooks/useSizeContainer/index.js";
|
|
248
|
+
import { u as u38 } from "./hooks/useWatchTyped/useTypedWatch.js";
|
|
246
249
|
import { c as c5 } from "./utils/capitalizeFirstLetter.js";
|
|
247
250
|
import { i as i2 } from "./utils/isValidDate.js";
|
|
248
251
|
import { g as g33 } from "./utils/getComponentUtilityClass.js";
|
|
@@ -283,17 +286,18 @@ export {
|
|
|
283
286
|
B3 as Breadcrumbs,
|
|
284
287
|
B5 as Button,
|
|
285
288
|
C as Card,
|
|
286
|
-
|
|
289
|
+
C19 as CheckBox,
|
|
287
290
|
C2 as Chip,
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
+
C22 as ChipStatusFormatter,
|
|
292
|
+
C18 as CircularProgress,
|
|
293
|
+
C21 as ColorFormatter,
|
|
291
294
|
C4 as ColumnBooleanFormatter,
|
|
292
295
|
C14 as ColumnChipStatusFormatter,
|
|
293
296
|
C16 as ColumnColorFormatter,
|
|
294
297
|
C5 as ColumnConcatenatedValueFormatter,
|
|
295
298
|
C6 as ColumnDateFormatter,
|
|
296
299
|
C7 as ColumnIconFormatter,
|
|
300
|
+
C17 as ColumnImageFormatter,
|
|
297
301
|
C8 as ColumnInteractiveCheckFormatter,
|
|
298
302
|
C9 as ColumnNestedValueFormatter,
|
|
299
303
|
C10 as ColumnPointsFormatter,
|
|
@@ -301,7 +305,7 @@ export {
|
|
|
301
305
|
C12 as ColumnSetCheckFormatter,
|
|
302
306
|
C15 as ColumnTagsFormatter,
|
|
303
307
|
C13 as ColumnUncertaintyFormatter,
|
|
304
|
-
|
|
308
|
+
C20 as ConcatenatedFormatter,
|
|
305
309
|
C3 as ContainerFlow,
|
|
306
310
|
b3 as DATAGRID_ROW_HEADER_HEIGHTS,
|
|
307
311
|
a4 as DATAGRID_ROW_HEIGHTS,
|
|
@@ -324,12 +328,13 @@ export {
|
|
|
324
328
|
H as HamburgerMenu,
|
|
325
329
|
H2 as HelmetPage,
|
|
326
330
|
H3 as HelperError,
|
|
327
|
-
|
|
331
|
+
I5 as Icon,
|
|
328
332
|
I2 as IconButton,
|
|
329
333
|
I as IconButtonAnimate,
|
|
330
|
-
|
|
334
|
+
I6 as Image,
|
|
331
335
|
I3 as ImageButton,
|
|
332
|
-
|
|
336
|
+
I4 as ImageFormatter,
|
|
337
|
+
I7 as ImageText,
|
|
333
338
|
L2 as LABEL_FILTER_BUTTON,
|
|
334
339
|
L6 as Label,
|
|
335
340
|
L7 as LanguagePopover,
|
|
@@ -518,7 +523,7 @@ export {
|
|
|
518
523
|
r as rhfPeriodStyles,
|
|
519
524
|
t as toggleButtonStyles,
|
|
520
525
|
t2 as toggleIconButtonStyles,
|
|
521
|
-
|
|
526
|
+
u23 as useAppearanceComponentStore,
|
|
522
527
|
u as useAreasStore,
|
|
523
528
|
u2 as useColumnBoolean,
|
|
524
529
|
u12 as useColumnChipStatus,
|
|
@@ -526,6 +531,7 @@ export {
|
|
|
526
531
|
u3 as useColumnConcatenatedValue,
|
|
527
532
|
u4 as useColumnDate,
|
|
528
533
|
u5 as useColumnIcon,
|
|
534
|
+
u15 as useColumnImage,
|
|
529
535
|
u6 as useColumnInteractiveCheck,
|
|
530
536
|
u7 as useColumnNestedValue,
|
|
531
537
|
u8 as useColumnPoints,
|
|
@@ -533,29 +539,29 @@ export {
|
|
|
533
539
|
u10 as useColumnSetCheck,
|
|
534
540
|
u13 as useColumnTags,
|
|
535
541
|
u11 as useColumnUncertanity,
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
+
u29 as useComponentSize,
|
|
543
|
+
u18 as useCustomForm,
|
|
544
|
+
u34 as useDataGridPersistence,
|
|
545
|
+
u17 as useDistanceToNowFormatter,
|
|
546
|
+
u33 as useDynamicFilterAndSort,
|
|
547
|
+
u21 as useDynamicMFParameters,
|
|
542
548
|
a13 as useDynamicMFParametersStore,
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
549
|
+
u24 as useFormAddEdit,
|
|
550
|
+
u27 as useFormFocus,
|
|
551
|
+
u30 as useFormReadyForUpdate,
|
|
552
|
+
u16 as useFormatPeriod,
|
|
553
|
+
u28 as useInterval,
|
|
554
|
+
u36 as useIsVisible,
|
|
555
|
+
u25 as useModal,
|
|
556
|
+
u35 as usePopoverContainer,
|
|
557
|
+
u19 as usePopupsStore,
|
|
558
|
+
u37 as useSizeContainer,
|
|
559
|
+
u31 as useStateRef,
|
|
560
|
+
u22 as useStepper,
|
|
561
|
+
u32 as useSvgColor,
|
|
562
|
+
u26 as useTab,
|
|
563
|
+
u38 as useWatchTyped,
|
|
564
|
+
u20 as useWindowToolsMF,
|
|
559
565
|
v2 as varBounce,
|
|
560
566
|
v3 as varContainer,
|
|
561
567
|
v as varFade,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m4l/components",
|
|
3
|
-
"version": "9.3.
|
|
3
|
+
"version": "9.3.35-BE20251128-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": "
|
|
15
|
-
"@m4l/styles": "
|
|
14
|
+
"@m4l/graphics": "7.2.1-BE20251128-beta.1",
|
|
15
|
+
"@m4l/styles": "7.1.36-BE20251128-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",
|