@m4l/components 9.2.59 → 9.2.60-13062025.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 (131) hide show
  1. package/.storybook/decorators/WithAppearanceContext/WithAppearanceContext.d.ts +1 -1
  2. package/.storybook/decorators/WithWindowsToolsAndParmsMFContexts/WithWindowsToolsAndParmsMFContexts.d.ts +5 -0
  3. package/components/DataGrid/Datagrid.styles.js +4 -12
  4. package/components/DataGrid/contexts/DataGridContext/types.d.ts +4 -0
  5. package/components/DataGrid/subcomponents/Table/hooks/useSortColumnsRows.js +2 -0
  6. package/components/DynamicFilter/DynamicFilter.styles.js +87 -91
  7. package/components/DynamicFilter/slots/SlotsEnum.d.ts +0 -3
  8. package/components/DynamicFilter/slots/SlotsEnum.js +0 -3
  9. package/components/DynamicFilter/slots/dynamicFilterSlots.d.ts +0 -9
  10. package/components/DynamicFilter/slots/dynamicFilterSlots.js +3 -19
  11. package/components/DynamicFilter/store/DynamicFilterContext.js +5 -6
  12. package/components/DynamicFilter/subcomponents/FilterActions/FilterActions.js +1 -1
  13. package/components/DynamicFilter/subcomponents/FilterActions/useFilterActions.d.ts +1 -0
  14. package/components/DynamicFilter/subcomponents/FilterActions/useFilterActions.js +2 -1
  15. package/components/DynamicFilter/subcomponents/InputFilter/InputFilter.js +2 -0
  16. package/components/DynamicFilter/subcomponents/PopoverFilter/PopoverFilter.js +23 -18
  17. package/components/DynamicFilter/subcomponents/PopoverMenuFields/PopoverMenuFields.js +4 -1
  18. package/components/DynamicSort/DynamicSort.styles.js +86 -87
  19. package/components/DynamicSort/slots/DynamicSortSlots.d.ts +0 -9
  20. package/components/DynamicSort/slots/DynamicSortSlots.js +5 -21
  21. package/components/DynamicSort/slots/SlotsEnum.d.ts +1 -4
  22. package/components/DynamicSort/slots/SlotsEnum.js +1 -4
  23. package/components/DynamicSort/subcomponents/InputSort/InputSort.js +2 -0
  24. package/components/DynamicSort/subcomponents/PopoverSort/PopoverSort.js +21 -17
  25. package/components/DynamicSort/subcomponents/SortActions/SortActions.js +2 -2
  26. package/components/DynamicSort/subcomponents/SortActions/useSortActions.d.ts +2 -0
  27. package/components/DynamicSort/subcomponents/SortActions/useSortActions.js +2 -1
  28. package/components/NumberInput/hooks/useNumberInput/useNumberInput.js +2 -0
  29. package/components/PaperForm/styles.js +2 -1
  30. package/components/PropertyValue/PropertyValue.styles.js +2 -1
  31. package/components/SideBar/SideBar.js +4 -2
  32. package/components/SideBar/constants.d.ts +26 -2
  33. package/components/SideBar/constants.js +19 -7
  34. package/components/SideBar/context/sideBarContext/index.js +19 -5
  35. package/components/SideBar/context/sideBarContext/types.d.ts +22 -1
  36. package/components/SideBar/helpers/getMenuDataWithState/index.js +22 -8
  37. package/components/SideBar/hooks/useCollapse/index.d.ts +1 -0
  38. package/components/SideBar/hooks/useCollapse/useCollapse.d.ts +11 -0
  39. package/components/SideBar/hooks/useCollapse/useCollapse.js +23 -0
  40. package/components/SideBar/slots/SideBarEnum.d.ts +5 -5
  41. package/components/SideBar/slots/SideBarEnum.js +9 -11
  42. package/components/SideBar/slots/SideBarSlots.d.ts +9 -3
  43. package/components/SideBar/slots/SideBarSlots.js +36 -28
  44. package/components/SideBar/styles.js +2 -4
  45. package/components/SideBar/subcomponents/ContentComponent/index.js +39 -19
  46. package/components/SideBar/subcomponents/ContentComponent/style.js +166 -22
  47. package/components/SideBar/subcomponents/{FooterSidebar → Promotion}/index.d.ts +2 -2
  48. package/components/SideBar/subcomponents/{FooterSidebar → Promotion}/index.js +8 -15
  49. package/components/SideBar/subcomponents/{FooterSidebar → Promotion}/styles.js +2 -2
  50. package/components/SideBar/subcomponents/Promotion/types.d.ts +5 -0
  51. package/components/SideBar/subcomponents/SideBarDesktop/index.js +1 -1
  52. package/components/SideBar/subcomponents/SideBarDesktop/styles.js +10 -14
  53. package/components/SideBar/subcomponents/SideBarMobile/index.js +1 -1
  54. package/components/SideBar/subcomponents/TreeGroupItems/index.d.ts +5 -0
  55. package/components/SideBar/subcomponents/{ContentGroups → TreeGroupItems}/index.js +16 -18
  56. package/components/SideBar/subcomponents/{ContentGroups → TreeGroupItems}/styles.js +5 -7
  57. package/components/SideBar/subcomponents/{ContentGroups/subcomponents/ContainerMenuItemsMain → TreeGroupItems}/subcomponents/ArrowIcon/index.js +10 -7
  58. package/components/SideBar/subcomponents/{ContentGroups/subcomponents/ContainerMenuItemsMain → TreeGroupItems/subcomponents/NodeMenuItem}/index.d.ts +3 -3
  59. package/components/SideBar/subcomponents/TreeGroupItems/subcomponents/NodeMenuItem/index.js +53 -0
  60. package/components/SideBar/subcomponents/TreeGroupItems/subcomponents/NodeMenuItem/types.d.ts +8 -0
  61. package/components/SideBar/subcomponents/TreeGroupItems/subcomponents/NodeMenuItemMain/NodeMenuItemMain.d.ts +5 -0
  62. package/components/SideBar/subcomponents/TreeGroupItems/subcomponents/NodeMenuItemMain/NodeMenuItemMain.js +55 -0
  63. package/components/SideBar/subcomponents/TreeGroupItems/subcomponents/NodeMenuItemMain/index.d.ts +1 -0
  64. package/components/SideBar/subcomponents/TreeGroupItems/types.d.ts +4 -0
  65. package/components/SideBar/types.d.ts +7 -3
  66. package/components/WindowBase/WindowBase.js +4 -1
  67. package/components/WindowBase/WindowBase.styles.js +48 -13
  68. package/components/WindowBase/contexts/WindowToolsMFContext/types.d.ts +10 -0
  69. package/components/WindowBase/hooks/useDynamicMFParameters/index.js +2 -2
  70. package/components/WindowBase/slots/WindowBaseEnum.d.ts +2 -1
  71. package/components/WindowBase/slots/WindowBaseEnum.js +1 -0
  72. package/components/WindowBase/slots/WindowBaseSlots.d.ts +3 -0
  73. package/components/WindowBase/slots/WindowBaseSlots.js +6 -1
  74. package/components/WindowBase/subcomponents/Header/HeaderWindowBase.js +5 -3
  75. package/components/WindowBase/subcomponents/Header/useButtonActions.js +4 -2
  76. package/components/WindowBase/subcomponents/MemoizedIconButton/MemoizedIconButton.d.ts +1 -1
  77. package/components/WindowBase/subcomponents/MemoizedIconButton/MemoizedIconButton.js +1 -1
  78. package/components/WindowBase/subcomponents/MemoizedIconButton/types.d.ts +5 -0
  79. package/components/WindowBase/types.d.ts +11 -0
  80. package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/Window.js +17 -0
  81. package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/hooks/useRightActions.js +1 -0
  82. package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/hooks/useWindow.d.ts +2 -0
  83. package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/hooks/useWindow.js +8 -5
  84. package/components/areas/contexts/AreasContext/store.js +18 -2
  85. package/components/areas/contexts/AreasContext/types.d.ts +2 -0
  86. package/components/areas/hooks/index.d.ts +0 -1
  87. package/components/areas/types.d.ts +4 -0
  88. package/components/extended/React-resizable-panels/SplitLayout.js +6 -3
  89. package/components/extended/React-resizable-panels/SplitLayout.styles.js +78 -36
  90. package/components/extended/React-resizable-panels/constants.d.ts +6 -0
  91. package/components/extended/React-resizable-panels/constants.js +5 -1
  92. package/components/extended/React-resizable-panels/slots/SplitLayoutEnum.d.ts +2 -1
  93. package/components/extended/React-resizable-panels/slots/SplitLayoutEnum.js +1 -0
  94. package/components/extended/React-resizable-panels/slots/SplitLayoutSlots.d.ts +3 -0
  95. package/components/extended/React-resizable-panels/slots/SplitLayoutSlots.js +7 -1
  96. package/components/hook-form/RHFAutocompleteAsync/reducer/RHFAutocompleteReducer.js +5 -0
  97. package/components/mui_extended/Accordion/styles.js +1 -0
  98. package/components/mui_extended/Divider/index.d.ts +1 -0
  99. package/components/mui_extended/Divider/index.js +1 -0
  100. package/components/mui_extended/TabContent/TabContent.styles.js +2 -2
  101. package/components/mui_extended/Typography/slots/typographySlots.d.ts +1 -1
  102. package/components/mui_extended/index.d.ts +1 -0
  103. package/components/popups/components/PopupsProvider/hooks/usePopups.js +2 -1
  104. package/hooks/useDynamicFilterAndSort/styles.js +1 -1
  105. package/index.js +67 -67
  106. package/package.json +19 -18
  107. package/storybook/components/DynamicFilter/DynamicFilter.stories.d.ts +27 -11
  108. package/storybook/components/DynamicSort/DynamicSort.stories.d.ts +26 -10
  109. package/storybook/components/SideBar/subcomponents/FooterPromotion/FooterPromotion.d.ts +4 -0
  110. package/storybook/components/SideBar/subcomponents/FooterPromotion/constants.d.ts +3 -0
  111. package/storybook/components/SideBar/subcomponents/FooterPromotion/index.d.ts +1 -0
  112. package/storybook/components/extended/mui/IconButton/IconButton.stories.d.ts +1 -0
  113. package/.storybook/decorators/WithWindowsToolsContext/WithContextWindowTools.d.ts +0 -5
  114. package/components/SideBar/subcomponents/ContentGroups/index.d.ts +0 -5
  115. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ContainerMenuItemsMain/index.js +0 -63
  116. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ContainerMenuItemsMain/styles.d.ts +0 -2
  117. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ContainerMenuItemsMain/styles.js +0 -47
  118. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ContainerMenuItemsMain/types.d.ts +0 -7
  119. package/components/SideBar/subcomponents/ContentGroups/types.d.ts +0 -4
  120. package/components/SideBar/subcomponents/FooterSidebar/types.d.ts +0 -5
  121. package/components/SideBar/subcomponents/HeaderSidebar/index.js +0 -25
  122. package/components/areas/hooks/useSetWindowsTitle/index.d.ts +0 -1
  123. package/components/areas/hooks/useSetWindowsTitle/useSetWindowsTitle.d.ts +0 -6
  124. package/components/areas/hooks/useSetWindowsTitle/useSetWindowsTitle.js +0 -31
  125. package/storybook/components/WindowBase/subcomponents/WithContextWindowToolsProvider.d.ts +0 -5
  126. package/storybook/components/commonActions/components/ActionFormCancel/WindowToolsMFProvider.d.ts +0 -5
  127. /package/components/{areas/hooks/useSetWindowsTitle → SideBar/hooks/useCollapse}/index.js +0 -0
  128. /package/components/SideBar/subcomponents/{FooterSidebar → Promotion}/styles.d.ts +0 -0
  129. /package/components/SideBar/subcomponents/{ContentGroups → TreeGroupItems}/styles.d.ts +0 -0
  130. /package/components/SideBar/subcomponents/{ContentGroups/subcomponents/ContainerMenuItemsMain → TreeGroupItems}/subcomponents/ArrowIcon/index.d.ts +0 -0
  131. /package/components/SideBar/subcomponents/{ContentGroups/subcomponents/ContainerMenuItemsMain → TreeGroupItems}/subcomponents/ArrowIcon/types.d.ts +0 -0
@@ -56,57 +56,99 @@ const splitLayoutStyles = {
56
56
  */
57
57
  splitResizeHandle: ({ theme, ownerState }) => ({
58
58
  position: "relative",
59
+ display: "flex",
60
+ alignItems: "center",
61
+ justifyContent: "center",
59
62
  ...ownerState?.splitPosition === "none" && {
60
63
  display: "none"
61
64
  //Garantiza que no se muestre el splitResizeHandle cuando el splitPosition es none
62
65
  },
63
66
  "&.M4LSplitLayout-splitResizeHandle-horizontal": {
64
- width: "1px",
67
+ width: theme.vars.size.baseSpacings.sp3,
65
68
  margin: "1px 0px",
66
- background: theme.vars.palette.border.default,
67
- "&:before": {
68
- position: "absolute",
69
- display: "flex",
70
- content: `""`,
71
- width: "4px",
72
- height: "56px",
73
- left: "-1px",
74
- top: "calc(50% - 30.5px)",
75
- background: theme.vars.palette.primary.enabled,
76
- borderRadius: theme.vars.size.borderRadius["r0-5"],
77
- zIndex: "1"
78
- },
79
- "&:hover:before": {
80
- background: theme.vars.palette.primary.hover
69
+ "& .M4LIcon-root": {
70
+ opacity: 0,
71
+ zIndex: "1",
72
+ transform: "rotate(90deg)",
73
+ width: theme.vars.size.baseSpacings.sp5,
74
+ height: theme.vars.size.baseSpacings.sp5,
75
+ "& .M4LIcon-icon": {
76
+ backgroundColor: theme.vars.palette.primary.main
77
+ },
78
+ "&::before": {
79
+ content: `""`,
80
+ position: "absolute",
81
+ left: `calc(50% - ${theme.vars.size.baseSpacings.sp5} / 2)`,
82
+ right: `calc(50% - ${theme.vars.size.baseSpacings.sp5} / 2)`,
83
+ width: theme.vars.size.baseSpacings.sp5,
84
+ height: theme.vars.size.baseSpacings.sp5,
85
+ backgroundColor: theme.vars.palette.background.default,
86
+ borderRadius: "50%",
87
+ zIndex: "0"
88
+ }
81
89
  },
82
- "&:active:before": {
83
- background: theme.vars.palette.primary.hover
90
+ "&:after": {
91
+ content: `""`,
92
+ zIndex: "0",
93
+ width: "2px",
94
+ boxShadow: `inset 1px 0px 0px 0px ${theme.vars.palette.border.disabled}`,
95
+ position: "absolute",
96
+ height: "100%",
97
+ left: "50%"
84
98
  }
85
99
  },
86
100
  "&.M4LSplitLayout-splitResizeHandle-vertical": {
87
- height: "1px",
88
- margin: "0px 1px",
89
- background: theme.vars.palette.border.default,
90
- "&:before": {
91
- position: "absolute",
92
- display: "flex",
101
+ position: "relative",
102
+ // asegúrate de que sea el contenedor para posicionar bien los pseudo-elementos
103
+ height: theme.vars.size.baseSpacings.sp3,
104
+ "& .M4LIcon-root": {
105
+ opacity: 0,
106
+ zIndex: "1",
107
+ width: theme.vars.size.baseSpacings.sp5,
108
+ height: theme.vars.size.baseSpacings.sp5,
109
+ "& .M4LIcon-icon": {
110
+ backgroundColor: theme.vars.palette.primary.main
111
+ },
112
+ "&::before": {
113
+ content: `""`,
114
+ position: "absolute",
115
+ top: `calc(50% - ${theme.vars.size.baseSpacings.sp5} / 2)`,
116
+ bottom: `calc(50% - ${theme.vars.size.baseSpacings.sp5} / 2)`,
117
+ width: theme.vars.size.baseSpacings.sp5,
118
+ height: theme.vars.size.baseSpacings.sp5,
119
+ backgroundColor: theme.vars.palette.background.default,
120
+ borderRadius: "50%",
121
+ zIndex: "0"
122
+ }
123
+ },
124
+ "&::after": {
93
125
  content: `""`,
94
- width: "56px",
95
- height: "4px",
96
- top: "-1px",
97
- left: "calc(50% - 22.5px)",
98
- background: theme.vars.palette.primary.enabled,
99
- borderRadius: theme.vars.size.borderRadius["r0-5"],
100
- zIndex: "1"
126
+ zIndex: "0",
127
+ height: "2px",
128
+ boxShadow: `inset 0px 1px 0px 0px ${theme.vars.palette.border.disabled}`,
129
+ position: "absolute",
130
+ width: "100%",
131
+ top: "50%"
132
+ }
133
+ },
134
+ // Aquí controlas ambos con hover del root
135
+ "&:active, &:hover": {
136
+ "& .M4LIcon-root": {
137
+ opacity: 1
101
138
  },
102
- "&:hover:before": {
103
- background: theme.vars.palette.primary.hover
139
+ "&.M4LSplitLayout-splitResizeHandle-vertical": {
140
+ "&:after": {
141
+ boxShadow: `inset 0px 1px 0px 0px ${theme.vars.palette.primary.main}`
142
+ }
104
143
  },
105
- "&:active:before": {
106
- background: theme.vars.palette.primary.hover
144
+ "&.M4LSplitLayout-splitResizeHandle-horizontal": {
145
+ "&:after": {
146
+ boxShadow: `inset 1px 0px 0px 0px ${theme.vars.palette.primary.main}`
147
+ }
107
148
  }
108
149
  }
109
- })
150
+ }),
151
+ splitResizeHandleIcon: {}
110
152
  };
111
153
  export {
112
154
  splitLayoutStyles as s
@@ -2,3 +2,9 @@
2
2
  * Clave del componente SplitLayout
3
3
  */
4
4
  export declare const SPLIT_LAYOUT_KEY_COMPONENT = "M4LSplitLayout";
5
+ /**
6
+ * Iconos del componente SplitLayout
7
+ */
8
+ export declare const SPLIT_LAYOUT_ICONS: {
9
+ handleIcon: string;
10
+ };
@@ -1,4 +1,8 @@
1
1
  const SPLIT_LAYOUT_KEY_COMPONENT = "M4LSplitLayout";
2
+ const SPLIT_LAYOUT_ICONS = {
3
+ handleIcon: "frontend/components/split_layout/assets/icons/CaretCircleUpDown.svg"
4
+ };
2
5
  export {
3
- SPLIT_LAYOUT_KEY_COMPONENT as S
6
+ SPLIT_LAYOUT_KEY_COMPONENT as S,
7
+ SPLIT_LAYOUT_ICONS as a
4
8
  };
@@ -2,5 +2,6 @@ export declare enum SplitLayoutSlots {
2
2
  root = "root",
3
3
  splitMaster = "splitMaster",
4
4
  splitDetail = "splitDetail",
5
- splitResizeHandle = "splitResizeHandle"
5
+ splitResizeHandle = "splitResizeHandle",
6
+ splitResizeHandleIcon = "splitResizeHandleIcon"
6
7
  }
@@ -3,6 +3,7 @@ var SplitLayoutSlots = /* @__PURE__ */ ((SplitLayoutSlots2) => {
3
3
  SplitLayoutSlots2["splitMaster"] = "splitMaster";
4
4
  SplitLayoutSlots2["splitDetail"] = "splitDetail";
5
5
  SplitLayoutSlots2["splitResizeHandle"] = "splitResizeHandle";
6
+ SplitLayoutSlots2["splitResizeHandleIcon"] = "splitResizeHandleIcon";
6
7
  return SplitLayoutSlots2;
7
8
  })(SplitLayoutSlots || {});
8
9
  export {
@@ -71,3 +71,6 @@ export declare const SplitResizeHandleStyled: import('@emotion/styled').StyledCo
71
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" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "tagName" | "hitAreaMargins" | "onDragging"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
72
72
  ownerState?: (Partial<import('../types').SplitLayoutOwnerState> & Record<string, unknown>) | undefined;
73
73
  }, {}, {}>;
74
+ export declare const SplitResizeHandleIconStyled: import('@emotion/styled').StyledComponent<Pick<import('../../../Icon').IconProps, keyof import('../../../Icon').IconProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
75
+ ownerState?: (Partial<import('../types').SplitLayoutOwnerState> & Record<string, unknown>) | undefined;
76
+ }, {}, {}>;
@@ -3,6 +3,7 @@ import { PanelGroup, Panel, PanelResizeHandle } from "react-resizable-panels";
3
3
  import { S as SPLIT_LAYOUT_KEY_COMPONENT } from "../constants.js";
4
4
  import { s as splitLayoutStyles } from "../SplitLayout.styles.js";
5
5
  import { S as SplitLayoutSlots } from "./SplitLayoutEnum.js";
6
+ import { I as Icon } from "../../../Icon/Icon.js";
6
7
  const SplitLayoutRootStyled = styled(PanelGroup, {
7
8
  slot: SplitLayoutSlots.root,
8
9
  name: SPLIT_LAYOUT_KEY_COMPONENT
@@ -19,9 +20,14 @@ const SplitResizeHandleStyled = styled(PanelResizeHandle, {
19
20
  slot: SplitLayoutSlots.splitResizeHandle,
20
21
  name: SPLIT_LAYOUT_KEY_COMPONENT
21
22
  })(splitLayoutStyles.splitResizeHandle);
23
+ const SplitResizeHandleIconStyled = styled(Icon, {
24
+ slot: SplitLayoutSlots.splitResizeHandleIcon,
25
+ name: SPLIT_LAYOUT_KEY_COMPONENT
26
+ })(splitLayoutStyles.splitResizeHandleIcon);
22
27
  export {
23
28
  SplitLayoutRootStyled as S,
24
29
  SplitMasterStyled as a,
25
30
  SplitResizeHandleStyled as b,
26
- SplitDetailStyled as c
31
+ SplitResizeHandleIconStyled as c,
32
+ SplitDetailStyled as d
27
33
  };
@@ -65,6 +65,11 @@ const RHFAutocompleteAsyncReducer = (onChangeFilterParms) => (state, action) =>
65
65
  ...state,
66
66
  isOpen: false
67
67
  };
68
+ // case actionsType.SET_SELECTED_OPTIONS_TO_AUTOCOMPLETE:
69
+ // return {
70
+ // ...state,
71
+ // selectedOptions: action.payload,
72
+ // };
68
73
  default:
69
74
  return state;
70
75
  }
@@ -107,6 +107,7 @@ const accordionStyles = {
107
107
  flexDirection: "column",
108
108
  alignItems: "flex-start",
109
109
  alignSelf: "stretch",
110
+ overflow: "hidden",
110
111
  ...ownerState?.variant === "outlined" && {
111
112
  borderBottomLeftRadius: theme.size.borderRadius["r1-5"],
112
113
  borderBottomRightRadius: theme.size.borderRadius["r1-5"]
@@ -0,0 +1 @@
1
+ export { Divider } from './Divider';
@@ -21,7 +21,7 @@ const tabContentStyles = {
21
21
  zIndex: "0",
22
22
  top: "-1px",
23
23
  ...ownerState?.background ? {
24
- backgroundColor: theme.vars.palette.background.neutral,
24
+ backgroundColor: theme.vars.palette.background.base,
25
25
  paddingLeft: theme.vars.size.baseSpacings.sp2,
26
26
  paddingRight: theme.vars.size.baseSpacings.sp2,
27
27
  paddingBottom: theme.vars.size.baseSpacings.sp2
@@ -30,7 +30,7 @@ const tabContentStyles = {
30
30
  gap: `${theme.vars.size.baseSpacings.sp2} !important`
31
31
  },
32
32
  "&.M4LTabContent-root > div": {
33
- gap: theme.vars.size.baseSpacings.sp2
33
+ gap: theme.vars.size.baseSpacings.sp3
34
34
  }
35
35
  })
36
36
  };
@@ -3,7 +3,7 @@
3
3
  */
4
4
  export declare const StyledMUITypography: import('@emotion/styled').StyledComponent<Pick<import('@mui/material').TypographyOwnProps & import('@mui/material/OverridableComponent').CommonProps & Omit<Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
5
5
  ref?: ((instance: HTMLSpanElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLSpanElement> | null | undefined;
6
- }, "children" | "zIndex" | "paragraph" | "border" | "fontWeight" | "lineHeight" | "letterSpacing" | "fontSize" | "textTransform" | "fontFamily" | "typography" | "flex" | "color" | "left" | "right" | "bottom" | "top" | "style" | "position" | "padding" | "variant" | "borderRadius" | "width" | "display" | "borderColor" | "height" | "gap" | "minHeight" | "minWidth" | "margin" | "overflow" | "boxShadow" | "justifyContent" | "alignItems" | "paddingLeft" | "borderLeft" | "borderTop" | "maxWidth" | "flexDirection" | "paddingRight" | "borderRight" | "flexGrow" | "marginLeft" | "textOverflow" | "borderBottom" | "gridTemplateColumns" | "marginBottom" | "alignContent" | "alignSelf" | "boxSizing" | "columnGap" | "flexBasis" | "flexShrink" | "flexWrap" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateRows" | "justifyItems" | "justifySelf" | "marginBlockEnd" | "marginBlockStart" | "marginInlineEnd" | "marginInlineStart" | "marginRight" | "marginTop" | "maxHeight" | "order" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingTop" | "rowGap" | "textAlign" | "visibility" | "whiteSpace" | "gridArea" | "gridColumn" | "gridRow" | "marginBlock" | "marginInline" | "paddingBlock" | "paddingInline" | "className" | "classes" | "sx" | "p" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "displayPrint" | "align" | "gutterBottom" | "noWrap" | "variantMapping">, "children" | "ref" | "title" | "zIndex" | "id" | "paragraph" | "border" | "fontWeight" | "lineHeight" | "letterSpacing" | "fontSize" | "textTransform" | "fontFamily" | "typography" | "flex" | "hidden" | "color" | "left" | "right" | "bottom" | "top" | "content" | "style" | "position" | "padding" | "variant" | "borderRadius" | "width" | "display" | "borderColor" | "height" | "gap" | "minHeight" | "minWidth" | "margin" | "overflow" | "boxShadow" | "justifyContent" | "alignItems" | "paddingLeft" | "borderLeft" | "borderTop" | "maxWidth" | "flexDirection" | "paddingRight" | "borderRight" | "flexGrow" | "marginLeft" | "textOverflow" | "borderBottom" | "gridTemplateColumns" | "marginBottom" | "alignContent" | "alignSelf" | "boxSizing" | "columnGap" | "flexBasis" | "flexShrink" | "flexWrap" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateRows" | "justifyItems" | "justifySelf" | "marginBlockEnd" | "marginBlockStart" | "marginInlineEnd" | "marginInlineStart" | "marginRight" | "marginTop" | "maxHeight" | "order" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingTop" | "rowGap" | "textAlign" | "translate" | "visibility" | "whiteSpace" | "gridArea" | "gridColumn" | "gridRow" | "marginBlock" | "marginInline" | "paddingBlock" | "paddingInline" | "className" | "classes" | "sx" | "p" | "slot" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "displayPrint" | "align" | "gutterBottom" | "noWrap" | "variantMapping"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown> & {
6
+ }, "children" | "zIndex" | "paragraph" | "border" | "fontWeight" | "lineHeight" | "letterSpacing" | "fontSize" | "textTransform" | "fontFamily" | "typography" | "flex" | "color" | "left" | "right" | "bottom" | "top" | "style" | "position" | "padding" | "variant" | "borderRadius" | "width" | "display" | "borderColor" | "height" | "gap" | "minHeight" | "margin" | "overflow" | "boxShadow" | "minWidth" | "justifyContent" | "alignItems" | "paddingLeft" | "borderLeft" | "borderTop" | "maxWidth" | "flexDirection" | "paddingRight" | "borderRight" | "flexGrow" | "marginLeft" | "textOverflow" | "borderBottom" | "gridTemplateColumns" | "marginBottom" | "alignContent" | "alignSelf" | "boxSizing" | "columnGap" | "flexBasis" | "flexShrink" | "flexWrap" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateRows" | "justifyItems" | "justifySelf" | "marginBlockEnd" | "marginBlockStart" | "marginInlineEnd" | "marginInlineStart" | "marginRight" | "marginTop" | "maxHeight" | "order" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingTop" | "rowGap" | "textAlign" | "visibility" | "whiteSpace" | "gridArea" | "gridColumn" | "gridRow" | "marginBlock" | "marginInline" | "paddingBlock" | "paddingInline" | "className" | "classes" | "sx" | "p" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "displayPrint" | "align" | "gutterBottom" | "noWrap" | "variantMapping">, "children" | "ref" | "title" | "zIndex" | "id" | "paragraph" | "border" | "fontWeight" | "lineHeight" | "letterSpacing" | "fontSize" | "textTransform" | "fontFamily" | "typography" | "flex" | "hidden" | "color" | "left" | "right" | "bottom" | "top" | "content" | "style" | "position" | "padding" | "variant" | "borderRadius" | "width" | "display" | "borderColor" | "height" | "gap" | "minHeight" | "margin" | "overflow" | "boxShadow" | "minWidth" | "justifyContent" | "alignItems" | "paddingLeft" | "borderLeft" | "borderTop" | "maxWidth" | "flexDirection" | "paddingRight" | "borderRight" | "flexGrow" | "marginLeft" | "textOverflow" | "borderBottom" | "gridTemplateColumns" | "marginBottom" | "alignContent" | "alignSelf" | "boxSizing" | "columnGap" | "flexBasis" | "flexShrink" | "flexWrap" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateRows" | "justifyItems" | "justifySelf" | "marginBlockEnd" | "marginBlockStart" | "marginInlineEnd" | "marginInlineStart" | "marginRight" | "marginTop" | "maxHeight" | "order" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingTop" | "rowGap" | "textAlign" | "translate" | "visibility" | "whiteSpace" | "gridArea" | "gridColumn" | "gridRow" | "marginBlock" | "marginInline" | "paddingBlock" | "paddingInline" | "className" | "classes" | "sx" | "p" | "slot" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "displayPrint" | "align" | "gutterBottom" | "noWrap" | "variantMapping"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown> & {
7
7
  ownerState?: (Partial<import('../types').TypographyOwnerState> & Record<string, unknown>) | undefined;
8
8
  }, {}, {}>;
9
9
  /**
@@ -27,3 +27,4 @@ export * from './ToggleButton';
27
27
  export * from './ToggleIconButton';
28
28
  export * from './NavLink';
29
29
  export * from './Dialog';
30
+ export * from './Divider';
@@ -80,7 +80,8 @@ const usePopups = (popupId) => {
80
80
  setFnQueryClose: (fnQueryClose) => setFnQueryClose(popupId, fnQueryClose),
81
81
  toast: createToaster(popupId),
82
82
  setWindowTitle: (newTitle) => update(popupId, { title: newTitle }),
83
- setEditionInfo: (newEditionInfo) => update(popupId, { editionInfo: newEditionInfo }),
83
+ setWindowSubTitle: (newSubtitle) => update(popupId, { subTitle: newSubtitle }),
84
+ setWindowEditionInfo: (newEditionInfo) => update(popupId, { editionInfo: newEditionInfo }),
84
85
  hide: () => hide(popupId),
85
86
  show: () => {
86
87
  show(popupId);
@@ -32,7 +32,7 @@ const dynamicFilterAndSortStyles = {
32
32
  */
33
33
  stackRightActions: ({ theme }) => ({
34
34
  alignItems: "center",
35
- gap: theme.vars.size.baseSpacings.sp1,
35
+ gap: theme.vars.size.baseSpacings.sp3,
36
36
  width: "fit-content"
37
37
  })
38
38
  };
package/index.js CHANGED
@@ -15,8 +15,7 @@ import { g as g2 } from "./components/AppBar/dictionary.js";
15
15
  import { A as A4 } from "./components/areas/components/AreasAdmin/AreasAdmin.js";
16
16
  import { A as A5 } from "./components/areas/components/AreasViewer/AreasViewer.js";
17
17
  import { a as a2, A as A6 } from "./components/areas/contexts/AreasContext/index.js";
18
- import { u } from "./components/areas/hooks/useSetWindowsTitle/useSetWindowsTitle.js";
19
- import { u as u2 } from "./components/areas/hooks/useAreas/index.js";
18
+ import { u } from "./components/areas/hooks/useAreas/index.js";
20
19
  import { A as A7, a as a3, L as L2, b as b2, g as g3 } from "./components/areas/dictionary.js";
21
20
  import { B } from "./components/BaseModule/BaseModule.js";
22
21
  import { C } from "./components/Chip/Chip.js";
@@ -36,26 +35,26 @@ import { N, T as T2 } from "./components/DataGrid/subcomponents/editors/TextEdit
36
35
  import { g as g6 } from "./components/DataGrid/utils/getDataGridRowsFromSet.js";
37
36
  import { b as b3, a as a4, d as d2 } from "./components/DataGrid/constants.js";
38
37
  import { C as C2 } from "./components/DataGrid/formatters/ColumnBooleanFormatter/formatter.js";
39
- import { u as u3 } from "./components/DataGrid/formatters/ColumnBooleanFormatter/useColumnBoolean.js";
38
+ import { u as u2 } from "./components/DataGrid/formatters/ColumnBooleanFormatter/useColumnBoolean.js";
40
39
  import { C as C3 } from "./components/DataGrid/formatters/ColumnConcatenatedValuesFormatter/formatter.js";
41
- import { u as u4 } from "./components/DataGrid/formatters/ColumnConcatenatedValuesFormatter/useColumnConcatenatedValues.js";
40
+ import { u as u3 } from "./components/DataGrid/formatters/ColumnConcatenatedValuesFormatter/useColumnConcatenatedValues.js";
42
41
  import { C as C4 } from "./components/DataGrid/formatters/ColumnDateFormatter/formatter.js";
43
- import { u as u5 } from "./components/DataGrid/formatters/ColumnDateFormatter/useColumnDate.js";
42
+ import { u as u4 } from "./components/DataGrid/formatters/ColumnDateFormatter/useColumnDate.js";
44
43
  import { C as C5 } from "./components/DataGrid/formatters/ColumnIconFormatter/formatter.js";
45
44
  import { C as C6 } from "./components/DataGrid/formatters/ColumnInteractiveCheckFormatter/formatter.js";
46
- import { u as u6 } from "./components/DataGrid/formatters/ColumnInteractiveCheckFormatter/useColumnInteractiveCheck.js";
45
+ import { u as u5 } from "./components/DataGrid/formatters/ColumnInteractiveCheckFormatter/useColumnInteractiveCheck.js";
47
46
  import { C as C7 } from "./components/DataGrid/formatters/ColumnNestedValueFormatter/formatter.js";
48
- import { u as u7 } from "./components/DataGrid/formatters/ColumnNestedValueFormatter/useColumnNestedValue.js";
47
+ import { u as u6 } from "./components/DataGrid/formatters/ColumnNestedValueFormatter/useColumnNestedValue.js";
49
48
  import { C as C8 } from "./components/DataGrid/formatters/ColumnPointsFormatter/formatter.js";
50
- import { u as u8 } from "./components/DataGrid/formatters/ColumnPointsFormatter/useColumnPoints.js";
49
+ import { u as u7 } from "./components/DataGrid/formatters/ColumnPointsFormatter/useColumnPoints.js";
51
50
  import { C as C9 } from "./components/DataGrid/formatters/ColumnPriceFormatter/formatter.js";
52
- import { u as u9 } from "./components/DataGrid/formatters/ColumnPriceFormatter/useColumnPrice.js";
51
+ import { u as u8 } from "./components/DataGrid/formatters/ColumnPriceFormatter/useColumnPrice.js";
53
52
  import { C as C10 } from "./components/DataGrid/formatters/ColumnSetCheckFormatter/formatter.js";
54
- import { u as u10 } from "./components/DataGrid/formatters/ColumnSetCheckFormatter/useColumnSetCheck.js";
53
+ import { u as u9 } from "./components/DataGrid/formatters/ColumnSetCheckFormatter/useColumnSetCheck.js";
55
54
  import { C as C11 } from "./components/DataGrid/formatters/ColumnUncertaintyFormatter/formatter.js";
56
- import { u as u11 } from "./components/DataGrid/formatters/ColumnUncertaintyFormatter/useColumnUncertainty.js";
55
+ import { u as u10 } from "./components/DataGrid/formatters/ColumnUncertaintyFormatter/useColumnUncertainty.js";
57
56
  import { C as C12 } from "./components/DataGrid/formatters/ColumnChipStatusFormatter/formatter.js";
58
- import { u as u12 } from "./components/DataGrid/formatters/ColumnChipStatusFormatter/useColumnChipStatus.js";
57
+ import { u as u11 } from "./components/DataGrid/formatters/ColumnChipStatusFormatter/useColumnChipStatus.js";
59
58
  import { D as D3 } from "./components/DragResizeWindowRND/DragResizeWindowRND.js";
60
59
  import { d as d3 } from "./components/DragResizeWindowRND/classes/index.js";
61
60
  import { g as g7 } from "./components/DynamicFilter/dictionary.js";
@@ -107,16 +106,17 @@ import { T as T15 } from "./components/mui_extended/ToggleIconButton/slots/Toggl
107
106
  import { T as T16 } from "./components/mui_extended/ToggleIconButton/slots/ToggleIconButtonSlots.js";
108
107
  import { N as N2 } from "./components/mui_extended/NavLink/NavLink.js";
109
108
  import { D as D6 } from "./components/mui_extended/Dialog/Dialog.js";
109
+ import { D as D7 } from "./components/mui_extended/Divider/Divider.js";
110
110
  import { B as B6 } from "./components/formatters/BooleanFormatter/BooleanFormatter.js";
111
- import { D as D7, g as g12 } from "./components/formatters/DateFormatter/DateFormatter.js";
111
+ import { D as D8, g as g12 } from "./components/formatters/DateFormatter/DateFormatter.js";
112
112
  import { U, g as g13 } from "./components/formatters/UncertaintyFormatter/UncertaintyFormatter.js";
113
113
  import { P as P3, g as g14 } from "./components/formatters/PointsFormatter/PointsFormatter.js";
114
114
  import { C as C15, g as g15 } from "./components/formatters/ConcatenatedFormatter/ConcatenatedFormatter.js";
115
- import { P as P4, u as u13 } from "./components/formatters/PeriodFormatter/PeriodFormatter.js";
115
+ import { P as P4, u as u12 } from "./components/formatters/PeriodFormatter/PeriodFormatter.js";
116
116
  import { P as P5, g as g16 } from "./components/formatters/PriceFormatter/PriceFormatter.js";
117
117
  import { C as C16 } from "./components/formatters/ChipStatusFormatter/ChipStatusFormatter.js";
118
118
  import { g as g17 } from "./components/formatters/DistanceToNowFormatter/dictionary.js";
119
- import { D as D8 } from "./components/formatters/DistanceToNowFormatter/DistanceToNowFormatter.js";
119
+ import { D as D9 } from "./components/formatters/DistanceToNowFormatter/DistanceToNowFormatter.js";
120
120
  import { g as g18 } from "./components/formatters/dictionary.js";
121
121
  import { G } from "./components/GridLayout/GridLayout.js";
122
122
  import { R as R3 } from "./components/GridLayout/subcomponents/Responsive/index.js";
@@ -166,7 +166,7 @@ import { g as g26 } from "./components/ObjectLogs/dictionary.js";
166
166
  import { O } from "./components/ObjectLogs/ObjectLogs.js";
167
167
  import { P as P7 } from "./components/PaperForm/PaperForm.js";
168
168
  import { P as P8 } from "./components/PDFViewer/PDFViewer.js";
169
- import { u as u14 } from "./components/popups/components/PopupsProvider/hooks/usePopupsStore.js";
169
+ import { u as u13 } from "./components/popups/components/PopupsProvider/hooks/usePopupsStore.js";
170
170
  import { a as a10, P as P9 } from "./components/popups/components/PopupsProvider/contexts/PopupsContext/PopupsContext.js";
171
171
  import { P as P10 } from "./components/popups/components/PopupsViewer/PopupsViewer.js";
172
172
  import { P as P11 } from "./components/PrintingSystem/PrintingSystem.js";
@@ -176,34 +176,34 @@ import { S as S8 } from "./components/SideBar/SideBar.js";
176
176
  import { T as T18 } from "./components/ToastContainer/ToastContainer.js";
177
177
  import { T as T19 } from "./components/ToastContainer/subcomponents/ToastMessage/ToastMessage.js";
178
178
  import { W } from "./components/WindowBase/WindowBase.js";
179
- import { u as u15 } from "./components/WindowBase/hooks/useWindowToolsMF/index.js";
180
- import { a as a11, u as u16 } from "./components/WindowBase/hooks/useDynamicMFParameters/index.js";
179
+ import { u as u14 } from "./components/WindowBase/hooks/useWindowToolsMF/index.js";
180
+ import { u as u15, a as a11 } from "./components/WindowBase/hooks/useDynamicMFParameters/index.js";
181
181
  import { M as M6, W as W2, a as a12 } from "./components/WindowBase/contexts/WindowToolsMFContext/WindowToolsMFContext.js";
182
182
  import { c as c3 } from "./components/WindowBase/contexts/DynamicMFParmsContext/store.js";
183
- import { D as D9, a as a13, M as M7 } from "./components/WindowBase/contexts/DynamicMFParmsContext/DynamicMFParmsContext.js";
183
+ import { D as D10, a as a13, M as M7 } from "./components/WindowBase/contexts/DynamicMFParmsContext/DynamicMFParmsContext.js";
184
184
  import { W as W3 } from "./components/WindowConfirm/WindowConfirm.js";
185
185
  import { a as a14, g as g27 } from "./components/ModalDialog/dictionary.js";
186
186
  import { M as M8 } from "./components/ModalDialog/ModalDialog.js";
187
187
  import { P as P13 } from "./components/Pager/Pager.js";
188
- import { F as F2, R as R22, u as u17 } from "./components/hook-form/RHFormContext/index.js";
188
+ import { F as F2, R as R22, u as u16 } from "./components/hook-form/RHFormContext/index.js";
189
189
  import { g as g28 } from "./components/hook-form/RHFormContext/dictionary.js";
190
- import { u as u18 } from "./contexts/AppearanceComponentContext/useAppearanceComponentStore.js";
190
+ import { u as u17 } from "./contexts/AppearanceComponentContext/useAppearanceComponentStore.js";
191
191
  import { A as A16 } from "./contexts/AppearanceComponentContext/AppearanceComponentContext.js";
192
192
  import { a as a15, M as M9 } from "./contexts/ModalContext/index.js";
193
- import { u as u19 } from "./hooks/useFormAddEdit/index.js";
194
- import { u as u20 } from "./hooks/useModal/index.js";
195
- import { u as u21 } from "./hooks/useTab/index.js";
193
+ import { u as u18 } from "./hooks/useFormAddEdit/index.js";
194
+ import { u as u19 } from "./hooks/useModal/index.js";
195
+ import { u as u20 } from "./hooks/useTab/index.js";
196
196
  import { g as g29 } from "./hooks/useFormAddEdit/dictionary.js";
197
- import { u as u22 } from "./hooks/useFormFocus/index.js";
198
- import { u as u23 } from "./hooks/useInterval/index.js";
199
- import { u as u24 } from "./hooks/useComponentSize/useComponentSize.js";
200
- import { u as u25 } from "./hooks/useFormReadyForUpdate/index.js";
201
- import { u as u26 } from "./hooks/useStateRef/index.js";
197
+ import { u as u21 } from "./hooks/useFormFocus/index.js";
198
+ import { u as u22 } from "./hooks/useInterval/index.js";
199
+ import { u as u23 } from "./hooks/useComponentSize/useComponentSize.js";
200
+ import { u as u24 } from "./hooks/useFormReadyForUpdate/index.js";
201
+ import { u as u25 } from "./hooks/useStateRef/index.js";
202
202
  import { S as S9 } from "./hooks/useSvgColor/constants.js";
203
- import { u as u27 } from "./hooks/useSvgColor/useSvgColor.js";
204
- import { u as u28 } from "./hooks/useDynamicFilterAndSort/useDynamicFilterAndSort.js";
205
- import { u as u29 } from "./hooks/useDataGridPersistence/useDataGridPersistence.js";
206
- import { u as u30 } from "./hooks/usePopoverContainer/usePopoverContainer.js";
203
+ import { u as u26 } from "./hooks/useSvgColor/useSvgColor.js";
204
+ import { u as u27 } from "./hooks/useDynamicFilterAndSort/useDynamicFilterAndSort.js";
205
+ import { u as u28 } from "./hooks/useDataGridPersistence/useDataGridPersistence.js";
206
+ import { u as u29 } from "./hooks/usePopoverContainer/usePopoverContainer.js";
207
207
  import { c as c4 } from "./utils/capitalizeFirstLetter.js";
208
208
  import { i as i2 } from "./utils/isValidDate.js";
209
209
  import { g as g30 } from "./utils/getComponentUtilityClass.js";
@@ -262,12 +262,13 @@ export {
262
262
  d2 as DATAGRID_SEMANTIC_WIDTHS,
263
263
  D as DICTIONARY,
264
264
  D2 as DataGrid,
265
- D7 as DateFormatter,
265
+ D8 as DateFormatter,
266
266
  D6 as Dialog,
267
- D8 as DistanceToNowFormatter,
267
+ D9 as DistanceToNowFormatter,
268
+ D7 as Divider,
268
269
  D3 as DragResizeWindowRND,
269
270
  D4 as DynamicFilter,
270
- D9 as DynamicMFParmsContext,
271
+ D10 as DynamicMFParmsContext,
271
272
  a13 as DynamicMFParmsProvider,
272
273
  D5 as DynamicSort,
273
274
  F as FixedSizeList,
@@ -436,37 +437,36 @@ export {
436
437
  r as rhfPeriodStyles,
437
438
  t as toggleButtonStyles,
438
439
  t2 as toggleIconButtonStyles,
439
- u18 as useAppearanceComponentStore,
440
- u2 as useAreasStore,
441
- u3 as useColumnBoolean,
442
- u12 as useColumnChipStatus,
443
- u4 as useColumnConcatenatedValue,
444
- u5 as useColumnDate,
445
- u6 as useColumnInteractiveCheck,
446
- u7 as useColumnNestedValue,
447
- u8 as useColumnPoints,
448
- u9 as useColumnPrice,
449
- u10 as useColumnSetCheck,
450
- u11 as useColumnUncertanity,
451
- u24 as useComponentSize,
452
- u17 as useCustomForm,
453
- u29 as useDataGridPersistence,
454
- u28 as useDynamicFilterAndSort,
455
- a11 as useDynamicMFParameters,
456
- u16 as useDynamicMFParametersStore,
457
- u19 as useFormAddEdit,
458
- u22 as useFormFocus,
459
- u25 as useFormReadyForUpdate,
460
- u13 as useFormatPeriod,
461
- u23 as useInterval,
462
- u20 as useModal,
463
- u30 as usePopoverContainer,
464
- u14 as usePopupsStore,
465
- u as useSetWindowsTitle,
466
- u26 as useStateRef,
467
- u27 as useSvgColor,
468
- u21 as useTab,
469
- u15 as useWindowToolsMF,
440
+ u17 as useAppearanceComponentStore,
441
+ u as useAreasStore,
442
+ u2 as useColumnBoolean,
443
+ u11 as useColumnChipStatus,
444
+ u3 as useColumnConcatenatedValue,
445
+ u4 as useColumnDate,
446
+ u5 as useColumnInteractiveCheck,
447
+ u6 as useColumnNestedValue,
448
+ u7 as useColumnPoints,
449
+ u8 as useColumnPrice,
450
+ u9 as useColumnSetCheck,
451
+ u10 as useColumnUncertanity,
452
+ u23 as useComponentSize,
453
+ u16 as useCustomForm,
454
+ u28 as useDataGridPersistence,
455
+ u27 as useDynamicFilterAndSort,
456
+ u15 as useDynamicMFParameters,
457
+ a11 as useDynamicMFParametersStore,
458
+ u18 as useFormAddEdit,
459
+ u21 as useFormFocus,
460
+ u24 as useFormReadyForUpdate,
461
+ u12 as useFormatPeriod,
462
+ u22 as useInterval,
463
+ u19 as useModal,
464
+ u29 as usePopoverContainer,
465
+ u13 as usePopupsStore,
466
+ u25 as useStateRef,
467
+ u26 as useSvgColor,
468
+ u20 as useTab,
469
+ u14 as useWindowToolsMF,
470
470
  v2 as varBounce,
471
471
  v3 as varContainer,
472
472
  v as varFade,