@m4l/components 9.3.30-JA.beta-1 → 9.3.31

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 (94) hide show
  1. package/@types/types.d.ts +8 -0
  2. package/commonjs/index.js +1 -0
  3. package/components/AccountPopover/slots/AccountPopoverSlots.d.ts +3 -3
  4. package/components/Chip/slots/ChipSlots.d.ts +1 -1
  5. package/components/EditLabel/slots/EditLabelSlots.d.ts +1 -1
  6. package/components/HelperError/slots/HelperErrorSlots.d.ts +1 -1
  7. package/components/ImageText/slots/ImageTextSlots.d.ts +2 -2
  8. package/components/Label/slots/LabelSlots.d.ts +2 -2
  9. package/components/LoadingError/LoadingError.js +2 -1
  10. package/components/LoadingError/slots/LoadingErrorSlots.d.ts +1 -1
  11. package/components/Pager/slots/PagerSlots.d.ts +3 -3
  12. package/components/PaperForm/slots/PaperFormSlots.d.ts +1 -1
  13. package/components/SettingsLayout/slots/SettingsLayoutSlots.d.ts +1 -1
  14. package/components/Stepper/slots/StepperSlot.d.ts +4 -4
  15. package/components/TabsNavigator/TabsNavigator.d.ts +5 -0
  16. package/components/TabsNavigator/TabsNavigator.js +53 -0
  17. package/components/TabsNavigator/TabsNavigator.styles.d.ts +2 -0
  18. package/components/TabsNavigator/TabsNavigator.styles.js +260 -0
  19. package/components/TabsNavigator/__tests__/TabNavigatorClusterComponent.test.d.ts +1 -0
  20. package/components/TabsNavigator/__tests__/TabNavigatorComponent.test.d.ts +1 -0
  21. package/components/TabsNavigator/__tests__/TabsNavigator.integration.test.d.ts +1 -0
  22. package/components/TabsNavigator/__tests__/TextMarquee.test.d.ts +1 -0
  23. package/components/TabsNavigator/__tests__/getClusterTabs.test.d.ts +1 -0
  24. package/components/TabsNavigator/__tests__/getFinalTabs.test.d.ts +1 -0
  25. package/components/TabsNavigator/__tests__/mocks/tabsNavigatorMocks.d.ts +36 -0
  26. package/components/TabsNavigator/__tests__/useTabsNavigator.test.d.ts +1 -0
  27. package/components/TabsNavigator/constants.d.ts +20 -0
  28. package/components/TabsNavigator/constants.js +18 -0
  29. package/components/TabsNavigator/dictionary.d.ts +4 -0
  30. package/components/TabsNavigator/dictionary.js +11 -0
  31. package/components/TabsNavigator/helpers/getClusterTabs/getClusterTabs.d.ts +13 -0
  32. package/components/TabsNavigator/helpers/getClusterTabs/getClusterTabs.js +12 -0
  33. package/components/TabsNavigator/helpers/getClusterTabs/index.d.ts +1 -0
  34. package/components/TabsNavigator/helpers/getClusterTabs/index.js +1 -0
  35. package/components/TabsNavigator/helpers/getFinalTabs/getFinalTabs.d.ts +13 -0
  36. package/components/TabsNavigator/helpers/getFinalTabs/getFinalTabs.js +27 -0
  37. package/components/TabsNavigator/helpers/getFinalTabs/index.d.ts +1 -0
  38. package/components/TabsNavigator/helpers/getFinalTabs/index.js +1 -0
  39. package/components/TabsNavigator/hooks/useTabsNavigator/types.d.ts +6 -0
  40. package/components/TabsNavigator/hooks/useTabsNavigator/useTabsNavigator.d.ts +11 -0
  41. package/components/TabsNavigator/hooks/useTabsNavigator/useTabsNavigator.js +28 -0
  42. package/components/TabsNavigator/icons.d.ts +3 -0
  43. package/components/TabsNavigator/icons.js +6 -0
  44. package/components/TabsNavigator/index.d.ts +3 -0
  45. package/components/TabsNavigator/index.js +1 -0
  46. package/components/TabsNavigator/slots/TabsNavigatorEnum.d.ts +16 -0
  47. package/components/TabsNavigator/slots/TabsNavigatorEnum.js +22 -0
  48. package/components/TabsNavigator/slots/TabsNavigatorSlots.d.ts +30 -0
  49. package/components/TabsNavigator/slots/TabsNavigatorSlots.js +60 -0
  50. package/components/TabsNavigator/subcomponents/TabNavigatorClusterComponent/TabNavigatorClusterComponent.d.ts +7 -0
  51. package/components/TabsNavigator/subcomponents/TabNavigatorClusterComponent/TabNavigatorClusterComponent.js +120 -0
  52. package/components/TabsNavigator/subcomponents/TabNavigatorComponent/TabNavigatorComponent.d.ts +7 -0
  53. package/components/TabsNavigator/subcomponents/TabNavigatorComponent/TabNavigatorComponent.js +77 -0
  54. package/components/TabsNavigator/subcomponents/TextMarquee/TextMarquee.d.ts +6 -0
  55. package/components/TabsNavigator/subcomponents/TextMarquee/TextMarquee.js +99 -0
  56. package/components/TabsNavigator/subcomponents/TextMarquee/index.d.ts +2 -0
  57. package/components/TabsNavigator/subcomponents/TextMarquee/index.js +1 -0
  58. package/components/TabsNavigator/subcomponents/TextMarquee/types.d.ts +8 -0
  59. package/components/TabsNavigator/types.d.ts +43 -0
  60. package/components/ToastContainer/slots/toastContainerSlots.d.ts +2 -2
  61. package/components/WindowBase/slots/WindowBaseSlots.d.ts +2 -2
  62. package/components/areas/components/AreasAdmin/slots/AreasAdminSlots.d.ts +1 -1
  63. package/components/areas/contexts/AreasContext/store.js +2 -2
  64. package/components/formatters/BooleanFormatter/slots/BooleanFormatterSlots.d.ts +1 -1
  65. package/components/formatters/ConcatenatedFormatter/slots/ConcatenatedFormatterSlots.d.ts +1 -1
  66. package/components/formatters/DateFormatter/slots/DateFormatterSlots.d.ts +1 -1
  67. package/components/formatters/DistanceToNowFormatter/slots/DistanceToNowFormatterSlots.d.ts +1 -1
  68. package/components/formatters/PeriodFormatter/slots/PeriodFormatterSlots.d.ts +1 -1
  69. package/components/formatters/PointsFormatter/slots/ointsFormatterSlots.d.ts +1 -1
  70. package/components/formatters/PriceFormatter/slots/PriceFormatterSlots.d.ts +1 -1
  71. package/components/formatters/UncertaintyFormatter/slots/UncertaintyFormatterSlots.d.ts +1 -1
  72. package/components/hook-form/RHFUpload/RHFUploadImage/slots/RHFUploadImageSlots.d.ts +1 -1
  73. package/components/hook-form/RHFUpload/RHFUploadSingleFile/slots/RHFUploadSingleFileSlots.d.ts +5 -5
  74. package/components/hook-form/RHFormProvider/RHFormProvider.d.ts +2 -19
  75. package/components/hook-form/RHFormProvider/RHFormProvider.js +10 -5
  76. package/components/hook-form/RHFormProvider/types.d.ts +8 -4
  77. package/components/index.d.ts +1 -0
  78. package/components/mui_extended/Accordion/slots/AccordionSlots.d.ts +1 -1
  79. package/components/mui_extended/Autocomplete/slots/AutocompleteSlots.d.ts +2 -2
  80. package/components/mui_extended/Button/slots/ButtonSlots.d.ts +1 -1
  81. package/components/mui_extended/CheckBox/slots/CheckBoxSlots.d.ts +1 -1
  82. package/components/mui_extended/MenuItem/slots/MenuItemSlots.d.ts +1 -1
  83. package/components/mui_extended/NavLink/slots/NavLinkSlots.d.ts +1 -1
  84. package/components/mui_extended/Select/slots/SelectSlots.d.ts +3 -3
  85. package/components/mui_extended/Tab/Slots/TabSlots.d.ts +1 -1
  86. package/components/mui_extended/TextField/slots/TextFieldSlots.d.ts +3 -3
  87. package/components/mui_extended/Typography/Typography.d.ts +1 -1
  88. package/components/mui_extended/Typography/Typography.js +4 -2
  89. package/hooks/index.d.ts +1 -1
  90. package/hooks/useFormAddEdit/{index.d.ts → useFormAddEdit.d.ts} +2 -1
  91. package/index.js +31 -27
  92. package/not_recognized/index.js +627 -0
  93. package/package.json +1 -1
  94. /package/hooks/useFormAddEdit/{index.js → useFormAddEdit.js} +0 -0
@@ -7,7 +7,7 @@ export declare const HeaderStyled: import('@emotion/styled').StyledComponent<imp
7
7
  export declare const IconStyled: import('@emotion/styled').StyledComponent<Pick<import('../../Icon').IconProps, keyof import('../../Icon').IconProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
8
8
  ownerState?: (Partial<import('../types').PaperFormOwnerState> & Record<string, unknown>) | undefined;
9
9
  }, {}, {}>;
10
- export declare const TitleStyled: import('@emotion/styled').StyledComponent<Pick<import('../../mui_extended/Typography/types').TypographyProps, keyof import('../../mui_extended/Typography/types').TypographyProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
10
+ export declare const TitleStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../mui_extended/Typography/types').TypographyProps, "ref"> & import('react').RefAttributes<HTMLSpanElement>, "size" | "children" | "title" | "component" | "zIndex" | "id" | "disabled" | "paragraph" | "border" | "fontWeight" | "lineHeight" | "letterSpacing" | "fontSize" | "textTransform" | "fontFamily" | "typography" | "flex" | "hidden" | "color" | "left" | "right" | "bottom" | "top" | "ellipsis" | "content" | "style" | "position" | "padding" | "variant" | "borderRadius" | "width" | "display" | "borderColor" | "height" | "gap" | "minHeight" | "margin" | "overflow" | "boxShadow" | "minWidth" | "justifyContent" | "alignItems" | "paddingLeft" | "borderLeft" | "borderTop" | "maxWidth" | "flexDirection" | "paddingRight" | "borderRight" | "flexGrow" | "marginLeft" | "textOverflow" | "borderBottom" | "gridTemplateColumns" | "marginBottom" | "dataTestid" | "alignContent" | "alignSelf" | "boxSizing" | "columnGap" | "flexBasis" | "flexShrink" | "flexWrap" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateRows" | "justifyItems" | "justifySelf" | "marginBlockEnd" | "marginBlockStart" | "marginInlineEnd" | "marginInlineStart" | "marginRight" | "marginTop" | "maxHeight" | "order" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingTop" | "rowGap" | "textAlign" | "translate" | "visibility" | "whiteSpace" | "gridArea" | "gridColumn" | "gridRow" | "marginBlock" | "marginInline" | "paddingBlock" | "paddingInline" | "className" | "classes" | "sx" | "p" | "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" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "displayPrint" | "align" | "htmlFor" | "gutterBottom" | "noWrap" | "variantMapping" | "skeletonWidth" | "skeletonRows" | keyof import('react').RefAttributes<HTMLSpanElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
11
11
  ownerState?: (Partial<import('../types').PaperFormOwnerState> & Record<string, unknown>) | undefined;
12
12
  }, {}, {}>;
13
13
  export declare const ContentStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
@@ -9,7 +9,7 @@ export declare const BackdropStyled: import('@emotion/styled').StyledComponent<P
9
9
  export declare const IconStyled: import('@emotion/styled').StyledComponent<Pick<import('../..').IconProps, keyof import('../..').IconProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown> & {
10
10
  ownerState?: (Partial<import('../types').SettingsLayoutOwnerState> & Record<string, unknown>) | undefined;
11
11
  }, {}, {}>;
12
- export declare const TypographyStyled: import('@emotion/styled').StyledComponent<Pick<import('../../mui_extended/Typography/types').TypographyProps, keyof import('../../mui_extended/Typography/types').TypographyProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown> & {
12
+ export declare const TypographyStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../mui_extended/Typography/types').TypographyProps, "ref"> & import('react').RefAttributes<HTMLSpanElement>, "size" | "children" | "title" | "component" | "zIndex" | "id" | "disabled" | "paragraph" | "border" | "fontWeight" | "lineHeight" | "letterSpacing" | "fontSize" | "textTransform" | "fontFamily" | "typography" | "flex" | "hidden" | "color" | "left" | "right" | "bottom" | "top" | "ellipsis" | "content" | "style" | "position" | "padding" | "variant" | "borderRadius" | "width" | "display" | "borderColor" | "height" | "gap" | "minHeight" | "margin" | "overflow" | "boxShadow" | "minWidth" | "justifyContent" | "alignItems" | "paddingLeft" | "borderLeft" | "borderTop" | "maxWidth" | "flexDirection" | "paddingRight" | "borderRight" | "flexGrow" | "marginLeft" | "textOverflow" | "borderBottom" | "gridTemplateColumns" | "marginBottom" | "dataTestid" | "alignContent" | "alignSelf" | "boxSizing" | "columnGap" | "flexBasis" | "flexShrink" | "flexWrap" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateRows" | "justifyItems" | "justifySelf" | "marginBlockEnd" | "marginBlockStart" | "marginInlineEnd" | "marginInlineStart" | "marginRight" | "marginTop" | "maxHeight" | "order" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingTop" | "rowGap" | "textAlign" | "translate" | "visibility" | "whiteSpace" | "gridArea" | "gridColumn" | "gridRow" | "marginBlock" | "marginInline" | "paddingBlock" | "paddingInline" | "className" | "classes" | "sx" | "p" | "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" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "displayPrint" | "align" | "htmlFor" | "gutterBottom" | "noWrap" | "variantMapping" | "skeletonWidth" | "skeletonRows" | keyof import('react').RefAttributes<HTMLSpanElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown> & {
13
13
  ownerState?: (Partial<import('../types').SettingsLayoutOwnerState> & Record<string, unknown>) | undefined;
14
14
  }, {}, {}>;
15
15
  export declare const HeaderContainerStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown> & {
@@ -19,13 +19,13 @@ export declare const StepContentStyled: import('@emotion/styled').StyledComponen
19
19
  export declare const StepStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
20
20
  ownerState?: (Partial<import('../types').StepperOwnerState> & Record<string, unknown>) | undefined;
21
21
  }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
22
- export declare const StepNameStyled: import('@emotion/styled').StyledComponent<Pick<import('../../mui_extended/Typography/types').TypographyProps, keyof import('../../mui_extended/Typography/types').TypographyProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
22
+ export declare const StepNameStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../mui_extended/Typography/types').TypographyProps, "ref"> & import('react').RefAttributes<HTMLSpanElement>, "size" | "children" | "title" | "component" | "zIndex" | "id" | "disabled" | "paragraph" | "border" | "fontWeight" | "lineHeight" | "letterSpacing" | "fontSize" | "textTransform" | "fontFamily" | "typography" | "flex" | "hidden" | "color" | "left" | "right" | "bottom" | "top" | "ellipsis" | "content" | "style" | "position" | "padding" | "variant" | "borderRadius" | "width" | "display" | "borderColor" | "height" | "gap" | "minHeight" | "margin" | "overflow" | "boxShadow" | "minWidth" | "justifyContent" | "alignItems" | "paddingLeft" | "borderLeft" | "borderTop" | "maxWidth" | "flexDirection" | "paddingRight" | "borderRight" | "flexGrow" | "marginLeft" | "textOverflow" | "borderBottom" | "gridTemplateColumns" | "marginBottom" | "dataTestid" | "alignContent" | "alignSelf" | "boxSizing" | "columnGap" | "flexBasis" | "flexShrink" | "flexWrap" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateRows" | "justifyItems" | "justifySelf" | "marginBlockEnd" | "marginBlockStart" | "marginInlineEnd" | "marginInlineStart" | "marginRight" | "marginTop" | "maxHeight" | "order" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingTop" | "rowGap" | "textAlign" | "translate" | "visibility" | "whiteSpace" | "gridArea" | "gridColumn" | "gridRow" | "marginBlock" | "marginInline" | "paddingBlock" | "paddingInline" | "className" | "classes" | "sx" | "p" | "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" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "displayPrint" | "align" | "htmlFor" | "gutterBottom" | "noWrap" | "variantMapping" | "skeletonWidth" | "skeletonRows" | keyof import('react').RefAttributes<HTMLSpanElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
23
23
  ownerState?: (Partial<import('../types').StepperOwnerState> & Record<string, unknown>) | undefined;
24
24
  }, {}, {}>;
25
25
  export declare const IndicatorStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
26
26
  ownerState?: (Partial<import('../types').StepperOwnerState> & Record<string, unknown>) | undefined;
27
27
  }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
28
- export declare const TextNumberStyled: import('@emotion/styled').StyledComponent<Pick<import('../../mui_extended/Typography/types').TypographyProps, keyof import('../../mui_extended/Typography/types').TypographyProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
28
+ export declare const TextNumberStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../mui_extended/Typography/types').TypographyProps, "ref"> & import('react').RefAttributes<HTMLSpanElement>, "size" | "children" | "title" | "component" | "zIndex" | "id" | "disabled" | "paragraph" | "border" | "fontWeight" | "lineHeight" | "letterSpacing" | "fontSize" | "textTransform" | "fontFamily" | "typography" | "flex" | "hidden" | "color" | "left" | "right" | "bottom" | "top" | "ellipsis" | "content" | "style" | "position" | "padding" | "variant" | "borderRadius" | "width" | "display" | "borderColor" | "height" | "gap" | "minHeight" | "margin" | "overflow" | "boxShadow" | "minWidth" | "justifyContent" | "alignItems" | "paddingLeft" | "borderLeft" | "borderTop" | "maxWidth" | "flexDirection" | "paddingRight" | "borderRight" | "flexGrow" | "marginLeft" | "textOverflow" | "borderBottom" | "gridTemplateColumns" | "marginBottom" | "dataTestid" | "alignContent" | "alignSelf" | "boxSizing" | "columnGap" | "flexBasis" | "flexShrink" | "flexWrap" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateRows" | "justifyItems" | "justifySelf" | "marginBlockEnd" | "marginBlockStart" | "marginInlineEnd" | "marginInlineStart" | "marginRight" | "marginTop" | "maxHeight" | "order" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingTop" | "rowGap" | "textAlign" | "translate" | "visibility" | "whiteSpace" | "gridArea" | "gridColumn" | "gridRow" | "marginBlock" | "marginInline" | "paddingBlock" | "paddingInline" | "className" | "classes" | "sx" | "p" | "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" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "displayPrint" | "align" | "htmlFor" | "gutterBottom" | "noWrap" | "variantMapping" | "skeletonWidth" | "skeletonRows" | keyof import('react').RefAttributes<HTMLSpanElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
29
29
  ownerState?: (Partial<import('../types').StepperOwnerState> & Record<string, unknown>) | undefined;
30
30
  }, {}, {}>;
31
31
  export declare const ContentAreaBodyStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
@@ -43,10 +43,10 @@ export declare const WrapperTitleStyled: import('@emotion/styled').StyledCompone
43
43
  export declare const IconStyled: import('@emotion/styled').StyledComponent<Pick<import('../../Icon/types').IconProps, keyof import('../../Icon/types').IconProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
44
44
  ownerState?: (Partial<import('../types').StepperOwnerState> & Record<string, unknown>) | undefined;
45
45
  }, {}, {}>;
46
- export declare const TitleStyled: import('@emotion/styled').StyledComponent<Pick<import('../../mui_extended/Typography/types').TypographyProps, keyof import('../../mui_extended/Typography/types').TypographyProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
46
+ export declare const TitleStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../mui_extended/Typography/types').TypographyProps, "ref"> & import('react').RefAttributes<HTMLSpanElement>, "size" | "children" | "title" | "component" | "zIndex" | "id" | "disabled" | "paragraph" | "border" | "fontWeight" | "lineHeight" | "letterSpacing" | "fontSize" | "textTransform" | "fontFamily" | "typography" | "flex" | "hidden" | "color" | "left" | "right" | "bottom" | "top" | "ellipsis" | "content" | "style" | "position" | "padding" | "variant" | "borderRadius" | "width" | "display" | "borderColor" | "height" | "gap" | "minHeight" | "margin" | "overflow" | "boxShadow" | "minWidth" | "justifyContent" | "alignItems" | "paddingLeft" | "borderLeft" | "borderTop" | "maxWidth" | "flexDirection" | "paddingRight" | "borderRight" | "flexGrow" | "marginLeft" | "textOverflow" | "borderBottom" | "gridTemplateColumns" | "marginBottom" | "dataTestid" | "alignContent" | "alignSelf" | "boxSizing" | "columnGap" | "flexBasis" | "flexShrink" | "flexWrap" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateRows" | "justifyItems" | "justifySelf" | "marginBlockEnd" | "marginBlockStart" | "marginInlineEnd" | "marginInlineStart" | "marginRight" | "marginTop" | "maxHeight" | "order" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingTop" | "rowGap" | "textAlign" | "translate" | "visibility" | "whiteSpace" | "gridArea" | "gridColumn" | "gridRow" | "marginBlock" | "marginInline" | "paddingBlock" | "paddingInline" | "className" | "classes" | "sx" | "p" | "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" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "displayPrint" | "align" | "htmlFor" | "gutterBottom" | "noWrap" | "variantMapping" | "skeletonWidth" | "skeletonRows" | keyof import('react').RefAttributes<HTMLSpanElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
47
47
  ownerState?: (Partial<import('../types').StepperOwnerState> & Record<string, unknown>) | undefined;
48
48
  }, {}, {}>;
49
- export declare const DescriptionStyled: import('@emotion/styled').StyledComponent<Pick<import('../../mui_extended/Typography/types').TypographyProps, keyof import('../../mui_extended/Typography/types').TypographyProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
49
+ export declare const DescriptionStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../mui_extended/Typography/types').TypographyProps, "ref"> & import('react').RefAttributes<HTMLSpanElement>, "size" | "children" | "title" | "component" | "zIndex" | "id" | "disabled" | "paragraph" | "border" | "fontWeight" | "lineHeight" | "letterSpacing" | "fontSize" | "textTransform" | "fontFamily" | "typography" | "flex" | "hidden" | "color" | "left" | "right" | "bottom" | "top" | "ellipsis" | "content" | "style" | "position" | "padding" | "variant" | "borderRadius" | "width" | "display" | "borderColor" | "height" | "gap" | "minHeight" | "margin" | "overflow" | "boxShadow" | "minWidth" | "justifyContent" | "alignItems" | "paddingLeft" | "borderLeft" | "borderTop" | "maxWidth" | "flexDirection" | "paddingRight" | "borderRight" | "flexGrow" | "marginLeft" | "textOverflow" | "borderBottom" | "gridTemplateColumns" | "marginBottom" | "dataTestid" | "alignContent" | "alignSelf" | "boxSizing" | "columnGap" | "flexBasis" | "flexShrink" | "flexWrap" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateRows" | "justifyItems" | "justifySelf" | "marginBlockEnd" | "marginBlockStart" | "marginInlineEnd" | "marginInlineStart" | "marginRight" | "marginTop" | "maxHeight" | "order" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingTop" | "rowGap" | "textAlign" | "translate" | "visibility" | "whiteSpace" | "gridArea" | "gridColumn" | "gridRow" | "marginBlock" | "marginInline" | "paddingBlock" | "paddingInline" | "className" | "classes" | "sx" | "p" | "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" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "displayPrint" | "align" | "htmlFor" | "gutterBottom" | "noWrap" | "variantMapping" | "skeletonWidth" | "skeletonRows" | keyof import('react').RefAttributes<HTMLSpanElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
50
50
  ownerState?: (Partial<import('../types').StepperOwnerState> & Record<string, unknown>) | undefined;
51
51
  }, {}, {}>;
52
52
  export declare const StepperFooterSectionStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
@@ -0,0 +1,5 @@
1
+ import { TabsNavigatorProps } from './types';
2
+ /**
3
+ * todo: documentar
4
+ */
5
+ export declare const TabsNavigator: (props: TabsNavigatorProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,53 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { T as TabsNavigatorRootStyled } from "./slots/TabsNavigatorSlots.js";
3
+ import { useMemo } from "react";
4
+ import { T as TabNavigatorClusterComponent } from "./subcomponents/TabNavigatorClusterComponent/TabNavigatorClusterComponent.js";
5
+ import { u as useTabsNavigator } from "./hooks/useTabsNavigator/useTabsNavigator.js";
6
+ import { T as TabNavigatorComponent } from "./subcomponents/TabNavigatorComponent/TabNavigatorComponent.js";
7
+ import clsx from "clsx";
8
+ import { T as TABS_NAVIGATOR_CLASSES } from "./constants.js";
9
+ import { u as useStateRef } from "../../hooks/useStateRef/index.js";
10
+ import { u as useComponentSize } from "../../hooks/useComponentSize/useComponentSize.js";
11
+ const TabsNavigator = (props) => {
12
+ const { tabs, variant = "horizontal", size, selectedId, className, onChangeSelectedId, maxColumnsPopover = 3 } = props;
13
+ const { currentSize } = useComponentSize(size);
14
+ const [containerRef, setContainerRef] = useStateRef(null);
15
+ const { finalTabs } = useTabsNavigator({ element: containerRef, tabs, variant });
16
+ const ownerState = useMemo(() => ({
17
+ size: currentSize,
18
+ variant
19
+ }), [currentSize, variant]);
20
+ const renderTabs = useMemo(() => {
21
+ return finalTabs.map((tab) => "children" in tab ? /* @__PURE__ */ jsx(
22
+ TabNavigatorClusterComponent,
23
+ {
24
+ ...tab,
25
+ selectedId,
26
+ onChangeSelectedId,
27
+ variant,
28
+ maxColumnsPopover
29
+ },
30
+ tab.label
31
+ ) : /* @__PURE__ */ jsx(
32
+ TabNavigatorComponent,
33
+ {
34
+ ...tab,
35
+ selectedId,
36
+ onChangeSelectedId
37
+ },
38
+ tab.label
39
+ ));
40
+ }, [finalTabs, selectedId, onChangeSelectedId, variant, maxColumnsPopover]);
41
+ return /* @__PURE__ */ jsx(
42
+ TabsNavigatorRootStyled,
43
+ {
44
+ className: clsx(TABS_NAVIGATOR_CLASSES.root, className),
45
+ ownerState,
46
+ ref: setContainerRef,
47
+ children: renderTabs
48
+ }
49
+ );
50
+ };
51
+ export {
52
+ TabsNavigator as T
53
+ };
@@ -0,0 +1,2 @@
1
+ import { TabsNavigatorStyles } from './types';
2
+ export declare const tabsNavigatorStyles: TabsNavigatorStyles;
@@ -0,0 +1,260 @@
1
+ import { k as keyframes } from "../../not_recognized/index.js";
2
+ import { a as TAB_MAX_HEIGHT, b as TAB_MAX_WIDTH, T as TABS_NAVIGATOR_CLASSES, W as WIDTH_SCROLL_BAR } from "./constants.js";
3
+ import { g as getSizeStyles } from "../../utils/getSizeStyles/getSizeStyles.js";
4
+ const scrollText = keyframes`
5
+ 0%, 10% {
6
+ transform: translateX(0);
7
+ }
8
+ 90%, 100% {
9
+ transform: translateX(var(--scroll-distance));
10
+ }
11
+ `;
12
+ const tabsNavigatorStyles = {
13
+ /**
14
+ * Root Styles
15
+ */
16
+ root: ({ theme, ownerState }) => ({
17
+ overflow: "visible",
18
+ ...ownerState?.variant === "vertical" && {
19
+ height: "100%",
20
+ display: "flex",
21
+ flexDirection: "column",
22
+ alignItems: "flex-start",
23
+ justifyContent: "flex-start"
24
+ },
25
+ ...ownerState?.variant === "horizontal" && {
26
+ width: "100%",
27
+ display: "flex",
28
+ flexDirection: "row",
29
+ alignItems: "center",
30
+ justifyContent: "flex-start",
31
+ borderTop: theme.vars.size.borderStroke.container,
32
+ borderColor: theme.vars.palette.border.secondary
33
+ }
34
+ }),
35
+ /**
36
+ * Tab Navigator Styles
37
+ */
38
+ tabNavigatorContainer: ({ theme, ownerState }) => ({
39
+ position: "relative",
40
+ maxWidth: TAB_MAX_WIDTH,
41
+ minWidth: TAB_MAX_WIDTH,
42
+ maxHeight: TAB_MAX_HEIGHT,
43
+ minHeight: TAB_MAX_HEIGHT,
44
+ overflow: "hidden",
45
+ outline: "unset",
46
+ "&:hover": {
47
+ overflow: "visible"
48
+ },
49
+ // Estilos de estado focus-visible aplica para estado selected y no selected.
50
+ "&:focus-visible": {
51
+ [`& .${TABS_NAVIGATOR_CLASSES.tabNavigatorIconContainer}`]: {
52
+ boxShadow: `inset 0px 0px 0px 1px ${theme.vars.palette.primary.focusVisible}`
53
+ }
54
+ },
55
+ // Estilos de estado CON selección
56
+ ...ownerState?.selected && {
57
+ // Estilos de estado hover
58
+ [`& .${TABS_NAVIGATOR_CLASSES.tabNavigatorIconContainer}`]: {
59
+ backgroundColor: theme.vars.palette.primary.hoverOpacity
60
+ },
61
+ // Estilos de estado active
62
+ [`&:active .${TABS_NAVIGATOR_CLASSES.tabNavigatorIconContainer}`]: {
63
+ backgroundColor: theme.vars.palette.primary.activeOpacity
64
+ },
65
+ // Estilos de estado focus-visible
66
+ [`&:focus-visible .${TABS_NAVIGATOR_CLASSES.tabNavigatorIconContainer}`]: {
67
+ backgroundColor: theme.vars.palette.primary.activeOpacity
68
+ }
69
+ },
70
+ // Estilos de estado SIN seleccionado
71
+ ...!ownerState?.selected && {
72
+ // Estilos de estado hover
73
+ [`&:hover .${TABS_NAVIGATOR_CLASSES.tabNavigatorIconContainer}`]: {
74
+ backgroundColor: theme.vars.palette.default.hoverOpacity
75
+ },
76
+ // Estilos de estado active
77
+ [`&:active .${TABS_NAVIGATOR_CLASSES.tabNavigatorIconContainer}`]: {
78
+ backgroundColor: theme.vars.palette.default.activeOpacity
79
+ },
80
+ // Estilos de estado focus-visible
81
+ [`&:focus-visible .${TABS_NAVIGATOR_CLASSES.tabNavigatorIconContainer}`]: {
82
+ backgroundColor: theme.vars.palette.default.activeOpacity
83
+ }
84
+ }
85
+ }),
86
+ /**
87
+ * Content Popover Styles
88
+ */
89
+ contentPopover: ({ theme, ownerState }) => {
90
+ const totalTabs = ownerState?.totalTabs || 1;
91
+ const maxColumns = ownerState?.maxColumnsPopover || 4;
92
+ const visibleTabs = Math.min(totalTabs, maxColumns);
93
+ const totalGaps = Math.max(0, visibleTabs - 1) * 4;
94
+ return {
95
+ display: "flex",
96
+ flexDirection: "row",
97
+ overflow: "visible",
98
+ width: visibleTabs * TAB_MAX_WIDTH + totalGaps + WIDTH_SCROLL_BAR,
99
+ maxHeight: 300,
100
+ gap: theme.vars.size.baseSpacings.sp1
101
+ };
102
+ },
103
+ /**
104
+ * Tab Navigator Positioned Container Styles
105
+ */
106
+ tabNavigatorPositionedContainer: ({ theme }) => ({
107
+ display: "flex",
108
+ flexDirection: "column",
109
+ alignItems: "center",
110
+ gap: theme.vars.size.baseSpacings.sp1,
111
+ width: "100%",
112
+ cursor: "pointer",
113
+ position: "absolute",
114
+ minHeight: TAB_MAX_HEIGHT,
115
+ borderRadius: theme.vars.size.borderRadius.r3,
116
+ [`&.${TABS_NAVIGATOR_CLASSES.normal}`]: {
117
+ paddingTop: theme.vars.size.baseSpacings["sp3"],
118
+ paddingLeft: theme.vars.size.baseSpacings["sp1-5"],
119
+ paddingRight: theme.vars.size.baseSpacings["sp1-5"],
120
+ paddingBottom: 0
121
+ },
122
+ [`&.${TABS_NAVIGATOR_CLASSES.cluster}`]: {
123
+ paddingTop: theme.vars.size.baseSpacings.sp2,
124
+ paddingLeft: theme.vars.size.baseSpacings.sp2,
125
+ paddingRight: theme.vars.size.baseSpacings.sp2,
126
+ paddingBottom: theme.vars.size.baseSpacings.sp2
127
+ },
128
+ "&:hover": {
129
+ height: "fit-content",
130
+ zIndex: 1,
131
+ backgroundColor: theme.vars.palette.background.default,
132
+ border: theme.vars.size.borderStroke.container,
133
+ borderColor: theme.vars.palette.border.disabled,
134
+ boxShadow: theme.vars.customShadows.z3,
135
+ [`& .${TABS_NAVIGATOR_CLASSES.tabNavigatorLabel}`]: {
136
+ display: "inline",
137
+ overflow: "hidden",
138
+ textOverflow: "unset",
139
+ whiteSpace: "normal"
140
+ },
141
+ [`& .${TABS_NAVIGATOR_CLASSES.typographyTextMarqueeContainer} .${TABS_NAVIGATOR_CLASSES.typographyTextMarquee}[data-should-animate="true"]`]: {
142
+ animation: `${scrollText} var(--scroll-duration, 3s) linear forwards`,
143
+ textOverflow: "clip"
144
+ }
145
+ }
146
+ }),
147
+ /**
148
+ * Tab Navigator Icon Container Styles
149
+ */
150
+ tabNavigatorIconContainer: ({ theme, ownerState }) => ({
151
+ display: "flex",
152
+ flexDirection: "row",
153
+ alignItems: "center",
154
+ justifyContent: "center",
155
+ width: "fit-content",
156
+ height: "fit-content",
157
+ padding: theme.vars.size.baseSpacings.sp2,
158
+ borderRadius: theme.vars.size.borderRadius.r2,
159
+ transition: "all 0.2s ease",
160
+ borderColor: "transparent",
161
+ ...getSizeStyles(
162
+ theme,
163
+ ownerState?.size || "medium",
164
+ "box",
165
+ (size) => ({
166
+ width: size,
167
+ height: size
168
+ })
169
+ ),
170
+ "& .M4LIcon-iconSkeleton": {
171
+ ...getSizeStyles(
172
+ theme,
173
+ ownerState?.size || "medium",
174
+ "case",
175
+ (size) => ({
176
+ width: size,
177
+ height: size,
178
+ minWidth: size,
179
+ minHeight: size
180
+ })
181
+ )
182
+ },
183
+ ...ownerState?.selected && {
184
+ border: theme.vars.size.borderStroke.container,
185
+ borderColor: `${theme.vars.palette.primary.selectedOpacity} !important`,
186
+ backgroundColor: theme.vars.palette.primary.enabledOpacity,
187
+ "&&& .M4LIcon-icon": {
188
+ backgroundColor: theme.vars.palette.primary.enabled
189
+ }
190
+ }
191
+ }),
192
+ /**
193
+ * Tab Navigator Icon Styles
194
+ */
195
+ tabNavigatorIcon: ({ theme, ownerState }) => ({
196
+ ...getSizeStyles(
197
+ theme,
198
+ ownerState?.size || "medium",
199
+ "case",
200
+ (size) => ({
201
+ width: size,
202
+ height: size
203
+ })
204
+ ),
205
+ "& .M4LIcon-icon": {
206
+ ...ownerState?.selected ? {
207
+ backgroundColor: theme.vars.palette.text.primary
208
+ } : {
209
+ backgroundColor: theme.vars.palette.text.secondary
210
+ }
211
+ }
212
+ }),
213
+ /**
214
+ * Typography Text Marquee Container Styles
215
+ */
216
+ typographyTextMarqueeContainer: () => ({
217
+ overflow: "hidden",
218
+ maxWidth: "100%",
219
+ position: "relative"
220
+ }),
221
+ /**
222
+ * Typography Text Marquee Styles
223
+ */
224
+ typographyTextMarquee: () => {
225
+ return {
226
+ whiteSpace: "nowrap",
227
+ overflow: "hidden",
228
+ textOverflow: "ellipsis",
229
+ display: "inline-block"
230
+ };
231
+ },
232
+ /**
233
+ * Tab Navigator Label Styles
234
+ */
235
+ tabNavigatorLabel: ({ theme, ownerState }) => ({
236
+ display: "inline",
237
+ width: "100%",
238
+ textAlign: "center",
239
+ wordBreak: "break-word",
240
+ cursor: "pointer",
241
+ ...ownerState?.selected ? {
242
+ color: `${theme.vars.palette.text.primary} !important`
243
+ } : {
244
+ color: `${theme.vars.palette.text.secondary} !important`
245
+ }
246
+ }),
247
+ /**
248
+ * Popover Styles
249
+ */
250
+ popover: ({ theme }) => ({
251
+ "&&& .MuiPaper-root": {
252
+ borderRadius: theme.vars.size.borderRadius.r2,
253
+ overflow: "auto",
254
+ maxHeight: 200
255
+ }
256
+ })
257
+ };
258
+ export {
259
+ tabsNavigatorStyles as t
260
+ };
@@ -0,0 +1,36 @@
1
+ import { TabNavigator } from '../../types';
2
+ export declare const mockTabs: TabNavigator[];
3
+ export declare const finalTabsClustered: {
4
+ label: string;
5
+ icon: string;
6
+ children: TabNavigator[];
7
+ };
8
+ export declare const finalTabsClusteredTwoTabsOfThree: {
9
+ label: string;
10
+ icon: string;
11
+ children: TabNavigator[];
12
+ };
13
+ export declare const mockGetLabel: import('vitest').Mock<(key: string) => string>;
14
+ export declare const mockUseComponentSize: import('vitest').Mock<() => {
15
+ currentSize: "medium";
16
+ setDefaultSize: import('vitest').Mock<(...args: any[]) => any>;
17
+ }>;
18
+ export declare const mockSetTimeout: import('vitest').Mock<(...args: any[]) => any>;
19
+ export declare const mockClearTimeout: import('vitest').Mock<(...args: any[]) => any>;
20
+ /**
21
+ * Helper para crear props por defecto
22
+ */
23
+ export declare const createDefaultProps: (overrides?: {}) => {
24
+ tabs: TabNavigator[];
25
+ variant: "horizontal";
26
+ size: "medium";
27
+ selectedId: undefined;
28
+ onChangeSelectedId: import('vitest').Mock<(...args: any[]) => any>;
29
+ maxColumnsPopover: 3;
30
+ className: undefined;
31
+ dataTestId: undefined;
32
+ };
33
+ /**
34
+ * Helper para crear elemento DOM mock
35
+ */
36
+ export declare const createMockElement: (width?: number, height?: number) => HTMLDivElement;
@@ -0,0 +1,20 @@
1
+ import { TabsNavigatorComplementaryClasses, TabsNavigatorSlots } from './slots/TabsNavigatorEnum';
2
+ export declare const TABS_NAVIGATOR_KEY_COMPONENT = "M4LTabsNavigator";
3
+ export declare const TAB_MAX_WIDTH = 60;
4
+ export declare const TAB_MAX_HEIGHT = 68;
5
+ export declare const WIDTH_SCROLL_BAR = 8;
6
+ export declare const TABS_NAVIGATOR_COMBINED_CLASSES: {
7
+ normal: TabsNavigatorComplementaryClasses.normal;
8
+ cluster: TabsNavigatorComplementaryClasses.cluster;
9
+ root: TabsNavigatorSlots.root;
10
+ tabNavigatorContainer: TabsNavigatorSlots.tabNavigatorContainer;
11
+ tabNavigatorIconContainer: TabsNavigatorSlots.tabNavigatorIconContainer;
12
+ tabNavigatorIcon: TabsNavigatorSlots.tabNavigatorIcon;
13
+ tabNavigatorLabel: TabsNavigatorSlots.tabNavigatorLabel;
14
+ contentPopover: TabsNavigatorSlots.contentPopover;
15
+ tabNavigatorPositionedContainer: TabsNavigatorSlots.tabNavigatorPositionedContainer;
16
+ typographyTextMarqueeContainer: TabsNavigatorSlots.typographyTextMarqueeContainer;
17
+ typographyTextMarquee: TabsNavigatorSlots.typographyTextMarquee;
18
+ popover: TabsNavigatorSlots.popover;
19
+ };
20
+ export declare const TABS_NAVIGATOR_CLASSES: Record<"normal" | "root" | "popover" | "tabNavigatorContainer" | "tabNavigatorIconContainer" | "tabNavigatorIcon" | "tabNavigatorLabel" | "contentPopover" | "tabNavigatorPositionedContainer" | "typographyTextMarqueeContainer" | "typographyTextMarquee" | "cluster", string>;
@@ -0,0 +1,18 @@
1
+ import { g as getComponentClasses } from "../../utils/getComponentSlotRoot.js";
2
+ import { T as TabsNavigatorComplementaryClasses, a as TabsNavigatorSlots } from "./slots/TabsNavigatorEnum.js";
3
+ const TABS_NAVIGATOR_KEY_COMPONENT = "M4LTabsNavigator";
4
+ const TAB_MAX_WIDTH = 60;
5
+ const TAB_MAX_HEIGHT = 68;
6
+ const WIDTH_SCROLL_BAR = 8;
7
+ const TABS_NAVIGATOR_COMBINED_CLASSES = {
8
+ ...TabsNavigatorSlots,
9
+ ...TabsNavigatorComplementaryClasses
10
+ };
11
+ const TABS_NAVIGATOR_CLASSES = getComponentClasses(TABS_NAVIGATOR_KEY_COMPONENT, TABS_NAVIGATOR_COMBINED_CLASSES);
12
+ export {
13
+ TABS_NAVIGATOR_CLASSES as T,
14
+ WIDTH_SCROLL_BAR as W,
15
+ TAB_MAX_HEIGHT as a,
16
+ TAB_MAX_WIDTH as b,
17
+ TABS_NAVIGATOR_KEY_COMPONENT as c
18
+ };
@@ -0,0 +1,4 @@
1
+ export declare const getTabsNavigatorComponentsDictionary: () => string[];
2
+ export declare const TABS_NAVIGATOR_DICTIONARY_KEYS: {
3
+ CLUSTER_TABS: string;
4
+ };
@@ -0,0 +1,11 @@
1
+ const TABS_NAVIGATOR_DICTIONARY_API_KEY = "tabs_navigator";
2
+ const getTabsNavigatorComponentsDictionary = () => {
3
+ return [TABS_NAVIGATOR_DICTIONARY_API_KEY];
4
+ };
5
+ const TABS_NAVIGATOR_DICTIONARY_KEYS = {
6
+ CLUSTER_TABS: "tabs_navigator.label_cluster_tabs"
7
+ };
8
+ export {
9
+ TABS_NAVIGATOR_DICTIONARY_KEYS as T,
10
+ getTabsNavigatorComponentsDictionary as g
11
+ };