@m4l/components 9.2.55 → 9.2.56-beta.3

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 (363) hide show
  1. package/.storybook/decorators/WithWindowsToolsContext/WithContextWindowTools.d.ts +5 -0
  2. package/.storybook/utils/flattenDeep.d.ts +8 -0
  3. package/.storybook/utils/getStylesColorsByMode.d.ts +4 -4
  4. package/@types/augmentations.d.ts +1 -1
  5. package/@types/types.d.ts +10 -9
  6. package/components/AccountPopover/AccountPopover.js +3 -4
  7. package/components/AccountPopover/slots/AccountPopoverSlots.d.ts +32 -32
  8. package/components/AccountPopover/subcomponents/MenuPopover/MenuPopover.js +13 -14
  9. package/components/AccountPopover/types.d.ts +2 -2
  10. package/components/AppBar/AppBar.js +6 -9
  11. package/components/AppBar/slots/AppBarSlots.d.ts +16 -16
  12. package/components/AppBar/styles.js +2 -1
  13. package/components/AppBar/types.d.ts +2 -2
  14. package/components/Chip/ChipStyles.js +12 -12
  15. package/components/Chip/slots/ChipSlots.d.ts +6 -6
  16. package/components/Color/Color.styles.js +11 -11
  17. package/components/Color/slots/ColorSlots.d.ts +5 -5
  18. package/components/CommonActions/components/ActionFormIntro/ActionFormIntro.js +0 -1
  19. package/components/CommonActions/components/ActionFormIntro/slots/ActionFormIntroSlots.d.ts +2 -2
  20. package/components/CommonActions/components/ActionFormIntro/types.d.ts +2 -2
  21. package/components/DataGrid/DataGrid.js +36 -7
  22. package/components/DataGrid/Datagrid.styles.js +600 -0
  23. package/components/DataGrid/constants.d.ts +1 -0
  24. package/components/DataGrid/constants.js +2 -0
  25. package/components/DataGrid/contexts/DataGridContext/index.js +62 -13
  26. package/components/DataGrid/contexts/DataGridContext/types.d.ts +5 -2
  27. package/components/DataGrid/dictionary.d.ts +2 -1
  28. package/components/DataGrid/dictionary.js +22 -21
  29. package/components/DataGrid/formatters/ColumnIconFormatter/formatter.js +0 -2
  30. package/components/DataGrid/formatters/ColumnInteractiveCheckFormatter/formatter.js +2 -2
  31. package/components/DataGrid/icons.d.ts +1 -0
  32. package/components/DataGrid/icons.js +4 -3
  33. package/components/DataGrid/slots/DataGridEnum.d.ts +6 -0
  34. package/components/DataGrid/slots/DataGridEnum.js +10 -2
  35. package/components/DataGrid/slots/DataGridSlot.d.ts +9 -0
  36. package/components/DataGrid/slots/DataGridSlot.js +35 -14
  37. package/components/DataGrid/subcomponents/ControlNavigate/ControlNavigate.d.ts +5 -0
  38. package/components/DataGrid/subcomponents/ControlNavigate/ControlNavigate.js +30 -0
  39. package/components/DataGrid/subcomponents/ControlNavigate/index.d.ts +2 -0
  40. package/components/DataGrid/subcomponents/ControlNavigate/types.d.ts +7 -0
  41. package/components/DataGrid/subcomponents/HeaderActions/index.d.ts +5 -0
  42. package/components/DataGrid/subcomponents/HeaderActions/index.js +40 -0
  43. package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/Density/index.js +8 -7
  44. package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/Filter/index.js +2 -2
  45. package/components/DataGrid/subcomponents/HeaderActions/subcomponents/MobileMenuActions/index.d.ts +7 -0
  46. package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/MobileMenuActions/index.js +5 -3
  47. package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/RowsCount/index.js +4 -4
  48. package/components/DataGrid/subcomponents/HeaderActions/subcomponents/Settings/index.d.ts +5 -0
  49. package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/Settings/index.js +7 -3
  50. package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/Settings/subcomponents/ColumnsConfig/index.js +57 -47
  51. package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/Settings/subcomponents/ColumnsConfig/types.d.ts +6 -1
  52. package/components/DataGrid/subcomponents/HeaderActions/subcomponents/Settings/types.d.ts +4 -0
  53. package/components/DataGrid/subcomponents/HeaderActions/subcomponents/hooks/useModalSettings/index.d.ts +8 -0
  54. package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/hooks/useModalSettings/index.js +13 -7
  55. package/components/DataGrid/subcomponents/HeaderActions/types.d.ts +5 -0
  56. package/components/DataGrid/subcomponents/Table/hooks/useSortColumnsRows.js +5 -3
  57. package/components/DataGrid/subcomponents/Table/index.js +4 -4
  58. package/components/DataGrid/subcomponents/Table/subcomponents/CustomIcons.js +12 -3
  59. package/components/DataGrid/subcomponents/Table/subcomponents/DraggableHeaderRenderer.js +28 -13
  60. package/components/DataGrid/subcomponents/Table/subcomponents/SelectColumn.js +2 -2
  61. package/components/DataGrid/subcomponents/Table/subcomponents/SkeletonFormatter/index.js +4 -2
  62. package/components/DataGrid/subcomponents/editors/TextEditor/index.js +1 -1
  63. package/components/DataGrid/types.d.ts +20 -3
  64. package/components/DragResizeWindowRND/DragResizeWindowRND.styles.js +1 -1
  65. package/components/DragResizeWindowRND/slots/DragResizeWindowRNDSlots.d.ts +3 -5
  66. package/components/DynamicFilter/DynamicFilter.styles.js +13 -13
  67. package/components/DynamicFilter/dictionary.d.ts +1 -0
  68. package/components/DynamicFilter/dictionary.js +2 -1
  69. package/components/DynamicFilter/slots/dynamicFilterSlots.d.ts +19 -19
  70. package/components/DynamicFilter/store/DynamicFilterStore.js +2 -2
  71. package/components/DynamicFilter/subcomponents/AppliedFilters/AppliedFilters.js +2 -2
  72. package/components/DynamicFilter/subcomponents/AppliedFilters/useAppliedFilters.js +1 -1
  73. package/components/DynamicFilter/subcomponents/FilterActions/FilterActions.js +2 -3
  74. package/components/DynamicFilter/subcomponents/FilterActions/useFilterActions.js +2 -2
  75. package/components/DynamicFilter/subcomponents/PopoverFilter/PopoverFilter.js +3 -4
  76. package/components/DynamicFilter/subcomponents/PopoverMenuFields/PopoverMenuFields.js +0 -1
  77. package/components/DynamicFilter/types.d.ts +1 -1
  78. package/components/DynamicSort/DynamicSort.styles.js +13 -13
  79. package/components/DynamicSort/slots/DynamicSortSlots.d.ts +19 -19
  80. package/components/DynamicSort/store/DynamicSortStore.js +2 -2
  81. package/components/DynamicSort/subcomponents/AppliedSorts/AppliedSorts.js +2 -2
  82. package/components/DynamicSort/subcomponents/PopoverMenuFields/PopoverMenuFields.js +0 -1
  83. package/components/DynamicSort/subcomponents/PopoverSort/PopoverSort.js +4 -5
  84. package/components/DynamicSort/subcomponents/SortActions/SortActions.js +2 -3
  85. package/components/DynamicSort/subcomponents/SortActions/useSortActions.js +2 -2
  86. package/components/GridLayout/styles.js +4 -82
  87. package/components/HelperError/HelperError.styles.js +4 -4
  88. package/components/Icon/Icon.js +1 -1
  89. package/components/Icon/Icon.styles.js +10 -10
  90. package/components/Image/Image.js +1 -1
  91. package/components/Image/image.styles.js +1 -1
  92. package/components/Image/slots/ImageSlots.d.ts +12 -12
  93. package/components/Image/subcomponents/IntersectComponent/index.js +0 -1
  94. package/components/Image/types.d.ts +2 -2
  95. package/components/Label/Label.styles.js +11 -11
  96. package/components/LinearProgressIndeterminate/LinearProgressIndeterminate.styles.js +3 -3
  97. package/components/LoadingError/LoadingError.js +1 -2
  98. package/components/MenuActions/MenuActions.js +4 -4
  99. package/components/MenuActions/MenuActions.styles.js +4 -4
  100. package/components/MenuActions/slots/MenuActionsSlots.d.ts +12 -12
  101. package/components/MenuActions/types.d.ts +3 -3
  102. package/components/NoItemSelected/NoItemSelected.js +3 -5
  103. package/components/NoItemSelected/NoItemSelected.styles.js +4 -4
  104. package/components/NoItemSelected/slots/NoItemSelectedSlots.d.ts +7 -7
  105. package/components/NumberInput/NumberInput.styles.js +20 -20
  106. package/components/NumberInput/slots/NumberInputSlots.d.ts +2 -2
  107. package/components/ObjectLogs/hooks/useDetailFormatter.js +3 -2
  108. package/components/ObjectLogs/slots/ObjectLogsSlots.d.ts +20 -20
  109. package/components/ObjectLogs/subcomponents/ObjectLogsByM4L/ObjectLogsByM4L.js +1 -3
  110. package/components/ObjectLogs/subcomponents/ObjectLogsByOthers/ObjectLogsByOthers.js +1 -3
  111. package/components/ObjectLogs/types.d.ts +2 -2
  112. package/components/Pager/Pager.js +2 -3
  113. package/components/Pager/Pager.styles.js +13 -12
  114. package/components/Pager/index.d.ts +2 -0
  115. package/components/Pager/slots/PagerEnum.d.ts +2 -1
  116. package/components/Pager/slots/PagerEnum.js +1 -0
  117. package/components/Pager/slots/PagerSlots.d.ts +1 -0
  118. package/components/Pager/slots/PagerSlots.js +7 -2
  119. package/components/Pager/subcomponents/CustomTablePagination/CustomTablePagination.js +16 -18
  120. package/components/Pager/subcomponents/PagerActions/PagerActions.js +4 -2
  121. package/components/Pager/subcomponents/PagerActions/types.d.ts +1 -0
  122. package/components/PaperForm/components/Header.js +2 -2
  123. package/components/PaperForm/slots/PaperFormSlots.d.ts +10 -10
  124. package/components/PaperForm/styles.js +7 -7
  125. package/components/PaperForm/types.d.ts +2 -2
  126. package/components/PrintingSystem/slots/PrintingSystemSlots.d.ts +42 -42
  127. package/components/PrintingSystem/subcomponents/BodyNode/index.js +0 -1
  128. package/components/PrintingSystem/subcomponents/ChartNode/index.js +0 -1
  129. package/components/PrintingSystem/subcomponents/DividerNode/index.js +0 -1
  130. package/components/PrintingSystem/subcomponents/FooterNode/index.js +0 -1
  131. package/components/PrintingSystem/subcomponents/GridNode/index.js +0 -5
  132. package/components/PrintingSystem/subcomponents/HeaderNode/index.js +0 -1
  133. package/components/PrintingSystem/subcomponents/PageNode/index.js +0 -1
  134. package/components/PrintingSystem/subcomponents/PaperNode/index.js +0 -5
  135. package/components/PrintingSystem/subcomponents/PropertyValueNode/index.js +0 -2
  136. package/components/PrintingSystem/subcomponents/SectionNode/index.js +0 -1
  137. package/components/PrintingSystem/types.d.ts +2 -2
  138. package/components/PropertyValue/PropertyValue.js +3 -4
  139. package/components/PropertyValue/PropertyValue.styles.js +3 -3
  140. package/components/PropertyValue/slots/PropertyValueSlots.d.ts +3 -3
  141. package/components/ScrollBar/ScrollBar.d.ts +3 -3
  142. package/components/ScrollBar/ScrollBar.js +5 -45
  143. package/components/ScrollBar/ScrollBar.styles.js +5 -52
  144. package/components/ScrollBar/constants.d.ts +4 -2
  145. package/components/ScrollBar/constants.js +2 -5
  146. package/components/ScrollBar/index.d.ts +2 -0
  147. package/components/ScrollBar/index.js +1 -0
  148. package/components/ScrollBar/slots/ScrollBarSlots.d.ts +1 -6
  149. package/components/ScrollBar/slots/ScrollBarSlots.js +7 -13
  150. package/components/ScrollBar/slots/ScrollbarEnum.d.ts +3 -0
  151. package/components/ScrollBar/slots/ScrollbarEnum.js +7 -0
  152. package/components/ScrollBar/types.d.ts +12 -42
  153. package/components/SideBar/slots/SideBarSlots.d.ts +34 -34
  154. package/components/SideBar/subcomponents/ContentComponent/style.d.ts +2 -2
  155. package/components/SideBar/subcomponents/ContentComponent/style.js +4 -4
  156. package/components/SideBar/subcomponents/ContentGroups/index.js +3 -3
  157. package/components/SideBar/subcomponents/ContentGroups/styles.d.ts +2 -2
  158. package/components/SideBar/subcomponents/ContentGroups/styles.js +11 -2
  159. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ContainerMenuItemsMain/styles.d.ts +2 -2
  160. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ContainerMenuItemsMain/styles.js +1 -10
  161. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ContainerMenuItemsMain/subcomponents/ArrowIcon/index.js +0 -1
  162. package/components/SideBar/subcomponents/FooterSidebar/styles.d.ts +2 -2
  163. package/components/SideBar/subcomponents/HeaderSidebar/index.js +2 -2
  164. package/components/SideBar/subcomponents/HeaderSidebar/styles.d.ts +2 -2
  165. package/components/SideBar/subcomponents/SideBarDesktop/styles.d.ts +2 -2
  166. package/components/SideBar/subcomponents/SideBarDesktop/styles.js +2 -2
  167. package/components/SideBar/subcomponents/SideBarMobile/index.js +0 -1
  168. package/components/SideBar/subcomponents/SideBarMobile/styles.d.ts +2 -2
  169. package/components/SideBar/types.d.ts +9 -2
  170. package/components/ToastContainer/slots/toastContainerSlots.d.ts +2 -2
  171. package/components/WindowBase/WindowBase.js +8 -6
  172. package/components/WindowBase/WindowBase.styles.js +208 -107
  173. package/components/WindowBase/icons.js +2 -2
  174. package/components/WindowBase/slots/WindowBaseEnum.d.ts +3 -3
  175. package/components/WindowBase/slots/WindowBaseEnum.js +2 -2
  176. package/components/WindowBase/slots/WindowBaseSlots.d.ts +18 -23
  177. package/components/WindowBase/slots/WindowBaseSlots.js +13 -12
  178. package/components/WindowBase/subcomponents/Header/HeaderWindowBase.js +22 -12
  179. package/components/WindowBase/subcomponents/Header/types.d.ts +1 -1
  180. package/components/WindowBase/subcomponents/Header/useButtonActions.js +5 -2
  181. package/components/WindowBase/subcomponents/MemoizedIconButton/MemoizedIconButton.d.ts +1 -1
  182. package/components/WindowBase/subcomponents/MemoizedIconButton/MemoizedIconButton.js +1 -1
  183. package/components/WindowBase/subcomponents/MemoizedIconButton/types.d.ts +9 -0
  184. package/components/WindowBase/types.d.ts +10 -0
  185. package/components/WindowConfirm/WindowConfirm.js +2 -3
  186. package/components/WindowConfirm/WindowConfirm.styles.js +4 -4
  187. package/components/areas/components/AreasAdmin/AreasAdmin.js +12 -17
  188. package/components/areas/components/AreasAdmin/AreasAdmin.styles.js +13 -21
  189. package/components/areas/components/AreasAdmin/slots/AreasAdminSlots.d.ts +22 -22
  190. package/components/areas/components/AreasAdmin/subcomponents/AreaChip/AreaChip.js +1 -4
  191. package/components/areas/components/AreasAdmin/subcomponents/AreaChipMobile/subcomponents/ChipMobile/ChipMobile.js +3 -4
  192. package/components/areas/components/AreasAdmin/types.d.ts +1 -1
  193. package/components/areas/components/AreasViewer/AreasViewer.js +1 -1
  194. package/components/areas/components/AreasViewer/AreasViewer.styles.js +2 -2
  195. package/components/areas/components/AreasViewer/slots/AreasViewerSlots.d.ts +5 -5
  196. package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/BaseArea/BaseArea.js +1 -1
  197. package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/Window.js +8 -1
  198. package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/hooks/useRightActions.js +7 -3
  199. package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/WindowModal/WindowModal.js +0 -1
  200. package/components/areas/contexts/AreasContext/index.js +1 -1
  201. package/components/areas/contexts/AreasContext/store.js +1 -1
  202. package/components/areas/contexts/AreasContext/types.d.ts +1 -1
  203. package/components/areas/icons.d.ts +2 -2
  204. package/components/areas/icons.js +4 -4
  205. package/components/commercial/SectionCommercial/classes/index.d.ts +2 -2
  206. package/components/commercial/SectionCommercial/classes/index.js +3 -3
  207. package/components/commercial/SectionCommercial/types.d.ts +1 -1
  208. package/components/extended/React-Resizable/helpers.d.ts +2 -9
  209. package/components/extended/React-Resizable/helpers.js +15 -13
  210. package/components/extended/React-Spinners/PropagateLoaderSpinner/PropagateLoaderSpinner.js +0 -1
  211. package/components/extended/React-Spinners/PropagateLoaderSpinner/PropagateLoaderSpinner.styles.js +1 -1
  212. package/components/extended/React-Spinners/PropagateLoaderSpinner/slots/PropagateLoaderSpinnerSlots.d.ts +4 -4
  213. package/components/extended/React-Spinners/PropagateLoaderSpinner/types.d.ts +2 -2
  214. package/components/extended/React-Splitter-Layout/slots/SplitLayoutSlots.d.ts +3 -3
  215. package/components/extended/React-resizable-panels/SplitLayout.styles.js +6 -6
  216. package/components/extended/React-resizable-panels/slots/SplitLayoutSlots.d.ts +7 -7
  217. package/components/formatters/ChipStatusFormatter/slots/ChipStatusFormatterSlots.d.ts +2 -2
  218. package/components/formatters/PeriodFormatter/PeriodFormatter.styles.js +1 -1
  219. package/components/hook-form/RHFAutocomplete/RFHAutocompleteStyles.js +1 -1
  220. package/components/hook-form/RHFAutocompleteAsync/RHFAutocompleteAsync.d.ts +2 -1
  221. package/components/hook-form/RHFAutocompleteAsync/reducer/RHFAutocompleteReducer.js +2 -1
  222. package/components/hook-form/RHFDateTime/types.d.ts +1 -1
  223. package/components/hook-form/RHFPeriod/slots/RHFPeriodSlots.d.ts +2 -2
  224. package/components/hook-form/RHFSelect/RHFSelect.js +1 -1
  225. package/components/hook-form/RHFSelect/slots/RHFSlots.d.ts +1 -1
  226. package/components/hook-form/RHFSelect/slots/RHFSlots.js +1 -1
  227. package/components/hook-form/RHFTextField/slots/RHFTextFieldSlots.d.ts +1 -1
  228. package/components/hook-form/RHFTextFieldPassword/RHFTextFieldPassword.js +1 -1
  229. package/components/hook-form/RHFTextFieldPassword/RHFTextFieldPassword.styles.js +2 -2
  230. package/components/hook-form/RHFTextFieldPassword/slots/RHFTextFieldPasswordSlots.d.ts +8 -8
  231. package/components/hook-form/RHFTextFieldPassword/types.d.ts +2 -2
  232. package/components/hook-form/RHFTimePicker/types.d.ts +1 -1
  233. package/components/hook-form/RHFUpload/RHFUploadImage/RHFUploadImage.js +1 -1
  234. package/components/hook-form/RHFUpload/RHFUploadImage/RHFUploadImage.styles.js +3 -3
  235. package/components/hook-form/RHFUpload/RHFUploadImage/slots/RHFUploadImageSlots.d.ts +22 -22
  236. package/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/UploadImage.js +9 -10
  237. package/components/hook-form/RHFUpload/RHFUploadImage/types.d.ts +2 -2
  238. package/components/hook-form/RHFUpload/RHFUploadSingleFile/RHFUploadSingleFile.styles.js +2 -2
  239. package/components/hook-form/RHFUpload/RHFUploadSingleFile/slots/RHFUploadSingleFileSlots.d.ts +21 -21
  240. package/components/hook-form/RHFUpload/RHFUploadSingleFile/subcomponents/BlockContent/BlockContent.js +2 -7
  241. package/components/hook-form/RHFUpload/RHFUploadSingleFile/subcomponents/Preview/Preview.js +5 -6
  242. package/components/index.d.ts +2 -0
  243. package/components/mui_extended/Accordion/Accordion.js +31 -21
  244. package/components/mui_extended/Accordion/slots/AccordionSlots.d.ts +12 -12
  245. package/components/mui_extended/Accordion/styles.js +56 -33
  246. package/components/mui_extended/Accordion/types.d.ts +39 -6
  247. package/components/mui_extended/Autocomplete/Autocomplete.styles.js +3 -3
  248. package/components/mui_extended/Autocomplete/hooks/useEndAdornments.js +1 -1
  249. package/components/mui_extended/Autocomplete/renderOptions/index.d.ts +3 -1
  250. package/components/mui_extended/Autocomplete/renderOptions/index.js +3 -2
  251. package/components/mui_extended/Autocomplete/slots/AutocompleteSlots.d.ts +16 -16
  252. package/components/mui_extended/Avatar/Avatar.js +1 -1
  253. package/components/mui_extended/Avatar/styles.js +3 -3
  254. package/components/mui_extended/Badge/Badge.js +14 -8
  255. package/components/mui_extended/Badge/Badge.styles.js +23 -33
  256. package/components/mui_extended/Badge/slots/BadgeSlots.d.ts +2 -2
  257. package/components/mui_extended/Badge/slots/BadgeSlots.js +2 -2
  258. package/components/mui_extended/Badge/types.d.ts +4 -3
  259. package/components/mui_extended/Button/ButtonStyles.js +25 -25
  260. package/components/mui_extended/CheckBox/CheckBox.js +2 -2
  261. package/components/mui_extended/CheckBox/CheckBox.styles.js +12 -12
  262. package/components/mui_extended/CheckBox/slots/CheckBoxSlots.d.ts +12 -12
  263. package/components/mui_extended/CheckBox/types.d.ts +2 -2
  264. package/components/mui_extended/CircularProgress/CircularProgress.styles.js +5 -5
  265. package/components/mui_extended/DateTimePicker/DateTimePicker.styles.js +49 -49
  266. package/components/mui_extended/DateTimePicker/slots/DateTimePickerSlots.d.ts +10 -10
  267. package/components/mui_extended/Divider/Divider.js +1 -2
  268. package/components/mui_extended/Divider/Divider.styles.js +9 -9
  269. package/components/mui_extended/IconButton/IconButton.js +39 -12
  270. package/components/mui_extended/IconButton/IconButton.styles.js +64 -54
  271. package/components/mui_extended/IconButton/helpers/evalIconColor.d.ts +1 -1
  272. package/components/mui_extended/IconButton/helpers/getIconButtonColors.d.ts +1 -1
  273. package/components/mui_extended/IconButton/helpers/getIconButtonColors.js +4 -4
  274. package/components/mui_extended/IconButton/slots/IconButtonSlots.d.ts +5 -7
  275. package/components/mui_extended/IconButton/slots/IconButtonSlots.js +4 -3
  276. package/components/mui_extended/IconButton/types.d.ts +10 -8
  277. package/components/mui_extended/LoadingButton/LoadingButton.styles.js +5 -5
  278. package/components/mui_extended/MenuDivider/MenuDivider.js +1 -2
  279. package/components/mui_extended/MenuDivider/MenuDivider.styles.js +9 -9
  280. package/components/mui_extended/MenuItem/MenuItem.styles.js +10 -10
  281. package/components/mui_extended/MenuItem/slots/MenuItemSlots.d.ts +6 -6
  282. package/components/mui_extended/MenuItem/types.d.ts +8 -3
  283. package/components/mui_extended/NavLink/NavLink.js +1 -2
  284. package/components/mui_extended/NavLink/NavLink.styles.js +9 -9
  285. package/components/mui_extended/NavLink/slots/NavLinkSlots.d.ts +4 -4
  286. package/components/mui_extended/Popover/Popover.js +0 -1
  287. package/components/mui_extended/Popover/slots/PopoverSlots.d.ts +2 -2
  288. package/components/mui_extended/Popover/types.d.ts +3 -3
  289. package/components/mui_extended/Popper/PopperStyles.js +1 -1
  290. package/components/mui_extended/Popper/slots/PopperStlots.d.ts +1 -1
  291. package/components/mui_extended/Select/Select.js +2 -3
  292. package/components/mui_extended/Select/Select.styles.js +10 -10
  293. package/components/mui_extended/Select/slots/SelectSlots.d.ts +12 -12
  294. package/components/mui_extended/Select/slots/SelectSlots.js +1 -1
  295. package/components/mui_extended/Skeleton/skeleton.styles.js +4 -4
  296. package/components/mui_extended/Stack/Stack.js +4 -2
  297. package/components/mui_extended/Stack/Stack.styles.js +7 -4
  298. package/components/mui_extended/Stack/slots/StackSlot.d.ts +1 -1
  299. package/components/mui_extended/Tab/Tab.js +2 -0
  300. package/components/mui_extended/Tab/Tab.styles.js +26 -48
  301. package/components/mui_extended/Tab/types.d.ts +4 -0
  302. package/components/mui_extended/TabContent/TabContent.js +1 -1
  303. package/components/mui_extended/TabContent/TabContent.styles.js +2 -4
  304. package/components/mui_extended/TabContent/slots/TabContentSlots.d.ts +2 -2
  305. package/components/mui_extended/TabContent/types.d.ts +2 -2
  306. package/components/mui_extended/Tabs/Tabs.styles.js +2 -1
  307. package/components/mui_extended/TextField/TextField.styles.js +22 -22
  308. package/components/mui_extended/TextField/slots/TextFieldSlots.d.ts +3 -3
  309. package/components/mui_extended/TimePicker/slots/TimePickerSlots.d.ts +8 -8
  310. package/components/mui_extended/ToggleIconButton/ToggleIconButton.js +12 -5
  311. package/components/mui_extended/ToggleIconButton/ToggleIconButton.styles.js +21 -11
  312. package/components/mui_extended/ToggleIconButton/constants.d.ts +7 -0
  313. package/components/mui_extended/ToggleIconButton/constants.js +3 -1
  314. package/components/mui_extended/ToggleIconButton/slots/ToggleIconButtonSlots.d.ts +1 -1
  315. package/components/mui_extended/ToggleIconButton/types.d.ts +9 -3
  316. package/components/mui_extended/Tooltip/Tooltip.styles.js +1 -1
  317. package/components/mui_extended/Tooltip/slots/TooltipSlots.d.ts +3 -3
  318. package/components/mui_extended/Typography/typography.styles.js +7 -7
  319. package/components/mui_extended/index.d.ts +0 -2
  320. package/components/popups/components/PopupsViewer/PopupsViewer.styles.js +2 -2
  321. package/components/popups/components/PopupsViewer/slots/popupsViewerSlots.d.ts +7 -9
  322. package/components/popups/components/PopupsViewer/subcomponents/Popup/Popup.js +2 -0
  323. package/hooks/useComponentSize/useComponentSize.d.ts +3 -3
  324. package/hooks/useComponentSize/useComponentSize.js +5 -2
  325. package/hooks/useDynamicFilterAndSort/slots/DynamicFilterAndSortSlots.d.ts +6 -6
  326. package/hooks/useDynamicFilterAndSort/styles.js +7 -13
  327. package/hooks/useDynamicFilterAndSort/types.d.ts +2 -2
  328. package/hooks/useDynamicFilterAndSort/useDynamicFilterAndSort.js +17 -28
  329. package/index.js +43 -42
  330. package/package.json +3 -3
  331. package/storybook/components/Chip/Chip.stories.d.ts +4 -0
  332. package/storybook/components/DataGrid/DataGrid.stories.d.ts +16 -0
  333. package/storybook/components/Icon/Icon.stories.d.ts +4 -0
  334. package/storybook/components/WindowBase/windowBase.stories.d.ts +60 -7
  335. package/storybook/components/extended/mui/Accordion/Accordion.stories.d.ts +72 -20
  336. package/storybook/components/extended/mui/Badge/Badge.stories.d.ts +4 -0
  337. package/storybook/components/extended/mui/IconButton/IconButton.stories.d.ts +12 -0
  338. package/storybook/components/extended/mui/Tab/Tab.stories.d.ts +24 -24
  339. package/storybook/components/extended/mui/ToggleIconButton/ToggleIconButton.stories.d.ts +12 -0
  340. package/storybook/tootls/WrapperLineGuide/WrapperLineGuide.d.ts +9 -0
  341. package/storybook/tootls/WrapperLineGuide/styles.d.ts +1 -0
  342. package/storybook/tootls/WrapperLineGuide/types.d.ts +5 -0
  343. package/components/DataGrid/styles.js +0 -484
  344. package/components/DataGrid/subcomponents/Actions/index.d.ts +0 -5
  345. package/components/DataGrid/subcomponents/Actions/index.js +0 -48
  346. package/components/DataGrid/subcomponents/Actions/subcomponents/MobileMenuActions/index.d.ts +0 -4
  347. package/components/DataGrid/subcomponents/Actions/subcomponents/Settings/index.d.ts +0 -4
  348. package/components/DataGrid/subcomponents/Actions/subcomponents/hooks/useModalSettings/index.d.ts +0 -6
  349. package/components/DataGrid/subcomponents/Actions/subcomponents/types.d.ts +0 -2
  350. package/components/DataGrid/subcomponents/Actions/types.d.ts +0 -13
  351. package/components/ScrollBar/slots/ScrollBarEnum.d.ts +0 -4
  352. package/components/ScrollBar/slots/ScrollBarEnum.js +0 -8
  353. package/components/ScrollBar/slots/index.d.ts +0 -2
  354. package/storybook/components/extended/scrollBar/ScrollBar.stories.d.ts +0 -7
  355. package/storybook/components/extended/scrollBar/ScrollBarDecorator.d.ts +0 -11
  356. /package/components/DataGrid/{styles.d.ts → Datagrid.styles.d.ts} +0 -0
  357. /package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/Density/index.d.ts +0 -0
  358. /package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/Density/types.d.ts +0 -0
  359. /package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/Filter/index.d.ts +0 -0
  360. /package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/RowsCount/index.d.ts +0 -0
  361. /package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/Settings/subcomponents/ColumnsConfig/index.d.ts +0 -0
  362. /package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/hooks/useModalSettings/types.d.ts +0 -0
  363. /package/components/{ScrollBar/slots → Pager}/index.js +0 -0
@@ -1,51 +1,51 @@
1
1
  export declare const RootStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
2
- ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
2
+ ownerState?: (Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>) | undefined;
3
3
  }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
4
4
  export declare const InnerContainerStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
5
- ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
5
+ ownerState?: (Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>) | undefined;
6
6
  }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
7
7
  export declare const InputSortStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
8
- ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
8
+ ownerState?: (Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>) | undefined;
9
9
  }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
10
10
  export declare const InputSortInputStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
11
- ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
11
+ ownerState?: (Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>) | undefined;
12
12
  }, Pick<import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, keyof import('react').ClassAttributes<HTMLInputElement> | keyof import('react').InputHTMLAttributes<HTMLInputElement>>, {}>;
13
13
  export declare const AppliedSortsStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
14
- ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
14
+ ownerState?: (Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>) | undefined;
15
15
  }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
16
16
  export declare const AppliedSortInnerContainerStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
17
- ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
17
+ ownerState?: (Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>) | undefined;
18
18
  }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
19
19
  export declare const ActionsStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
20
- ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
20
+ ownerState?: (Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>) | undefined;
21
21
  }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
22
- export declare const ActionsClearButtonStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../mui_extended/IconButton/types').IconButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "selected" | "disabled" | "action" | "hidden" | "color" | "content" | "style" | "icon" | "tooltip" | "variant" | "translate" | "className" | "classes" | "src" | "sx" | "form" | "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" | "instaceDataTestId" | "rotationAngle" | "placement" | "tooltipContent" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "edge" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "badgeContent" | keyof import('react').RefAttributes<HTMLButtonElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
23
- ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
22
+ export declare const ActionsClearButtonStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../mui_extended/IconButton/types').IconButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "selected" | "disabled" | "action" | "hidden" | "color" | "content" | "style" | "icon" | "tooltip" | "variant" | "translate" | "className" | "classes" | "src" | "sx" | "form" | "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" | "instaceDataTestId" | "placement" | "rotationAngle" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "edge" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "badgeProps" | keyof import('react').RefAttributes<HTMLButtonElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
23
+ ownerState?: (Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>) | undefined;
24
24
  }, {}, {}>;
25
- export declare const ActionsSubmitButtonStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../mui_extended/IconButton/types').IconButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "selected" | "disabled" | "action" | "hidden" | "color" | "content" | "style" | "icon" | "tooltip" | "variant" | "translate" | "className" | "classes" | "src" | "sx" | "form" | "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" | "instaceDataTestId" | "rotationAngle" | "placement" | "tooltipContent" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "edge" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "badgeContent" | keyof import('react').RefAttributes<HTMLButtonElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
26
- ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
25
+ export declare const ActionsSubmitButtonStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../mui_extended/IconButton/types').IconButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "selected" | "disabled" | "action" | "hidden" | "color" | "content" | "style" | "icon" | "tooltip" | "variant" | "translate" | "className" | "classes" | "src" | "sx" | "form" | "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" | "instaceDataTestId" | "placement" | "rotationAngle" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "edge" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "badgeProps" | keyof import('react').RefAttributes<HTMLButtonElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
26
+ ownerState?: (Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>) | undefined;
27
27
  }, {}, {}>;
28
28
  export declare const PopoverMenuStyled: import('@emotion/styled').StyledComponent<Pick<import('../../mui_extended/Popover/types').PopoverProps, keyof import('../../mui_extended/Popover/types').PopoverProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
29
- ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
29
+ ownerState?: (Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>) | undefined;
30
30
  }, {}, {}>;
31
31
  export declare const PopoverStyled: import('@emotion/styled').StyledComponent<Pick<import('../../mui_extended/Popover/types').PopoverProps, keyof import('../../mui_extended/Popover/types').PopoverProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
32
- ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
32
+ ownerState?: (Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>) | undefined;
33
33
  }, {}, {}>;
34
34
  export declare const PopoverContainerFieldsStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
35
- ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
35
+ ownerState?: (Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>) | undefined;
36
36
  }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
37
37
  export declare const PopoverHeaderStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
38
- ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
38
+ ownerState?: (Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>) | undefined;
39
39
  }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
40
40
  export declare const ContentSortStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
41
- ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
41
+ ownerState?: (Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>) | undefined;
42
42
  }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
43
43
  export declare const PopoverHeaderTitleStyled: import('@emotion/styled').StyledComponent<Pick<import('../../mui_extended/Typography/types').TypographyProps, keyof import('../../mui_extended/Typography/types').TypographyProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
44
- ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
44
+ ownerState?: (Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>) | undefined;
45
45
  }, {}, {}>;
46
46
  export declare const PopoverHeaderActionsStyled: import('@emotion/styled').StyledComponent<Pick<import('../../CommonActions/components/ActionsContainer').ActionsContainerProps & import('react').RefAttributes<HTMLDivElement>, keyof import('react').RefAttributes<HTMLDivElement> | keyof import('../../CommonActions/components/ActionsContainer').ActionsContainerProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
47
- ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
47
+ ownerState?: (Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>) | undefined;
48
48
  }, {}, {}>;
49
49
  export declare const InputSortInputSkeletonStyled: import('@emotion/styled').StyledComponent<Pick<import('../../mui_extended/Skeleton/types').SkeletonProps, keyof import('../../mui_extended/Skeleton/types').SkeletonProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
50
- ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
50
+ ownerState?: (Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>) | undefined;
51
51
  }, {}, {}>;
@@ -31,7 +31,7 @@ const updateOwnerStateIsValid = (state) => {
31
31
  const updateAutomatic = (state) => {
32
32
  updateOwnerStateIsValid(state);
33
33
  updateAvailableFields(state);
34
- if (state.ownerState.isValid) {
34
+ if (state.ownerState?.isValid) {
35
35
  if (state.automatic) {
36
36
  state.ownerState.isDirty = false;
37
37
  state.countOnChangeSortsApplyed++;
@@ -160,7 +160,7 @@ const createDynamicSortStore = (initProps, storeDevtoolsEnabled = false) => {
160
160
  */
161
161
  fireOnChangeSorts: () => {
162
162
  set((state) => {
163
- if (state.ownerState.isValid) {
163
+ if (state.ownerState?.isValid) {
164
164
  state.ownerState.isDirty = false;
165
165
  state.countOnChangeSortsApplyed++;
166
166
  }
@@ -10,14 +10,14 @@ function AppliedSorts() {
10
10
  const { appliedSortsSorted, isSkeleton } = useAppliedSorts();
11
11
  const { dataTestId, ownerState } = useDynamicSortBase();
12
12
  if (isSkeleton) {
13
- return /* @__PURE__ */ jsx(AppliedSortsStyled, { ownerState: {} });
13
+ return /* @__PURE__ */ jsx(AppliedSortsStyled, {});
14
14
  }
15
15
  return /* @__PURE__ */ jsx(
16
16
  AppliedSortsStyled,
17
17
  {
18
18
  ...getPropDataTestId(DYNAMIC_SORT_KEY_COMPONENT, DynamicSortSlots.appliedSorts, dataTestId),
19
19
  ownerState: { ...ownerState },
20
- children: /* @__PURE__ */ jsx(AppliedSortInnerContainerStyled, { ownerState: {}, children: appliedSortsSorted?.reverse()?.map((sort) => /* @__PURE__ */ jsx(AppliedSortChip, { ...sort }, sort.id)) })
20
+ children: /* @__PURE__ */ jsx(AppliedSortInnerContainerStyled, { children: appliedSortsSorted?.reverse()?.map((sort) => /* @__PURE__ */ jsx(AppliedSortChip, { ...sort }, sort.id)) })
21
21
  }
22
22
  );
23
23
  }
@@ -25,7 +25,6 @@ function PopoverMenuFields(props) {
25
25
  open: !!isOpenPopoverMenuFields,
26
26
  onClose: handleClosePopover,
27
27
  anchorEl,
28
- ownerState: {},
29
28
  container: popoverContainerRef.current,
30
29
  children: [
31
30
  isOpenPopoverMenuFields && fields.map((field, index) => /* @__PURE__ */ jsx(
@@ -38,7 +38,6 @@ function PopoverSort() {
38
38
  anchorEl,
39
39
  onKeyDown: handleKeyDownPopper,
40
40
  onClose: handleClosePopover,
41
- ownerState: {},
42
41
  children: /* @__PURE__ */ jsxs(
43
42
  RHFormProvider,
44
43
  {
@@ -49,11 +48,11 @@ function PopoverSort() {
49
48
  children: [
50
49
  /* @__PURE__ */ jsxs(PopoverHeaderStyled, { ownerState: { ...ownerState }, children: [
51
50
  field.urlIcon && /* @__PURE__ */ jsx(Icon, { src: field.urlIcon, size }),
52
- /* @__PURE__ */ jsx(PopoverHeaderTitleStyled, { variant: "paragraphDens", size, ownerState: {}, children: labelField })
51
+ /* @__PURE__ */ jsx(PopoverHeaderTitleStyled, { variant: "paragraphDens", size, children: labelField })
53
52
  ] }),
54
- /* @__PURE__ */ jsxs(ContentSortStyled, { ownerState: {}, children: [
55
- /* @__PURE__ */ jsx(PopoverContainerFieldsStyled, { ownerState: {}, children: /* @__PURE__ */ jsx(DataTypeComponent, { formSort, statusLoad }) }),
56
- /* @__PURE__ */ jsxs(PopoverHeaderActionsStyled, { ownerState: {}, children: [
53
+ /* @__PURE__ */ jsxs(ContentSortStyled, { children: [
54
+ /* @__PURE__ */ jsx(PopoverContainerFieldsStyled, { children: /* @__PURE__ */ jsx(DataTypeComponent, { formSort, statusLoad }) }),
55
+ /* @__PURE__ */ jsxs(PopoverHeaderActionsStyled, { children: [
57
56
  /* @__PURE__ */ jsx(ActionCancel, { size, onClick: onClose }),
58
57
  /* @__PURE__ */ jsx(ActionIntro, { size })
59
58
  ] })
@@ -23,8 +23,7 @@ function SortActions() {
23
23
  size,
24
24
  icon: clearIconUrl,
25
25
  onClick: onClickClearSorts,
26
- tooltip: getLabel(getDynamicSortDictionary(DICCTIONARY.tooltip_clear_sort)),
27
- ownerState: {}
26
+ tooltip: getLabel(getDynamicSortDictionary(DICCTIONARY.tooltip_clear_sort))
28
27
  }
29
28
  ),
30
29
  visibleRefresh ? /* @__PURE__ */ jsx(
@@ -32,7 +31,7 @@ function SortActions() {
32
31
  {
33
32
  size,
34
33
  icon: sortIconUrl,
35
- "aria-label": "settings",
34
+ "aria-label": "refresh",
36
35
  tooltip: getLabel(sortButtonDictionaryTooltip),
37
36
  onClick: onClickSort,
38
37
  ownerState: { ...ownerState, isDirty }
@@ -6,8 +6,8 @@ function useSortActions() {
6
6
  const { host_static_assets, environment_assets } = useEnvironment();
7
7
  const automatic = useDynamicSortStore((state) => state.automatic);
8
8
  const isSkeleton = useModuleSkeleton();
9
- const isValid = useDynamicSortStore((state) => state.ownerState.isValid);
10
- const isDirty = useDynamicSortStore((state) => state.ownerState.isDirty);
9
+ const isValid = useDynamicSortStore((state) => state.ownerState?.isValid);
10
+ const isDirty = useDynamicSortStore((state) => state.ownerState?.isDirty);
11
11
  const appliedSorts = useDynamicSortStore((state) => state.appliedSorts);
12
12
  const { hidePopoverSort, clearSorts, fireOnChangeSorts } = useDynamicSortStore(
13
13
  (state) => state.actions
@@ -47,7 +47,7 @@ const GridLayoutRoot = styled("div")`
47
47
  -o-user-select: none;
48
48
  user-select: none;
49
49
  }
50
- .${gridLayoutClasses.gridItemRoot} > .react-resizable-handle {
50
+ /* .${gridLayoutClasses.gridItemRoot} > .react-resizable-handle {
51
51
  position: absolute;
52
52
  width: 7px;
53
53
  height: 7px;
@@ -60,87 +60,9 @@ const GridLayoutRoot = styled("div")`
60
60
  background-color: ${(props) => alpha(props.theme.colorSchemes.finalTheme.palette.text.primary, 0.3)};
61
61
  }
62
62
  }
63
- /* .${gridLayoutClasses.gridItemRoot} > .react-resizable-handle::after {
64
- content: '';
65
- position: absolute;
66
- right: 3px;
67
- bottom: 3px;
68
- width: 5px;
69
- height: 5px;
70
- border-right: 2px solid rgba(0, 0, 0, 0.4);
71
- border-bottom: 2px solid rgba(0, 0, 0, 0.4);
72
- } */
73
- .react-resizable-hide > .react-resizable-handle {
74
- display: none;
75
- border-color: ${(props) => `2px solid ${props.theme.vars.palette.text.disabled}`};
76
- }
77
- .${gridLayoutClasses.gridItemRoot} > .react-resizable-handle.react-resizable-handle-sw {
78
- bottom: 3px;
79
- left: 3px;
80
- cursor: sw-resize;
81
- transform: rotate(90deg);
82
- border-right: ${(props) => `2px solid ${props.theme.vars.palette.text.disabled}`};
83
- border-bottom: ${(props) => `2px solid ${props.theme.vars.palette.text.disabled}`};
84
- border-bottom-right-radius: 15%;
85
- }
86
- .${gridLayoutClasses.gridItemRoot} > .react-resizable-handle.react-resizable-handle-se {
87
- bottom: 3px;
88
- right: 3px;
89
- cursor: se-resize;
90
- border-right: ${(props) => `2px solid ${props.theme.vars.palette.text.disabled}`};
91
- border-bottom: ${(props) => `2px solid ${props.theme.vars.palette.text.disabled}`};
92
- border-bottom-right-radius: 15%;
93
- }
94
- .${gridLayoutClasses.gridItemRoot} > .react-resizable-handle.react-resizable-handle-nw {
95
- top: 3px;
96
- left: 3px;
97
- cursor: nw-resize;
98
- transform: rotate(180deg);
99
- border-right: ${(props) => `2px solid ${props.theme.vars.palette.text.disabled}`};
100
- border-bottom: ${(props) => `2px solid ${props.theme.vars.palette.text.disabled}`};
101
- border-bottom-right-radius: 15%;
102
- }
103
- .${gridLayoutClasses.gridItemRoot} > .react-resizable-handle.react-resizable-handle-ne {
104
- top: 3px;
105
- right: 3px;
106
- cursor: ne-resize;
107
- transform: rotate(270deg);
108
- border-right: ${(props) => `2px solid ${props.theme.vars.palette.text.disabled}`};
109
- border-bottom: ${(props) => `2px solid ${props.theme.vars.palette.text.disabled}`};
110
- border-bottom-right-radius: 15%;
111
- }
112
- .${gridLayoutClasses.gridItemRoot} > .react-resizable-handle.react-resizable-handle-w,
113
- .${gridLayoutClasses.gridItemRoot} > .react-resizable-handle.react-resizable-handle-e {
114
- top: 50%;
115
- margin-top: -10px;
116
- cursor: ew-resize;
117
- }
118
- .${gridLayoutClasses.gridItemRoot} > .react-resizable-handle.react-resizable-handle-w {
119
- left: 0;
120
- transform: rotate(135deg);
121
- }
122
- .${gridLayoutClasses.gridItemRoot} > .react-resizable-handle.react-resizable-handle-e {
123
- right: 0;
124
- transform: rotate(315deg);
125
- }
126
- .${gridLayoutClasses.gridItemRoot} > .react-resizable-handle.react-resizable-handle-n,
127
- .${gridLayoutClasses.gridItemRoot} > .react-resizable-handle.react-resizable-handle-s {
128
- left: 50%;
129
- margin-left: -10px;
130
- cursor: ns-resize;
131
- }
132
- .${gridLayoutClasses.gridItemRoot} > .react-resizable-handle.react-resizable-handle-n {
133
- top: 0;
134
- transform: rotate(225deg);
135
- }
136
- .${gridLayoutClasses.gridItemRoot} > .react-resizable-handle.react-resizable-handle-s {
137
- bottom: 0;
138
- transform: rotate(45deg);
139
- }
140
- .${gridLayoutClasses.gridItemRoot}.${gridLayoutClasses.maximizeMe} > .react-resizable-handle,
141
- .${gridLayoutClasses.gridItemRoot}.${gridLayoutClasses.resizeHide} > .react-resizable-handle {
142
- display: none;
143
- }
63
+ .${gridLayoutClasses.gridItemRoot} > .react-resizable-handle {
64
+ display: none!important,
65
+ },
144
66
  .${gridLayoutClasses.gridItemRoot}.${gridLayoutClasses.invisible} {
145
67
  display: none;
146
68
  }
@@ -9,12 +9,12 @@ const helperErrorStyles = {
9
9
  color: theme.vars.palette.error.enabled,
10
10
  ...getTypographyStyles(
11
11
  theme.generalSettings.isMobile,
12
- ownerState.size || "medium",
12
+ ownerState?.size || "medium",
13
13
  "body"
14
14
  ),
15
15
  ...getTypographyStyles(
16
16
  theme.generalSettings.isMobile,
17
- ownerState.size || "small",
17
+ ownerState?.size || "small",
18
18
  "body"
19
19
  )
20
20
  }
@@ -27,12 +27,12 @@ const helperErrorStyles = {
27
27
  width: theme.vars.size.baseSpacings.sp14,
28
28
  ...getTypographyStyles(
29
29
  theme.generalSettings.isMobile,
30
- ownerState.size || "medium",
30
+ ownerState?.size || "medium",
31
31
  "body"
32
32
  ),
33
33
  ...getTypographyStyles(
34
34
  theme.generalSettings.isMobile,
35
- ownerState.size || "small",
35
+ ownerState?.size || "small",
36
36
  "body"
37
37
  ),
38
38
  variants: []
@@ -77,7 +77,7 @@ const Icon = (props) => {
77
77
  isSkeleton && /* @__PURE__ */ jsx(
78
78
  IconSkeletonStyled,
79
79
  {
80
- className: classKey.iconSkeleton,
80
+ className: clsx(classKey.iconSkeleton, classKey.root),
81
81
  role: "icon-skeleton",
82
82
  size: adjustedSize,
83
83
  variant: "rectangular",
@@ -9,12 +9,12 @@ const iconStyles = {
9
9
  * suave de transformación.
10
10
  */
11
11
  root: ({ theme, ownerState }) => ({
12
- display: ownerState.isSkeleton ? "none" : "flex",
12
+ display: ownerState?.isSkeleton ? "none" : "flex",
13
13
  justifyContent: "center",
14
14
  alignItems: "center",
15
15
  width: "fit-content",
16
16
  transition: "transform 0.5s ease-in-out",
17
- ...ownerState.size === "medium" && {
17
+ ...ownerState?.size === "medium" && {
18
18
  ...theme.generalSettings.isMobile ? {
19
19
  width: theme.vars.size.mobile.medium.base,
20
20
  height: theme.vars.size.mobile.medium.base
@@ -23,7 +23,7 @@ const iconStyles = {
23
23
  height: theme.vars.size.desktop.medium.base
24
24
  }
25
25
  },
26
- ...ownerState.size === "small" && {
26
+ ...ownerState?.size === "small" && {
27
27
  ...theme.generalSettings.isMobile ? {
28
28
  width: theme.vars.size.mobile.small.base,
29
29
  height: theme.vars.size.mobile.small.base
@@ -41,17 +41,17 @@ const iconStyles = {
41
41
  * se ajusta de acuerdo con el estado de deshabilitación o no del ícono.
42
42
  */
43
43
  icon: ({ theme, ownerState }) => {
44
- const backgroundColor = ownerState.disabled ? theme.vars.palette.text.disabled : ownerState.selected && ownerState.enabledSelected ? `${theme.vars.palette.primary.enabled}` : getPropertyByString(theme.vars.palette, String(ownerState.color), "text.primary");
44
+ const backgroundColor = ownerState?.disabled ? theme.vars.palette.text.disabled : ownerState?.selected && ownerState?.enabledSelected ? `${theme.vars.palette.primary.enabled}` : getPropertyByString(theme.vars.palette, String(ownerState?.color), "text.primary");
45
45
  return {
46
46
  maskPosition: "center",
47
47
  maskRepeat: "no-repeat",
48
48
  maskSize: "cover",
49
49
  WebkitMaskRepeat: "no-repeat",
50
- mask: `url(${ownerState.src})`,
51
- WebkitMask: `url(${ownerState.src})`,
50
+ mask: `url(${ownerState?.src})`,
51
+ WebkitMask: `url(${ownerState?.src})`,
52
52
  WebkitMaskSize: "cover",
53
- ...ownerState.rotationAngle && {
54
- transform: `rotate(${ownerState.rotationAngle}deg)`
53
+ ...ownerState?.rotationAngle && {
54
+ transform: `rotate(${ownerState?.rotationAngle}deg)`
55
55
  },
56
56
  backgroundColor,
57
57
  width: "inherit",
@@ -68,7 +68,7 @@ const iconStyles = {
68
68
  iconSkeleton: ({ theme, ownerState }) => ({
69
69
  "&.M4lclassCssSpecificity": {
70
70
  borderRadius: theme.size.borderRadius.r1,
71
- ...ownerState.size === "medium" && {
71
+ ...ownerState?.size === "medium" && {
72
72
  ...theme.generalSettings.isMobile ? {
73
73
  width: theme.vars.size.mobile.medium.base,
74
74
  height: theme.vars.size.mobile.medium.base
@@ -77,7 +77,7 @@ const iconStyles = {
77
77
  height: theme.vars.size.desktop.medium.base
78
78
  }
79
79
  },
80
- ...ownerState.size === "small" && {
80
+ ...ownerState?.size === "small" && {
81
81
  ...theme.generalSettings.isMobile ? {
82
82
  width: theme.vars.size.mobile.small.base,
83
83
  height: theme.vars.size.mobile.small.base
@@ -25,7 +25,7 @@ function Image(props) {
25
25
  {
26
26
  enableIntersectionObserver,
27
27
  threshold,
28
- children: /* @__PURE__ */ jsx(Fragment, { children: ownerState.isSkeleton ? /* @__PURE__ */ jsx(DivContainerSkeletonStyled, { ownerState: {}, className: "M4lclassCssSpecificity", "data-testid": "skeleton-component", children: /* @__PURE__ */ jsx(ImgSkeleton, { ownerState: {}, className: "M4lclassCssSpecificityIMG", src: svgDataUriSkeleton, alt: "Skeleton Image" }) }) : /* @__PURE__ */ jsx(
28
+ children: /* @__PURE__ */ jsx(Fragment, { children: ownerState?.isSkeleton ? /* @__PURE__ */ jsx(DivContainerSkeletonStyled, { className: "M4lclassCssSpecificity", "data-testid": "skeleton-component", children: /* @__PURE__ */ jsx(ImgSkeleton, { className: "M4lclassCssSpecificityIMG", src: svgDataUriSkeleton, alt: "Skeleton Image" }) }) : /* @__PURE__ */ jsx(
29
29
  ImgStyled,
30
30
  {
31
31
  ownerState: { ...ownerState },
@@ -41,7 +41,7 @@ const imageStyles = {
41
41
  imgSkeleton: ({ theme }) => ({
42
42
  display: "flex",
43
43
  visibility: "visible",
44
- color: theme.vars.palette.skeleton.transition,
44
+ color: theme.vars.palette.skeleton.default,
45
45
  position: "absolute",
46
46
  width: "60%",
47
47
  height: "60%",
@@ -1,18 +1,18 @@
1
- export declare const ImgStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('..').ImageOwnerState> & Record<string, unknown> & {
2
- ownerState: Partial<import('..').ImageOwnerState> & Record<string, unknown>;
1
+ export declare const ImgStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
2
+ ownerState?: (Partial<import('..').ImageOwnerState> & Record<string, unknown>) | undefined;
3
3
  }, Pick<import('react').DetailedHTMLProps<import('react').ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, keyof import('react').ClassAttributes<HTMLImageElement> | keyof import('react').ImgHTMLAttributes<HTMLImageElement>>, {}>;
4
- export declare const ImgSkeleton: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('..').ImageOwnerState> & Record<string, unknown> & {
5
- ownerState: Partial<import('..').ImageOwnerState> & Record<string, unknown>;
4
+ export declare const ImgSkeleton: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
5
+ ownerState?: (Partial<import('..').ImageOwnerState> & Record<string, unknown>) | undefined;
6
6
  }, Pick<import('react').DetailedHTMLProps<import('react').ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, keyof import('react').ClassAttributes<HTMLImageElement> | keyof import('react').ImgHTMLAttributes<HTMLImageElement>>, {}>;
7
- export declare const IntersectComponentStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('..').ImageOwnerState> & Record<string, unknown> & {
8
- ownerState: Partial<import('..').ImageOwnerState> & Record<string, unknown>;
7
+ export declare const IntersectComponentStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
8
+ ownerState?: (Partial<import('..').ImageOwnerState> & Record<string, unknown>) | undefined;
9
9
  }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, keyof import('react').ClassAttributes<HTMLSpanElement> | keyof import('react').HTMLAttributes<HTMLSpanElement>>, {}>;
10
- export declare const ScrollIntersectRootStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('..').ImageOwnerState> & Record<string, unknown> & {
11
- ownerState: Partial<import('..').ImageOwnerState> & Record<string, unknown>;
10
+ export declare const ScrollIntersectRootStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
11
+ ownerState?: (Partial<import('..').ImageOwnerState> & Record<string, unknown>) | undefined;
12
12
  }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, keyof import('react').ClassAttributes<HTMLSpanElement> | keyof import('react').HTMLAttributes<HTMLSpanElement>>, {}>;
13
- export declare const SkeletonComponentStyled: import('@emotion/styled').StyledComponent<Pick<import('../../mui_extended/Skeleton/types').SkeletonProps, keyof import('../../mui_extended/Skeleton/types').SkeletonProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('..').ImageOwnerState> & Record<string, unknown> & {
14
- ownerState: Partial<import('..').ImageOwnerState> & Record<string, unknown>;
13
+ export declare const SkeletonComponentStyled: import('@emotion/styled').StyledComponent<Pick<import('../../mui_extended/Skeleton/types').SkeletonProps, keyof import('../../mui_extended/Skeleton/types').SkeletonProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
14
+ ownerState?: (Partial<import('..').ImageOwnerState> & Record<string, unknown>) | undefined;
15
15
  }, {}, {}>;
16
- export declare const DivContainerSkeletonStyled: import('@emotion/styled').StyledComponent<Pick<import('../../mui_extended/Skeleton/types').SkeletonProps, keyof import('../../mui_extended/Skeleton/types').SkeletonProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('..').ImageOwnerState> & Record<string, unknown> & {
17
- ownerState: Partial<import('..').ImageOwnerState> & Record<string, unknown>;
16
+ export declare const DivContainerSkeletonStyled: import('@emotion/styled').StyledComponent<Pick<import('../../mui_extended/Skeleton/types').SkeletonProps, keyof import('../../mui_extended/Skeleton/types').SkeletonProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
17
+ ownerState?: (Partial<import('..').ImageOwnerState> & Record<string, unknown>) | undefined;
18
18
  }, {}, {}>;
@@ -41,7 +41,6 @@ const IntersectComponent = forwardRef(
41
41
  IntersectComponentStyled,
42
42
  {
43
43
  ref: intersectComponentRef,
44
- ownerState: {},
45
44
  ...getPropDataTestId(IMAGE_KEY_COMPONENT, ImageSlots.intersectComponent, dataTestId)
46
45
  }
47
46
  )
@@ -1,8 +1,8 @@
1
- import { OverridesStyleRules } from '@mui/material/styles/overrides';
2
1
  import { ImgHTMLAttributes, ReactNode } from 'react';
3
2
  import { IMAGE_KEY_COMPONENT } from './constant';
4
3
  import { ImageSlots } from './slots/ImageEnum';
5
4
  import { Theme } from '@mui/material';
5
+ import { M4LOverridesStyleRules } from '../../@types/augmentations';
6
6
  export type Effect = 'blur' | 'black-and-white' | 'opacity';
7
7
  export type ScrollPosition = {
8
8
  x: number;
@@ -36,4 +36,4 @@ export type ImageSlotsType = keyof typeof ImageSlots;
36
36
  export interface ImageOwnerState {
37
37
  isSkeleton?: boolean;
38
38
  }
39
- export type ImageStyles = OverridesStyleRules<ImageSlots, typeof IMAGE_KEY_COMPONENT, Theme>;
39
+ export type ImageStyles = M4LOverridesStyleRules<ImageSlots, typeof IMAGE_KEY_COMPONENT, Theme>;