@m4l/components 9.2.48 → 9.2.50-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (171) hide show
  1. package/@types/types.d.ts +8 -1
  2. package/components/Chip/ChipStyles.js +1 -1
  3. package/components/Chip/types.d.ts +2 -1
  4. package/components/DataGrid/contexts/DataGridContext/index.js +1 -1
  5. package/components/DataGrid/contexts/FilterContext/index.js +1 -1
  6. package/components/DataGrid/dictionary.js +0 -3
  7. package/components/DataGrid/formatters/ColumnChipStatusFormatter/formatter.js +4 -3
  8. package/components/DataGrid/formatters/ColumnChipStatusFormatter/types.d.ts +4 -3
  9. package/components/DataGrid/formatters/ColumnChipStatusFormatter/useColumnChipStatus.js +4 -4
  10. package/components/DataGrid/formatters/ColumnNestedValueFormatter/formatter.js +2 -1
  11. package/components/DataGrid/formatters/ColumnNestedValueFormatter/useColumnNestedValue.d.ts +1 -1
  12. package/components/DataGrid/formatters/ColumnNestedValueFormatter/useColumnNestedValue.js +4 -3
  13. package/components/DataGrid/slots/DataGridEnum.js +2 -2
  14. package/components/DataGrid/slots/DataGridSlot.js +1 -1
  15. package/components/DataGrid/subcomponents/Table/hooks/useSortColumnsRows.js +2 -0
  16. package/components/DataGrid/subcomponents/Table/subcomponents/CheckboxFormatter.js +1 -1
  17. package/components/DataGrid/subcomponents/Table/subcomponents/CustomIcons.js +2 -2
  18. package/components/DragResizeWindowRND/DragResizeWindowRND.js +0 -1
  19. package/components/DynamicFilter/DynamicFilter.styles.js +0 -1
  20. package/components/DynamicFilter/constants.d.ts +5 -2
  21. package/components/DynamicFilter/constants.js +9 -3
  22. package/components/DynamicFilter/dictionary.d.ts +40 -38
  23. package/components/DynamicFilter/dictionary.js +33 -39
  24. package/components/DynamicFilter/helpers/formatToInitialFilters.d.ts +3 -1
  25. package/components/DynamicFilter/helpers/formatToInitialFilters.js +30 -20
  26. package/components/DynamicFilter/helpers/formatToRowFilter.js +15 -6
  27. package/components/DynamicFilter/helpers/getPurgedInitialFiltersApplied.js +1 -1
  28. package/components/DynamicFilter/store/DynamicFilterContext.js +1 -1
  29. package/components/DynamicFilter/subcomponents/AppliedFilterChip/AppliedFilterChip.d.ts +1 -1
  30. package/components/DynamicFilter/subcomponents/AppliedFilterChip/AppliedFilterChip.js +4 -3
  31. package/components/DynamicFilter/subcomponents/AppliedFilters/useAppliedFilters.js +10 -3
  32. package/components/DynamicFilter/subcomponents/DynamicFilterBase/DynamicFilterBase.js +1 -1
  33. package/components/DynamicFilter/subcomponents/FieldTypes/BooleanFilter/helpers.js +7 -7
  34. package/components/DynamicFilter/subcomponents/FieldTypes/BooleanFilter/index.js +11 -8
  35. package/components/DynamicFilter/subcomponents/FieldTypes/DateTimeFilter/helpers.js +7 -7
  36. package/components/DynamicFilter/subcomponents/FieldTypes/DateTimeFilter/index.js +10 -7
  37. package/components/DynamicFilter/subcomponents/FieldTypes/NumberFilter/helpers.js +17 -9
  38. package/components/DynamicFilter/subcomponents/FieldTypes/NumberFilter/index.js +13 -9
  39. package/components/DynamicFilter/subcomponents/FieldTypes/SelectAsyncFilter/helpers.d.ts +7 -7
  40. package/components/DynamicFilter/subcomponents/FieldTypes/SelectAsyncFilter/helpers.js +121 -46
  41. package/components/DynamicFilter/subcomponents/FieldTypes/SelectAsyncFilter/index.js +13 -11
  42. package/components/DynamicFilter/subcomponents/FieldTypes/SelectFilter/helpers.d.ts +8 -7
  43. package/components/DynamicFilter/subcomponents/FieldTypes/SelectFilter/helpers.js +127 -46
  44. package/components/DynamicFilter/subcomponents/FieldTypes/SelectFilter/index.js +11 -9
  45. package/components/DynamicFilter/subcomponents/FieldTypes/StringFilter/helpers.js +11 -7
  46. package/components/DynamicFilter/subcomponents/FieldTypes/StringFilter/index.js +10 -7
  47. package/components/DynamicFilter/subcomponents/FieldTypes/fieldFactory.d.ts +1 -1
  48. package/components/DynamicFilter/subcomponents/FilterActions/FilterActions.js +2 -1
  49. package/components/DynamicFilter/subcomponents/FilterActions/useFilterActions.d.ts +1 -1
  50. package/components/DynamicFilter/subcomponents/FilterActions/useFilterActions.js +2 -4
  51. package/components/DynamicFilter/subcomponents/InputFilter/useInputFilter.js +2 -2
  52. package/components/DynamicFilter/subcomponents/PopoverFilter/usePopoverFilter.d.ts +3 -3
  53. package/components/DynamicFilter/subcomponents/PopoverMenuFields/PopoverMenuFields.js +28 -14
  54. package/components/DynamicFilter/types.d.ts +60 -18
  55. package/components/DynamicSort/dictionary.d.ts +1 -0
  56. package/components/DynamicSort/dictionary.js +1 -5
  57. package/components/DynamicSort/slots/DynamicSortSlots.js +1 -1
  58. package/components/DynamicSort/store/DynamicSortContext.js +1 -1
  59. package/components/DynamicSort/subcomponents/DynamicSortBase/DynamicSortBase.js +1 -1
  60. package/components/DynamicSort/subcomponents/PopoverMenuFields/PopoverMenuFields.js +28 -14
  61. package/components/DynamicSort/subcomponents/PopoverSort/usePopoverSort.d.ts +3 -3
  62. package/components/GridLayout/GridLayout.js +1 -1
  63. package/components/GridLayout/styles.js +1 -1
  64. package/components/GridLayout/subcomponents/GridItem/index.js +1 -1
  65. package/components/GridLayout/subcomponents/Responsive/helper.js +1 -1
  66. package/components/GridLayout/subcomponents/Responsive/index.js +1 -1
  67. package/components/GridLayout/subcomponents/Responsive/responsiveUtils.js +3 -3
  68. package/components/GridLayout/subcomponents/withSizeProvider/index.js +1 -1
  69. package/components/Icon/Icon.js +1 -1
  70. package/components/Icon/constants.js +2 -2
  71. package/components/Icon/slots/IconSlots.js +1 -1
  72. package/components/Image/Image.js +1 -1
  73. package/components/Image/constant.js +2 -2
  74. package/components/Image/slots/ImageSlots.js +1 -1
  75. package/components/Image/subcomponents/IntersectComponent/index.js +1 -1
  76. package/components/LanguagePopover/LanguagePopover.js +1 -1
  77. package/components/LoadingError/LoadingError.js +1 -1
  78. package/components/LoadingError/slots/LoadingErrorSlots.js +1 -1
  79. package/components/MFIsolationApp/MFIsolationApp.js +2 -2
  80. package/components/MFIsolationApp/subcomponents/MFAuthApp/MFAuthApp.js +1 -1
  81. package/components/NoItemSelected/NoItemSelected.js +1 -1
  82. package/components/NumberInput/hooks/useNumberInput/NumberInputReducer.js +1 -1
  83. package/components/NumberInput/hooks/useNumberInput/useNumberInput.js +5 -3
  84. package/components/ObjectLogs/dictionary.js +1 -1
  85. package/components/Pager/Pager.styles.js +0 -8
  86. package/components/Pager/dicctionary.js +0 -5
  87. package/components/PrintingSystem/subcomponents/ChartNode/index.js +1 -1
  88. package/components/PropertyValue/PropertyValue.js +3 -3
  89. package/components/PropertyValue/PropertyValue.styles.js +4 -2
  90. package/components/PropertyValue/index.d.ts +1 -0
  91. package/components/PropertyValue/types.d.ts +0 -2
  92. package/components/ScrollBar/ScrollBar.js +1 -1
  93. package/components/SideBar/slots/SideBarEnum.js +4 -4
  94. package/components/SideBar/slots/SideBarSlots.js +1 -1
  95. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ContainerMenuItemsMain/styles.js +1 -1
  96. package/components/ToastContainer/ToastContainer.js +1 -1
  97. package/components/WindowBase/slots/WindowBaseSlots.js +1 -1
  98. package/components/animate/variants/bounce.js +1 -1
  99. package/components/animate/variants/fade.js +1 -1
  100. package/components/animate/variants/transition.js +2 -2
  101. package/components/areas/components/AreasAdmin/AreasAdmin.js +1 -1
  102. package/components/areas/components/AreasViewer/AreasViewer.js +1 -1
  103. package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/AreaGridLayout/AreaGridLayout.js +1 -1
  104. package/components/areas/contexts/AreasContext/helpers/helper.js +14 -14
  105. package/components/areas/contexts/AreasContext/store.js +5 -5
  106. package/components/areas/icons.js +0 -8
  107. package/components/commercial/HamburgerMenu/classes/index.js +1 -1
  108. package/components/extended/React-Splitter-Layout/slots/SplitLayoutSlots.d.ts +9 -3
  109. package/components/extended/React-resizable-panels/SplitLayout.js +25 -5
  110. package/components/extended/React-resizable-panels/SplitLayout.styles.js +20 -6
  111. package/components/extended/React-resizable-panels/slots/SplitLayoutSlots.d.ts +12 -4
  112. package/components/extended/React-resizable-panels/types.d.ts +7 -0
  113. package/components/formatters/BooleanFormatter/BooleanFormatter.js +1 -1
  114. package/components/formatters/BooleanFormatter/slots/BooleanFormatterSlots.js +3 -3
  115. package/components/formatters/ChipStatusFormatter/types.d.ts +3 -2
  116. package/components/formatters/PeriodFormatter/PeriodFormatter.js +1 -1
  117. package/components/formatters/PeriodFormatter/slots/PeriodFormatterSlots.js +2 -2
  118. package/components/hook-form/RHFCheckbox/slots/RHFCheckBoxSlots.js +1 -1
  119. package/components/hook-form/RHFNumberInput/index.d.ts +1 -0
  120. package/components/hook-form/RHFNumberInput/index.js +1 -0
  121. package/components/hook-form/RHFPeriod/RHFPeriod.js +1 -1
  122. package/components/hook-form/RHFTextField/RHFTextField.styles.js +1 -3
  123. package/components/hook-form/RHFTextFieldPassword/slots/RHFTextFieldPasswordSlots.js +1 -1
  124. package/components/hook-form/RHFUpload/RHFUploadSingleFile/RHFUploadSingleFile.js +1 -1
  125. package/components/hook-form/RHFormContext/classes/index.js +1 -1
  126. package/components/hook-form/RHFormContext/index.js +1 -1
  127. package/components/hook-form/index.d.ts +1 -1
  128. package/components/index.d.ts +1 -1
  129. package/components/mui_extended/Accordion/Accordion.js +1 -1
  130. package/components/mui_extended/Accordion/slots/AccordionSlots.js +2 -2
  131. package/components/mui_extended/Accordion/styles.js +1 -0
  132. package/components/mui_extended/Autocomplete/Autocomplete.js +25 -12
  133. package/components/mui_extended/Autocomplete/Autocomplete.styles.js +1 -1
  134. package/components/mui_extended/Autocomplete/slots/AutocompleteSlots.js +3 -3
  135. package/components/mui_extended/CheckBox/CheckBox.js +1 -1
  136. package/components/mui_extended/CheckBox/slots/CheckBoxSlots.js +2 -2
  137. package/components/mui_extended/DateTimePicker/slots/DateTimePickerSlots.js +1 -1
  138. package/components/mui_extended/IconButton/slots/IconButtonSlots.js +1 -1
  139. package/components/mui_extended/ImageButton/utils/Clases/index.js +1 -1
  140. package/components/mui_extended/MenuItem/slots/MenuItemSlots.js +1 -1
  141. package/components/mui_extended/NavLink/NavLink.js +1 -1
  142. package/components/mui_extended/NavLink/constants.js +2 -2
  143. package/components/mui_extended/NavLink/slots/NavLinkSlots.js +1 -1
  144. package/components/mui_extended/Popover/Popover.js +1 -1
  145. package/components/mui_extended/Popover/Popover.styles.js +1 -5
  146. package/components/mui_extended/Popover/constants.js +2 -2
  147. package/components/mui_extended/Select/Select.js +1 -1
  148. package/components/mui_extended/Select/Select.styles.js +1 -1
  149. package/components/mui_extended/Select/constants.js +1 -1
  150. package/components/mui_extended/Select/slots/SelectSlots.js +1 -1
  151. package/components/mui_extended/Tab/Tab.js +1 -1
  152. package/components/mui_extended/TabContent/TabContent.styles.js +2 -1
  153. package/components/mui_extended/TextField/constants.js +1 -1
  154. package/components/mui_extended/Tooltip/Tooltip.js +2 -2
  155. package/components/mui_extended/Tooltip/slots/TooltipSlots.js +2 -2
  156. package/components/mui_extended/Typography/Typography.js +1 -1
  157. package/components/mui_extended/Typography/constants.js +3 -3
  158. package/components/mui_extended/Typography/slots/typographySlots.js +1 -1
  159. package/components/popups/components/PopupsViewer/icons.js +0 -1
  160. package/hooks/useDataGridPersistence/constants.js +2 -2
  161. package/hooks/useDataGridPersistence/useDataGridPersistence.js +1 -1
  162. package/hooks/useDynamicFilterAndSort/styles.js +2 -0
  163. package/hooks/useDynamicFilterAndSort/types.d.ts +1 -0
  164. package/hooks/useDynamicFilterAndSort/useDynamicFilterAndSort.js +56 -12
  165. package/hooks/useSvgColor/constants.js +2 -2
  166. package/hooks/useSvgColor/helpers.js +1 -1
  167. package/hooks/useSvgColor/useSvgColor.js +1 -1
  168. package/index.js +109 -109
  169. package/mockServiceWorker.js +1 -1
  170. package/package.json +1 -6
  171. package/components/PropertyValue/styles.d.ts +0 -1
@@ -1,33 +1,53 @@
1
1
  import { jsx, Fragment, jsxs } from "react/jsx-runtime";
2
+ import { useMemo } from "react";
2
3
  import { g as getPropDataTestId } from "../../../test/getNameDataTestId.js";
3
4
  import { g as getComponentClasses } from "../../../utils/getComponentSlotRoot.js";
4
5
  import { S as SPLIT_LAYOUT_KEY_COMPONENT } from "./constants.js";
5
6
  import { S as SplitLayoutSlots } from "./slots/SplitLayoutEnum.js";
6
7
  import { S as SplitLayoutRootStyled, a as SplitMasterStyled, b as SplitResizeHandleStyled, c as SplitDetailStyled } from "./slots/SplitLayoutSlots.js";
7
8
  const SplitLayout = (props) => {
8
- const { firstPart, secondPart, splitPosition, dataTestId } = props;
9
+ const { firstPart, secondPart, splitPosition, dataTestId, defaultMasterSize = 50, defaultDetailSize = 50 } = props;
9
10
  const classes = getComponentClasses(SPLIT_LAYOUT_KEY_COMPONENT, SplitLayoutSlots);
10
- return /* @__PURE__ */ jsx(Fragment, { children: splitPosition === "none" ? void 0 : /* @__PURE__ */ jsxs(
11
+ const firstPartMemo = useMemo(() => {
12
+ return typeof firstPart === "function" ? firstPart() : firstPart;
13
+ }, [firstPart]);
14
+ const ownerState = {
15
+ splitPosition
16
+ };
17
+ return /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsxs(
11
18
  SplitLayoutRootStyled,
12
19
  {
13
20
  ...getPropDataTestId(SPLIT_LAYOUT_KEY_COMPONENT, SplitLayoutSlots.root, dataTestId),
14
21
  className: classes.root,
15
- direction: splitPosition,
22
+ direction: splitPosition === "none" ? "vertical" : splitPosition,
23
+ ownerState,
16
24
  children: [
17
25
  /* @__PURE__ */ jsx(
18
26
  SplitMasterStyled,
19
27
  {
20
28
  ...getPropDataTestId(SPLIT_LAYOUT_KEY_COMPONENT, SplitLayoutSlots.splitMaster, dataTestId),
29
+ ownerState: {
30
+ splitPosition
31
+ },
32
+ defaultSize: defaultMasterSize,
21
33
  className: classes.master,
22
- children: typeof firstPart === "function" ? firstPart() : firstPart
34
+ children: firstPartMemo
35
+ }
36
+ ),
37
+ /* @__PURE__ */ jsx(
38
+ SplitResizeHandleStyled,
39
+ {
40
+ className: `${classes.splitResizeHandle}-${splitPosition}`,
41
+ ownerState
23
42
  }
24
43
  ),
25
- /* @__PURE__ */ jsx(SplitResizeHandleStyled, { className: `${classes.splitResizeHandle}-${splitPosition}` }),
26
44
  /* @__PURE__ */ jsx(
27
45
  SplitDetailStyled,
28
46
  {
29
47
  ...getPropDataTestId(SPLIT_LAYOUT_KEY_COMPONENT, SplitLayoutSlots.splitDetail, dataTestId),
30
48
  className: classes.splitDetail,
49
+ ownerState,
50
+ defaultSize: defaultDetailSize,
31
51
  children: typeof secondPart === "function" ? secondPart() : secondPart
32
52
  }
33
53
  )
@@ -10,25 +10,35 @@ const splitLayoutStyles = {
10
10
  /**
11
11
  * Estilos para el splitMaster
12
12
  */
13
- splitMaster: {
13
+ splitMaster: () => ({
14
14
  position: "relative",
15
15
  width: "100%",
16
16
  height: "100%",
17
17
  display: "flex",
18
- flexDirection: "column",
18
+ // flexDirection: 'column',
19
19
  overflow: "hidden",
20
20
  "& .M4LStack-root": {
21
21
  gap: "8px"
22
22
  }
23
- },
23
+ // ...(ownerState.splitPosition === 'vertical' && {
24
+ // width: '100%',
25
+ // }),
26
+ // ...(ownerState.splitPosition === 'horizontal' && {
27
+ // height: '100%',
28
+ // }),
29
+ }),
24
30
  /**
25
31
  * Estilos para el splitDetail
26
32
  */
27
- splitDetail: {
33
+ splitDetail: ({ ownerState }) => ({
28
34
  position: "relative",
29
35
  width: "100%",
30
36
  height: "100%",
31
37
  display: "flex",
38
+ ...ownerState.splitPosition === "none" && {
39
+ display: "none"
40
+ //Garantiza que no se muestre el splitDetail cuando el splitPosition es none
41
+ },
32
42
  flexDirection: "column",
33
43
  justifyContent: "center",
34
44
  alignItems: "center",
@@ -40,12 +50,16 @@ const splitLayoutStyles = {
40
50
  "& .M4LStack-root": {
41
51
  overflow: "hidden"
42
52
  }
43
- },
53
+ }),
44
54
  /**
45
55
  * Estilos para el splitResizeHandle
46
56
  */
47
- splitResizeHandle: ({ theme }) => ({
57
+ splitResizeHandle: ({ theme, ownerState }) => ({
48
58
  position: "relative",
59
+ ...ownerState.splitPosition === "none" && {
60
+ display: "none"
61
+ //Garantiza que no se muestre el splitResizeHandle cuando el splitPosition es none
62
+ },
49
63
  "&.M4LSplitLayout-splitResizeHandle-horizontal": {
50
64
  width: "2px",
51
65
  margin: "1px 0px",
@@ -11,7 +11,9 @@ export declare const SplitLayoutRootStyled: import('@emotion/styled').StyledComp
11
11
  dir?: "auto" | "ltr" | "rtl" | undefined;
12
12
  } & {
13
13
  children?: import('react').ReactNode;
14
- } & import('react').RefAttributes<import('react-resizable-panels').ImperativePanelGroupHandle>, "children" | "title" | "storage" | "id" | "direction" | "hidden" | "color" | "content" | "style" | "translate" | "className" | "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" | "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" | "onResize" | "onResizeCapture" | "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" | "tagName" | "autoSaveId" | "keyboardResizeBy" | "onLayout" | keyof import('react').RefAttributes<import('react-resizable-panels').ImperativePanelGroupHandle>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown>, {}, {}>;
14
+ } & import('react').RefAttributes<import('react-resizable-panels').ImperativePanelGroupHandle>, "children" | "title" | "storage" | "id" | "direction" | "hidden" | "color" | "content" | "style" | "translate" | "className" | "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" | "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" | "onResize" | "onResizeCapture" | "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" | "tagName" | "autoSaveId" | "keyboardResizeBy" | "onLayout" | keyof import('react').RefAttributes<import('react-resizable-panels').ImperativePanelGroupHandle>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
15
+ ownerState: Partial<import('../types').SplitLayoutOwnerState> & Record<string, unknown>;
16
+ }, {}, {}>;
15
17
  export declare const SplitMasterStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('react').HTMLAttributes<HTMLElement | HTMLDivElement | HTMLSpanElement | HTMLObjectElement | HTMLMapElement | HTMLLinkElement | HTMLTitleElement | HTMLInputElement | HTMLProgressElement | HTMLSelectElement | HTMLDataElement | HTMLHeadElement | HTMLBaseElement | HTMLHeadingElement | HTMLBodyElement | HTMLButtonElement | HTMLMeterElement | HTMLTextAreaElement | HTMLStyleElement | HTMLTableElement | HTMLEmbedElement | HTMLPreElement | HTMLAnchorElement | HTMLAreaElement | HTMLAudioElement | HTMLQuoteElement | HTMLBRElement | HTMLCanvasElement | HTMLTableColElement | HTMLDataListElement | HTMLModElement | HTMLDetailsElement | HTMLDialogElement | HTMLDListElement | HTMLFieldSetElement | HTMLFormElement | HTMLHRElement | HTMLHtmlElement | HTMLIFrameElement | HTMLImageElement | HTMLLabelElement | HTMLLegendElement | HTMLLIElement | HTMLMetaElement | HTMLOListElement | HTMLOptGroupElement | HTMLOptionElement | HTMLOutputElement | HTMLParagraphElement | HTMLSlotElement | HTMLScriptElement | HTMLSourceElement | HTMLTemplateElement | HTMLTableSectionElement | HTMLTableCellElement | HTMLTimeElement | HTMLTableRowElement | HTMLTrackElement | HTMLUListElement | HTMLVideoElement | HTMLTableCaptionElement | HTMLMenuElement | HTMLPictureElement>, "id" | "onResize"> & {
16
18
  className?: string | undefined;
17
19
  collapsedSize?: number | undefined;
@@ -28,7 +30,9 @@ export declare const SplitMasterStyled: import('@emotion/styled').StyledComponen
28
30
  tagName?: keyof HTMLElementTagNameMap | undefined;
29
31
  } & {
30
32
  children?: import('react').ReactNode;
31
- } & import('react').RefAttributes<import('react-resizable-panels').ImperativePanelHandle>, "children" | "title" | "id" | "hidden" | "color" | "content" | "style" | "order" | "translate" | "className" | "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" | "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" | "onResize" | "onResizeCapture" | "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" | "defaultSize" | "tagName" | "minSize" | "maxSize" | "collapsedSize" | "collapsible" | "onCollapse" | "onExpand" | keyof import('react').RefAttributes<import('react-resizable-panels').ImperativePanelHandle>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown>, {}, {}>;
33
+ } & import('react').RefAttributes<import('react-resizable-panels').ImperativePanelHandle>, "children" | "title" | "id" | "hidden" | "color" | "content" | "style" | "order" | "translate" | "className" | "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" | "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" | "onResize" | "onResizeCapture" | "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" | "defaultSize" | "tagName" | "minSize" | "maxSize" | "collapsedSize" | "collapsible" | "onCollapse" | "onExpand" | keyof import('react').RefAttributes<import('react-resizable-panels').ImperativePanelHandle>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
34
+ ownerState: Partial<import('../types').SplitLayoutOwnerState> & Record<string, unknown>;
35
+ }, {}, {}>;
32
36
  export declare const SplitDetailStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('react').HTMLAttributes<HTMLElement | HTMLDivElement | HTMLSpanElement | HTMLObjectElement | HTMLMapElement | HTMLLinkElement | HTMLTitleElement | HTMLInputElement | HTMLProgressElement | HTMLSelectElement | HTMLDataElement | HTMLHeadElement | HTMLBaseElement | HTMLHeadingElement | HTMLBodyElement | HTMLButtonElement | HTMLMeterElement | HTMLTextAreaElement | HTMLStyleElement | HTMLTableElement | HTMLEmbedElement | HTMLPreElement | HTMLAnchorElement | HTMLAreaElement | HTMLAudioElement | HTMLQuoteElement | HTMLBRElement | HTMLCanvasElement | HTMLTableColElement | HTMLDataListElement | HTMLModElement | HTMLDetailsElement | HTMLDialogElement | HTMLDListElement | HTMLFieldSetElement | HTMLFormElement | HTMLHRElement | HTMLHtmlElement | HTMLIFrameElement | HTMLImageElement | HTMLLabelElement | HTMLLegendElement | HTMLLIElement | HTMLMetaElement | HTMLOListElement | HTMLOptGroupElement | HTMLOptionElement | HTMLOutputElement | HTMLParagraphElement | HTMLSlotElement | HTMLScriptElement | HTMLSourceElement | HTMLTemplateElement | HTMLTableSectionElement | HTMLTableCellElement | HTMLTimeElement | HTMLTableRowElement | HTMLTrackElement | HTMLUListElement | HTMLVideoElement | HTMLTableCaptionElement | HTMLMenuElement | HTMLPictureElement>, "id" | "onResize"> & {
33
37
  className?: string | undefined;
34
38
  collapsedSize?: number | undefined;
@@ -45,7 +49,9 @@ export declare const SplitDetailStyled: import('@emotion/styled').StyledComponen
45
49
  tagName?: keyof HTMLElementTagNameMap | undefined;
46
50
  } & {
47
51
  children?: import('react').ReactNode;
48
- } & import('react').RefAttributes<import('react-resizable-panels').ImperativePanelHandle>, "children" | "title" | "id" | "hidden" | "color" | "content" | "style" | "order" | "translate" | "className" | "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" | "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" | "onResize" | "onResizeCapture" | "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" | "defaultSize" | "tagName" | "minSize" | "maxSize" | "collapsedSize" | "collapsible" | "onCollapse" | "onExpand" | keyof import('react').RefAttributes<import('react-resizable-panels').ImperativePanelHandle>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown>, {}, {}>;
52
+ } & import('react').RefAttributes<import('react-resizable-panels').ImperativePanelHandle>, "children" | "title" | "id" | "hidden" | "color" | "content" | "style" | "order" | "translate" | "className" | "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" | "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" | "onResize" | "onResizeCapture" | "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" | "defaultSize" | "tagName" | "minSize" | "maxSize" | "collapsedSize" | "collapsible" | "onCollapse" | "onExpand" | keyof import('react').RefAttributes<import('react-resizable-panels').ImperativePanelHandle>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
53
+ ownerState: Partial<import('../types').SplitLayoutOwnerState> & Record<string, unknown>;
54
+ }, {}, {}>;
49
55
  export declare const SplitResizeHandleStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('react').HTMLAttributes<keyof HTMLElementTagNameMap>, "id" | "onFocus" | "onBlur" | "onClick" | "onPointerDown" | "onPointerUp"> & {
50
56
  className?: string;
51
57
  disabled?: boolean;
@@ -62,4 +68,6 @@ export declare const SplitResizeHandleStyled: import('@emotion/styled').StyledCo
62
68
  tagName?: keyof HTMLElementTagNameMap;
63
69
  } & {
64
70
  children?: import('react').ReactNode | undefined;
65
- }, "children" | "title" | "id" | "disabled" | "hidden" | "color" | "content" | "style" | "translate" | "className" | "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" | "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" | "onResize" | "onResizeCapture" | "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" | "tagName" | "hitAreaMargins" | "onDragging"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown>, {}, {}>;
71
+ }, "children" | "title" | "id" | "disabled" | "hidden" | "color" | "content" | "style" | "translate" | "className" | "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" | "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" | "onResize" | "onResizeCapture" | "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" | "tagName" | "hitAreaMargins" | "onDragging"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
72
+ ownerState: Partial<import('../types').SplitLayoutOwnerState> & Record<string, unknown>;
73
+ }, {}, {}>;
@@ -13,5 +13,12 @@ export interface SplitLayoutProps {
13
13
  splitPosition: SplitPosition;
14
14
  /** se utiliza el `dataTestId` para las pruebas unitarias */
15
15
  dataTestId?: string;
16
+ /** determina el tamaño por defecto de la primera parte de la interfaz de usuario. */
17
+ defaultMasterSize?: number;
18
+ /** determina el tamaño por defecto de la segunda parte de la interfaz de usuario. */
19
+ defaultDetailSize?: number;
20
+ }
21
+ export interface SplitLayoutOwnerState {
22
+ splitPosition: SplitPosition;
16
23
  }
17
24
  export type SplitLayoutStyles = M4LOverridesStyleRules<keyof typeof slots, typeof SPLIT_LAYOUT_KEY_COMPONENT, Theme>;
@@ -6,7 +6,7 @@ import clsx from "clsx";
6
6
  import { a as getComponentSlotRoot } from "../../../utils/getComponentSlotRoot.js";
7
7
  import { B as BOOLEAN_FORMATTER_KEY_COMPONENT } from "./constants.js";
8
8
  import { g as getPropDataTestId } from "../../../test/getNameDataTestId.js";
9
- import { B as BooleanFormatterIconStyled, a as BooleanFormatterChipStyled, b as BooleanFormatterRootStyled } from "./slots/BooleanFormatterSlots.js";
9
+ import { B as BooleanFormatterRootStyled, a as BooleanFormatterIconStyled, b as BooleanFormatterChipStyled } from "./slots/BooleanFormatterSlots.js";
10
10
  import { B as BooleanFormatterSlots } from "./slots/BooleanFormatterEnum.js";
11
11
  function getFormatBoolean(presentationType, value = false, getLabel) {
12
12
  if (presentationType === "string_yes_no") {
@@ -18,7 +18,7 @@ const BooleanFormatterChipStyled = styled(Chip, {
18
18
  slot: BooleanFormatterSlots.chip
19
19
  })(booleanFormatterStyles?.chip);
20
20
  export {
21
- BooleanFormatterIconStyled as B,
22
- BooleanFormatterChipStyled as a,
23
- BooleanFormatterRootStyled as b
21
+ BooleanFormatterRootStyled as B,
22
+ BooleanFormatterIconStyled as a,
23
+ BooleanFormatterChipStyled as b
24
24
  };
@@ -4,16 +4,17 @@ import { CHIP_STATUS_FORMATTER_KEY_COMPONENT } from './constants';
4
4
  import { ChipStatusFormatterSlots as Slots } from './slots/ChipStatusFormatterEnum';
5
5
  import { Theme } from '@mui/material';
6
6
  import { ChipVariants } from '../../Chip/types';
7
+ import { Maybe } from '@m4l/core';
7
8
  export type ChipStatusKey = string | number;
8
9
  export interface ChipStatusFormatterProps {
9
10
  /**
10
11
  * Etiqueta del chip
11
12
  */
12
- label: string;
13
+ label?: Maybe<string>;
13
14
  /**
14
15
  * Estado del chip
15
16
  */
16
- status: string | number;
17
+ status?: Maybe<string | number>;
17
18
  /**
18
19
  * Conjuntos de colores para los estados del chip
19
20
  */
@@ -6,8 +6,8 @@ import clsx from "clsx";
6
6
  import { a as getComponentSlotRoot } from "../../../utils/getComponentSlotRoot.js";
7
7
  import { g as getPropDataTestId } from "../../../test/getNameDataTestId.js";
8
8
  import { d as dictionary } from "./dictionary.js";
9
+ import { P as PeriodFormatterRootStyled, a as PeriodFormatterSkeletonStyled } from "./slots/PeriodFormatterSlots.js";
9
10
  import { u as useComponentSize } from "../../../hooks/useComponentSize/useComponentSize.js";
10
- import { P as PeriodFormatterSkeletonStyled, a as PeriodFormatterRootStyled } from "./slots/PeriodFormatterSlots.js";
11
11
  import { P as PeriodFormatterSlots } from "./slots/PeriodFomatterEnum.js";
12
12
  function useFormatPeriod(years, months, days) {
13
13
  const { getLabel } = useModuleDictionary();
@@ -13,6 +13,6 @@ const PeriodFormatterSkeletonStyled = styled(Skeleton, {
13
13
  slot: PeriodFormatterSlots.skeleton
14
14
  })(periodFormatterStyles?.skeleton);
15
15
  export {
16
- PeriodFormatterSkeletonStyled as P,
17
- PeriodFormatterRootStyled as a
16
+ PeriodFormatterRootStyled as P,
17
+ PeriodFormatterSkeletonStyled as a
18
18
  };
@@ -2,8 +2,8 @@ import { styled } from "@mui/material/styles";
2
2
  import { r as rhfCheckBoxStyles } from "../RHFCheckBox.styles.js";
3
3
  import { R as RHFCheckBoxSlots } from "./RHFCheckBoxEnum.js";
4
4
  import { R as RHF_CHECKBOX_KEY_COMPONENT } from "../constants.js";
5
- import { C as CheckBox } from "../../../mui_extended/CheckBox/CheckBox.js";
6
5
  import { L as Label } from "../../../Label/Label.js";
6
+ import { C as CheckBox } from "../../../mui_extended/CheckBox/CheckBox.js";
7
7
  const RHFCheckboxRoot = styled("div", {
8
8
  name: RHF_CHECKBOX_KEY_COMPONENT,
9
9
  slot: RHFCheckBoxSlots.root
@@ -0,0 +1 @@
1
+ export * from './RHFNumberInput';
@@ -9,8 +9,8 @@ import { R as RHF_PERIOD_KEY_COMPONENT } from "./constants.js";
9
9
  import clsx from "clsx";
10
10
  import { g as getPropDataTestId } from "../../../test/getNameDataTestId.js";
11
11
  import { a as getComponentSlotRoot } from "../../../utils/getComponentSlotRoot.js";
12
- import { R as RHFPeriodSlots } from "./slots/RHFPeriodEnum.js";
13
12
  import { H as HelperError } from "../../HelperError/HelperError.js";
13
+ import { R as RHFPeriodSlots } from "./slots/RHFPeriodEnum.js";
14
14
  const RHFPeriod = (props) => {
15
15
  const {
16
16
  name,
@@ -18,9 +18,7 @@ const rhfTextFieldStyles = {
18
18
  /**
19
19
  * Estilos personalizados para el componente Skeleton.
20
20
  */
21
- helperErrorStyled: {},
22
- skeletonTextFieldRoot: {},
23
- wrapperSkeletonRHFTextField: {}
21
+ helperErrorStyled: {}
24
22
  };
25
23
  export {
26
24
  rhfTextFieldStyles as r
@@ -2,9 +2,9 @@ import { styled } from "@mui/material";
2
2
  import { R as RHFTextFieldPasswordSlots } from "./RHFTextFieldPasswordEnum.js";
3
3
  import { R as RHF_TEXT_FIELD_PASSWORD_KEY_COMPONENT } from "../constanst.js";
4
4
  import { r as rhfTextFieldPasswordStyles } from "../RHFTextFieldPassword.styles.js";
5
+ import { L as Label } from "../../../Label/Label.js";
5
6
  import { T as TextField } from "../../../mui_extended/TextField/TextField.js";
6
7
  import { I as IconButton } from "../../../mui_extended/IconButton/IconButton.js";
7
- import { L as Label } from "../../../Label/Label.js";
8
8
  const RHFTextFieldPasswordRoot = styled("div", {
9
9
  name: RHF_TEXT_FIELD_PASSWORD_KEY_COMPONENT,
10
10
  slot: RHFTextFieldPasswordSlots.root
@@ -3,7 +3,7 @@ import { useFormContext, Controller } from "react-hook-form";
3
3
  import { U as UploadSingleFile } from "./subcomponents/UploadSingleFile/index.js";
4
4
  import { R as RHFUploadSingleFileRootStyled, L as LabelStyled, H as HelperErrorStyled } from "./slots/RHFUploadSingleFileSlots.js";
5
5
  import clsx from "clsx";
6
- import { R as RHF_UPLOAD_SINGLE_FILE_KEY_COMPONENT, D as DEFAULT_MAX_FILE_SIZE } from "./constants.js";
6
+ import { D as DEFAULT_MAX_FILE_SIZE, R as RHF_UPLOAD_SINGLE_FILE_KEY_COMPONENT } from "./constants.js";
7
7
  import { g as getPropDataTestId } from "../../../../test/getNameDataTestId.js";
8
8
  import { R as RHFUploadSingleFileSlots } from "./slots/RHFUploadSingleFileEnum.js";
9
9
  import { u as useComponentSize } from "../../../../hooks/useComponentSize/useComponentSize.js";
@@ -1,4 +1,4 @@
1
- import { generateUtilityClasses, generateUtilityClass } from "@mui/material";
1
+ import { generateUtilityClass, generateUtilityClasses } from "@mui/material";
2
2
  import { unstable_composeClasses } from "@mui/base";
3
3
  import { c as componentName } from "./constants.js";
4
4
  generateUtilityClasses(
@@ -1,7 +1,7 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
2
  import { useEffect } from "react";
3
3
  import clsx from "clsx";
4
- import { useForm, FormProvider } from "react-hook-form";
4
+ import { FormProvider, useForm } from "react-hook-form";
5
5
  import { yupResolver } from "@hookform/resolvers/yup";
6
6
  import { F as FormProviderRoot } from "./styles.js";
7
7
  import { R as RHFormProviderUtilityClasses } from "./classes/index.js";
@@ -12,6 +12,6 @@ export * from './RHFTextField';
12
12
  export * from './RHFTextFieldPassword';
13
13
  export * from './RHFPeriod';
14
14
  export { RHFRadioGroup } from './RHFRadioGroup';
15
- export { RHFNumberInput } from './RHFNumberInput/RHFNumberInput';
15
+ export * from './RHFNumberInput';
16
16
  export { RHFUploadSingleFile } from './RHFUpload/RHFUploadSingleFile/RHFUploadSingleFile';
17
17
  export * from './RHFUpload';
@@ -38,7 +38,7 @@ export * from './PaperForm/PaperForm';
38
38
  export * from './PDFViewer';
39
39
  export * from './popups';
40
40
  export * from './PrintingSystem';
41
- export * from './PropertyValue/PropertyValue';
41
+ export * from './PropertyValue';
42
42
  export * from './ScrollBar/ScrollBar';
43
43
  export * from './SideBar';
44
44
  export * from './ToastContainer';
@@ -3,7 +3,7 @@ import { T as TEST_PROP_ID } from "../../../test/constants_no_mock.js";
3
3
  import { a as getNameDataTestId } from "../../../test/getNameDataTestId.js";
4
4
  import { P as PATH_EXPANDED_ICON, A as ACCORDION_KEY } from "./constants.js";
5
5
  import { a as getComponentSlotRoot } from "../../../utils/getComponentSlotRoot.js";
6
- import { A as AccordionRootStyled, a as AccordionSummaryStyled, I as IconExpandedStyled, b as IconLabelStyled, L as LabelStyled, c as AccordionDetailsStyled } from "./slots/AccordionSlots.js";
6
+ import { A as AccordionRootStyled, a as AccordionSummaryStyled, I as IconLabelStyled, L as LabelStyled, b as IconExpandedStyled, c as AccordionDetailsStyled } from "./slots/AccordionSlots.js";
7
7
  import { forwardRef } from "react";
8
8
  import { u as useComponentSize } from "../../../hooks/useComponentSize/useComponentSize.js";
9
9
  const Accordion = forwardRef((props, ref) => {
@@ -31,9 +31,9 @@ const AccordionDetailsStyled = styled(AccordionDetails, {
31
31
  })(accordionStyles?.accordionDetails);
32
32
  export {
33
33
  AccordionRootStyled as A,
34
- IconExpandedStyled as I,
34
+ IconLabelStyled as I,
35
35
  LabelStyled as L,
36
36
  AccordionSummaryStyled as a,
37
- IconLabelStyled as b,
37
+ IconExpandedStyled as b,
38
38
  AccordionDetailsStyled as c
39
39
  };
@@ -27,6 +27,7 @@ const accordionStyles = {
27
27
  height: `${theme.vars.size[theme.generalSettings.isMobile ? "mobile" : "desktop"][ownerState.size ?? "medium"].container} !important`,
28
28
  minHeight: `${theme.vars.size[theme.generalSettings.isMobile ? "mobile" : "desktop"][ownerState.size ?? "medium"].container} !important`,
29
29
  background: theme.vars.palette.background.neutral,
30
+ overflow: "hidden",
30
31
  "&:hover": {
31
32
  background: theme.vars.palette.primary.hoverOpacity
32
33
  },
@@ -1,9 +1,9 @@
1
1
  import { jsx, jsxs } from "react/jsx-runtime";
2
2
  import { useModuleDictionary, useModuleSkeleton, useEnvironment } from "@m4l/core";
3
- import { forwardRef, useState, useEffect, useCallback, useMemo } from "react";
3
+ import { forwardRef, useState, useCallback, useEffect, useMemo } from "react";
4
4
  import { r as renderOption } from "./renderOptions/index.js";
5
5
  import { u as useComponentSize } from "../../../hooks/useComponentSize/useComponentSize.js";
6
- import { C as ChipStyled, I as ImageStyled, A as AdormentsStyled, a as CircularProgressStyled, b as IconButtonStyled, S as SkeletonAutocompleteStyled, c as AutocompleteRootStyled, P as PopperComponentStyled, R as RenderInputStyled } from "./slots/AutocompleteSlots.js";
6
+ import { C as ChipStyled, I as ImageStyled, A as AdormentsStyled, a as CircularProgressStyled, b as IconButtonStyled, S as SkeletonAutocompleteStyled, c as AutocompleteRootStyled, R as RenderInputStyled, P as PopperComponentStyled } from "./slots/AutocompleteSlots.js";
7
7
  import { T as Typography } from "../Typography/Typography.js";
8
8
  const Autocomplete = forwardRef(function Autocomplete2(props, ref) {
9
9
  const {
@@ -34,16 +34,6 @@ const Autocomplete = forwardRef(function Autocomplete2(props, ref) {
34
34
  const [selectedValue, setSelectedValue] = useState(
35
35
  value || (multiple ? [] : null)
36
36
  );
37
- useEffect(() => {
38
- if (!multiple && value) {
39
- setInputValue(getOptionLabel(value));
40
- } else if (multiple && Array.isArray(value)) {
41
- setInputValue("");
42
- } else {
43
- setInputValue("");
44
- }
45
- setSelectedValue(value || (multiple ? [] : null));
46
- }, [value, multiple, getOptionLabel]);
47
37
  const isOptionEqualToValueLocal = useCallback(
48
38
  (option, val) => {
49
39
  if (val === null || val === void 0) {
@@ -53,6 +43,29 @@ const Autocomplete = forwardRef(function Autocomplete2(props, ref) {
53
43
  },
54
44
  [isOptionEqualToValue]
55
45
  );
46
+ useEffect(() => {
47
+ if (!multiple && value) {
48
+ setInputValue(getOptionLabel(value));
49
+ } else if (multiple && Array.isArray(value)) {
50
+ setInputValue("");
51
+ } else {
52
+ setInputValue("");
53
+ }
54
+ if (multiple) {
55
+ if (Array.isArray(value)) {
56
+ setSelectedValue(value.filter((option) => options.some((opt) => isOptionEqualToValueLocal(opt, option))));
57
+ } else {
58
+ setSelectedValue([]);
59
+ }
60
+ } else {
61
+ if (value) {
62
+ const option = options.find((opt) => isOptionEqualToValueLocal(opt, value));
63
+ setSelectedValue(option || null);
64
+ } else {
65
+ setSelectedValue(null);
66
+ }
67
+ }
68
+ }, [value, multiple, getOptionLabel, options, isOptionEqualToValueLocal]);
56
69
  const handleDelete = useCallback((optionToDelete) => {
57
70
  if (Array.isArray(selectedValue)) {
58
71
  const updatedValue = selectedValue.filter(
@@ -58,7 +58,7 @@ const autocompleteSyles = {
58
58
  gap: theme.vars.size.baseSpacings.sp1,
59
59
  flexWrap: "wrap",
60
60
  "& > input": {
61
- width: "100px",
61
+ width: "100%",
62
62
  textOverflow: "ellipsis",
63
63
  whiteSpace: "nowrap",
64
64
  overflow: "hidden!important"
@@ -6,12 +6,12 @@ import { a as autocompleteSyles } from "../Autocomplete.styles.js";
6
6
  import { A as AUTOCOMPLETE_KEY_COMPONENT } from "../constants.js";
7
7
  import { A as AutocompleteSlots } from "./AutocompleteEnum.js";
8
8
  import { I as IconButton } from "../../IconButton/IconButton.js";
9
- import { T as TextField } from "../../TextField/TextField.js";
10
- import { T as Typography } from "../../Typography/Typography.js";
11
9
  import { S as Skeleton } from "../../Skeleton/Skeleton.js";
10
+ import { T as TextField } from "../../TextField/TextField.js";
12
11
  import { P as Popper } from "../../Popper/Popper.js";
13
- import { M as MenuItem } from "../../MenuItem/MenuItem.js";
12
+ import { T as Typography } from "../../Typography/Typography.js";
14
13
  import { C as CircularProgress } from "../../CircularProgress/CircularProgress.js";
14
+ import { M as MenuItem } from "../../MenuItem/MenuItem.js";
15
15
  const AutocompleteRootStyled = styled(Autocomplete, {
16
16
  name: AUTOCOMPLETE_KEY_COMPONENT,
17
17
  slot: AutocompleteSlots.root
@@ -5,7 +5,7 @@ import { g as getComponentClasses } from "../../../utils/getComponentSlotRoot.js
5
5
  import { C as CHECK_BOX_KEY_COMPONENT } from "./constants.js";
6
6
  import clsx from "clsx";
7
7
  import { u as useComponentSize } from "../../../hooks/useComponentSize/useComponentSize.js";
8
- import { C as CheckBoxRootStyled, M as MUICheckboxStyled, I as IconCheckedStyled, a as IconStyled, T as TypographyStyled, S as SkeletonStyled } from "./slots/CheckBoxSlots.js";
8
+ import { C as CheckBoxRootStyled, M as MUICheckboxStyled, I as IconStyled, a as IconCheckedStyled, T as TypographyStyled, S as SkeletonStyled } from "./slots/CheckBoxSlots.js";
9
9
  import { C as CheckBoxSlots } from "./slots/CheckBoxEnum.js";
10
10
  const CheckBox = forwardRef((props, ref) => {
11
11
  const {