@m4l/components 9.2.49 → 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 (164) hide show
  1. package/@types/types.d.ts +8 -1
  2. package/components/Chip/ChipStyles.js +1 -1
  3. package/components/DataGrid/contexts/DataGridContext/index.js +1 -1
  4. package/components/DataGrid/contexts/FilterContext/index.js +1 -1
  5. package/components/DataGrid/dictionary.js +0 -3
  6. package/components/DataGrid/formatters/ColumnChipStatusFormatter/formatter.js +4 -3
  7. package/components/DataGrid/formatters/ColumnNestedValueFormatter/formatter.js +2 -1
  8. package/components/DataGrid/formatters/ColumnNestedValueFormatter/useColumnNestedValue.d.ts +1 -1
  9. package/components/DataGrid/formatters/ColumnNestedValueFormatter/useColumnNestedValue.js +4 -3
  10. package/components/DataGrid/slots/DataGridEnum.js +2 -2
  11. package/components/DataGrid/slots/DataGridSlot.js +1 -1
  12. package/components/DataGrid/subcomponents/Table/hooks/useSortColumnsRows.js +2 -0
  13. package/components/DataGrid/subcomponents/Table/subcomponents/CheckboxFormatter.js +1 -1
  14. package/components/DataGrid/subcomponents/Table/subcomponents/CustomIcons.js +2 -2
  15. package/components/DragResizeWindowRND/DragResizeWindowRND.js +0 -1
  16. package/components/DynamicFilter/DynamicFilter.styles.js +0 -1
  17. package/components/DynamicFilter/constants.d.ts +5 -2
  18. package/components/DynamicFilter/constants.js +9 -3
  19. package/components/DynamicFilter/dictionary.d.ts +40 -38
  20. package/components/DynamicFilter/dictionary.js +33 -39
  21. package/components/DynamicFilter/helpers/formatToInitialFilters.d.ts +3 -1
  22. package/components/DynamicFilter/helpers/formatToInitialFilters.js +30 -20
  23. package/components/DynamicFilter/helpers/formatToRowFilter.js +15 -6
  24. package/components/DynamicFilter/helpers/getPurgedInitialFiltersApplied.js +1 -1
  25. package/components/DynamicFilter/store/DynamicFilterContext.js +1 -1
  26. package/components/DynamicFilter/subcomponents/AppliedFilterChip/AppliedFilterChip.d.ts +1 -1
  27. package/components/DynamicFilter/subcomponents/AppliedFilterChip/AppliedFilterChip.js +4 -3
  28. package/components/DynamicFilter/subcomponents/AppliedFilters/useAppliedFilters.js +10 -3
  29. package/components/DynamicFilter/subcomponents/DynamicFilterBase/DynamicFilterBase.js +1 -1
  30. package/components/DynamicFilter/subcomponents/FieldTypes/BooleanFilter/helpers.js +7 -7
  31. package/components/DynamicFilter/subcomponents/FieldTypes/BooleanFilter/index.js +11 -8
  32. package/components/DynamicFilter/subcomponents/FieldTypes/DateTimeFilter/helpers.js +7 -7
  33. package/components/DynamicFilter/subcomponents/FieldTypes/DateTimeFilter/index.js +10 -7
  34. package/components/DynamicFilter/subcomponents/FieldTypes/NumberFilter/helpers.js +17 -9
  35. package/components/DynamicFilter/subcomponents/FieldTypes/NumberFilter/index.js +13 -9
  36. package/components/DynamicFilter/subcomponents/FieldTypes/SelectAsyncFilter/helpers.d.ts +7 -7
  37. package/components/DynamicFilter/subcomponents/FieldTypes/SelectAsyncFilter/helpers.js +121 -46
  38. package/components/DynamicFilter/subcomponents/FieldTypes/SelectAsyncFilter/index.js +13 -11
  39. package/components/DynamicFilter/subcomponents/FieldTypes/SelectFilter/helpers.d.ts +8 -7
  40. package/components/DynamicFilter/subcomponents/FieldTypes/SelectFilter/helpers.js +127 -46
  41. package/components/DynamicFilter/subcomponents/FieldTypes/SelectFilter/index.js +11 -9
  42. package/components/DynamicFilter/subcomponents/FieldTypes/StringFilter/helpers.js +11 -7
  43. package/components/DynamicFilter/subcomponents/FieldTypes/StringFilter/index.js +10 -7
  44. package/components/DynamicFilter/subcomponents/FieldTypes/fieldFactory.d.ts +1 -1
  45. package/components/DynamicFilter/subcomponents/FilterActions/FilterActions.js +2 -1
  46. package/components/DynamicFilter/subcomponents/FilterActions/useFilterActions.d.ts +1 -1
  47. package/components/DynamicFilter/subcomponents/FilterActions/useFilterActions.js +2 -4
  48. package/components/DynamicFilter/subcomponents/InputFilter/useInputFilter.js +2 -2
  49. package/components/DynamicFilter/subcomponents/PopoverMenuFields/PopoverMenuFields.js +28 -14
  50. package/components/DynamicFilter/types.d.ts +60 -18
  51. package/components/DynamicSort/dictionary.d.ts +1 -0
  52. package/components/DynamicSort/dictionary.js +1 -5
  53. package/components/DynamicSort/slots/DynamicSortSlots.js +1 -1
  54. package/components/DynamicSort/store/DynamicSortContext.js +1 -1
  55. package/components/DynamicSort/subcomponents/DynamicSortBase/DynamicSortBase.js +1 -1
  56. package/components/DynamicSort/subcomponents/PopoverMenuFields/PopoverMenuFields.js +28 -14
  57. package/components/GridLayout/GridLayout.js +1 -1
  58. package/components/GridLayout/styles.js +1 -1
  59. package/components/GridLayout/subcomponents/GridItem/index.js +1 -1
  60. package/components/GridLayout/subcomponents/Responsive/helper.js +1 -1
  61. package/components/GridLayout/subcomponents/Responsive/index.js +1 -1
  62. package/components/GridLayout/subcomponents/Responsive/responsiveUtils.js +3 -3
  63. package/components/GridLayout/subcomponents/withSizeProvider/index.js +1 -1
  64. package/components/Icon/Icon.js +1 -1
  65. package/components/Icon/constants.js +2 -2
  66. package/components/Icon/slots/IconSlots.js +1 -1
  67. package/components/Image/Image.js +1 -1
  68. package/components/Image/constant.js +2 -2
  69. package/components/Image/slots/ImageSlots.js +1 -1
  70. package/components/Image/subcomponents/IntersectComponent/index.js +1 -1
  71. package/components/LanguagePopover/LanguagePopover.js +1 -1
  72. package/components/LoadingError/LoadingError.js +1 -1
  73. package/components/LoadingError/slots/LoadingErrorSlots.js +1 -1
  74. package/components/MFIsolationApp/MFIsolationApp.js +2 -2
  75. package/components/MFIsolationApp/subcomponents/MFAuthApp/MFAuthApp.js +1 -1
  76. package/components/NoItemSelected/NoItemSelected.js +1 -1
  77. package/components/NumberInput/hooks/useNumberInput/NumberInputReducer.js +1 -1
  78. package/components/NumberInput/hooks/useNumberInput/useNumberInput.js +5 -3
  79. package/components/ObjectLogs/dictionary.js +1 -1
  80. package/components/Pager/Pager.styles.js +0 -8
  81. package/components/Pager/dicctionary.js +0 -5
  82. package/components/PrintingSystem/subcomponents/ChartNode/index.js +1 -1
  83. package/components/PropertyValue/PropertyValue.js +3 -3
  84. package/components/PropertyValue/PropertyValue.styles.js +4 -2
  85. package/components/PropertyValue/index.d.ts +1 -0
  86. package/components/PropertyValue/types.d.ts +0 -2
  87. package/components/ScrollBar/ScrollBar.js +1 -1
  88. package/components/SideBar/slots/SideBarEnum.js +4 -4
  89. package/components/SideBar/slots/SideBarSlots.js +1 -1
  90. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ContainerMenuItemsMain/styles.js +1 -1
  91. package/components/ToastContainer/ToastContainer.js +1 -1
  92. package/components/WindowBase/slots/WindowBaseSlots.js +1 -1
  93. package/components/animate/variants/bounce.js +1 -1
  94. package/components/animate/variants/fade.js +1 -1
  95. package/components/animate/variants/transition.js +2 -2
  96. package/components/areas/components/AreasAdmin/AreasAdmin.js +1 -1
  97. package/components/areas/components/AreasViewer/AreasViewer.js +1 -1
  98. package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/AreaGridLayout/AreaGridLayout.js +1 -1
  99. package/components/areas/contexts/AreasContext/helpers/helper.js +14 -14
  100. package/components/areas/contexts/AreasContext/store.js +5 -5
  101. package/components/areas/icons.js +0 -8
  102. package/components/commercial/HamburgerMenu/classes/index.js +1 -1
  103. package/components/extended/React-Splitter-Layout/slots/SplitLayoutSlots.d.ts +9 -3
  104. package/components/extended/React-resizable-panels/SplitLayout.js +25 -5
  105. package/components/extended/React-resizable-panels/SplitLayout.styles.js +20 -6
  106. package/components/extended/React-resizable-panels/slots/SplitLayoutSlots.d.ts +12 -4
  107. package/components/extended/React-resizable-panels/types.d.ts +7 -0
  108. package/components/formatters/BooleanFormatter/BooleanFormatter.js +1 -1
  109. package/components/formatters/BooleanFormatter/slots/BooleanFormatterSlots.js +3 -3
  110. package/components/formatters/PeriodFormatter/PeriodFormatter.js +1 -1
  111. package/components/formatters/PeriodFormatter/slots/PeriodFormatterSlots.js +2 -2
  112. package/components/hook-form/RHFCheckbox/slots/RHFCheckBoxSlots.js +1 -1
  113. package/components/hook-form/RHFNumberInput/index.d.ts +1 -0
  114. package/components/hook-form/RHFNumberInput/index.js +1 -0
  115. package/components/hook-form/RHFPeriod/RHFPeriod.js +1 -1
  116. package/components/hook-form/RHFTextField/RHFTextField.styles.js +1 -3
  117. package/components/hook-form/RHFTextFieldPassword/slots/RHFTextFieldPasswordSlots.js +1 -1
  118. package/components/hook-form/RHFUpload/RHFUploadSingleFile/RHFUploadSingleFile.js +1 -1
  119. package/components/hook-form/RHFormContext/classes/index.js +1 -1
  120. package/components/hook-form/RHFormContext/index.js +1 -1
  121. package/components/hook-form/index.d.ts +1 -1
  122. package/components/index.d.ts +1 -1
  123. package/components/mui_extended/Accordion/Accordion.js +1 -1
  124. package/components/mui_extended/Accordion/slots/AccordionSlots.js +2 -2
  125. package/components/mui_extended/Accordion/styles.js +1 -0
  126. package/components/mui_extended/Autocomplete/Autocomplete.js +25 -12
  127. package/components/mui_extended/Autocomplete/Autocomplete.styles.js +1 -1
  128. package/components/mui_extended/Autocomplete/slots/AutocompleteSlots.js +3 -3
  129. package/components/mui_extended/CheckBox/CheckBox.js +1 -1
  130. package/components/mui_extended/CheckBox/slots/CheckBoxSlots.js +2 -2
  131. package/components/mui_extended/DateTimePicker/slots/DateTimePickerSlots.js +1 -1
  132. package/components/mui_extended/IconButton/slots/IconButtonSlots.js +1 -1
  133. package/components/mui_extended/ImageButton/utils/Clases/index.js +1 -1
  134. package/components/mui_extended/MenuItem/slots/MenuItemSlots.js +1 -1
  135. package/components/mui_extended/NavLink/NavLink.js +1 -1
  136. package/components/mui_extended/NavLink/constants.js +2 -2
  137. package/components/mui_extended/NavLink/slots/NavLinkSlots.js +1 -1
  138. package/components/mui_extended/Popover/Popover.js +1 -1
  139. package/components/mui_extended/Popover/Popover.styles.js +1 -5
  140. package/components/mui_extended/Popover/constants.js +2 -2
  141. package/components/mui_extended/Select/Select.js +1 -1
  142. package/components/mui_extended/Select/Select.styles.js +1 -1
  143. package/components/mui_extended/Select/constants.js +1 -1
  144. package/components/mui_extended/Select/slots/SelectSlots.js +1 -1
  145. package/components/mui_extended/Tab/Tab.js +1 -1
  146. package/components/mui_extended/TabContent/TabContent.styles.js +2 -1
  147. package/components/mui_extended/TextField/constants.js +1 -1
  148. package/components/mui_extended/Tooltip/Tooltip.js +2 -2
  149. package/components/mui_extended/Tooltip/slots/TooltipSlots.js +2 -2
  150. package/components/mui_extended/Typography/Typography.js +1 -1
  151. package/components/mui_extended/Typography/constants.js +3 -3
  152. package/components/mui_extended/Typography/slots/typographySlots.js +1 -1
  153. package/components/popups/components/PopupsViewer/icons.js +0 -1
  154. package/hooks/useDataGridPersistence/constants.js +2 -2
  155. package/hooks/useDataGridPersistence/useDataGridPersistence.js +1 -1
  156. package/hooks/useDynamicFilterAndSort/styles.js +2 -0
  157. package/hooks/useDynamicFilterAndSort/types.d.ts +1 -0
  158. package/hooks/useDynamicFilterAndSort/useDynamicFilterAndSort.js +56 -12
  159. package/hooks/useSvgColor/constants.js +2 -2
  160. package/hooks/useSvgColor/helpers.js +1 -1
  161. package/hooks/useSvgColor/useSvgColor.js +1 -1
  162. package/index.js +109 -109
  163. package/package.json +1 -1
  164. package/components/PropertyValue/styles.d.ts +0 -1
@@ -41,7 +41,7 @@ const propertyValueStyles = {
41
41
  flexDirection: ownerState?.isForm ? "column" : "row",
42
42
  justifyContent: ownerState?.isForm ? "space-between" : "left",
43
43
  alignItems: "flex-start",
44
- gap: theme.vars.size.baseSpacings["sp0-5"],
44
+ gap: theme.vars.size.baseSpacings["sp1"],
45
45
  color: theme.palette.text.primary,
46
46
  paddingTop: !ownerState?.isForm ? theme.vars.size.baseSpacings.sp1 : void 0,
47
47
  paddingBottom: !ownerState?.isForm ? theme.vars.size.baseSpacings.sp1 : void 0,
@@ -68,7 +68,8 @@ const propertyValueStyles = {
68
68
  width: ownerState?.semanticWidth ? "auto" : "200px",
69
69
  fontSize: theme.typography.body2.fontSize,
70
70
  color: theme.palette.text.primary,
71
- gap: theme.vars.size.baseSpacings["sp1"]
71
+ gap: theme.vars.size.baseSpacings["sp1"],
72
+ overflow: "hidden"
72
73
  }),
73
74
  /**
74
75
  * Value Styles (Form and No Form Combined)
@@ -77,6 +78,7 @@ const propertyValueStyles = {
77
78
  width: "100%",
78
79
  display: "flex",
79
80
  justifyContent: "flex-start",
81
+ overflow: "hidden",
80
82
  height: ownerState?.valueHeight ? ownerState.valueHeight : "auto",
81
83
  ...ownerState?.isForm && {
82
84
  gap: theme.vars.size.baseSpacings["sp0-5"],
@@ -1 +1,2 @@
1
1
  export { PropertyValue } from './PropertyValue';
2
+ export type { PropertyValueProps } from './types';
@@ -82,8 +82,6 @@ export interface PropertyValueProps extends PropertyProps, ValueProps, Omit<Labe
82
82
  * Propiedad de tamaño para el componente `PropertyValue`.
83
83
  */
84
84
  size?: Extract<Sizes, 'small' | 'medium'>;
85
- /** Propiedades adicionales que se pasarán al componente valor. */
86
- inputProps?: Record<string, unknown>;
87
85
  }
88
86
  /**
89
87
  * Estado del propietario para el componente `PropertyValue`, utilizado para personalizar estilos y comportamientos.
@@ -4,7 +4,7 @@ import clsx from "clsx";
4
4
  import { Box } from "@mui/material";
5
5
  import { useIsMobile } from "@m4l/graphics";
6
6
  import { g as getPropDataTestId } from "../../test/getNameDataTestId.js";
7
- import { c as classScrollRoot, S as SCROLL_KEY_COMPONENT } from "./constants.js";
7
+ import { S as SCROLL_KEY_COMPONENT, c as classScrollRoot } from "./constants.js";
8
8
  import { R as RootScrollBar, S as SimpleBarStyled } from "./slots/ScrollBarSlots.js";
9
9
  import { S as ScrollBarSlots } from "./slots/ScrollBarEnum.js";
10
10
  function ScrollBar(props) {
@@ -37,11 +37,11 @@ var ContainerMenuItemsMainSlots = /* @__PURE__ */ ((ContainerMenuItemsMainSlots2
37
37
  return ContainerMenuItemsMainSlots2;
38
38
  })(ContainerMenuItemsMainSlots || {});
39
39
  export {
40
- ContentGroupsSlots as C,
40
+ ContentComponentSlots as C,
41
41
  HeaderSidebarSlots as H,
42
42
  SideBarDesktopSlots as S,
43
- SideBarFooterSlots as a,
44
- SideBarMobileSlots as b,
45
- ContentComponentSlots as c,
43
+ SideBarMobileSlots as a,
44
+ SideBarFooterSlots as b,
45
+ ContentGroupsSlots as c,
46
46
  ContainerMenuItemsMainSlots as d
47
47
  };
@@ -1,5 +1,5 @@
1
1
  import { styled } from "@mui/material/styles";
2
- import { S as SideBarDesktopSlots, C as ContentGroupsSlots, H as HeaderSidebarSlots, a as SideBarFooterSlots, b as SideBarMobileSlots, c as ContentComponentSlots, d as ContainerMenuItemsMainSlots } from "./SideBarEnum.js";
2
+ import { S as SideBarDesktopSlots, a as SideBarMobileSlots, C as ContentComponentSlots, b as SideBarFooterSlots, H as HeaderSidebarSlots, c as ContentGroupsSlots, d as ContainerMenuItemsMainSlots } from "./SideBarEnum.js";
3
3
  import { S as SIDEBAR_KEY_COMPONENT } from "../constants.js";
4
4
  import { s as sideBarStyles } from "../styles.js";
5
5
  const ContainerDesktopRootStyled = styled("section", {
@@ -1,5 +1,5 @@
1
1
  import { a as getHeightSizeStyles } from "../../../../../../utils/getSizeStyles/getSizeStyles.js";
2
- import { b as ITEM_IN_TREE_ACTIVE, I as ITEM_ACTIVE } from "../../../../constants.js";
2
+ import { I as ITEM_ACTIVE, b as ITEM_IN_TREE_ACTIVE } from "../../../../constants.js";
3
3
  const containerMenuItemsMainStyles = {
4
4
  /**
5
5
  * Style aplicado al contenedor de los items del menú
@@ -1,6 +1,6 @@
1
1
  import { jsx, jsxs } from "react/jsx-runtime";
2
2
  import { ToastContainer as ToastContainer$1 } from "react-toastify";
3
- import { T as TOAST_KEY_COMPONENT, D as DEFAULT_CLOSE_TIME } from "./constants.js";
3
+ import { D as DEFAULT_CLOSE_TIME, T as TOAST_KEY_COMPONENT } from "./constants.js";
4
4
  import { g as getPropDataTestId } from "../../test/getNameDataTestId.js";
5
5
  import { ModuleSkeletonProvider } from "@m4l/core";
6
6
  import "react-toastify/dist/ReactToastify.min.css";
@@ -2,9 +2,9 @@ import { styled } from "@mui/material/styles";
2
2
  import { W as WINDOW_BASE_KEY_COMPONENT } from "../constants.js";
3
3
  import { W as WindowBaseSlots } from "./WindowBaseEnum.js";
4
4
  import { w as windowBaseStyles } from "../WindowBase.styles.js";
5
+ import { L as LinearProgressIndeterminate } from "../../LinearProgressIndeterminate/LinearProgressIndeterminate.js";
5
6
  import { T as Typography } from "../../mui_extended/Typography/Typography.js";
6
7
  import { M as MenuActions } from "../../MenuActions/MenuActions.js";
7
- import { L as LinearProgressIndeterminate } from "../../LinearProgressIndeterminate/LinearProgressIndeterminate.js";
8
8
  import { I as Icon } from "../../Icon/Icon.js";
9
9
  const WindowBaseStyled = styled("div", {
10
10
  name: WINDOW_BASE_KEY_COMPONENT,
@@ -1,4 +1,4 @@
1
- import { v as varTranEnter, a as varTranExit } from "./transition.js";
1
+ import { v as varTranExit, a as varTranEnter } from "./transition.js";
2
2
  const varBounce = (props) => {
3
3
  const durationIn = props?.durationIn;
4
4
  const durationOut = props?.durationOut;
@@ -1,4 +1,4 @@
1
- import { v as varTranEnter, a as varTranExit } from "./transition.js";
1
+ import { v as varTranExit, a as varTranEnter } from "./transition.js";
2
2
  const varFade = (props) => {
3
3
  const distance = props?.distance || 120;
4
4
  const durationIn = props?.durationIn;
@@ -14,7 +14,7 @@ const varTranExit = (props) => {
14
14
  return { duration, ease };
15
15
  };
16
16
  export {
17
- varTranExit as a,
17
+ varTranEnter as a,
18
18
  varTranHover as b,
19
- varTranEnter as v
19
+ varTranExit as v
20
20
  };
@@ -15,9 +15,9 @@ import { a as getComponentSlotRoot } from "../../../../utils/getComponentSlotRoo
15
15
  import { g as getPropDataTestId } from "../../../../test/getNameDataTestId.js";
16
16
  import { S as ScrollBar } from "../../../ScrollBar/ScrollBar.js";
17
17
  import { u as useComponentSize } from "../../../../hooks/useComponentSize/useComponentSize.js";
18
- import { A as AreasAdminSlots } from "./slots/AreasAdminEnum.js";
19
18
  import { T as Typography } from "../../../mui_extended/Typography/Typography.js";
20
19
  import { M as MenuActions } from "../../../MenuActions/MenuActions.js";
20
+ import { A as AreasAdminSlots } from "./slots/AreasAdminEnum.js";
21
21
  const AreasAdmin = (props) => {
22
22
  const {
23
23
  color = "primary",
@@ -4,7 +4,7 @@ import { u as useAreasStore } from "../../hooks/useAreas/index.js";
4
4
  import { A as AreaMemonizedWindowModal } from "./subcomponents/Area/subcomponents/WindowModal/WindowModal.js";
5
5
  import { shallow } from "zustand/shallow";
6
6
  import { L as LoadingError } from "../../../LoadingError/LoadingError.js";
7
- import { g as getPropDataTestId, a as getNameDataTestId } from "../../../../test/getNameDataTestId.js";
7
+ import { a as getNameDataTestId, g as getPropDataTestId } from "../../../../test/getNameDataTestId.js";
8
8
  import { A as AREAS_VIEWER_CLASS_NAME } from "../../constants.js";
9
9
  import { T as TEST_PROP_ID } from "../../../../test/constants_no_mock.js";
10
10
  import { A as AreasViewerRootStyled } from "./slots/AreasViewerSlots.js";
@@ -4,7 +4,7 @@ import { W as Window } from "../Window/Window.js";
4
4
  import { u as useAreasStore } from "../../../../../../hooks/useAreas/index.js";
5
5
  import { a as areasViewerClasses } from "../../../../classes/index.js";
6
6
  import clsx from "clsx";
7
- import { R as RESPONSIVE_COLAPSED_HEIGHTS, a as RESPONSIVE_ROW_HEIGHTS, M as MARGIN_GRIDLAYOUT, P as PADDING_GRIDLAYOUT } from "../../../../../../contexts/AreasContext/helpers/helper.js";
7
+ import { P as PADDING_GRIDLAYOUT, M as MARGIN_GRIDLAYOUT, R as RESPONSIVE_ROW_HEIGHTS, a as RESPONSIVE_COLAPSED_HEIGHTS } from "../../../../../../contexts/AreasContext/helpers/helper.js";
8
8
  import { M as MemonizePopupsViewer } from "../../../../../../../popups/components/PopupsViewer/PopupsViewer.js";
9
9
  import { useState } from "react";
10
10
  import { d as dragResizeWindowRNDClasses } from "../../../../../../../DragResizeWindowRND/classes/index.js";
@@ -192,23 +192,23 @@ function getSelectedAreaIdFromCookies(cookiesResponse) {
192
192
  }
193
193
  export {
194
194
  COOKIE_WINDOW_SELECTED as C,
195
- DEFAULT_AREA as D,
195
+ DEBOUCED_SAVE_TIME as D,
196
196
  MARGIN_GRIDLAYOUT as M,
197
197
  NORMALIZED_COLS as N,
198
198
  PADDING_GRIDLAYOUT as P,
199
- RESPONSIVE_COLAPSED_HEIGHTS as R,
200
- RESPONSIVE_ROW_HEIGHTS as a,
201
- COOKIE_AREAS_ADMIN_CONTAINER_ID as b,
202
- COOKIE_AREAS_ADMIN_ID as c,
203
- addArea as d,
199
+ RESPONSIVE_ROW_HEIGHTS as R,
200
+ RESPONSIVE_COLAPSED_HEIGHTS as a,
201
+ getDataFromResponse as b,
202
+ getParmsFromValue as c,
203
+ COOKIE_BREAKPOINT_LAYOUTS as d,
204
204
  DEFAULT_WINDOW as e,
205
- deleteLayoutFromBreakPoints as f,
206
- getSelectedAreaIdFromCookies as g,
207
- COOKIE_WINDOWS as h,
208
- COOKIE_BREAKPOINT_LAYOUTS as i,
209
- DEBOUCED_SAVE_TIME as j,
210
- getDataFromResponse as k,
211
- getParmsFromValue as l,
212
- getCookiesContainer as m,
205
+ COOKIE_WINDOWS as f,
206
+ getCookiesContainer as g,
207
+ deleteLayoutFromBreakPoints as h,
208
+ addArea as i,
209
+ DEFAULT_AREA as j,
210
+ getSelectedAreaIdFromCookies as k,
211
+ COOKIE_AREAS_ADMIN_CONTAINER_ID as l,
212
+ COOKIE_AREAS_ADMIN_ID as m,
213
213
  setColapsedLayoutBreakPoints as s
214
214
  };
@@ -1,16 +1,16 @@
1
1
  import { createStore } from "zustand";
2
2
  import { devtools } from "zustand/middleware";
3
3
  import { immer } from "zustand/middleware/immer";
4
- import { b as COOKIE_AREAS_ADMIN_CONTAINER_ID, c as COOKIE_AREAS_ADMIN_ID, D as DEFAULT_AREA, d as addArea, g as getSelectedAreaIdFromCookies, e as DEFAULT_WINDOW, a as RESPONSIVE_ROW_HEIGHTS, P as PADDING_GRIDLAYOUT, M as MARGIN_GRIDLAYOUT, N as NORMALIZED_COLS, f as deleteLayoutFromBreakPoints, h as COOKIE_WINDOWS, i as COOKIE_BREAKPOINT_LAYOUTS, j as DEBOUCED_SAVE_TIME, s as setColapsedLayoutBreakPoints, k as getDataFromResponse, l as getParmsFromValue, m as getCookiesContainer, C as COOKIE_WINDOW_SELECTED } from "./helpers/helper.js";
4
+ import { g as getCookiesContainer, b as getDataFromResponse, c as getParmsFromValue, s as setColapsedLayoutBreakPoints, d as COOKIE_BREAKPOINT_LAYOUTS, D as DEBOUCED_SAVE_TIME, e as DEFAULT_WINDOW, M as MARGIN_GRIDLAYOUT, f as COOKIE_WINDOWS, h as deleteLayoutFromBreakPoints, R as RESPONSIVE_ROW_HEIGHTS, P as PADDING_GRIDLAYOUT, N as NORMALIZED_COLS, i as addArea, j as DEFAULT_AREA, k as getSelectedAreaIdFromCookies, C as COOKIE_WINDOW_SELECTED, l as COOKIE_AREAS_ADMIN_CONTAINER_ID, m as COOKIE_AREAS_ADMIN_ID } from "./helpers/helper.js";
5
5
  import { c as createDynamicMFStore } from "../../../WindowBase/contexts/DynamicMFParmsContext/store.js";
6
6
  import cloneDeep from "lodash-es/cloneDeep";
7
7
  import debounce from "lodash-es/debounce";
8
8
  import { g as generateModuleCount } from "./helpers/generateModuleCount.js";
9
9
  import { a as AREAS_STORE_ID } from "../../constants.js";
10
10
  import { h as helperSelectLayout } from "./helpers/selectLayout.js";
11
- import { g as getCookie, d as deleteCookie, s as setCookie } from "../../../../helpers/cookies/cookies.js";
12
- import { d as addLayoutItemToBreakPoints, e as cloneLayouts } from "../../../GridLayout/subcomponents/Responsive/responsiveUtils.js";
11
+ import { d as deleteCookie, s as setCookie, g as getCookie } from "../../../../helpers/cookies/cookies.js";
13
12
  import { k as isEqualLayouts } from "../../../GridLayout/utils.js";
13
+ import { d as cloneLayouts, e as addLayoutItemToBreakPoints } from "../../../GridLayout/subcomponents/Responsive/responsiveUtils.js";
14
14
  const createDevtools = (immerMiddlewere, config) => {
15
15
  const { enabled = false } = config;
16
16
  if (enabled && process.env.NODE_ENV === "development") {
@@ -441,8 +441,8 @@ const createAreasStore = (initProps, storeDevtoolsEnabled = false) => {
441
441
  bounds: {
442
442
  left: MARGIN_GRIDLAYOUT,
443
443
  top: MARGIN_GRIDLAYOUT,
444
- right: -MARGIN_GRIDLAYOUT,
445
- bottom: -MARGIN_GRIDLAYOUT
444
+ right: -11,
445
+ bottom: -11
446
446
  }
447
447
  });
448
448
  }
@@ -1,5 +1,4 @@
1
1
  const ICONS = {
2
- CLOSE: "close.svg",
3
2
  MAXIMIZE: "maximize.svg",
4
3
  NORMALIZE: "normalize.svg",
5
4
  COLAPSE: "colapse.svg",
@@ -8,16 +7,9 @@ const ICONS = {
8
7
  SAVE_COOKIES: "save_cookies.svg",
9
8
  DELETE_AREA: "delete_area.svg",
10
9
  ADD_AREA: "add_area.svg",
11
- LAYERS: "layers.svg",
12
- NAVIGATE_ERROR: "navegate_error.svg",
13
10
  EDIT_AREA: "edit.svg",
14
11
  CHECK: "checkmarkInCircle.svg",
15
- RESIZE: "controlSize.svg",
16
- VERSION: "version.svg",
17
- SHOW_OPTIONS: "showMoreVertical.svg",
18
12
  CHEVRON_DOWN: "chevronDown.svg",
19
- MODULE: "module.svg",
20
- POPUP: "popup.svg",
21
13
  PENDING_ORDER: "pending_order.svg",
22
14
  MORE_VERTICAL: "more_vertical.svg"
23
15
  };
@@ -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(componentName, ["root", "ImageLogo"]);
@@ -1,3 +1,9 @@
1
- export declare const SplitLayoutRootStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
2
- export declare const SplitMasterStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
3
- export declare const SplitDetailStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
1
+ export declare const SplitLayoutRootStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
2
+ ownerState: Partial<import('../../React-resizable-panels/types').SplitLayoutOwnerState> & Record<string, unknown>;
3
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
4
+ export declare const SplitMasterStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
5
+ ownerState: Partial<import('../../React-resizable-panels/types').SplitLayoutOwnerState> & Record<string, unknown>;
6
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
7
+ export declare const SplitDetailStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
8
+ ownerState: Partial<import('../../React-resizable-panels/types').SplitLayoutOwnerState> & Record<string, unknown>;
9
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
@@ -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>;