@m4l/components 9.1.9 → 9.1.10

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 (455) hide show
  1. package/@types/types.d.ts +274 -136
  2. package/components/AccountPopover/classes/index.d.ts +1 -1
  3. package/components/AccountPopover/subcomponents/PopOver/index.d.ts +1 -0
  4. package/components/AccountPopover/subcomponents/PopOver/index.js +2 -2
  5. package/components/AppBar/AppBar.d.ts +15 -20
  6. package/components/AppBar/AppBar.js +29 -31
  7. package/components/AppBar/constants.d.ts +2 -0
  8. package/components/AppBar/constants.js +6 -0
  9. package/components/AppBar/slots/AppBarEnum.d.ts +8 -0
  10. package/components/AppBar/slots/AppBarEnum.js +12 -0
  11. package/components/AppBar/slots/AppBarSlots.d.ts +18 -0
  12. package/components/AppBar/slots/AppBarSlots.js +39 -0
  13. package/components/AppBar/styles.d.ts +2 -1
  14. package/components/AppBar/styles.js +97 -5
  15. package/components/AppBar/tests/utils.d.ts +1 -2
  16. package/components/AppBar/tests/utils.js +2 -3
  17. package/components/AppBar/types.d.ts +20 -12
  18. package/components/CommonActions/classes/index.d.ts +1 -1
  19. package/components/CommonActions/components/ActionCancel/slots/ActionsCancelSlots.d.ts +1 -1
  20. package/components/CommonActions/components/ActionCancel/types.d.ts +2 -2
  21. package/components/CommonActions/components/ActionFormCancel/index.js +1 -1
  22. package/components/CommonActions/components/ActionIntro/slots/ActionsIntroSlots.d.ts +1 -1
  23. package/components/CommonActions/components/ActionIntro/types.d.ts +2 -2
  24. package/components/CommonActions/components/ActionsContainer/ActionsContainerStyles.js +1 -0
  25. package/components/CommonActions/components/ActionsContainer/slots/ActionsContainerSlots.d.ts +1 -1
  26. package/components/ControlIncrement/slots/ControltrolIncrementSlots.d.ts +2 -2
  27. package/components/DataGrid/dictionary.d.ts +4 -0
  28. package/components/DataGrid/dictionary.js +1 -1
  29. package/components/DataGrid/subcomponents/Actions/subcomponents/hooks/useModalSettings/index.d.ts +2 -2
  30. package/components/DataGrid/subcomponents/Actions/subcomponents/hooks/useModalSettings/index.js +3 -3
  31. package/components/DragResizeWindow/hooks/useDimensionEffects.d.ts +1 -1
  32. package/components/DragResizeWindow/hooks/useDimensionEffects.js +7 -2
  33. package/components/DragResizeWindow/hooks/useDragOptions.d.ts +2 -2
  34. package/components/DragResizeWindow/hooks/useDragOptions.js +14 -8
  35. package/components/DragResizeWindow/hooks/useResizeOptions.d.ts +1 -1
  36. package/components/DragResizeWindow/hooks/useResizeOptions.js +37 -26
  37. package/components/DragResizeWindow/slots/DragResizeWindowSlots.d.ts +2 -2
  38. package/components/DynamicFilter/slots/dynamicFilterSlots.d.ts +12 -12
  39. package/components/DynamicSort/slots/DynamicSortSlots.d.ts +12 -12
  40. package/components/GridLayout/classes/index.d.ts +1 -1
  41. package/components/Icon/Icon.d.ts +2 -2
  42. package/components/Icon/Icon.js +12 -4
  43. package/components/Icon/slots/IconSlots.d.ts +2 -2
  44. package/components/InputNumberSpinner/slots/InputNumberSpinnerSlots.d.ts +1 -1
  45. package/components/Label/slots/LabelSlots.d.ts +1 -1
  46. package/components/LanguagePopover/LanguagePopover.d.ts +1 -0
  47. package/components/LanguagePopover/LanguagePopover.js +2 -2
  48. package/components/ModalDialog/ModalDialog.d.ts +57 -0
  49. package/components/ModalDialog/ModalDialog.js +94 -0
  50. package/components/ModalDialog/ModalDialog.styles.d.ts +2 -0
  51. package/components/ModalDialog/ModalDialog.styles.js +44 -0
  52. package/components/ModalDialog/constants.d.ts +1 -0
  53. package/components/ModalDialog/constants.js +4 -0
  54. package/components/{modal/ModalDialog → ModalDialog}/dictionary.js +1 -1
  55. package/components/ModalDialog/index.d.ts +8 -0
  56. package/components/ModalDialog/index.js +1 -0
  57. package/components/ModalDialog/slots/ModalDialogEnum.d.ts +7 -0
  58. package/components/ModalDialog/slots/ModalDialogEnum.js +11 -0
  59. package/components/ModalDialog/slots/ModalDialogSlots.d.ts +9 -0
  60. package/components/ModalDialog/slots/ModalDialogSlots.js +34 -0
  61. package/components/ModalDialog/slots/index.d.ts +2 -0
  62. package/components/ModalDialog/slots/index.js +1 -0
  63. package/components/ModalDialog/subcomponents/ResizeHandle/index.js +4 -0
  64. package/components/ModalDialog/types.d.ts +16 -0
  65. package/components/ModalDialog/types.js +1 -0
  66. package/components/NavLink/NavLink.d.ts +2 -2
  67. package/components/NavLink/NavLink.js +4 -4
  68. package/components/ObjectLogs/components/DetailFormatter/index.js +1 -1
  69. package/components/PaperForm/PaperForm.d.ts +9 -1
  70. package/components/PaperForm/PaperForm.js +10 -10
  71. package/components/PaperForm/components/Header.d.ts +8 -1
  72. package/components/PaperForm/components/Header.js +20 -12
  73. package/components/PaperForm/constants.d.ts +1 -0
  74. package/components/PaperForm/constants.js +4 -0
  75. package/components/PaperForm/slots/PaperFormEnum.d.ts +7 -0
  76. package/components/PaperForm/slots/PaperFormEnum.js +11 -0
  77. package/components/PaperForm/slots/PaperFormSlots.d.ts +15 -0
  78. package/components/PaperForm/slots/PaperFormSlots.js +33 -0
  79. package/components/PaperForm/styles.d.ts +2 -6
  80. package/components/PaperForm/styles.js +97 -49
  81. package/components/PaperForm/types.d.ts +28 -4
  82. package/components/SideBar/SideBar.d.ts +25 -23
  83. package/components/SideBar/SideBar.js +36 -64
  84. package/components/SideBar/constants.d.ts +6 -2
  85. package/components/SideBar/constants.js +10 -4
  86. package/components/SideBar/context/sideBarContext/index.d.ts +5 -0
  87. package/components/SideBar/context/sideBarContext/index.js +18 -30
  88. package/components/SideBar/context/sideBarContext/types.d.ts +9 -5
  89. package/components/SideBar/dictionary.d.ts +1 -0
  90. package/components/SideBar/helpers/getDataToSkeleton/index.d.ts +15 -0
  91. package/components/SideBar/helpers/getDataToSkeleton/index.js +14 -0
  92. package/components/SideBar/helpers/getMenuDataWithState/index.d.ts +13 -0
  93. package/components/SideBar/helpers/getMenuDataWithState/index.js +27 -0
  94. package/components/SideBar/helpers/getMenuDataWithState/types.d.ts +6 -0
  95. package/components/SideBar/slots/SideBarEnum.d.ts +29 -0
  96. package/components/SideBar/slots/SideBarEnum.js +45 -0
  97. package/components/SideBar/slots/SideBarSlots.d.ts +45 -0
  98. package/components/SideBar/slots/SideBarSlots.js +80 -0
  99. package/components/SideBar/styles.d.ts +2 -15
  100. package/components/SideBar/styles.js +17 -19
  101. package/components/SideBar/subcomponents/ContentComponent/index.d.ts +10 -0
  102. package/components/SideBar/subcomponents/ContentComponent/index.js +27 -0
  103. package/components/SideBar/subcomponents/ContentComponent/style.d.ts +2 -0
  104. package/components/SideBar/subcomponents/ContentComponent/style.js +18 -0
  105. package/components/SideBar/subcomponents/ContentGroups/index.d.ts +4 -0
  106. package/components/SideBar/subcomponents/ContentGroups/index.js +33 -41
  107. package/components/SideBar/subcomponents/ContentGroups/styles.d.ts +2 -3
  108. package/components/SideBar/subcomponents/ContentGroups/styles.js +70 -26
  109. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ContainerMenuItemsMain/index.d.ts +12 -0
  110. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ContainerMenuItemsMain/index.js +60 -0
  111. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ContainerMenuItemsMain/styles.d.ts +2 -0
  112. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ContainerMenuItemsMain/styles.js +44 -0
  113. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ContainerMenuItemsMain/subcomponents/ArrowIcon/index.d.ts +9 -0
  114. package/components/SideBar/subcomponents/ContentGroups/subcomponents/{ItemListRoot → ContainerMenuItemsMain}/subcomponents/ArrowIcon/index.js +8 -8
  115. package/components/SideBar/subcomponents/ContentGroups/subcomponents/{ItemListRoot → ContainerMenuItemsMain}/subcomponents/ArrowIcon/types.d.ts +1 -0
  116. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ContainerMenuItemsMain/types.d.ts +5 -0
  117. package/components/SideBar/subcomponents/FooterSidebar/index.d.ts +13 -0
  118. package/components/SideBar/subcomponents/FooterSidebar/index.js +33 -0
  119. package/components/SideBar/subcomponents/FooterSidebar/styles.d.ts +2 -0
  120. package/components/SideBar/subcomponents/FooterSidebar/styles.js +20 -0
  121. package/components/SideBar/subcomponents/FooterSidebar/types.d.ts +5 -0
  122. package/components/SideBar/subcomponents/HeaderSidebar/index.d.ts +10 -0
  123. package/components/SideBar/subcomponents/HeaderSidebar/index.js +25 -0
  124. package/components/SideBar/subcomponents/HeaderSidebar/styles.d.ts +2 -0
  125. package/components/SideBar/subcomponents/HeaderSidebar/styles.js +32 -0
  126. package/components/SideBar/subcomponents/HeaderSidebar/types.d.ts +5 -0
  127. package/components/SideBar/subcomponents/SideBarDesktop/index.d.ts +8 -0
  128. package/components/SideBar/subcomponents/SideBarDesktop/index.js +80 -0
  129. package/components/SideBar/subcomponents/SideBarDesktop/styles.d.ts +2 -0
  130. package/components/SideBar/subcomponents/SideBarDesktop/styles.js +73 -0
  131. package/components/SideBar/subcomponents/SideBarMobile/index.d.ts +8 -0
  132. package/components/SideBar/subcomponents/SideBarMobile/index.js +36 -0
  133. package/components/SideBar/subcomponents/SideBarMobile/styles.d.ts +2 -0
  134. package/components/SideBar/subcomponents/SideBarMobile/styles.js +15 -0
  135. package/components/SideBar/subcomponents/SideBarMobile/subcomponents/Drawer.d.ts +9 -0
  136. package/components/SideBar/tests/SideBar.integration.test.d.ts +0 -0
  137. package/components/SideBar/tests/SideBar.test.d.ts +0 -0
  138. package/components/SideBar/tests/utils.d.ts +34 -2
  139. package/components/SideBar/types.d.ts +34 -37
  140. package/components/ToastContainer/slots/toastContainerSlots.d.ts +4 -4
  141. package/components/WindowBase/WindowBase.d.ts +11 -0
  142. package/components/WindowBase/WindowBase.js +63 -0
  143. package/components/WindowBase/WindowBase.styles.d.ts +9 -0
  144. package/components/WindowBase/WindowBase.styles.js +204 -0
  145. package/components/WindowBase/constants.d.ts +1 -0
  146. package/components/WindowBase/constants.js +4 -0
  147. package/components/WindowBase/icons.d.ts +6 -0
  148. package/components/WindowBase/icons.js +9 -0
  149. package/components/WindowBase/index.d.ts +9 -0
  150. package/components/WindowBase/index.js +1 -0
  151. package/components/WindowBase/slots/WindowBaseEnum.d.ts +16 -0
  152. package/components/WindowBase/slots/WindowBaseEnum.js +20 -0
  153. package/components/WindowBase/slots/WindowBaseSlots.d.ts +95 -0
  154. package/components/WindowBase/slots/WindowBaseSlots.js +81 -0
  155. package/components/WindowBase/slots/index.d.ts +2 -0
  156. package/components/WindowBase/slots/index.js +1 -0
  157. package/components/WindowBase/subcomponents/Header/HeaderWindowBase.d.ts +46 -0
  158. package/components/WindowBase/subcomponents/Header/HeaderWindowBase.js +78 -0
  159. package/components/WindowBase/subcomponents/Header/index.d.ts +2 -0
  160. package/components/WindowBase/subcomponents/Header/index.js +1 -0
  161. package/components/WindowBase/subcomponents/Header/types.d.ts +90 -0
  162. package/components/WindowBase/subcomponents/Header/types.js +1 -0
  163. package/components/WindowBase/types.d.ts +136 -0
  164. package/components/WindowBase/types.js +1 -0
  165. package/components/WindowConfirm/WindowConfirm.d.ts +28 -0
  166. package/components/WindowConfirm/WindowConfirm.js +117 -0
  167. package/components/WindowConfirm/WindowConfirm.styles.d.ts +2 -0
  168. package/components/WindowConfirm/WindowConfirm.styles.js +202 -0
  169. package/components/WindowConfirm/constants.d.ts +1 -0
  170. package/components/WindowConfirm/constants.js +4 -0
  171. package/components/WindowConfirm/index.d.ts +9 -0
  172. package/components/WindowConfirm/slots/WindowConfirmEnum.d.ts +15 -0
  173. package/components/WindowConfirm/slots/WindowConfirmEnum.js +19 -0
  174. package/components/WindowConfirm/slots/WindowConfirmSlots.d.ts +39 -0
  175. package/components/WindowConfirm/slots/WindowConfirmSlots.js +77 -0
  176. package/components/WindowConfirm/slots/index.d.ts +2 -0
  177. package/components/WindowConfirm/slots/index.js +1 -0
  178. package/components/WindowConfirm/subcomponents/MessageIllustration/MessageIllustration.d.ts +10 -0
  179. package/components/WindowConfirm/subcomponents/MessageIllustration/MessageIllustration.js +47 -0
  180. package/components/WindowConfirm/subcomponents/MessageIllustration/index.d.ts +2 -0
  181. package/components/WindowConfirm/subcomponents/MessageIllustration/index.js +1 -0
  182. package/components/WindowConfirm/subcomponents/MessageIllustration/types.d.ts +2 -0
  183. package/components/WindowConfirm/subcomponents/MessageIllustration/types.js +1 -0
  184. package/components/WindowConfirm/types.d.ts +46 -0
  185. package/components/areas/components/AreasViewer/classes/index.d.ts +1 -1
  186. package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Header/subcomponents/MainActions/index.d.ts +4 -0
  187. package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Header/subcomponents/MainActions/index.js +1 -1
  188. package/components/commercial/HamburgerMenu/HamburgerMenu.d.ts +6 -0
  189. package/components/commercial/HamburgerMenu/HamburgerMenu.js +3 -7
  190. package/components/gclick/MyDevice/slots/MyDeviceSlots.d.ts +2 -2
  191. package/components/gclick/MyDeviceStatus/slots/MyDeviceStatusSlots.d.ts +2 -2
  192. package/components/hook-form/RHFAutocomplete/RHFAutocomplete.d.ts +4 -0
  193. package/components/hook-form/RHFAutocomplete/subcomponents/ComponentTypeImage/index.js +5 -2
  194. package/components/hook-form/RHFAutocomplete/subcomponents/ComponentTypeText/index.js +6 -3
  195. package/components/hook-form/RHFCheckbox/styles.d.ts +1 -1
  196. package/components/hook-form/RHFInputNumberSpinner/slots/RHFInputNumberSpinnerSlots.d.ts +1 -1
  197. package/components/hook-form/RHFTextField/slots/RHFTextFieldSlots.d.ts +4 -4
  198. package/components/index.d.ts +1 -0
  199. package/components/maps/components/Map/popups/MapPopupMyGps/slots/ MapPopupMyGpsSlots.d.ts +3 -3
  200. package/components/maps/components/Map/slots/MapSlots.d.ts +3 -3
  201. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/MyActions/index.js +1 -1
  202. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useRowActionsGetter.d.ts +4 -0
  203. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useRowActionsGetter.js +2 -2
  204. package/components/modal/classes/index.d.ts +9 -5
  205. package/components/modal/classes/index.js +4 -4
  206. package/components/modal/classes/types.d.ts +1 -0
  207. package/components/modal/index.d.ts +5 -5
  208. package/components/mui_extended/Accordion/Accordion.d.ts +4 -4
  209. package/components/mui_extended/Accordion/Accordion.js +48 -71
  210. package/components/mui_extended/Accordion/constants.d.ts +2 -1
  211. package/components/mui_extended/Accordion/constants.js +4 -2
  212. package/components/mui_extended/Accordion/slots/AccordionEnum.d.ts +8 -0
  213. package/components/mui_extended/Accordion/slots/AccordionEnum.js +12 -0
  214. package/components/mui_extended/Accordion/slots/AccordionSlots.d.ts +23 -0
  215. package/components/mui_extended/Accordion/slots/AccordionSlots.js +39 -0
  216. package/components/mui_extended/Accordion/styles.d.ts +2 -3
  217. package/components/mui_extended/Accordion/styles.js +109 -23
  218. package/components/mui_extended/Accordion/tests/Accordion.test.d.ts +1 -0
  219. package/components/mui_extended/Accordion/types.d.ts +12 -7
  220. package/components/mui_extended/Autocomplete/Autocomplete.d.ts +2 -0
  221. package/components/mui_extended/Autocomplete/AutocompleteStyles.d.ts +2 -0
  222. package/components/mui_extended/Autocomplete/constants.d.ts +9 -0
  223. package/components/mui_extended/Autocomplete/dictionary.d.ts +3 -0
  224. package/components/mui_extended/Autocomplete/index.d.ts +1 -0
  225. package/components/mui_extended/Autocomplete/renderOptions/index.d.ts +16 -0
  226. package/components/mui_extended/Autocomplete/slots /AutocompleteEnum.d.ts +14 -0
  227. package/components/mui_extended/Autocomplete/slots /AutocompleteSlots.d.ts +38 -0
  228. package/components/mui_extended/Autocomplete/slots /index.d.ts +2 -0
  229. package/components/mui_extended/Autocomplete/types.d.ts +67 -0
  230. package/components/mui_extended/Badge/slots/BadgeSlots.d.ts +1 -1
  231. package/components/mui_extended/Button/ButtonStyles.js +1 -0
  232. package/components/mui_extended/Button/slots/ButtonSlots.d.ts +1 -1
  233. package/components/mui_extended/CheckBox/slots/CheckBoxSlots.d.ts +2 -2
  234. package/components/mui_extended/Chip/Chip.d.ts +13 -0
  235. package/components/mui_extended/Chip/ChipStyles.d.ts +2 -0
  236. package/components/mui_extended/Chip/constants.d.ts +8 -0
  237. package/components/mui_extended/Chip/index copy.d.ts +2 -0
  238. package/components/mui_extended/Chip/index.d.ts +0 -0
  239. package/components/mui_extended/Chip/slots/ChipEnum.d.ts +7 -0
  240. package/components/mui_extended/Chip/slots/ChipSlots.d.ts +16 -0
  241. package/components/mui_extended/Chip/slots/index.d.ts +3 -0
  242. package/components/mui_extended/Chip/types.d.ts +49 -0
  243. package/components/mui_extended/CircularProgress/CircularProgress.d.ts +5 -0
  244. package/components/mui_extended/CircularProgress/CircularProgress.js +30 -0
  245. package/components/mui_extended/CircularProgress/CircularProgress.styles.d.ts +5 -0
  246. package/components/mui_extended/CircularProgress/CircularProgress.styles.js +57 -0
  247. package/components/mui_extended/CircularProgress/CircularProgress.test.d.ts +1 -0
  248. package/components/mui_extended/CircularProgress/constants.d.ts +13 -0
  249. package/components/mui_extended/CircularProgress/constants.js +6 -0
  250. package/components/mui_extended/CircularProgress/index.d.ts +1 -2
  251. package/components/mui_extended/CircularProgress/index.js +1 -8
  252. package/components/mui_extended/CircularProgress/slots/CircularProgressEnum.d.ts +4 -0
  253. package/components/mui_extended/CircularProgress/slots/CircularProgressEnum.js +8 -0
  254. package/components/mui_extended/CircularProgress/slots/CircularProgressSlots.d.ts +12 -0
  255. package/components/mui_extended/CircularProgress/slots/CircularProgressSlots.js +17 -0
  256. package/components/mui_extended/CircularProgress/types.d.ts +48 -0
  257. package/components/mui_extended/Dialog/Dialog.d.ts +54 -0
  258. package/components/mui_extended/Dialog/Dialog.js +38 -0
  259. package/components/mui_extended/Dialog/Dialog.styles.d.ts +2 -0
  260. package/components/mui_extended/Dialog/Dialog.styles.js +26 -0
  261. package/components/mui_extended/Dialog/constants.d.ts +1 -0
  262. package/components/mui_extended/Dialog/constants.js +4 -0
  263. package/components/mui_extended/Dialog/dictionary.d.ts +3 -0
  264. package/components/mui_extended/Dialog/dictionary.js +7 -0
  265. package/components/mui_extended/Dialog/index.d.ts +7 -0
  266. package/components/mui_extended/Dialog/index.js +1 -0
  267. package/components/mui_extended/Dialog/slots/DialogEnum.d.ts +5 -0
  268. package/components/mui_extended/Dialog/slots/DialogEnum.js +9 -0
  269. package/components/mui_extended/Dialog/slots/DialogSlots.d.ts +9 -0
  270. package/components/mui_extended/Dialog/slots/DialogSlots.js +20 -0
  271. package/components/mui_extended/Dialog/slots/index.d.ts +2 -0
  272. package/components/mui_extended/Dialog/slots/index.js +1 -0
  273. package/components/mui_extended/Dialog/tests/Dialog.test.d.ts +1 -0
  274. package/components/mui_extended/Dialog/types.d.ts +60 -0
  275. package/components/mui_extended/Dialog/types.js +1 -0
  276. package/components/mui_extended/IconButton/IconButton.js +79 -83
  277. package/components/mui_extended/IconButton/IconButton.styles.js +104 -189
  278. package/components/mui_extended/IconButton/slots/IconButtonEnum.d.ts +3 -1
  279. package/components/mui_extended/IconButton/slots/IconButtonEnum.js +2 -0
  280. package/components/mui_extended/IconButton/slots/IconButtonSlots.d.ts +8 -2
  281. package/components/mui_extended/IconButton/slots/IconButtonSlots.js +14 -3
  282. package/components/mui_extended/IconButton/types.d.ts +25 -3
  283. package/components/mui_extended/MenuActions/MenuActions.js +7 -4
  284. package/components/mui_extended/MenuActions/MenuActions.styles.js +11 -2
  285. package/components/mui_extended/MenuActions/slots/MenuActionsEnum.d.ts +1 -0
  286. package/components/mui_extended/MenuActions/slots/MenuActionsEnum.js +1 -0
  287. package/components/mui_extended/MenuActions/slots/MenuActionsSlots.d.ts +16 -5
  288. package/components/mui_extended/MenuActions/slots/MenuActionsSlots.js +8 -2
  289. package/components/mui_extended/MenuActions/types.d.ts +38 -1
  290. package/components/mui_extended/MenuItem/MenuItem.d.ts +2 -2
  291. package/components/mui_extended/MenuItem/MenuItem.js +25 -17
  292. package/components/mui_extended/MenuItem/MenuItem.styles.js +18 -29
  293. package/components/mui_extended/MenuItem/slots/MenuItemEnum.d.ts +3 -3
  294. package/components/mui_extended/MenuItem/slots/MenuItemEnum.js +3 -3
  295. package/components/mui_extended/MenuItem/slots/MenuItemSlots.d.ts +5 -5
  296. package/components/mui_extended/MenuItem/slots/MenuItemSlots.js +12 -12
  297. package/components/mui_extended/MenuItem/types.d.ts +3 -2
  298. package/components/mui_extended/Select/slots/SelectSlots.d.ts +1 -1
  299. package/components/mui_extended/Skeleton/Slots/skeletonSlots.d.ts +1 -1
  300. package/components/mui_extended/Tab/Slots/TabSlots.d.ts +1 -1
  301. package/components/mui_extended/Tabs/styles.d.ts +1 -1
  302. package/components/mui_extended/TextField/TextField.d.ts +2 -2
  303. package/components/mui_extended/TextField/slots/TextFieldSlots.d.ts +3 -3
  304. package/components/mui_extended/Tooltip/slots/TooltipSlots.d.ts +1 -1
  305. package/components/mui_extended/Typography/slots/typographySlots.d.ts +1 -1
  306. package/components/popups/components/PopupsViewer/slots/popupsViewerSlots.d.ts +6 -6
  307. package/contexts/ModalContext/index.d.ts +1 -1
  308. package/contexts/ModalContext/index.js +4 -8
  309. package/contexts/ModalContext/types.d.ts +1 -1
  310. package/hooks/useFormAddEdit/index.d.ts +4 -0
  311. package/hooks/useFormAddEdit/index.js +2 -2
  312. package/index.js +114 -89
  313. package/package.json +1 -1
  314. package/storybook/components/ModalDialog/ModalDialog.stories.d.ts +7 -0
  315. package/storybook/components/ModalDialog/subcomponent/WithExtendedContainer.d.ts +37 -0
  316. package/storybook/components/SideBar/SideBar.stories.d.ts +24 -0
  317. package/storybook/components/SideBar/data/menuData.d.ts +2 -0
  318. package/storybook/components/SideBar/subcomponents/SibarDecorator.d.ts +3 -0
  319. package/storybook/components/WindowBase/windowBase.stories.d.ts +9 -0
  320. package/storybook/components/WindowConfirm/windowConfirm.stories.d.ts +8 -0
  321. package/storybook/components/appBar/AppBar.stories.d.ts +11 -0
  322. package/storybook/components/extended/mui/Autocomplete/AutoComple.stories.d.ts +17 -0
  323. package/storybook/components/extended/mui/Chip/Chip.stories.d.ts +29 -0
  324. package/storybook/components/extended/mui/CircularProgress/CircularProgress.default.stories.d.ts +14 -0
  325. package/storybook/components/extended/mui/CircularProgress/CircularProgress.sizes.stories.d.ts +18 -0
  326. package/storybook/components/extended/mui/Dialog/Dialog.stories.d.ts +7 -0
  327. package/storybook/components/extended/mui/Dialog/subcomponents/ContentExample.d.ts +12 -0
  328. package/storybook/components/extended/mui/Dialog/subcomponents/WithExtendedContainer.d.ts +38 -0
  329. package/{components/mui_extended/IconButton/stories → storybook/components/extended/mui/IconButton}/DefaultIconButton/IconButton.containedDefault.stories.d.ts +1 -1
  330. package/{components/mui_extended/IconButton/stories → storybook/components/extended/mui/IconButton}/DefaultIconButton/IconButton.textDefault.stories.d.ts +1 -1
  331. package/{components/mui_extended/IconButton/stories → storybook/components/extended/mui/IconButton}/DefaultIconButton/iconButton.outlinedDefault.stories.d.ts +1 -1
  332. package/{components/mui_extended/IconButton/stories → storybook/components/extended/mui/IconButton}/DisableIconButton/IconButton.containedDisable.stories.d.ts +1 -1
  333. package/{components/mui_extended/IconButton/stories → storybook/components/extended/mui/IconButton}/DisableIconButton/IconButton.textDisable.stories.d.ts +1 -1
  334. package/{components/mui_extended/IconButton/stories → storybook/components/extended/mui/IconButton}/DisableIconButton/iconButton.outlinedDisable.stories.d.ts +1 -1
  335. package/{components/mui_extended/IconButton/stories → storybook/components/extended/mui/IconButton}/IconButton.stories.d.ts +9 -1
  336. package/{components/mui_extended/IconButton/stories → storybook/components/extended/mui/IconButton}/PrimaryIconButton/IconButton.containedPrimary.stories.d.ts +1 -1
  337. package/{components/mui_extended/IconButton/stories → storybook/components/extended/mui/IconButton}/PrimaryIconButton/IconButton.textPrimary.stories.d.ts +1 -1
  338. package/{components/mui_extended/IconButton/stories → storybook/components/extended/mui/IconButton}/PrimaryIconButton/iconButton.outlinedPrimary.stories.d.ts +1 -1
  339. package/{components/mui_extended/IconButton/stories → storybook/components/extended/mui/IconButton}/SemanticIconButton/ErrorIconButton/IconButton.containedError.stories.d.ts +1 -1
  340. package/{components/mui_extended/IconButton/stories → storybook/components/extended/mui/IconButton}/SemanticIconButton/ErrorIconButton/IconButton.textError.stories.d.ts +1 -1
  341. package/{components/mui_extended/IconButton/stories → storybook/components/extended/mui/IconButton}/SemanticIconButton/ErrorIconButton/iconButton.outlinedError.stories.d.ts +1 -1
  342. package/{components/mui_extended/IconButton/stories → storybook/components/extended/mui/IconButton}/SemanticIconButton/InfoIconButton/IconButton.containedInfo.stories.d.ts +1 -1
  343. package/{components/mui_extended/IconButton/stories → storybook/components/extended/mui/IconButton}/SemanticIconButton/InfoIconButton/IconButton.textInfo.stories.d.ts +1 -1
  344. package/{components/mui_extended/IconButton/stories → storybook/components/extended/mui/IconButton}/SemanticIconButton/InfoIconButton/iconButton.outlinedInfo.stories.d.ts +1 -1
  345. package/{components/mui_extended/IconButton/stories → storybook/components/extended/mui/IconButton}/SemanticIconButton/SuccesIconButton/IconButton.containedSuccess.stories.d.ts +1 -1
  346. package/{components/mui_extended/IconButton/stories → storybook/components/extended/mui/IconButton}/SemanticIconButton/SuccesIconButton/IconButton.textSucces.stories.d.ts +1 -1
  347. package/{components/mui_extended/IconButton/stories → storybook/components/extended/mui/IconButton}/SemanticIconButton/SuccesIconButton/iconButton.outlinedSucces.stories.d.ts +1 -1
  348. package/{components/mui_extended/IconButton/stories → storybook/components/extended/mui/IconButton}/SemanticIconButton/WarningIconButton/IconButton.containedWarning.stories.d.ts +1 -1
  349. package/{components/mui_extended/IconButton/stories → storybook/components/extended/mui/IconButton}/SemanticIconButton/WarningIconButton/IconButton.textWarning.stories.d.ts +1 -1
  350. package/{components/mui_extended/IconButton/stories → storybook/components/extended/mui/IconButton}/SemanticIconButton/WarningIconButton/iconButton.outlinedWarning.stories.d.ts +1 -1
  351. package/{components/mui_extended/IconButton/stories → storybook/components/extended/mui/IconButton}/SizesIconButton/IconButtonSizeMedium.stories.d.ts +1 -1
  352. package/{components/mui_extended/MenuActions/stories → storybook/components/extended/mui/MenuActions}/MenuActions.default.stories.d.ts +5 -1
  353. package/{components/mui_extended/MenuActions/stories → storybook/components/extended/mui/MenuActions}/MenuActions.othersProps.stories.d.ts +1 -1
  354. package/storybook/components/mui_extended/Accordion/Accordion.stories.d.ts +25 -0
  355. package/storybook/components/paperForm/PaperForm.stories.d.ts +18 -0
  356. package/utils/getComponentSlotRoot.d.ts +13 -0
  357. package/utils/getComponentSlotRoot.js +13 -0
  358. package/components/AppBar/classes/constants.d.ts +0 -1
  359. package/components/AppBar/classes/constants.js +0 -4
  360. package/components/AppBar/classes/index.d.ts +0 -27
  361. package/components/AppBar/classes/index.js +0 -33
  362. package/components/AppBar/classes/types.d.ts +0 -11
  363. package/components/AppBar/tests/constants.js +0 -4
  364. package/components/AppBar/tests/index.test.d.ts +0 -5
  365. package/components/CommonActions/tests/index.test.d.ts +0 -7
  366. package/components/PaperForm/classes/constants.d.ts +0 -1
  367. package/components/PaperForm/classes/constants.js +0 -4
  368. package/components/PaperForm/classes/index.d.ts +0 -15
  369. package/components/PaperForm/classes/index.js +0 -33
  370. package/components/PaperForm/classes/types.d.ts +0 -11
  371. package/components/SideBar/classes/constants.d.ts +0 -1
  372. package/components/SideBar/classes/constants.js +0 -4
  373. package/components/SideBar/classes/index.d.ts +0 -47
  374. package/components/SideBar/classes/index.js +0 -131
  375. package/components/SideBar/classes/types.d.ts +0 -42
  376. package/components/SideBar/subcomponents/ContentDesktop/index.d.ts +0 -4
  377. package/components/SideBar/subcomponents/ContentDesktop/index.js +0 -12
  378. package/components/SideBar/subcomponents/ContentDesktop/subcomponents/CollapseButton/index.d.ts +0 -13
  379. package/components/SideBar/subcomponents/ContentDesktop/subcomponents/CollapseButton/index.js +0 -29
  380. package/components/SideBar/subcomponents/ContentDesktop/subcomponents/CollapseButton/styles.d.ts +0 -2
  381. package/components/SideBar/subcomponents/ContentDesktop/subcomponents/CollapseButton/styles.js +0 -10
  382. package/components/SideBar/subcomponents/ContentDesktop/subcomponents/CollapseButton/types.d.ts +0 -5
  383. package/components/SideBar/subcomponents/ContentDesktop/subcomponents/ContentComponent/index.d.ts +0 -4
  384. package/components/SideBar/subcomponents/ContentDesktop/subcomponents/ContentComponent/index.js +0 -74
  385. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/index.d.ts +0 -8
  386. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/index.js +0 -95
  387. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/styles.d.ts +0 -1
  388. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/styles.js +0 -9
  389. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/ArrowIcon/index.d.ts +0 -5
  390. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/ArrowIcon/styles.d.ts +0 -1
  391. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/ArrowIcon/styles.js +0 -9
  392. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavItemRoot/index.d.ts +0 -5
  393. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavItemRoot/index.js +0 -44
  394. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavItemRoot/styles.d.ts +0 -8
  395. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavItemRoot/styles.js +0 -29
  396. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavItemRoot/subcomponents/NavItemRootContent/index.d.ts +0 -5
  397. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavItemRoot/subcomponents/NavItemRootContent/index.js +0 -44
  398. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavItemRoot/subcomponents/NavItemRootContent/type.d.ts +0 -8
  399. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavItemRoot/type.d.ts +0 -17
  400. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/index.d.ts +0 -5
  401. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/index.js +0 -78
  402. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/styles.d.ts +0 -1
  403. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/styles.js +0 -8
  404. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/subcomponents/NavItemSub/index.d.ts +0 -5
  405. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/subcomponents/NavItemSub/index.js +0 -20
  406. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/subcomponents/NavItemSub/styles.d.ts +0 -7
  407. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/subcomponents/NavItemSub/subcomponents/NavItemSubContent/index.d.ts +0 -5
  408. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/subcomponents/NavItemSub/subcomponents/NavItemSubContent/index.js +0 -57
  409. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/subcomponents/NavItemSub/subcomponents/NavItemSubContent/styles.d.ts +0 -5
  410. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/subcomponents/NavItemSub/subcomponents/NavItemSubContent/styles.js +0 -39
  411. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/subcomponents/NavItemSub/subcomponents/NavItemSubContent/types.d.ts +0 -8
  412. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/subcomponents/NavItemSub/types.d.ts +0 -16
  413. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/type.d.ts +0 -11
  414. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/types.d.ts +0 -12
  415. package/components/SideBar/subcomponents/ContentGroups/type.d.ts +0 -5
  416. package/components/SideBar/subcomponents/ContentGroups/utils/index.d.ts +0 -2
  417. package/components/SideBar/subcomponents/ContentMobile/index.d.ts +0 -4
  418. package/components/SideBar/subcomponents/ContentMobile/index.js +0 -81
  419. package/components/SideBar/subcomponents/ContentMobile/styles.d.ts +0 -2
  420. package/components/SideBar/subcomponents/ContentMobile/styles.js +0 -18
  421. package/components/SideBar/subcomponents/ContentMobile/subcomponents/Drawer.d.ts +0 -5
  422. package/components/modal/ModalDialog/index.d.ts +0 -8
  423. package/components/modal/ModalDialog/index.js +0 -60
  424. package/components/modal/ModalDialog/styles.d.ts +0 -6
  425. package/components/modal/ModalDialog/types.d.ts +0 -7
  426. package/components/modal/WindowBase/index.d.ts +0 -7
  427. package/components/modal/WindowBase/index.js +0 -20
  428. package/components/modal/WindowBase/styles.d.ts +0 -1
  429. package/components/modal/WindowBase/subcomponents/Header/index.d.ts +0 -5
  430. package/components/modal/WindowBase/subcomponents/Header/index.js +0 -29
  431. package/components/modal/WindowBase/subcomponents/Header/styles.d.ts +0 -1
  432. package/components/modal/WindowBase/subcomponents/Header/types.d.ts +0 -5
  433. package/components/modal/WindowBase/types.d.ts +0 -11
  434. package/components/modal/WindowConfirm/index.d.ts +0 -16
  435. package/components/modal/WindowConfirm/index.js +0 -43
  436. package/components/modal/WindowConfirm/styles.d.ts +0 -1
  437. package/components/modal/WindowConfirm/subcomponents/MessageIlustration/index.d.ts +0 -5
  438. package/components/modal/WindowConfirm/subcomponents/MessageIlustration/index.js +0 -35
  439. package/components/modal/WindowConfirm/subcomponents/MessageIlustration/types.d.ts +0 -6
  440. package/components/modal/WindowConfirm/types.d.ts +0 -44
  441. package/components/mui_extended/Accordion/classes/constants.d.ts +0 -1
  442. package/components/mui_extended/Accordion/classes/constants.js +0 -4
  443. package/components/mui_extended/Accordion/classes/index.d.ts +0 -13
  444. package/components/mui_extended/Accordion/classes/index.js +0 -31
  445. package/components/mui_extended/Accordion/classes/types.d.ts +0 -10
  446. package/components/mui_extended/Accordion/tests/constants.d.ts +0 -1
  447. package/components/mui_extended/Accordion/tests/utils.d.ts +0 -2
  448. /package/components/{modal/ModalDialog → ModalDialog}/dictionary.d.ts +0 -0
  449. /package/components/{modal/ModalDialog → ModalDialog}/subcomponents/ResizeHandle/index.d.ts +0 -0
  450. /package/components/{hook-form/RHFTextFieldPassword/tests/index.test.d.ts → ModalDialog/tests/ModalDialog.test.d.ts} +0 -0
  451. /package/components/SideBar/subcomponents/{ContentMobile → SideBarMobile}/subcomponents/Drawer.js +0 -0
  452. /package/components/SideBar/subcomponents/{ContentMobile → SideBarMobile}/subcomponents/types.d.ts +0 -0
  453. /package/components/{modal/WindowConfirm → WindowConfirm}/dictionary.d.ts +0 -0
  454. /package/components/{modal/WindowConfirm → WindowConfirm}/dictionary.js +0 -0
  455. /package/components/{mui_extended/Accordion/tests/index.test.d.ts → WindowConfirm/test/WindowConfirm.test.d.ts} +0 -0
@@ -1,4 +1,4 @@
1
- import { g as getModalDialogComponentsDictionary } from "../modal/ModalDialog/dictionary.js";
1
+ import { g as getModalDialogComponentsDictionary } from "../mui_extended/Dialog/dictionary.js";
2
2
  import { g as getPagerComponentsDictionary } from "../mui_extended/Pager/dicctionary.js";
3
3
  function getDataGridComponentsDictionary() {
4
4
  return ["data_grid"].concat(getPagerComponentsDictionary()).concat(getModalDialogComponentsDictionary());
@@ -2,8 +2,8 @@
2
2
  * TODO: Documentar
3
3
  * @author SebastianM - automatic
4
4
  * @createdAt 2024-11-06 09:00:05 - automatic
5
- * @updatedAt 2024-11-06 10:39:53 - automatic
6
- * @updatedUser SebastianM - automatic
5
+ * @updatedAt 2024-11-25 15:36:27 - automatic
6
+ * @updatedUser cesar - automatic
7
7
  */
8
8
  declare const useModalSettings: () => () => void;
9
9
  export default useModalSettings;
@@ -6,8 +6,8 @@ import { u as useDataGrid } from "../../../../../hooks/useDataGrid.js";
6
6
  import { u as useModal } from "../../../../../../../hooks/useModal/index.js";
7
7
  import { D as DataGridRoot } from "../../../../../styles.js";
8
8
  import { C as ColumnsConfig } from "../../Settings/subcomponents/ColumnsConfig/index.js";
9
- import { W as WindowBase } from "../../../../../../modal/WindowBase/index.js";
10
9
  import { A as ActionsContainer } from "../../../../../../CommonActions/components/ActionsContainer/ActionsContainer.js";
10
+ import { W as WindowBase } from "../../../../../../WindowBase/WindowBase.js";
11
11
  import { A as ActionCancel } from "../../../../../../CommonActions/components/ActionCancel/ActionCancel.js";
12
12
  import { A as ActionIntro } from "../../../../../../CommonActions/components/ActionIntro/ActionIntro.js";
13
13
  const useModalSettings = () => {
@@ -29,13 +29,13 @@ const useModalSettings = () => {
29
29
  const onClickSettings = () => {
30
30
  openModal({
31
31
  initialWidth: 500,
32
- initialHeigth: 680,
32
+ initialHeight: 680,
33
33
  fullScreen: isMobile,
34
34
  window: /* @__PURE__ */ jsxs(
35
35
  WindowBase,
36
36
  {
37
37
  title: getLabel("data_grid.settings_title"),
38
- urlIcon: `${host_static_assets}/${environment_assets}/frontend/components/data_grid/assets/icons/configuration.svg`,
38
+ iconUrl: `${host_static_assets}/${environment_assets}/frontend/components/data_grid/assets/icons/configuration.svg`,
39
39
  children: [
40
40
  /* @__PURE__ */ jsx(DataGridRoot, { className: classes.root, children: /* @__PURE__ */ jsx("div", { className: classes.tableContaniner, style: { inset: "0" }, children: /* @__PURE__ */ jsx("div", { className: classes.wrapperDataGridCss, children: /* @__PURE__ */ jsx(
41
41
  ColumnsConfig,
@@ -18,7 +18,7 @@ type useOnDragStartProps = {
18
18
  * @param props
19
19
  * @author cesar - automatic
20
20
  * @createdAt 2024-11-12 08:41:21 - automatic
21
- * @updatedAt 2024-11-13 14:48:00 - automatic
21
+ * @updatedAt 2024-12-02 17:50:36 - automatic
22
22
  * @updatedUser cesar - automatic
23
23
  */
24
24
  export declare const useDimensionEffects: (props: useOnDragStartProps) => void;
@@ -194,8 +194,13 @@ const useDimensionEffects = (props) => {
194
194
  if (newState.resizing.handle === "n") {
195
195
  const difHeight = newState[lDimension] - stateRef.current.initialPosition[lDimension];
196
196
  if (dimension === "Height") {
197
- newState[lDimension] = stateRef.current.initialPosition[lDimension] + difHeight;
198
- newState[leftTop] = stateRef.current.initialPosition[leftTop] - difHeight;
197
+ if (newState[leftTop] - difHeight < boundsTop) {
198
+ newState[leftTop] = boundsTop;
199
+ newState[lDimension] = stateRef.current.initialPosition[lDimension] + (stateRef.current.initialPosition[leftTop] - boundsTop);
200
+ } else {
201
+ newState[lDimension] = stateRef.current.initialPosition[lDimension] + difHeight;
202
+ newState[leftTop] = stateRef.current.initialPosition[leftTop] - difHeight;
203
+ }
199
204
  }
200
205
  }
201
206
  }
@@ -14,12 +14,12 @@ type useDragOptionsProps = {
14
14
  * "useDragOptions" hook que maneja las opciones de dragging
15
15
  * @author Juan Escobar - automatic
16
16
  * @createdAt 2024-10-07 16:10:36 - automatic
17
- * @updatedAt 2024-11-13 10:42:04 - automatic
17
+ * @updatedAt 2024-12-02 19:35:08 - automatic
18
18
  * @updatedUser cesar - automatic
19
19
  */
20
20
  export declare const useDragOptions: (props: useDragOptionsProps) => {
21
21
  localOnDragStart: (e: DraggableEvent, draggableData: DraggableData) => false | undefined;
22
22
  localOnDrag: (e: DraggableEvent, draggableData: DraggableData) => false | undefined;
23
- localOnDragStop: (e: DraggableEvent, draggableData: DraggableData) => false | undefined;
23
+ localOnDragStop: (e: DraggableEvent, draggableData: DraggableData) => void;
24
24
  };
25
25
  export {};
@@ -69,17 +69,23 @@ const useDragOptions = (props) => {
69
69
  return;
70
70
  }
71
71
  const { left, top } = stateRef.current.dragging;
72
+ stateRef.current = {
73
+ ...stateRef.current,
74
+ left,
75
+ top,
76
+ dragging: void 0
77
+ };
78
+ setCurrentState((prev) => ({
79
+ ...prev,
80
+ left,
81
+ top,
82
+ dragging: void 0
83
+ }));
72
84
  if (onDragStop) {
73
- if (onDragStop(e, draggableData) === false) {
74
- return false;
75
- }
85
+ onDragStop(e, draggableData);
76
86
  }
77
- const newPosition = { top, left };
78
- stateRef.current.dragging = void 0;
79
- setCurrentState((prev) => ({ ...prev, ...newPosition, dragging: void 0 }));
80
87
  },
81
- // eslint-disable-next-line react-hooks/exhaustive-deps
82
- [onDragStop]
88
+ [onDragStop, stateRef, setCurrentState]
83
89
  );
84
90
  return { localOnDragStart, localOnDrag, localOnDragStop };
85
91
  };
@@ -27,7 +27,7 @@ type useResizeOptionsProps = {
27
27
  * });
28
28
  * @author cesar - automatic
29
29
  * @createdAt 2024-11-07 15:30:05 - automatic
30
- * @updatedAt 2024-11-13 10:42:04 - automatic
30
+ * @updatedAt 2024-12-02 19:35:08 - automatic
31
31
  * @updatedUser cesar - automatic
32
32
  */
33
33
  export declare const useResizeOptions: (props: useResizeOptionsProps) => {
@@ -1,6 +1,10 @@
1
- import { useCallback } from "react";
1
+ import { useRef, useEffect, useCallback } from "react";
2
2
  const useResizeOptions = (props) => {
3
- const { onResizeStart, onResize, onResizeStop, stateRef, setCurrentState } = props;
3
+ const { onResizeStart: _onResizeStart, onResize: _onResize, stateRef, setCurrentState } = props;
4
+ const memoizedStateRef = useRef(stateRef.current);
5
+ useEffect(() => {
6
+ memoizedStateRef.current = { ...stateRef.current };
7
+ }, [stateRef.current]);
4
8
  const onResizeHandler = useCallback(
5
9
  (e, data, handlerName) => {
6
10
  const { size, handle } = data;
@@ -8,34 +12,35 @@ const useResizeOptions = (props) => {
8
12
  if (handler) {
9
13
  handler(e, data);
10
14
  }
11
- if (handlerName === "onResizeStart") {
12
- stateRef.current.initialPosition = {
13
- left: stateRef.current.left,
14
- top: stateRef.current.top,
15
- width: stateRef.current.width,
16
- height: stateRef.current.height
17
- };
15
+ const newState = { ...memoizedStateRef.current };
16
+ if (handle.includes("w")) {
17
+ const diff = memoizedStateRef.current.width - size.width;
18
+ newState.left += diff;
19
+ newState.width = size.width;
20
+ }
21
+ if (handle.includes("e")) {
22
+ newState.width = size.width;
23
+ }
24
+ if (handle.includes("n")) {
25
+ const diff = memoizedStateRef.current.height - size.height;
26
+ newState.top += diff;
27
+ newState.height = size.height;
28
+ }
29
+ if (handle.includes("s")) {
30
+ newState.height = size.height;
18
31
  }
19
32
  const resizing = handlerName === "onResizeStop" ? void 0 : { ...size, handle };
20
- setCurrentState((prev) => ({
21
- ...prev,
22
- ...size,
23
- ...handlerName === "onResizeStart" ? {
24
- shrinkLeftAt: void 0,
25
- //Cancelar los flags de memoria de encogimiento del contenedor padre
26
- shrinkTopAt: void 0,
27
- //Cancelar los flags de memoria de encogimiento del contenedor padre
28
- overflowWidthAt: void 0,
29
- //Cancelar los flags de memoria de encogimiento del contenedor padre
30
- overflowHeightAt: void 0
31
- //Cancelar los flags de memoria de encogimiento del contenedor padre
32
- } : {},
33
+ setCurrentState({
34
+ ...newState,
33
35
  resizing
34
- }));
35
- stateRef.current.resizing = resizing;
36
+ });
37
+ stateRef.current = {
38
+ ...stateRef.current,
39
+ ...newState,
40
+ resizing
41
+ };
36
42
  },
37
- // eslint-disable-next-line react-hooks/exhaustive-deps
38
- [onResizeStart, onResize, onResizeStop]
43
+ [props, memoizedStateRef, setCurrentState, stateRef]
39
44
  );
40
45
  const localOnResizeStart = useCallback(
41
46
  (e, callbackData) => {
@@ -52,7 +57,13 @@ const useResizeOptions = (props) => {
52
57
  const localOnResizeStop = useCallback(
53
58
  (e, callbackData) => {
54
59
  onResizeHandler(e, callbackData, "onResizeStop");
60
+ stateRef.current = {
61
+ ...stateRef.current,
62
+ ...callbackData.size,
63
+ resizing: void 0
64
+ };
55
65
  },
66
+ // eslint-disable-next-line react-hooks/exhaustive-deps
56
67
  [onResizeHandler]
57
68
  );
58
69
  return { localOnResize, localOnResizeStart, localOnResizeStop };
@@ -1,6 +1,6 @@
1
1
  export declare const RootStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('../types').DragResizeWindowOwnerState> & Record<string, unknown> & {
2
2
  ownerState: Partial<import('../types').DragResizeWindowOwnerState> & Record<string, unknown>;
3
- }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
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 IconResizeFormatterStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('../types').DragResizeWindowOwnerState> & Record<string, unknown> & {
5
5
  ownerState: Partial<import('../types').DragResizeWindowOwnerState> & Record<string, unknown>;
6
- }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
6
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
@@ -1,12 +1,12 @@
1
1
  export declare const RootStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown> & {
2
2
  ownerState: Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown>;
3
- }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
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').Theme> & Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown> & {
5
5
  ownerState: Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown>;
6
- }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
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 InputFilterStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown> & {
8
8
  ownerState: Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown>;
9
- }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
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 InputFilterInputStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown> & {
11
11
  ownerState: Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown>;
12
12
  }, Pick<import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, keyof import('react').ClassAttributes<HTMLInputElement> | keyof import('react').InputHTMLAttributes<HTMLInputElement>>, {}>;
@@ -15,13 +15,13 @@ export declare const InputFilterIconStyled: import('@emotion/styled').StyledComp
15
15
  }, {}, {}>;
16
16
  export declare const AppliedFiltersStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown> & {
17
17
  ownerState: Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown>;
18
- }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
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 AppliedFilterInnerContainerStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown> & {
20
20
  ownerState: Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown>;
21
- }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
21
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
22
22
  export declare const AppliedFilterChipStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown> & {
23
23
  ownerState: Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown>;
24
- }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
24
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
25
25
  export declare const AppliedFilterChipIconStyled: import('@emotion/styled').StyledComponent<Pick<import('../../mui_extended/IconButton/types').IconButtonProps, keyof import('../../mui_extended/IconButton/types').IconButtonProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown> & {
26
26
  ownerState: Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown>;
27
27
  }, {}, {}>;
@@ -42,10 +42,10 @@ export declare const AppliedFilterChipRemoveButtonStyled: import('@emotion/style
42
42
  }, {}, {}>;
43
43
  export declare const ActionsStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown> & {
44
44
  ownerState: Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown>;
45
- }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
45
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
46
46
  export declare const ActionsSkeletonButtonStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown> & {
47
47
  ownerState: Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown>;
48
- }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
48
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
49
49
  export declare const ActionsClearButtonStyled: import('@emotion/styled').StyledComponent<Pick<import('../../mui_extended/IconButton/types').IconButtonProps, keyof import('../../mui_extended/IconButton/types').IconButtonProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown> & {
50
50
  ownerState: Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown>;
51
51
  }, {}, {}>;
@@ -57,7 +57,7 @@ export declare const PopoverMenuStyled: import('@emotion/styled').StyledComponen
57
57
  }, {}, {}>;
58
58
  export declare const PopoverMenuItemStyled: import('@emotion/styled').StyledComponent<Pick<import('@mui/material').MenuItemOwnProps & Omit<import('@mui/material').ButtonBaseOwnProps, "classes"> & import('@mui/material/OverridableComponent').CommonProps & Omit<Omit<import('react').DetailedHTMLProps<import('react').LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & {
59
59
  ref?: ((instance: HTMLLIElement | 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<HTMLLIElement> | null | undefined;
60
- }, "children" | "action" | "divider" | "style" | "dense" | "disabled" | "sx" | "classes" | "autoFocus" | "className" | "tabIndex" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "selected" | "disableGutters">, "children" | "value" | "ref" | "title" | "id" | "action" | "divider" | "hidden" | "color" | "content" | "style" | "dense" | "disabled" | "translate" | "sx" | "classes" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "nonce" | "slot" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "key" | "selected" | "disableGutters"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown> & {
60
+ }, "children" | "selected" | "action" | "divider" | "style" | "dense" | "disabled" | "className" | "classes" | "sx" | "disableGutters" | "autoFocus" | "tabIndex" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef">, "children" | "value" | "ref" | "title" | "id" | "selected" | "action" | "divider" | "hidden" | "color" | "content" | "style" | "dense" | "disabled" | "className" | "classes" | "onChange" | "sx" | "translate" | "disableGutters" | "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" | "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" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown> & {
61
61
  ownerState: Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown>;
62
62
  }, {}, {}>;
63
63
  export declare const PopoverMenuItemIconStyled: import('@emotion/styled').StyledComponent<Pick<import('../../Icon').IconProps, keyof import('../../Icon').IconProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown> & {
@@ -65,16 +65,16 @@ export declare const PopoverMenuItemIconStyled: import('@emotion/styled').Styled
65
65
  }, {}, {}>;
66
66
  export declare const PopoverMenuItemLabelStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown> & {
67
67
  ownerState: Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown>;
68
- }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
68
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
69
69
  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').Theme> & Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown> & {
70
70
  ownerState: Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown>;
71
71
  }, {}, {}>;
72
72
  export declare const PopoverContainerFieldsStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown> & {
73
73
  ownerState: Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown>;
74
- }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
74
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
75
75
  export declare const PopoverHeaderStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown> & {
76
76
  ownerState: Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown>;
77
- }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
77
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
78
78
  export declare const PopoverHeaderIconStyled: import('@emotion/styled').StyledComponent<Pick<import('../../Icon').IconProps, keyof import('../../Icon').IconProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown> & {
79
79
  ownerState: Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown>;
80
80
  }, {}, {}>;
@@ -1,12 +1,12 @@
1
1
  export declare const RootStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown> & {
2
2
  ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
3
- }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
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').Theme> & Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown> & {
5
5
  ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
6
- }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
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').Theme> & Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown> & {
8
8
  ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
9
- }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
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').Theme> & Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown> & {
11
11
  ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
12
12
  }, Pick<import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, keyof import('react').ClassAttributes<HTMLInputElement> | keyof import('react').InputHTMLAttributes<HTMLInputElement>>, {}>;
@@ -15,13 +15,13 @@ export declare const InputSortIconStyled: import('@emotion/styled').StyledCompon
15
15
  }, {}, {}>;
16
16
  export declare const AppliedSortsStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown> & {
17
17
  ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
18
- }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
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 AppliedSortInnerContainerStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown> & {
20
20
  ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
21
- }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
21
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
22
22
  export declare const AppliedSortChipStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown> & {
23
23
  ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
24
- }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
24
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
25
25
  export declare const AppliedSortChipIconStyled: import('@emotion/styled').StyledComponent<Pick<import('../../mui_extended/IconButton/types').IconButtonProps, keyof import('../../mui_extended/IconButton/types').IconButtonProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown> & {
26
26
  ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
27
27
  }, {}, {}>;
@@ -39,10 +39,10 @@ export declare const AppliedSortChipRemoveButtonStyled: import('@emotion/styled'
39
39
  }, {}, {}>;
40
40
  export declare const ActionsStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown> & {
41
41
  ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
42
- }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
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 ActionsSkeletonButtonStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown> & {
44
44
  ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
45
- }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
45
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
46
46
  export declare const ActionsClearButtonStyled: import('@emotion/styled').StyledComponent<Pick<import('../../mui_extended/IconButton/types').IconButtonProps, keyof import('../../mui_extended/IconButton/types').IconButtonProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown> & {
47
47
  ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
48
48
  }, {}, {}>;
@@ -54,7 +54,7 @@ export declare const PopoverMenuStyled: import('@emotion/styled').StyledComponen
54
54
  }, {}, {}>;
55
55
  export declare const PopoverMenuItemStyled: import('@emotion/styled').StyledComponent<Pick<import('@mui/material').MenuItemOwnProps & Omit<import('@mui/material').ButtonBaseOwnProps, "classes"> & import('@mui/material/OverridableComponent').CommonProps & Omit<Omit<import('react').DetailedHTMLProps<import('react').LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & {
56
56
  ref?: ((instance: HTMLLIElement | 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<HTMLLIElement> | null | undefined;
57
- }, "children" | "action" | "divider" | "style" | "dense" | "disabled" | "sx" | "classes" | "autoFocus" | "className" | "tabIndex" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "selected" | "disableGutters">, "children" | "value" | "ref" | "title" | "id" | "action" | "divider" | "hidden" | "color" | "content" | "style" | "dense" | "disabled" | "translate" | "sx" | "classes" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "nonce" | "slot" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "key" | "selected" | "disableGutters"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown> & {
57
+ }, "children" | "selected" | "action" | "divider" | "style" | "dense" | "disabled" | "className" | "classes" | "sx" | "disableGutters" | "autoFocus" | "tabIndex" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef">, "children" | "value" | "ref" | "title" | "id" | "selected" | "action" | "divider" | "hidden" | "color" | "content" | "style" | "dense" | "disabled" | "className" | "classes" | "onChange" | "sx" | "translate" | "disableGutters" | "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" | "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" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown> & {
58
58
  ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
59
59
  }, {}, {}>;
60
60
  export declare const PopoverMenuItemIconStyled: import('@emotion/styled').StyledComponent<Pick<import('../../Icon').IconProps, keyof import('../../Icon').IconProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown> & {
@@ -62,16 +62,16 @@ export declare const PopoverMenuItemIconStyled: import('@emotion/styled').Styled
62
62
  }, {}, {}>;
63
63
  export declare const PopoverMenuItemLabelStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown> & {
64
64
  ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
65
- }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
65
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
66
66
  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').Theme> & Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown> & {
67
67
  ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
68
68
  }, {}, {}>;
69
69
  export declare const PopoverContainerFieldsStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown> & {
70
70
  ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
71
- }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
71
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
72
72
  export declare const PopoverHeaderStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown> & {
73
73
  ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
74
- }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
74
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
75
75
  export declare const PopoverHeaderIconStyled: import('@emotion/styled').StyledComponent<Pick<import('../../Icon').IconProps, keyof import('../../Icon').IconProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown> & {
76
76
  ownerState: Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>;
77
77
  }, {}, {}>;
@@ -3,5 +3,5 @@ export declare const gridLayoutClasses: GridLayoutClasses;
3
3
  /**
4
4
  * TODO: Documentar
5
5
  */
6
- export declare const useUtilityClasses: () => Record<"static" | "root" | "invisible" | "colapsed" | "resizing" | "dragging" | "gridItemRoot" | "gridItemPlaceholder" | "gridItemFreeMove" | "maximizeMe" | "maximizeOther" | "resizeHide" | "cssTransforms", string>;
6
+ export declare const useUtilityClasses: () => Record<"static" | "root" | "invisible" | "dragging" | "resizing" | "colapsed" | "gridItemRoot" | "gridItemPlaceholder" | "gridItemFreeMove" | "maximizeMe" | "maximizeOther" | "resizeHide" | "cssTransforms", string>;
7
7
  export type Classes = ReturnType<typeof useUtilityClasses>;
@@ -3,7 +3,7 @@ import { IconProps } from './types';
3
3
  * Provee de un medio por el cual se carga un icono svg en la plataforma web, aporta su versión provisional de carga en red.
4
4
  * @author Bruce Escobar - automatic
5
5
  * @createdAt 2024-10-22 19:08:59 - automatic
6
- * @updatedAt 2024-10-30 08:40:18 - automatic
7
- * @updatedUser Andrés Quintero - automatic
6
+ * @updatedAt 2024-12-02 19:12:14 - automatic
7
+ * @updatedUser SebastianM - automatic
8
8
  */
9
9
  export declare const Icon: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,7 +1,9 @@
1
1
  import { jsxs, Fragment, jsx } from "react/jsx-runtime";
2
2
  import { useModuleSkeleton } from "@m4l/core";
3
+ import clsx from "clsx";
3
4
  import { a as getPropDataTestId } from "../../test/getNameDataTestId.js";
4
- import { I as ICON_PREFIX } from "./constants.js";
5
+ import { I as ICON_PREFIX, a as ICON_KEY_COMPONENT } from "./constants.js";
6
+ import { a as getComponentClasses } from "../../utils/getComponentSlotRoot.js";
5
7
  import { u as useComponentSize } from "../../hooks/useComponentSize/useComponentSize.js";
6
8
  import { T as TooltipStyled, R as RootStyled, I as IconStyled, a as IconSkeletonStyled } from "./slots/IconSlots.js";
7
9
  import { I as IconSlots } from "./slots/IconEnum.js";
@@ -27,10 +29,12 @@ const Icon = (props) => {
27
29
  iconRotationAngle: rotationAngle,
28
30
  isSkeleton
29
31
  };
32
+ const classKey = getComponentClasses(ICON_KEY_COMPONENT, IconSlots);
30
33
  return /* @__PURE__ */ jsxs(Fragment, { children: [
31
34
  tooltipContent ? /* @__PURE__ */ jsx(
32
35
  TooltipStyled,
33
36
  {
37
+ className: className || classKey.tooltip,
34
38
  title: tooltipContent,
35
39
  ownerState: { ...ownerState },
36
40
  placement,
@@ -38,12 +42,14 @@ const Icon = (props) => {
38
42
  children: /* @__PURE__ */ jsx(
39
43
  RootStyled,
40
44
  {
41
- className,
45
+ className: clsx(className, classKey.root),
42
46
  ownerState: { ...ownerState },
43
47
  ...getPropDataTestId(ICON_PREFIX, IconSlots.root, instaceDataTestId),
44
48
  children: /* @__PURE__ */ jsx(
45
49
  IconStyled,
46
50
  {
51
+ className: classKey.icon,
52
+ role: "icon",
47
53
  ownerState: { ...ownerState },
48
54
  ...getPropDataTestId(ICON_PREFIX, IconSlots.icon, instaceDataTestId)
49
55
  }
@@ -54,19 +60,21 @@ const Icon = (props) => {
54
60
  ) : /* @__PURE__ */ jsx(
55
61
  RootStyled,
56
62
  {
57
- className,
63
+ className: clsx(className, classKey.root),
58
64
  ownerState: { ...ownerState },
59
65
  ...getPropDataTestId(ICON_PREFIX, IconSlots.root, instaceDataTestId),
60
66
  children: /* @__PURE__ */ jsx(
61
67
  IconStyled,
62
68
  {
69
+ className: classKey.icon,
70
+ role: "icon",
63
71
  ownerState: { ...ownerState },
64
72
  ...getPropDataTestId(ICON_PREFIX, IconSlots.icon, instaceDataTestId)
65
73
  }
66
74
  )
67
75
  }
68
76
  ),
69
- isSkeleton && /* @__PURE__ */ jsx(IconSkeletonStyled, { role: "icon-skeleton", variant: "rectangular", ownerState: { ...ownerState } })
77
+ isSkeleton && /* @__PURE__ */ jsx(IconSkeletonStyled, { className: classKey.iconSkeleton, role: "icon-skeleton", variant: "rectangular", ownerState: { ...ownerState } })
70
78
  ] });
71
79
  };
72
80
  export {
@@ -1,12 +1,12 @@
1
1
  export declare const RootStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('..').IconOwnerState> & Record<string, unknown> & {
2
2
  ownerState: Partial<import('..').IconOwnerState> & Record<string, unknown>;
3
- }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
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 TooltipStyled: import('@emotion/styled').StyledComponent<Pick<import('../../mui_extended/Tooltip').TooltipProps, keyof import('../../mui_extended/Tooltip').TooltipProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('..').IconOwnerState> & Record<string, unknown> & {
5
5
  ownerState: Partial<import('..').IconOwnerState> & Record<string, unknown>;
6
6
  }, {}, {}>;
7
7
  export declare const IconStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('..').IconOwnerState> & Record<string, unknown> & {
8
8
  ownerState: Partial<import('..').IconOwnerState> & Record<string, unknown>;
9
- }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
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 IconSkeletonStyled: 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('..').IconOwnerState> & Record<string, unknown> & {
11
11
  ownerState: Partial<import('..').IconOwnerState> & Record<string, unknown>;
12
12
  }, {}, {}>;