@m4l/components 9.2.56 → 9.2.58-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (391) hide show
  1. package/.storybook/decorators/WithWindowsToolsContext/WithContextWindowTools.d.ts +5 -0
  2. package/.storybook/utils/flattenDeep.d.ts +8 -0
  3. package/.storybook/utils/getStylesColorsByMode.d.ts +52 -4
  4. package/@types/augmentations.d.ts +1 -1
  5. package/@types/types.d.ts +10 -9
  6. package/components/AccountPopover/AccountPopover.js +3 -4
  7. package/components/AccountPopover/slots/AccountPopoverSlots.d.ts +32 -32
  8. package/components/AccountPopover/subcomponents/MenuPopover/MenuPopover.js +13 -14
  9. package/components/AccountPopover/types.d.ts +2 -2
  10. package/components/AppBar/AppBar.js +6 -9
  11. package/components/AppBar/slots/AppBarSlots.d.ts +16 -16
  12. package/components/AppBar/styles.js +2 -1
  13. package/components/AppBar/types.d.ts +2 -2
  14. package/components/Chip/Chip.js +1 -1
  15. package/components/Chip/ChipStyles.js +12 -12
  16. package/components/Chip/slots/ChipSlots.d.ts +5 -5
  17. package/components/Color/Color.styles.js +11 -11
  18. package/components/Color/slots/ColorSlots.d.ts +4 -4
  19. package/components/CommonActions/components/ActionCancel/ActionCancel.js +1 -1
  20. package/components/CommonActions/components/ActionFormIntro/ActionFormIntro.js +0 -1
  21. package/components/CommonActions/components/ActionFormIntro/slots/ActionFormIntroSlots.d.ts +2 -2
  22. package/components/CommonActions/components/ActionFormIntro/types.d.ts +2 -2
  23. package/components/CommonActions/components/ActionIntro/ActionIntro.js +1 -1
  24. package/components/CommonActions/components/ActionsContainer/ActionsContainerStyles.js +1 -1
  25. package/components/DataGrid/DataGrid.js +36 -7
  26. package/components/DataGrid/Datagrid.styles.js +630 -0
  27. package/components/DataGrid/constants.d.ts +9 -0
  28. package/components/DataGrid/constants.js +9 -3
  29. package/components/DataGrid/contexts/DataGridContext/index.js +62 -13
  30. package/components/DataGrid/contexts/DataGridContext/types.d.ts +5 -2
  31. package/components/DataGrid/dictionary.d.ts +2 -1
  32. package/components/DataGrid/dictionary.js +22 -21
  33. package/components/DataGrid/formatters/ColumnIconFormatter/formatter.js +0 -2
  34. package/components/DataGrid/formatters/ColumnInteractiveCheckFormatter/formatter.js +2 -2
  35. package/components/DataGrid/icons.d.ts +1 -0
  36. package/components/DataGrid/icons.js +4 -3
  37. package/components/DataGrid/index.d.ts +1 -1
  38. package/components/DataGrid/slots/DataGridEnum.d.ts +6 -0
  39. package/components/DataGrid/slots/DataGridEnum.js +10 -2
  40. package/components/DataGrid/slots/DataGridSlot.d.ts +9 -0
  41. package/components/DataGrid/slots/DataGridSlot.js +35 -14
  42. package/components/DataGrid/subcomponents/ControlNavigate/ControlNavigate.d.ts +5 -0
  43. package/components/DataGrid/subcomponents/ControlNavigate/ControlNavigate.js +30 -0
  44. package/components/DataGrid/subcomponents/ControlNavigate/index.d.ts +2 -0
  45. package/components/DataGrid/subcomponents/ControlNavigate/types.d.ts +7 -0
  46. package/components/DataGrid/subcomponents/HeaderActions/index.d.ts +5 -0
  47. package/components/DataGrid/subcomponents/HeaderActions/index.js +40 -0
  48. package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/Density/index.js +8 -7
  49. package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/Filter/index.js +2 -2
  50. package/components/DataGrid/subcomponents/HeaderActions/subcomponents/MobileMenuActions/index.d.ts +7 -0
  51. package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/MobileMenuActions/index.js +5 -3
  52. package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/RowsCount/index.js +4 -4
  53. package/components/DataGrid/subcomponents/HeaderActions/subcomponents/Settings/index.d.ts +5 -0
  54. package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/Settings/index.js +7 -3
  55. package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/Settings/subcomponents/ColumnsConfig/index.js +57 -47
  56. package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/Settings/subcomponents/ColumnsConfig/types.d.ts +6 -1
  57. package/components/DataGrid/subcomponents/HeaderActions/subcomponents/Settings/types.d.ts +4 -0
  58. package/components/DataGrid/subcomponents/HeaderActions/subcomponents/hooks/useModalSettings/index.d.ts +8 -0
  59. package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/hooks/useModalSettings/index.js +13 -7
  60. package/components/DataGrid/subcomponents/HeaderActions/types.d.ts +5 -0
  61. package/components/DataGrid/subcomponents/Table/hooks/useSortColumnsRows.js +6 -4
  62. package/components/DataGrid/subcomponents/Table/index.js +4 -4
  63. package/components/DataGrid/subcomponents/Table/subcomponents/ActionsColumn.js +1 -1
  64. package/components/DataGrid/subcomponents/Table/subcomponents/CustomIcons.js +12 -3
  65. package/components/DataGrid/subcomponents/Table/subcomponents/DraggableHeaderRenderer.js +28 -13
  66. package/components/DataGrid/subcomponents/Table/subcomponents/SelectColumn.js +3 -3
  67. package/components/DataGrid/subcomponents/Table/subcomponents/SkeletonFormatter/index.js +4 -2
  68. package/components/DataGrid/subcomponents/editors/TextEditor/index.js +1 -1
  69. package/components/DataGrid/types.d.ts +20 -3
  70. package/components/DragResizeWindowRND/DragResizeWindowRND.styles.js +1 -1
  71. package/components/DragResizeWindowRND/slots/DragResizeWindowRNDSlots.d.ts +3 -5
  72. package/components/DynamicFilter/DynamicFilter.styles.js +13 -13
  73. package/components/DynamicFilter/dictionary.d.ts +1 -0
  74. package/components/DynamicFilter/dictionary.js +2 -1
  75. package/components/DynamicFilter/slots/dynamicFilterSlots.d.ts +17 -17
  76. package/components/DynamicFilter/store/DynamicFilterStore.js +2 -2
  77. package/components/DynamicFilter/subcomponents/AppliedFilters/AppliedFilters.js +2 -2
  78. package/components/DynamicFilter/subcomponents/AppliedFilters/useAppliedFilters.js +1 -1
  79. package/components/DynamicFilter/subcomponents/FilterActions/FilterActions.js +2 -3
  80. package/components/DynamicFilter/subcomponents/FilterActions/useFilterActions.js +2 -2
  81. package/components/DynamicFilter/subcomponents/PopoverFilter/PopoverFilter.js +3 -4
  82. package/components/DynamicFilter/subcomponents/PopoverMenuFields/PopoverMenuFields.js +0 -1
  83. package/components/DynamicFilter/types.d.ts +1 -1
  84. package/components/DynamicSort/DynamicSort.styles.js +13 -13
  85. package/components/DynamicSort/slots/DynamicSortSlots.d.ts +17 -17
  86. package/components/DynamicSort/store/DynamicSortStore.js +2 -2
  87. package/components/DynamicSort/subcomponents/AppliedSorts/AppliedSorts.js +2 -2
  88. package/components/DynamicSort/subcomponents/PopoverMenuFields/PopoverMenuFields.js +0 -1
  89. package/components/DynamicSort/subcomponents/PopoverSort/PopoverSort.js +4 -5
  90. package/components/DynamicSort/subcomponents/SortActions/SortActions.js +2 -3
  91. package/components/DynamicSort/subcomponents/SortActions/useSortActions.js +2 -2
  92. package/components/GridLayout/styles.js +4 -82
  93. package/components/HelperError/HelperError.styles.js +4 -4
  94. package/components/Icon/Icon.js +1 -1
  95. package/components/Icon/Icon.styles.js +10 -10
  96. package/components/Image/Image.js +1 -1
  97. package/components/Image/image.styles.js +1 -1
  98. package/components/Image/slots/ImageSlots.d.ts +12 -12
  99. package/components/Image/subcomponents/IntersectComponent/index.js +0 -1
  100. package/components/Image/types.d.ts +2 -2
  101. package/components/Label/Label.js +1 -1
  102. package/components/Label/Label.styles.js +22 -13
  103. package/components/LinearProgressIndeterminate/LinearProgressIndeterminate.styles.js +3 -3
  104. package/components/LoadingError/LoadingError.js +1 -2
  105. package/components/LoadingError/LoadingError.styles.js +6 -3
  106. package/components/MenuActions/MenuActions.js +3 -3
  107. package/components/MenuActions/MenuActions.styles.js +4 -4
  108. package/components/MenuActions/slots/MenuActionsSlots.d.ts +12 -12
  109. package/components/MenuActions/types.d.ts +3 -3
  110. package/components/NoItemSelected/NoItemSelected.js +23 -7
  111. package/components/NoItemSelected/NoItemSelected.styles.js +24 -17
  112. package/components/NoItemSelected/slots/NoItemSelectedSlots.d.ts +7 -7
  113. package/components/NumberInput/NumberInput.styles.js +20 -20
  114. package/components/ObjectLogs/hooks/useDetailFormatter.js +3 -2
  115. package/components/ObjectLogs/slots/ObjectLogsSlots.d.ts +20 -20
  116. package/components/ObjectLogs/subcomponents/ObjectLogsByM4L/ObjectLogsByM4L.js +1 -4
  117. package/components/ObjectLogs/subcomponents/ObjectLogsByOthers/ObjectLogsByOthers.js +1 -4
  118. package/components/ObjectLogs/types.d.ts +2 -2
  119. package/components/Pager/Pager.js +2 -3
  120. package/components/Pager/Pager.styles.js +13 -12
  121. package/components/Pager/index.d.ts +2 -0
  122. package/components/Pager/slots/PagerEnum.d.ts +2 -1
  123. package/components/Pager/slots/PagerEnum.js +1 -0
  124. package/components/Pager/slots/PagerSlots.d.ts +1 -0
  125. package/components/Pager/slots/PagerSlots.js +7 -2
  126. package/components/Pager/subcomponents/CustomTablePagination/CustomTablePagination.js +16 -18
  127. package/components/Pager/subcomponents/PagerActions/PagerActions.js +4 -2
  128. package/components/Pager/subcomponents/PagerActions/types.d.ts +1 -0
  129. package/components/PaperForm/components/Header.js +2 -2
  130. package/components/PaperForm/slots/PaperFormSlots.d.ts +10 -10
  131. package/components/PaperForm/styles.js +7 -7
  132. package/components/PaperForm/types.d.ts +2 -2
  133. package/components/PrintingSystem/slots/PrintingSystemSlots.d.ts +42 -42
  134. package/components/PrintingSystem/subcomponents/BodyNode/index.js +0 -1
  135. package/components/PrintingSystem/subcomponents/ChartNode/index.js +0 -1
  136. package/components/PrintingSystem/subcomponents/DividerNode/index.js +0 -1
  137. package/components/PrintingSystem/subcomponents/FooterNode/index.js +0 -1
  138. package/components/PrintingSystem/subcomponents/GridNode/index.js +0 -5
  139. package/components/PrintingSystem/subcomponents/HeaderNode/index.js +0 -1
  140. package/components/PrintingSystem/subcomponents/PageNode/index.js +0 -1
  141. package/components/PrintingSystem/subcomponents/PaperNode/index.js +0 -5
  142. package/components/PrintingSystem/subcomponents/PropertyValueNode/index.js +0 -2
  143. package/components/PrintingSystem/subcomponents/SectionNode/index.js +0 -1
  144. package/components/PrintingSystem/types.d.ts +2 -2
  145. package/components/PropertyValue/PropertyValue.js +3 -4
  146. package/components/PropertyValue/PropertyValue.styles.js +36 -31
  147. package/components/PropertyValue/slots/PropertyValueSlots.d.ts +3 -3
  148. package/components/ScrollBar/ScrollBar.d.ts +3 -3
  149. package/components/ScrollBar/ScrollBar.js +6 -45
  150. package/components/ScrollBar/ScrollBar.styles.js +7 -52
  151. package/components/ScrollBar/constants.d.ts +5 -2
  152. package/components/ScrollBar/constants.js +4 -4
  153. package/components/ScrollBar/index.d.ts +2 -0
  154. package/components/ScrollBar/index.js +1 -0
  155. package/components/ScrollBar/slots/ScrollBarSlots.d.ts +2 -5
  156. package/components/ScrollBar/slots/ScrollBarSlots.js +7 -13
  157. package/components/ScrollBar/slots/ScrollbarEnum.d.ts +3 -0
  158. package/components/ScrollBar/slots/ScrollbarEnum.js +7 -0
  159. package/components/ScrollBar/types.d.ts +19 -38
  160. package/components/SideBar/slots/SideBarSlots.d.ts +34 -34
  161. package/components/SideBar/subcomponents/ContentComponent/style.d.ts +2 -2
  162. package/components/SideBar/subcomponents/ContentComponent/style.js +10 -7
  163. package/components/SideBar/subcomponents/ContentGroups/index.js +3 -3
  164. package/components/SideBar/subcomponents/ContentGroups/styles.d.ts +2 -2
  165. package/components/SideBar/subcomponents/ContentGroups/styles.js +15 -3
  166. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ContainerMenuItemsMain/styles.d.ts +2 -2
  167. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ContainerMenuItemsMain/styles.js +1 -10
  168. package/components/SideBar/subcomponents/ContentGroups/subcomponents/ContainerMenuItemsMain/subcomponents/ArrowIcon/index.js +0 -1
  169. package/components/SideBar/subcomponents/FooterSidebar/styles.d.ts +2 -2
  170. package/components/SideBar/subcomponents/HeaderSidebar/index.js +2 -2
  171. package/components/SideBar/subcomponents/HeaderSidebar/styles.d.ts +2 -2
  172. package/components/SideBar/subcomponents/SideBarDesktop/styles.d.ts +2 -2
  173. package/components/SideBar/subcomponents/SideBarDesktop/styles.js +2 -2
  174. package/components/SideBar/subcomponents/SideBarMobile/index.js +0 -1
  175. package/components/SideBar/subcomponents/SideBarMobile/styles.d.ts +2 -2
  176. package/components/SideBar/types.d.ts +9 -2
  177. package/components/WindowBase/WindowBase.js +13 -7
  178. package/components/WindowBase/WindowBase.styles.js +233 -116
  179. package/components/WindowBase/icons.js +2 -2
  180. package/components/WindowBase/slots/WindowBaseEnum.d.ts +3 -3
  181. package/components/WindowBase/slots/WindowBaseEnum.js +2 -2
  182. package/components/WindowBase/slots/WindowBaseSlots.d.ts +18 -23
  183. package/components/WindowBase/slots/WindowBaseSlots.js +13 -12
  184. package/components/WindowBase/subcomponents/Header/HeaderWindowBase.js +24 -12
  185. package/components/WindowBase/subcomponents/Header/types.d.ts +1 -1
  186. package/components/WindowBase/subcomponents/Header/useButtonActions.js +5 -2
  187. package/components/WindowBase/subcomponents/MemoizedIconButton/MemoizedIconButton.d.ts +1 -1
  188. package/components/WindowBase/subcomponents/MemoizedIconButton/MemoizedIconButton.js +1 -1
  189. package/components/WindowBase/subcomponents/MemoizedIconButton/types.d.ts +9 -0
  190. package/components/WindowBase/types.d.ts +16 -0
  191. package/components/WindowConfirm/WindowConfirm.js +2 -3
  192. package/components/WindowConfirm/WindowConfirm.styles.js +5 -7
  193. package/components/areas/components/AreasAdmin/AreasAdmin.js +14 -20
  194. package/components/areas/components/AreasAdmin/AreasAdmin.styles.js +24 -23
  195. package/components/areas/components/AreasAdmin/slots/AreasAdminSlots.d.ts +21 -21
  196. package/components/areas/components/AreasAdmin/subcomponents/AreaChip/AreaChip.js +2 -5
  197. package/components/areas/components/AreasAdmin/subcomponents/AreaChipMobile/subcomponents/ChipMobile/ChipMobile.js +3 -4
  198. package/components/areas/components/AreasAdmin/types.d.ts +1 -1
  199. package/components/areas/components/AreasViewer/AreasViewer.js +12 -4
  200. package/components/areas/components/AreasViewer/AreasViewer.styles.js +7 -4
  201. package/components/areas/components/AreasViewer/slots/AreasViewerSlots.d.ts +5 -5
  202. package/components/areas/components/AreasViewer/subcomponents/Area/Area.js +2 -2
  203. package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/AreaGridLayout/AreaGridLayout.js +20 -4
  204. package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/AreaGridLayout/types.d.ts +2 -0
  205. package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/BaseArea/BaseArea.js +7 -2
  206. package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/BaseArea/types.d.ts +2 -0
  207. package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/Window.js +8 -1
  208. package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/hooks/useRightActions.js +7 -3
  209. package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/WindowModal/WindowModal.js +0 -1
  210. package/components/areas/components/AreasViewer/subcomponents/Area/types.d.ts +2 -0
  211. package/components/areas/components/AreasViewer/types.d.ts +6 -0
  212. package/components/areas/contexts/AreasContext/helpers/helper.d.ts +2 -9
  213. package/components/areas/contexts/AreasContext/helpers/helper.js +14 -16
  214. package/components/areas/contexts/AreasContext/index.js +1 -1
  215. package/components/areas/contexts/AreasContext/store.js +4 -4
  216. package/components/areas/contexts/AreasContext/types.d.ts +1 -1
  217. package/components/areas/icons.d.ts +2 -2
  218. package/components/areas/icons.js +4 -4
  219. package/components/commercial/SectionCommercial/classes/index.d.ts +2 -2
  220. package/components/commercial/SectionCommercial/classes/index.js +3 -3
  221. package/components/commercial/SectionCommercial/types.d.ts +1 -1
  222. package/components/extended/React-Resizable/helpers.d.ts +2 -9
  223. package/components/extended/React-Resizable/helpers.js +15 -13
  224. package/components/extended/React-Spinners/PropagateLoaderSpinner/PropagateLoaderSpinner.js +0 -1
  225. package/components/extended/React-Spinners/PropagateLoaderSpinner/PropagateLoaderSpinner.styles.js +1 -1
  226. package/components/extended/React-Spinners/PropagateLoaderSpinner/slots/PropagateLoaderSpinnerSlots.d.ts +4 -4
  227. package/components/extended/React-Spinners/PropagateLoaderSpinner/types.d.ts +2 -2
  228. package/components/extended/React-Splitter-Layout/slots/SplitLayoutSlots.d.ts +3 -3
  229. package/components/extended/React-resizable-panels/SplitLayout.styles.js +6 -6
  230. package/components/extended/React-resizable-panels/slots/SplitLayoutSlots.d.ts +4 -4
  231. package/components/formatters/BooleanFormatter/BooleanFormatter.js +3 -1
  232. package/components/formatters/BooleanFormatter/BooleanFormatter.styles.js +1 -1
  233. package/components/formatters/ChipStatusFormatter/slots/ChipStatusFormatterSlots.d.ts +2 -2
  234. package/components/formatters/PeriodFormatter/PeriodFormatter.styles.js +1 -1
  235. package/components/hook-form/RHFAutocomplete/RFHAutocompleteStyles.js +1 -1
  236. package/components/hook-form/RHFAutocomplete/RHFAutocomplete.js +1 -1
  237. package/components/hook-form/RHFAutocompleteAsync/RHFAutocompleteAsync.d.ts +2 -1
  238. package/components/hook-form/RHFAutocompleteAsync/reducer/RHFAutocompleteReducer.js +2 -1
  239. package/components/hook-form/RHFColorPicker/RFHColorPicker.js +1 -1
  240. package/components/hook-form/RHFDateTime/types.d.ts +1 -1
  241. package/components/hook-form/RHFPeriod/slots/RHFPeriodSlots.d.ts +2 -2
  242. package/components/hook-form/RHFSelect/RHFSelect.js +1 -1
  243. package/components/hook-form/RHFSelect/slots/RHFSlots.d.ts +1 -1
  244. package/components/hook-form/RHFSelect/slots/RHFSlots.js +1 -1
  245. package/components/hook-form/RHFTextField/RHFTextField.js +13 -17
  246. package/components/hook-form/RHFTextField/RHFTextField.styles.js +2 -1
  247. package/components/hook-form/RHFTextField/slots/RHFTextFieldSlots.d.ts +1 -1
  248. package/components/hook-form/RHFTextField/types.d.ts +1 -1
  249. package/components/hook-form/RHFTextFieldPassword/RHFTextFieldPassword.js +1 -1
  250. package/components/hook-form/RHFTextFieldPassword/RHFTextFieldPassword.styles.js +2 -2
  251. package/components/hook-form/RHFTextFieldPassword/slots/RHFTextFieldPasswordSlots.d.ts +8 -8
  252. package/components/hook-form/RHFTextFieldPassword/types.d.ts +2 -2
  253. package/components/hook-form/RHFTimePicker/types.d.ts +1 -1
  254. package/components/hook-form/RHFUpload/RHFUploadImage/RHFUploadImage.js +1 -1
  255. package/components/hook-form/RHFUpload/RHFUploadImage/RHFUploadImage.styles.js +3 -3
  256. package/components/hook-form/RHFUpload/RHFUploadImage/slots/RHFUploadImageSlots.d.ts +22 -22
  257. package/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/UploadImage.js +9 -10
  258. package/components/hook-form/RHFUpload/RHFUploadImage/types.d.ts +2 -2
  259. package/components/hook-form/RHFUpload/RHFUploadSingleFile/RHFUploadSingleFile.styles.js +2 -2
  260. package/components/hook-form/RHFUpload/RHFUploadSingleFile/slots/RHFUploadSingleFileSlots.d.ts +20 -20
  261. package/components/hook-form/RHFUpload/RHFUploadSingleFile/subcomponents/BlockContent/BlockContent.js +2 -7
  262. package/components/hook-form/RHFUpload/RHFUploadSingleFile/subcomponents/Preview/Preview.js +5 -6
  263. package/components/hook-form/RHFormContext/styles.js +2 -1
  264. package/components/index.d.ts +2 -0
  265. package/components/mui_extended/Accordion/Accordion.js +32 -22
  266. package/components/mui_extended/Accordion/slots/AccordionSlots.d.ts +12 -12
  267. package/components/mui_extended/Accordion/styles.js +60 -33
  268. package/components/mui_extended/Accordion/types.d.ts +39 -6
  269. package/components/mui_extended/Autocomplete/Autocomplete.styles.js +3 -3
  270. package/components/mui_extended/Autocomplete/hooks/useEndAdornments.js +1 -1
  271. package/components/mui_extended/Autocomplete/renderOptions/index.d.ts +3 -1
  272. package/components/mui_extended/Autocomplete/renderOptions/index.js +3 -2
  273. package/components/mui_extended/Autocomplete/slots/AutocompleteSlots.d.ts +14 -14
  274. package/components/mui_extended/Avatar/Avatar.js +1 -1
  275. package/components/mui_extended/Avatar/styles.js +3 -3
  276. package/components/mui_extended/Badge/Badge.js +1 -2
  277. package/components/mui_extended/Badge/Badge.styles.js +9 -9
  278. package/components/mui_extended/Badge/slots/BadgeSlots.d.ts +2 -2
  279. package/components/mui_extended/Badge/types.d.ts +2 -2
  280. package/components/mui_extended/Button/Button.js +4 -5
  281. package/components/mui_extended/Button/ButtonStyles.js +37 -26
  282. package/components/mui_extended/CheckBox/CheckBox.js +2 -2
  283. package/components/mui_extended/CheckBox/CheckBox.styles.js +12 -12
  284. package/components/mui_extended/CheckBox/slots/CheckBoxSlots.d.ts +12 -12
  285. package/components/mui_extended/CheckBox/types.d.ts +2 -2
  286. package/components/mui_extended/CircularProgress/CircularProgress.styles.js +5 -5
  287. package/components/mui_extended/DateTimePicker/DateTimePicker.styles.js +49 -49
  288. package/components/mui_extended/DateTimePicker/slots/DateTimePickerSlots.d.ts +8 -8
  289. package/components/mui_extended/Divider/Divider.js +1 -2
  290. package/components/mui_extended/Divider/Divider.styles.js +9 -9
  291. package/components/mui_extended/IconButton/IconButton.js +3 -2
  292. package/components/mui_extended/IconButton/IconButton.styles.js +21 -21
  293. package/components/mui_extended/IconButton/helpers/getIconButtonColors.d.ts +1 -1
  294. package/components/mui_extended/IconButton/helpers/getIconButtonColors.js +4 -4
  295. package/components/mui_extended/IconButton/slots/IconButtonSlots.d.ts +4 -4
  296. package/components/mui_extended/IconButton/types.d.ts +1 -1
  297. package/components/mui_extended/LoadingButton/LoadingButton.js +1 -1
  298. package/components/mui_extended/LoadingButton/LoadingButton.styles.js +5 -5
  299. package/components/mui_extended/MenuDivider/MenuDivider.js +1 -2
  300. package/components/mui_extended/MenuDivider/MenuDivider.styles.js +9 -9
  301. package/components/mui_extended/MenuItem/MenuItem.styles.js +10 -10
  302. package/components/mui_extended/MenuItem/slots/MenuItemSlots.d.ts +6 -6
  303. package/components/mui_extended/MenuItem/types.d.ts +8 -3
  304. package/components/mui_extended/NavLink/NavLink.js +1 -2
  305. package/components/mui_extended/NavLink/NavLink.styles.js +9 -9
  306. package/components/mui_extended/NavLink/slots/NavLinkSlots.d.ts +4 -4
  307. package/components/mui_extended/Popover/Popover.js +0 -1
  308. package/components/mui_extended/Popover/slots/PopoverSlots.d.ts +2 -2
  309. package/components/mui_extended/Popover/types.d.ts +3 -3
  310. package/components/mui_extended/Popper/PopperStyles.js +1 -1
  311. package/components/mui_extended/Select/Select.js +2 -3
  312. package/components/mui_extended/Select/Select.styles.js +10 -10
  313. package/components/mui_extended/Select/slots/SelectSlots.d.ts +11 -11
  314. package/components/mui_extended/Select/slots/SelectSlots.js +1 -1
  315. package/components/mui_extended/Skeleton/Skeleton.js +2 -2
  316. package/components/mui_extended/Skeleton/skeleton.styles.js +6 -5
  317. package/components/mui_extended/Skeleton/types.d.ts +1 -1
  318. package/components/mui_extended/Stack/Stack.styles.js +3 -3
  319. package/components/mui_extended/Stack/slots/StackSlot.d.ts +1 -1
  320. package/components/mui_extended/Tab/Tab.js +2 -0
  321. package/components/mui_extended/Tab/Tab.styles.js +27 -49
  322. package/components/mui_extended/Tab/types.d.ts +4 -0
  323. package/components/mui_extended/TabContent/TabContent.js +2 -2
  324. package/components/mui_extended/TabContent/TabContent.styles.js +13 -7
  325. package/components/mui_extended/TabContent/index.d.ts +1 -0
  326. package/components/mui_extended/TabContent/slots/TabContentSlots.d.ts +2 -2
  327. package/components/mui_extended/TabContent/types.d.ts +3 -2
  328. package/components/mui_extended/Tabs/Tabs.styles.js +2 -1
  329. package/components/mui_extended/TextField/TextField.js +11 -6
  330. package/components/mui_extended/TextField/TextField.styles.js +71 -68
  331. package/components/mui_extended/TextField/constants.d.ts +1 -0
  332. package/components/mui_extended/TextField/slots/TextFieldEnum.d.ts +2 -1
  333. package/components/mui_extended/TextField/slots/TextFieldEnum.js +1 -0
  334. package/components/mui_extended/TextField/slots/TextFieldSlots.d.ts +3 -3
  335. package/components/mui_extended/TextField/types.d.ts +7 -0
  336. package/components/mui_extended/TimePicker/slots/TimePickerSlots.d.ts +6 -6
  337. package/components/mui_extended/Tooltip/Tooltip.styles.js +1 -1
  338. package/components/mui_extended/Tooltip/slots/TooltipSlots.d.ts +3 -3
  339. package/components/mui_extended/Typography/Typography.js +2 -1
  340. package/components/mui_extended/Typography/slots/typographySlots.d.ts +4 -4
  341. package/components/mui_extended/Typography/types.d.ts +3 -2
  342. package/components/mui_extended/Typography/typography.styles.js +12 -9
  343. package/components/mui_extended/index.d.ts +0 -2
  344. package/components/popups/components/PopupsViewer/PopupsViewer.styles.js +4 -4
  345. package/components/popups/components/PopupsViewer/slots/popupsViewerSlots.d.ts +7 -9
  346. package/components/popups/components/PopupsViewer/subcomponents/Popup/Popup.js +2 -0
  347. package/hooks/useComponentSize/useComponentSize.d.ts +3 -3
  348. package/hooks/useComponentSize/useComponentSize.js +5 -2
  349. package/hooks/useDynamicFilterAndSort/icons.d.ts +2 -2
  350. package/hooks/useDynamicFilterAndSort/icons.js +2 -2
  351. package/hooks/useDynamicFilterAndSort/slots/DynamicFilterAndSortSlots.d.ts +6 -6
  352. package/hooks/useDynamicFilterAndSort/styles.js +8 -7
  353. package/hooks/useDynamicFilterAndSort/types.d.ts +2 -2
  354. package/hooks/useDynamicFilterAndSort/useDynamicFilterAndSort.js +16 -10
  355. package/index.js +57 -55
  356. package/package.json +1 -1
  357. package/storybook/components/Chip/Chip.stories.d.ts +4 -0
  358. package/storybook/components/DataGrid/DataGrid.stories.d.ts +16 -0
  359. package/storybook/components/Icon/Icon.stories.d.ts +4 -0
  360. package/storybook/components/NoItemSelect/NoItemSelect.stories.d.ts +4 -0
  361. package/storybook/components/ObjectLogs/ObjectLogs.stories.d.ts +2 -2
  362. package/storybook/components/PropertyValue/PropertyValue.stories.d.ts +5 -1
  363. package/storybook/components/{extended/scrollBar → ScrollBar}/ScrollBar.stories.d.ts +2 -2
  364. package/storybook/components/WindowBase/windowBase.stories.d.ts +64 -7
  365. package/storybook/components/extended/mui/Accordion/Accordion.stories.d.ts +72 -20
  366. package/storybook/components/extended/mui/Tab/Tab.stories.d.ts +24 -24
  367. package/storybook/components/extended/mui/TextField/TextFieldText.stories.d.ts +11 -0
  368. package/storybook/hook-form/RHFTextField/RHFTextField.stories.d.ts +13 -0
  369. package/storybook/wrappers/LineGuide/LineGuide.d.ts +9 -0
  370. package/storybook/wrappers/LineGuide/styles.d.ts +1 -0
  371. package/storybook/wrappers/LineGuide/types.d.ts +5 -0
  372. package/components/DataGrid/styles.js +0 -484
  373. package/components/DataGrid/subcomponents/Actions/index.d.ts +0 -5
  374. package/components/DataGrid/subcomponents/Actions/index.js +0 -48
  375. package/components/DataGrid/subcomponents/Actions/subcomponents/MobileMenuActions/index.d.ts +0 -4
  376. package/components/DataGrid/subcomponents/Actions/subcomponents/Settings/index.d.ts +0 -4
  377. package/components/DataGrid/subcomponents/Actions/subcomponents/hooks/useModalSettings/index.d.ts +0 -6
  378. package/components/DataGrid/subcomponents/Actions/subcomponents/types.d.ts +0 -2
  379. package/components/DataGrid/subcomponents/Actions/types.d.ts +0 -13
  380. package/components/ScrollBar/slots/ScrollBarEnum.d.ts +0 -4
  381. package/components/ScrollBar/slots/ScrollBarEnum.js +0 -8
  382. package/components/ScrollBar/slots/index.d.ts +0 -2
  383. package/storybook/components/extended/scrollBar/ScrollBarDecorator.d.ts +0 -11
  384. /package/components/DataGrid/{styles.d.ts → Datagrid.styles.d.ts} +0 -0
  385. /package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/Density/index.d.ts +0 -0
  386. /package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/Density/types.d.ts +0 -0
  387. /package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/Filter/index.d.ts +0 -0
  388. /package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/RowsCount/index.d.ts +0 -0
  389. /package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/Settings/subcomponents/ColumnsConfig/index.d.ts +0 -0
  390. /package/components/DataGrid/subcomponents/{Actions → HeaderActions}/subcomponents/hooks/useModalSettings/types.d.ts +0 -0
  391. /package/components/{ScrollBar/slots → Pager}/index.js +0 -0
@@ -4,7 +4,7 @@ export declare const RHFTextFieldRootStyled: import('@emotion/styled').StyledCom
4
4
  export declare const LabelStyled: import('@emotion/styled').StyledComponent<Pick<import('../../../Label').LabelProps, keyof import('../../../Label').LabelProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('..').RHFTextFieldOwnerState> & Record<string, unknown> & {
5
5
  ownerState: Partial<import('..').RHFTextFieldOwnerState> & Record<string, unknown>;
6
6
  }, {}, {}>;
7
- export declare const TextFieldStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../../mui_extended/TextField/types').TextFieldProps, "ref"> & import('react').RefAttributes<HTMLDivElement>, "value" | "size" | "children" | "title" | "component" | "name" | "error" | "select" | "rows" | "id" | "type" | "disabled" | "hidden" | "content" | "style" | "variant" | "margin" | "translate" | "className" | "classes" | "sx" | "label" | "slot" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "dataTestId" | "autoComplete" | "placeholder" | "required" | keyof import('react').RefAttributes<HTMLDivElement> | "maxRows" | "fullWidth" | "inputProps" | "inputRef" | "SelectProps" | "multiline" | "minRows" | "hiddenLabel" | "focused" | "InputProps" | "FormHelperTextProps" | "helperText" | "InputLabelProps"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('..').RHFTextFieldOwnerState> & Record<string, unknown> & {
7
+ export declare const TextFieldStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../../mui_extended/TextField/types').TextFieldProps, "ref"> & import('react').RefAttributes<HTMLDivElement>, "value" | "size" | "children" | "title" | "component" | "name" | "error" | "select" | "rows" | "id" | "type" | "disabled" | "hidden" | "content" | "style" | "variant" | "margin" | "translate" | "className" | "classes" | "sx" | "label" | "slot" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "dataTestId" | "autoComplete" | "placeholder" | "required" | keyof import('react').RefAttributes<HTMLDivElement> | "maxRows" | "fullWidth" | "inputProps" | "inputRef" | "focused" | "hiddenLabel" | "InputProps" | "FormHelperTextProps" | "helperText" | "InputLabelProps" | "multiline" | "minRows" | "SelectProps"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('..').RHFTextFieldOwnerState> & Record<string, unknown> & {
8
8
  ownerState: Partial<import('..').RHFTextFieldOwnerState> & Record<string, unknown>;
9
9
  }, {}, {}>;
10
10
  export declare const HelperErrorStyled: import('@emotion/styled').StyledComponent<Pick<import('../../../HelperError').HelperErrorProps & import('react').RefAttributes<HTMLLabelElement>, keyof import('../../../HelperError').HelperErrorProps | keyof import('react').RefAttributes<HTMLLabelElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('..').RHFTextFieldOwnerState> & Record<string, unknown> & {
@@ -6,7 +6,7 @@ import { LabelProps } from '../../Label/types';
6
6
  import { RHFTextFieldSlots } from './slots';
7
7
  import { RHF_TEXT_FIELD_KEY_COMPONENT } from './constant';
8
8
  import { ComponentPalletColor } from '@m4l/styles';
9
- export interface RHFTextFieldProps extends Omit<TextFieldProps, 'size' | 'inputProps' | 'label' | 'theme' | 'error'>, Omit<LabelProps, 'label' | 'error' | 'helperText'> {
9
+ export interface RHFTextFieldProps extends Omit<TextFieldProps, 'size' | 'label' | 'theme' | 'error'>, Omit<LabelProps, 'label' | 'error' | 'helperText'> {
10
10
  /**
11
11
  * Valor de anchura total para la vista de carga provisional.
12
12
  * @deprecated
@@ -22,7 +22,7 @@ const RHFTextFieldPassword = (props) => {
22
22
  const adjustedSize = currentSize === "small" || currentSize === "medium" ? currentSize : "medium";
23
23
  const { host_static_assets, environment_assets } = useEnvironment();
24
24
  const { control } = useFormContext();
25
- return /* @__PURE__ */ jsx(RHFTextFieldPasswordRoot, { ownerState: {}, children: /* @__PURE__ */ jsx(
25
+ return /* @__PURE__ */ jsx(RHFTextFieldPasswordRoot, { children: /* @__PURE__ */ jsx(
26
26
  Controller,
27
27
  {
28
28
  name,
@@ -12,7 +12,7 @@ const rhfTextFieldPasswordStyles = {
12
12
  minHeight: "100%",
13
13
  ...getHeightSizeStyles(
14
14
  theme.generalSettings.isMobile,
15
- ownerState.size || "medium",
15
+ ownerState?.size || "medium",
16
16
  "action"
17
17
  )
18
18
  }
@@ -57,7 +57,7 @@ const rhfTextFieldPasswordStyles = {
57
57
  "&:hover": {
58
58
  backgroundColor: "transparent"
59
59
  },
60
- ...ownerState.error && {
60
+ ...ownerState?.error && {
61
61
  "& .MuiIconButton-root": {
62
62
  color: theme.vars.palette.error.semanticText
63
63
  }
@@ -1,12 +1,12 @@
1
- export declare const RHFTextFieldPasswordRoot: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../..').RHFTextFieldOwnerState> & Record<string, unknown> & {
2
- ownerState: Partial<import('../..').RHFTextFieldOwnerState> & Record<string, unknown>;
1
+ export declare const RHFTextFieldPasswordRoot: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown> & {
2
+ ownerState?: (Partial<import('../..').RHFTextFieldOwnerState> & Record<string, unknown>) | undefined;
3
3
  }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
4
- export declare const TextFieldStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../../mui_extended/TextField/types').TextFieldProps, "ref"> & import('react').RefAttributes<HTMLDivElement>, "value" | "size" | "children" | "title" | "component" | "name" | "error" | "select" | "rows" | "id" | "type" | "disabled" | "hidden" | "content" | "style" | "variant" | "margin" | "translate" | "className" | "classes" | "sx" | "label" | "slot" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "dataTestId" | "autoComplete" | "placeholder" | "required" | keyof import('react').RefAttributes<HTMLDivElement> | "maxRows" | "fullWidth" | "inputProps" | "inputRef" | "SelectProps" | "multiline" | "minRows" | "hiddenLabel" | "focused" | "InputProps" | "FormHelperTextProps" | "helperText" | "InputLabelProps"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../..').RHFTextFieldOwnerState> & Record<string, unknown> & {
5
- ownerState: Partial<import('../..').RHFTextFieldOwnerState> & Record<string, unknown>;
4
+ export declare const TextFieldStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../../mui_extended/TextField/types').TextFieldProps, "ref"> & import('react').RefAttributes<HTMLDivElement>, "value" | "size" | "children" | "title" | "component" | "name" | "error" | "select" | "rows" | "id" | "type" | "disabled" | "hidden" | "content" | "style" | "variant" | "margin" | "translate" | "className" | "classes" | "sx" | "label" | "slot" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "dataTestId" | "autoComplete" | "placeholder" | "required" | keyof import('react').RefAttributes<HTMLDivElement> | "maxRows" | "fullWidth" | "inputProps" | "inputRef" | "focused" | "hiddenLabel" | "InputProps" | "FormHelperTextProps" | "helperText" | "InputLabelProps" | "multiline" | "minRows" | "SelectProps"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown> & {
5
+ ownerState?: (Partial<import('../..').RHFTextFieldOwnerState> & Record<string, unknown>) | undefined;
6
6
  }, {}, {}>;
7
- export declare const IconButtonStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../../mui_extended/IconButton/types').IconButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "selected" | "disabled" | "action" | "hidden" | "color" | "content" | "style" | "icon" | "tooltip" | "variant" | "translate" | "className" | "classes" | "src" | "sx" | "form" | "slot" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "instaceDataTestId" | "placement" | "rotationAngle" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "edge" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "badgeProps" | keyof import('react').RefAttributes<HTMLButtonElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../..').RHFTextFieldOwnerState> & Record<string, unknown> & {
8
- ownerState: Partial<import('../..').RHFTextFieldOwnerState> & Record<string, unknown>;
7
+ export declare const IconButtonStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../../mui_extended/IconButton/types').IconButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "selected" | "disabled" | "action" | "hidden" | "color" | "content" | "style" | "icon" | "tooltip" | "variant" | "translate" | "className" | "classes" | "src" | "sx" | "form" | "slot" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "instaceDataTestId" | "placement" | "rotationAngle" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "edge" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "badgeProps" | keyof import('react').RefAttributes<HTMLButtonElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown> & {
8
+ ownerState?: (Partial<import('../..').RHFTextFieldOwnerState> & Record<string, unknown>) | undefined;
9
9
  }, {}, {}>;
10
- export declare const LabelStyled: import('@emotion/styled').StyledComponent<Pick<import('../../../Label').LabelProps, keyof import('../../../Label').LabelProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../..').RHFTextFieldOwnerState> & Record<string, unknown> & {
11
- ownerState: Partial<import('../..').RHFTextFieldOwnerState> & Record<string, unknown>;
10
+ export declare const LabelStyled: import('@emotion/styled').StyledComponent<Pick<import('../../../Label').LabelProps, keyof import('../../../Label').LabelProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown> & {
11
+ ownerState?: (Partial<import('../..').RHFTextFieldOwnerState> & Record<string, unknown>) | undefined;
12
12
  }, {}, {}>;
@@ -1,11 +1,11 @@
1
- import { OverridesStyleRules } from '@mui/material/styles/overrides';
2
1
  import { RHFTextFieldProps } from '../RHFTextField/types';
3
2
  import { RHFTextFieldPasswordSlots } from './slots';
4
3
  import { RHF_TEXT_FIELD_PASSWORD_KEY_COMPONENT } from './constanst';
5
4
  import { Theme } from '@mui/material';
5
+ import { M4LOverridesStyleRules } from '../../../@types/augmentations';
6
6
  export type RHFTextFieldPasswordProps = RHFTextFieldProps;
7
7
  export type RHFTextFieldPasswordOwnerState = RHFTextFieldPasswordProps & {
8
8
  error?: boolean;
9
9
  };
10
10
  export type RHFTextFieldPasswordSlotsType = keyof typeof RHFTextFieldPasswordSlots;
11
- export type RHFTextFieldPasswordStyles = OverridesStyleRules<RHFTextFieldPasswordSlotsType, typeof RHF_TEXT_FIELD_PASSWORD_KEY_COMPONENT, Theme>;
11
+ export type RHFTextFieldPasswordStyles = M4LOverridesStyleRules<RHFTextFieldPasswordSlotsType, typeof RHF_TEXT_FIELD_PASSWORD_KEY_COMPONENT, Theme>;
@@ -1,7 +1,7 @@
1
1
  import { Sizes } from '@m4l/styles';
2
2
  import { TextFieldVariants } from '../../../components/mui_extended/TextField/types';
3
3
  import { LabelProps } from '../../Label/types';
4
- import { M4LOverridesStyleRules } from '../../../../src/@types/augmentations';
4
+ import { M4LOverridesStyleRules } from '../../../@types/augmentations';
5
5
  import { Theme } from '@mui/material';
6
6
  import { RHF_TIME_PICKER_KEY_COMPONENT } from './constants';
7
7
  import { RHFTimePickerSlots } from './slots/RHFTimePickerEnum';
@@ -20,7 +20,7 @@ function RHFUploadImage(props) {
20
20
  const { currentSize } = useComponentSize(size);
21
21
  const adjustedSize = currentSize === "small" || currentSize === "medium" ? currentSize : "medium";
22
22
  const { control } = useFormContext();
23
- return /* @__PURE__ */ jsx(RHFUploadImageRootStyled, { ownerState: {}, children: /* @__PURE__ */ jsx(
23
+ return /* @__PURE__ */ jsx(RHFUploadImageRootStyled, { children: /* @__PURE__ */ jsx(
24
24
  Controller,
25
25
  {
26
26
  name,
@@ -18,13 +18,13 @@ const rhfUploadImageStyles = {
18
18
  borderRadius: theme.vars.size.borderRadius.r1,
19
19
  borderColor: theme.vars.palette.border.default,
20
20
  width: "100%",
21
- ...ownerState.isDragAccept && {
21
+ ...ownerState?.isDragAccept && {
22
22
  borderColor: theme.vars.palette.primary.main
23
23
  },
24
- ...ownerState.isDragReject && {
24
+ ...ownerState?.isDragReject && {
25
25
  borderColor: theme.vars.palette.error.main
26
26
  },
27
- ...ownerState.error && {
27
+ ...ownerState?.error && {
28
28
  borderColor: theme.vars.palette.error.main
29
29
  }
30
30
  }),
@@ -1,33 +1,33 @@
1
- export declare const RHFUploadImageRootStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown> & {
2
- ownerState: Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown>;
1
+ export declare const RHFUploadImageRootStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
2
+ ownerState?: (Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown>) | undefined;
3
3
  }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
4
- export declare const UploadImageRootStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown> & {
5
- ownerState: Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown>;
4
+ export declare const UploadImageRootStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
5
+ ownerState?: (Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown>) | undefined;
6
6
  }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
7
- export declare const ContentModuleLayoutStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown> & {
8
- ownerState: Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown>;
7
+ export declare const ContentModuleLayoutStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
8
+ ownerState?: (Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown>) | undefined;
9
9
  }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
10
- export declare const ContentImageStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown> & {
11
- ownerState: Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown>;
10
+ export declare const ContentImageStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
11
+ ownerState?: (Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown>) | undefined;
12
12
  }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
13
- export declare const ContentImageTextStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown> & {
14
- ownerState: Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown>;
13
+ export declare const ContentImageTextStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
14
+ ownerState?: (Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown>) | undefined;
15
15
  }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
16
- export declare const ContentMessageStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown> & {
17
- ownerState: Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown>;
16
+ export declare const ContentMessageStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
17
+ ownerState?: (Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown>) | undefined;
18
18
  }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
19
- export declare const TypographyStyled: import('@emotion/styled').StyledComponent<Pick<import('../../../../mui_extended/Typography/types').TypographyProps, keyof import('../../../../mui_extended/Typography/types').TypographyProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown> & {
20
- ownerState: Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown>;
19
+ export declare const TypographyStyled: import('@emotion/styled').StyledComponent<Pick<import('../../../../mui_extended/Typography/types').TypographyProps, keyof import('../../../../mui_extended/Typography/types').TypographyProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
20
+ ownerState?: (Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown>) | undefined;
21
21
  }, {}, {}>;
22
- export declare const ButtonStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../../../mui_extended/Button').ButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "disabled" | "action" | "hidden" | "color" | "content" | "style" | "variant" | "translate" | "className" | "classes" | "sx" | "form" | "label" | "slot" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "href" | "skeletonWidth" | "startIcon" | "endIcon" | keyof import('react').RefAttributes<HTMLButtonElement> | "disableElevation" | "fullWidth"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown> & {
23
- ownerState: Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown>;
22
+ export declare const ButtonStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../../../mui_extended/Button').ButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "disabled" | "action" | "hidden" | "color" | "content" | "style" | "variant" | "translate" | "className" | "classes" | "sx" | "form" | "label" | "slot" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "href" | "skeletonWidth" | "startIcon" | "endIcon" | keyof import('react').RefAttributes<HTMLButtonElement> | "disableElevation" | "fullWidth"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
23
+ ownerState?: (Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown>) | undefined;
24
24
  }, {}, {}>;
25
- export declare const IconButtonRemoveStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../../../mui_extended/IconButton/types').IconButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "selected" | "disabled" | "action" | "hidden" | "color" | "content" | "style" | "icon" | "tooltip" | "variant" | "translate" | "className" | "classes" | "src" | "sx" | "form" | "slot" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "instaceDataTestId" | "placement" | "rotationAngle" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "edge" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "badgeProps" | keyof import('react').RefAttributes<HTMLButtonElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown> & {
26
- ownerState: Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown>;
25
+ export declare const IconButtonRemoveStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../../../mui_extended/IconButton/types').IconButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "selected" | "disabled" | "action" | "hidden" | "color" | "content" | "style" | "icon" | "tooltip" | "variant" | "translate" | "className" | "classes" | "src" | "sx" | "form" | "slot" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "instaceDataTestId" | "placement" | "rotationAngle" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "edge" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "badgeProps" | keyof import('react').RefAttributes<HTMLButtonElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
26
+ ownerState?: (Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown>) | undefined;
27
27
  }, {}, {}>;
28
- export declare const ContainPreviewStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown> & {
29
- ownerState: Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown>;
28
+ export declare const ContainPreviewStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
29
+ ownerState?: (Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown>) | undefined;
30
30
  }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
31
- export declare const DividerStyled: import('@emotion/styled').StyledComponent<Pick<import('../../../../mui_extended/Divider/types').DividerProps, keyof import('../../../../mui_extended/Divider/types').DividerProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown> & {
32
- ownerState: Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown>;
31
+ export declare const DividerStyled: import('@emotion/styled').StyledComponent<Pick<import('../../../../mui_extended/Divider/types').DividerProps, keyof import('../../../../mui_extended/Divider/types').DividerProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
32
+ ownerState?: (Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown>) | undefined;
33
33
  }, {}, {}>;
@@ -55,11 +55,10 @@ const UploadImage = (props) => {
55
55
  ...getPropDataTestId(RHF_UPLOAD_IMAGE_KEY_COMPONENT, UploadImageSlots.contentModuleLayout, dataTestId),
56
56
  ...getRootProps(),
57
57
  children: [
58
- file ? /* @__PURE__ */ jsxs(ContainPreviewStyled, { ownerState: {}, children: [
58
+ file ? /* @__PURE__ */ jsxs(ContainPreviewStyled, { children: [
59
59
  /* @__PURE__ */ jsx(
60
60
  IconButtonRemoveStyled,
61
61
  {
62
- ownerState: {},
63
62
  variant: "contained",
64
63
  icon: `${host_static_assets}/${environment_assets}/frontend/components/chip/assets/icons/closeSmall.svg`,
65
64
  onClick: onRemove,
@@ -80,8 +79,8 @@ const UploadImage = (props) => {
80
79
  ...getInputProps()
81
80
  }
82
81
  ),
83
- /* @__PURE__ */ jsxs(ContentImageStyled, { ownerState: {}, children: [
84
- /* @__PURE__ */ jsxs(ContentImageTextStyled, { ownerState: {}, children: [
82
+ /* @__PURE__ */ jsxs(ContentImageStyled, { children: [
83
+ /* @__PURE__ */ jsxs(ContentImageTextStyled, { children: [
85
84
  /* @__PURE__ */ jsx(
86
85
  Image,
87
86
  {
@@ -93,15 +92,15 @@ const UploadImage = (props) => {
93
92
  ),
94
93
  /* @__PURE__ */ jsx(Typography, { skeletonWidth: 100, variant: "bodyDens", size: adjustedSize, children: getLabel(getUploadImageDictionary(COMPONENTS_DICTIONARY_KEYS.title_upload)) })
95
94
  ] }),
96
- /* @__PURE__ */ jsx(TypographyStyled, { skeletonWidth: 200, skeletonRows: 2, ownerState: {}, variant: "body", size: adjustedSize, children: getLabel(getUploadImageDictionary(COMPONENTS_DICTIONARY_KEYS.description)) }),
97
- /* @__PURE__ */ jsxs(ContentMessageStyled, { ownerState: {}, children: [
98
- /* @__PURE__ */ jsx(DividerStyled, { ownerState: {}, orientation: "horizontal", customVariant: "solid", size: adjustedSize }),
99
- /* @__PURE__ */ jsx(TypographyStyled, { skeletonWidth: 10, ownerState: {}, variant: "body", size: adjustedSize, children: getLabel(getUploadImageDictionary(COMPONENTS_DICTIONARY_KEYS.divider_text)) }),
100
- /* @__PURE__ */ jsx(DividerStyled, { ownerState: {}, orientation: "horizontal", customVariant: "solid", size: adjustedSize })
95
+ /* @__PURE__ */ jsx(TypographyStyled, { skeletonWidth: 200, skeletonRows: 2, variant: "body", size: adjustedSize, children: getLabel(getUploadImageDictionary(COMPONENTS_DICTIONARY_KEYS.description)) }),
96
+ /* @__PURE__ */ jsxs(ContentMessageStyled, { children: [
97
+ /* @__PURE__ */ jsx(DividerStyled, { orientation: "horizontal", customVariant: "solid", size: adjustedSize }),
98
+ /* @__PURE__ */ jsx(TypographyStyled, { skeletonWidth: 10, variant: "body", size: adjustedSize, children: getLabel(getUploadImageDictionary(COMPONENTS_DICTIONARY_KEYS.divider_text)) }),
99
+ /* @__PURE__ */ jsx(DividerStyled, { orientation: "horizontal", customVariant: "solid", size: adjustedSize })
101
100
  ] })
102
101
  ] })
103
102
  ] }),
104
- !file ? /* @__PURE__ */ jsx(ButtonStyled, { ownerState: {}, variant: "contained", color: "primary", onClick: open, label: getLabel(getUploadImageDictionary(COMPONENTS_DICTIONARY_KEYS.click_button)), size: adjustedSize }) : null
103
+ !file ? /* @__PURE__ */ jsx(ButtonStyled, { variant: "contained", color: "primary", onClick: open, label: getLabel(getUploadImageDictionary(COMPONENTS_DICTIONARY_KEYS.click_button)), size: adjustedSize }) : null
105
104
  ]
106
105
  }
107
106
  )
@@ -1,9 +1,9 @@
1
1
  import { Theme } from '@mui/material/styles';
2
- import { OverridesStyleRules } from '@mui/material/styles/overrides';
3
2
  import { LabelProps } from '../../../../components/Label';
4
3
  import { RHF_UPLOAD_IMAGE_KEY_COMPONENT } from './constants';
5
4
  import { UploadImageSlots as Slots } from './slots/RHFUploadImageEnum';
6
5
  import { UploadImageProps } from './subcomponents/UploadImage/types';
6
+ import { M4LOverridesStyleRules } from '../../../../@types/augmentations';
7
7
  export interface RHFUploadImageProps extends Omit<UploadImageProps, 'file' | 'onDrop' | 'onRemove'>, Omit<LabelProps, 'size' | 'error' | 'disabled' | 'children'> {
8
8
  name: string;
9
9
  }
@@ -13,4 +13,4 @@ export type RHFUploadImageOwnerState = {
13
13
  isDragReject: boolean;
14
14
  error: boolean;
15
15
  };
16
- export type RHFUploadImageStyles = OverridesStyleRules<RHFUploadImageSlotsType, typeof RHF_UPLOAD_IMAGE_KEY_COMPONENT, Theme>;
16
+ export type RHFUploadImageStyles = M4LOverridesStyleRules<RHFUploadImageSlotsType, typeof RHF_UPLOAD_IMAGE_KEY_COMPONENT, Theme>;
@@ -35,7 +35,7 @@ const rhfUploadSingleFileStyles = {
35
35
  backgroundColor: theme.vars.palette.background.neutral,
36
36
  borderRadius: theme.vars.size.borderRadius["r0-5"],
37
37
  padding: theme.vars.size.baseSpacings.sp4,
38
- cursor: ownerState.isSkeleton ? "default" : "pointer"
38
+ cursor: ownerState?.isSkeleton ? "default" : "pointer"
39
39
  }),
40
40
  /**
41
41
  * estilos containerBlockContent
@@ -46,7 +46,7 @@ const rhfUploadSingleFileStyles = {
46
46
  alignItems: "center",
47
47
  width: "100%",
48
48
  height: "100%",
49
- display: ownerState.hidden ? "none" : "flex",
49
+ display: ownerState?.hidden ? "none" : "flex",
50
50
  gap: theme.vars.size.baseSpacings.sp4
51
51
  }),
52
52
  label: () => ({