@m4l/components 9.1.125 → 9.1.127

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 (579) hide show
  1. package/.storybook/constants.d.ts +1 -0
  2. package/.storybook/utils/getStylesColorsByMode.d.ts +4 -4
  3. package/@types/export.d.ts +0 -3
  4. package/@types/types.d.ts +19 -9
  5. package/components/Chip/Chip.js +1 -2
  6. package/components/Chip/ChipStyles.js +49 -35
  7. package/components/Chip/types.d.ts +0 -4
  8. package/components/CommonActions/classes/index.js +1 -1
  9. package/components/DataGrid/formatters/index.d.ts +1 -0
  10. package/components/DragResizeWindow/index.d.ts +1 -2
  11. package/components/DynamicFilter/DynamicFIlter.styles.js +1 -1
  12. package/components/DynamicFilter/constants.d.ts +3 -2
  13. package/components/DynamicFilter/constants.js +4 -2
  14. package/components/DynamicFilter/helpers/formatToInitialFilters.js +3 -3
  15. package/components/DynamicFilter/helpers/formatToRowFilter.js +6 -2
  16. package/components/DynamicFilter/helpers/getPurgedInitialFiltersApplied.d.ts +2 -2
  17. package/components/DynamicFilter/index.d.ts +1 -1
  18. package/components/DynamicFilter/slots/dynamicFilterSlots.d.ts +28 -28
  19. package/components/DynamicFilter/store/DynamicFilterContext.d.ts +1 -9
  20. package/components/DynamicFilter/store/DynamicFilterContext.js +7 -4
  21. package/components/DynamicFilter/store/DynamicFilterStore.d.ts +3 -199
  22. package/components/DynamicFilter/store/DynamicFilterStore.js +28 -14
  23. package/components/DynamicFilter/store/DynamicFilterStoreTypes.d.ts +200 -0
  24. package/components/DynamicFilter/store/useDynamicFilterStore.d.ts +1 -1
  25. package/components/DynamicFilter/store/useDynamicFilterStore.js +1 -1
  26. package/components/DynamicFilter/subcomponents/AppliedFilterChip/AppliedFilterChip.js +2 -2
  27. package/components/DynamicFilter/subcomponents/AppliedFilterChip/useAppliedFilterChip.js +4 -3
  28. package/components/DynamicFilter/subcomponents/AppliedFilters/AppliedFilters.js +1 -1
  29. package/components/DynamicFilter/subcomponents/FieldTypes/BooleanFilter/helpers.d.ts +5 -5
  30. package/components/DynamicFilter/subcomponents/FieldTypes/DateTimeFilter/helpers.d.ts +5 -5
  31. package/components/DynamicFilter/subcomponents/FieldTypes/DateTimeFilter/helpers.js +2 -2
  32. package/components/DynamicFilter/subcomponents/FieldTypes/DateTimeFilter/index.js +1 -1
  33. package/components/DynamicFilter/subcomponents/FieldTypes/FieldTypeInterface.d.ts +5 -5
  34. package/components/DynamicFilter/subcomponents/FieldTypes/NumberFilter/helpers.d.ts +5 -5
  35. package/components/DynamicFilter/subcomponents/FieldTypes/SelectAsyncFilter/helpers.d.ts +42 -0
  36. package/components/DynamicFilter/subcomponents/FieldTypes/SelectAsyncFilter/helpers.js +121 -0
  37. package/components/DynamicFilter/subcomponents/FieldTypes/SelectAsyncFilter/index.d.ts +5 -0
  38. package/components/DynamicFilter/subcomponents/FieldTypes/SelectAsyncFilter/index.js +49 -0
  39. package/components/DynamicFilter/subcomponents/FieldTypes/SelectFilter/helpers.d.ts +7 -7
  40. package/components/DynamicFilter/subcomponents/FieldTypes/SelectFilter/helpers.js +8 -12
  41. package/components/DynamicFilter/subcomponents/FieldTypes/SelectFilter/index.js +5 -8
  42. package/components/DynamicFilter/subcomponents/FieldTypes/StringFilter/helpers.d.ts +5 -5
  43. package/components/DynamicFilter/subcomponents/FieldTypes/StringFilter/helpers.js +1 -1
  44. package/components/DynamicFilter/subcomponents/FieldTypes/StringFilter/index.js +1 -1
  45. package/components/DynamicFilter/subcomponents/FieldTypes/fieldFactory.d.ts +2 -1
  46. package/components/DynamicFilter/subcomponents/FieldTypes/fieldFactory.js +2 -0
  47. package/components/DynamicFilter/subcomponents/InputFilter/InputFilter.js +8 -1
  48. package/components/DynamicFilter/subcomponents/InputFilter/useInputFilter.d.ts +7 -3
  49. package/components/DynamicFilter/subcomponents/InputFilter/useInputFilter.js +15 -14
  50. package/components/DynamicFilter/subcomponents/PopoverFilter/usePopoverFilter.d.ts +4 -3
  51. package/components/DynamicFilter/subcomponents/PopoverFilter/usePopoverFilter.js +3 -2
  52. package/components/DynamicFilter/subcomponents/PopoverMenuFields/PopoverMenuFields.d.ts +2 -2
  53. package/components/DynamicFilter/subcomponents/PopoverMenuFields/PopoverMenuFields.js +5 -4
  54. package/components/DynamicFilter/subcomponents/PopoverMenuFields/usePopoverMenuFields.d.ts +6 -4
  55. package/components/DynamicFilter/subcomponents/PopoverMenuFields/usePopoverMenuFields.js +8 -5
  56. package/components/DynamicFilter/types.d.ts +52 -25
  57. package/components/DynamicSort/DynamicSort.js +14 -0
  58. package/components/DynamicSort/DynamicSort.styles.js +365 -0
  59. package/components/DynamicSort/constants.js +16 -0
  60. package/components/DynamicSort/dictionary.js +28 -0
  61. package/components/DynamicSort/helpers/formatToInitialSorts.js +12 -0
  62. package/components/DynamicSort/helpers/formatToRowSort.js +10 -0
  63. package/components/DynamicSort/helpers/getPurgedInitialSortApplyed.d.ts +2 -2
  64. package/components/DynamicSort/helpers/getPurgedInitialSortApplyed.js +55 -0
  65. package/components/DynamicSort/index.d.ts +1 -1
  66. package/components/DynamicSort/slots/DynamicSortSlots.js +146 -0
  67. package/components/DynamicSort/slots/SlotsEnum.js +34 -0
  68. package/components/DynamicSort/store/DynamicSortContext.js +76 -0
  69. package/components/DynamicSort/store/DynamicSortStore.d.ts +6 -6
  70. package/components/DynamicSort/store/DynamicSortStore.js +227 -0
  71. package/components/DynamicSort/store/useDynamicSortStore.js +14 -0
  72. package/components/DynamicSort/subcomponents/AppliedSortChip/AppliedSortChip.js +27 -0
  73. package/components/DynamicSort/subcomponents/AppliedSortChip/useAppliedSortChip.js +37 -0
  74. package/components/DynamicSort/subcomponents/AppliedSorts/AppliedSorts.js +15 -0
  75. package/components/DynamicSort/subcomponents/AppliedSorts/useAppliedSorts.js +15 -0
  76. package/components/DynamicSort/subcomponents/DynamicSortBase/DynamicSortBase.js +35 -0
  77. package/components/DynamicSort/subcomponents/DynamicSortBase/useDynamicSortBase.js +9 -0
  78. package/components/DynamicSort/subcomponents/FieldTypes/DataTypeComponent.js +16 -0
  79. package/components/DynamicSort/subcomponents/FieldTypes/FieldTypeInterface.d.ts +5 -5
  80. package/components/DynamicSort/subcomponents/FieldTypes/StringSort/helpers.d.ts +5 -5
  81. package/components/DynamicSort/subcomponents/FieldTypes/StringSort/helpers.js +84 -0
  82. package/components/DynamicSort/subcomponents/FieldTypes/StringSort/index.js +36 -0
  83. package/components/DynamicSort/subcomponents/FieldTypes/fieldFactory.js +17 -0
  84. package/components/DynamicSort/subcomponents/InputSort/InputSort.js +36 -0
  85. package/components/DynamicSort/subcomponents/InputSort/InputSortSkeleton.js +19 -0
  86. package/components/DynamicSort/subcomponents/InputSort/useInputSort.d.ts +2 -2
  87. package/components/DynamicSort/subcomponents/InputSort/useInputSort.js +132 -0
  88. package/components/DynamicSort/subcomponents/PopoverMenuFields/PopoverMenuFields.d.ts +2 -2
  89. package/components/DynamicSort/subcomponents/PopoverMenuFields/PopoverMenuFields.js +38 -0
  90. package/components/DynamicSort/subcomponents/PopoverMenuFields/usePopoverMenuFields.d.ts +3 -3
  91. package/components/DynamicSort/subcomponents/PopoverMenuFields/usePopoverMenuFields.js +29 -0
  92. package/components/DynamicSort/subcomponents/PopoverSort/PopoverSort.js +64 -0
  93. package/components/DynamicSort/subcomponents/PopoverSort/usePopoverSort.d.ts +2 -2
  94. package/components/DynamicSort/subcomponents/PopoverSort/usePopoverSort.js +99 -0
  95. package/components/DynamicSort/subcomponents/SortActions/SortActions.js +44 -0
  96. package/components/DynamicSort/subcomponents/SortActions/SortActionsSkeleton.js +12 -0
  97. package/components/DynamicSort/subcomponents/SortActions/useSortActions.js +39 -0
  98. package/components/DynamicSort/types.d.ts +3 -3
  99. package/components/Icon/Icon.js +1 -1
  100. package/components/Icon/constants.js +2 -2
  101. package/components/Icon/slots/IconSlots.js +1 -1
  102. package/components/LanguagePopover/LanguagePopover.d.ts +14 -7
  103. package/components/LanguagePopover/LanguagePopover.js +67 -134
  104. package/components/LanguagePopover/LanguagePopover.styles.d.ts +2 -0
  105. package/components/LanguagePopover/LanguagePopover.styles.js +19 -0
  106. package/components/LanguagePopover/constants.d.ts +1 -0
  107. package/components/LanguagePopover/constants.js +4 -0
  108. package/components/LanguagePopover/slots/LanguagePopoverEnum.d.ts +5 -0
  109. package/components/LanguagePopover/slots/LanguagePopoverEnum.js +9 -0
  110. package/components/LanguagePopover/slots/LanguagePopoverSlots.d.ts +5 -0
  111. package/components/LanguagePopover/slots/LanguagePopoverSlots.js +24 -0
  112. package/components/LanguagePopover/types.d.ts +17 -7
  113. package/components/MFIsolationApp/MFIsolationApp.js +4 -4
  114. package/components/MenuActions/MenuActions.js +39 -26
  115. package/components/MenuActions/MenuActions.styles.js +1 -1
  116. package/components/MenuActions/types.d.ts +6 -1
  117. package/components/ModalDialog/ModalDialog.js +21 -27
  118. package/components/ModalDialog/slots/ModalDialogSlots.d.ts +1 -1
  119. package/components/PrintingSystem/classes/index.js +1 -1
  120. package/components/PropertyValue/PropertyValue.js +7 -4
  121. package/components/PropertyValue/PropertyValue.styles.js +6 -6
  122. package/components/PropertyValue/slots/PropertyValueEnum.d.ts +1 -1
  123. package/components/PropertyValue/slots/PropertyValueEnum.js +1 -1
  124. package/components/PropertyValue/slots/PropertyValueSlots.d.ts +3 -3
  125. package/components/PropertyValue/slots/PropertyValueSlots.js +6 -6
  126. package/components/PropertyValue/types.d.ts +4 -4
  127. package/components/ScrollBar/ScrollBar.js +3 -1
  128. package/components/animate/index.d.ts +0 -1
  129. package/components/areas/components/AreasAdmin/subcomponents/AreaChip/AreaChip.js +1 -2
  130. package/components/areas/components/AreasViewer/types.d.ts +1 -1
  131. package/components/commercial/AppBarCommercial/classes/index.js +1 -1
  132. package/components/commercial/SectionCommercial/classes/index.js +1 -1
  133. package/components/commercial/TopBar/classes/index.js +1 -1
  134. package/components/extended/React-Spinners/PropagateLoaderSpinner/index.d.ts +1 -0
  135. package/components/extended/React-Spinners/index.d.ts +1 -0
  136. package/components/extended/{React-Splitter/SplitLayout → React-Splitter-Layout}/SplitLayout.js +3 -3
  137. package/components/extended/React-Splitter-Layout/index.d.ts +1 -0
  138. package/components/extended/{React-Splitter/SplitLayout → React-Splitter-Layout}/types.d.ts +1 -1
  139. package/components/extended/React-Window/FixedSizeList/FixedSizeList.d.ts +6 -0
  140. package/components/extended/React-Window/FixedSizeList/FixedSizeList.js +11 -0
  141. package/components/extended/React-Window/FixedSizeList/FixedSizeList.styles.d.ts +2 -0
  142. package/components/extended/React-Window/FixedSizeList/FixedSizeList.styles.js +6 -0
  143. package/components/extended/React-Window/FixedSizeList/constants.d.ts +2 -0
  144. package/components/extended/React-Window/FixedSizeList/constants.js +7 -0
  145. package/components/extended/React-Window/FixedSizeList/index.d.ts +1 -0
  146. package/components/extended/React-Window/FixedSizeList/slots/FixedSizeListSlots.d.ts +4 -0
  147. package/components/extended/React-Window/FixedSizeList/slots/FixedSizeListSlots.js +14 -0
  148. package/components/extended/React-Window/FixedSizeList/slots/slots.d.ts +3 -0
  149. package/components/extended/React-Window/FixedSizeList/slots/slots.js +7 -0
  150. package/components/extended/React-Window/FixedSizeList/types.d.ts +9 -0
  151. package/components/extended/React-Window/VariableSizeList/VariableSizeList.d.ts +7 -0
  152. package/components/extended/React-Window/VariableSizeList/VariableSizeList.js +14 -0
  153. package/components/extended/React-Window/VariableSizeList/VariableSizeList.styles.d.ts +2 -0
  154. package/components/extended/React-Window/VariableSizeList/constants.d.ts +2 -0
  155. package/components/extended/React-Window/VariableSizeList/constants.js +6 -0
  156. package/components/extended/React-Window/VariableSizeList/index.d.ts +2 -0
  157. package/components/extended/React-Window/VariableSizeList/slots/VariableSizeListSlots.d.ts +4 -0
  158. package/components/extended/React-Window/VariableSizeList/slots/slots.d.ts +3 -0
  159. package/components/extended/React-Window/VariableSizeList/types.d.ts +9 -0
  160. package/components/extended/React-Window/index.d.ts +2 -0
  161. package/components/extended/index.d.ts +4 -0
  162. package/components/formatters/DistanceToNowFormatter/DistanceToNowFormatter.d.ts +2 -1
  163. package/components/formatters/DistanceToNowFormatter/DistanceToNowFormatter.js +22 -6
  164. package/components/formatters/DistanceToNowFormatter/slots/DistanceToNowFormatterSlots.d.ts +1 -1
  165. package/components/formatters/DistanceToNowFormatter/slots/DistanceToNowFormatterSlots.js +3 -2
  166. package/components/formatters/DistanceToNowFormatter/types.d.ts +11 -3
  167. package/components/index.d.ts +5 -6
  168. package/components/mui_extended/Autocomplete/slots/AutocompleteSlots.d.ts +1 -1
  169. package/components/mui_extended/MenuItem/MenuItem.js +2 -1
  170. package/components/mui_extended/MenuItem/MenuItem.styles.js +28 -21
  171. package/components/mui_extended/MenuItem/slots/MenuItemSlots.d.ts +6 -6
  172. package/components/mui_extended/MenuItem/types.d.ts +2 -2
  173. package/components/mui_extended/Popover/Popover.js +3 -0
  174. package/components/mui_extended/TabContext/index.js +2 -2
  175. package/components/mui_extended/index.d.ts +1 -0
  176. package/components/popups/components/PopupsProvider/contexts/PopupsContext/PopupsContext.js +4 -4
  177. package/components/popups/components/PopupsProvider/contexts/PopupsContext/store.js +1 -1
  178. package/components/popups/components/PopupsProvider/contexts/PopupsContext/types.d.ts +2 -2
  179. package/components/popups/components/PopupsProvider/hooks/usePopupsStore/index.js +1 -1
  180. package/contexts/index.d.ts +0 -1
  181. package/hooks/index.d.ts +3 -1
  182. package/hooks/useSvgColor/constants.d.ts +2 -1
  183. package/hooks/useSvgColor/constants.js +7 -5
  184. package/hooks/useSvgColor/helpers.js +3 -3
  185. package/hooks/useSvgColor/types.d.ts +3 -1
  186. package/hooks/useSvgColor/useSvgColor.js +10 -9
  187. package/hooks/useTab/index.js +1 -1
  188. package/index.d.ts +2 -0
  189. package/index.js +177 -174
  190. package/not_recognized/index.js +23261 -0
  191. package/package.json +4 -3
  192. package/patchLibErrors/defaultPropsError.d.ts +3 -0
  193. package/test/TestAppWrapper.d.ts +1 -1
  194. package/utils/ObjectQueue.d.ts +18 -0
  195. package/utils/ObjectQueue.js +33 -0
  196. package/utils/capitalizeFirstLetter.js +10 -1
  197. package/utils/getComponentUtilityClass.js +7 -0
  198. package/utils/getPaletteColor.js +18 -0
  199. package/utils/index.d.ts +8 -16
  200. package/utils/index.js +1 -11
  201. package/utils/isValidDate.js +6 -0
  202. package/vendor.js +172 -0
  203. package/.storybook/decorators/WithMapProvider/constants.d.ts +0 -2
  204. package/.storybook/decorators/WithMapProvider/index.d.ts +0 -1
  205. package/components/DynamicFilter/DynamicFilter.stories.d.ts +0 -29
  206. package/components/LanguagePopover/classes/constants.d.ts +0 -1
  207. package/components/LanguagePopover/classes/constants.js +0 -4
  208. package/components/LanguagePopover/classes/index.d.ts +0 -12
  209. package/components/LanguagePopover/classes/index.js +0 -33
  210. package/components/LanguagePopover/classes/types.d.ts +0 -8
  211. package/components/LanguagePopover/styles.d.ts +0 -5
  212. package/components/LanguagePopover/styles.js +0 -30
  213. package/components/LanguagePopover/tests/constants.d.ts +0 -1
  214. package/components/LanguagePopover/tests/constants.js +0 -4
  215. package/components/formatters/CourseFormatter/CourseFormatter.d.ts +0 -14
  216. package/components/formatters/CourseFormatter/CourseFormatter.js +0 -33
  217. package/components/formatters/CourseFormatter/CourseFormatter.styles.d.ts +0 -2
  218. package/components/formatters/CourseFormatter/CourseFormatter.styles.js +0 -23
  219. package/components/formatters/CourseFormatter/constants.d.ts +0 -3
  220. package/components/formatters/CourseFormatter/constants.js +0 -6
  221. package/components/formatters/CourseFormatter/dictionary.d.ts +0 -12
  222. package/components/formatters/CourseFormatter/dictionary.js +0 -18
  223. package/components/formatters/CourseFormatter/helper.d.ts +0 -4
  224. package/components/formatters/CourseFormatter/helper.js +0 -28
  225. package/components/formatters/CourseFormatter/index.d.ts +0 -2
  226. package/components/formatters/CourseFormatter/slots/CourseFormatterEnum.d.ts +0 -3
  227. package/components/formatters/CourseFormatter/slots/CourseFormatterEnum.js +0 -7
  228. package/components/formatters/CourseFormatter/slots/CourseFormatterSlots.d.ts +0 -3
  229. package/components/formatters/CourseFormatter/slots/CourseFormatterSlots.js +0 -12
  230. package/components/formatters/CourseFormatter/types.d.ts +0 -24
  231. package/components/formatters/DistanceToNowFormatter/stories/basic.stories.d.ts +0 -157
  232. package/components/formatters/DistanceToNowFormatter/stories/constants.d.ts +0 -3
  233. package/components/formatters/DistanceToNowFormatter/stories/dictionary.d.ts +0 -0
  234. package/components/formatters/DistanceToNowFormatter/stories/subcomponents/WithDTNFProvider.d.ts +0 -6
  235. package/components/formatters/DistanceToNowFormatter/stories/types.d.ts +0 -3
  236. package/components/gclick/MyDevice/MyDevice.d.ts +0 -6
  237. package/components/gclick/MyDevice/MyDevice.js +0 -26
  238. package/components/gclick/MyDevice/MyDevice.styles.d.ts +0 -2
  239. package/components/gclick/MyDevice/MyDevice.styles.js +0 -22
  240. package/components/gclick/MyDevice/constants.d.ts +0 -2
  241. package/components/gclick/MyDevice/constants.js +0 -4
  242. package/components/gclick/MyDevice/index.d.ts +0 -1
  243. package/components/gclick/MyDevice/slots/MyDeviceSlots.d.ts +0 -3
  244. package/components/gclick/MyDevice/slots/MyDeviceSlots.js +0 -22
  245. package/components/gclick/MyDevice/slots/slots.d.ts +0 -5
  246. package/components/gclick/MyDevice/slots/slots.js +0 -9
  247. package/components/gclick/MyDevice/stories/basic.stories.d.ts +0 -9
  248. package/components/gclick/MyDevice/stories/constants.d.ts +0 -3
  249. package/components/gclick/MyDevice/stories/dictionary.d.ts +0 -0
  250. package/components/gclick/MyDevice/stories/subcomponents/WithMyDeviceProvider.d.ts +0 -2
  251. package/components/gclick/MyDevice/stories/types.d.ts +0 -3
  252. package/components/gclick/MyDevice/subcomponents/PropertyValue/index.d.ts +0 -5
  253. package/components/gclick/MyDevice/subcomponents/PropertyValue/types.d.ts +0 -5
  254. package/components/gclick/MyDevice/types.d.ts +0 -18
  255. package/components/gclick/MyDeviceStatus/MyDeviceStatus.d.ts +0 -6
  256. package/components/gclick/MyDeviceStatus/MyDeviceStatus.js +0 -68
  257. package/components/gclick/MyDeviceStatus/MyDeviceStatus.styles.d.ts +0 -2
  258. package/components/gclick/MyDeviceStatus/MyDeviceStatus.styles.js +0 -22
  259. package/components/gclick/MyDeviceStatus/constants.d.ts +0 -13
  260. package/components/gclick/MyDeviceStatus/constants.js +0 -17
  261. package/components/gclick/MyDeviceStatus/dictionary.d.ts +0 -13
  262. package/components/gclick/MyDeviceStatus/dictionary.js +0 -19
  263. package/components/gclick/MyDeviceStatus/icons.d.ts +0 -11
  264. package/components/gclick/MyDeviceStatus/icons.js +0 -14
  265. package/components/gclick/MyDeviceStatus/index.d.ts +0 -1
  266. package/components/gclick/MyDeviceStatus/slots/MyDeviceStatusSlots.d.ts +0 -3
  267. package/components/gclick/MyDeviceStatus/slots/MyDeviceStatusSlots.js +0 -22
  268. package/components/gclick/MyDeviceStatus/slots/slots.d.ts +0 -5
  269. package/components/gclick/MyDeviceStatus/slots/slots.js +0 -9
  270. package/components/gclick/MyDeviceStatus/stories/basic.stories.d.ts +0 -41
  271. package/components/gclick/MyDeviceStatus/stories/constants.d.ts +0 -3
  272. package/components/gclick/MyDeviceStatus/stories/dataMocks.d.ts +0 -55
  273. package/components/gclick/MyDeviceStatus/stories/subcomponents/WithMyDeviceProvider.d.ts +0 -2
  274. package/components/gclick/MyDeviceStatus/stories/types.d.ts +0 -3
  275. package/components/gclick/MyDeviceStatus/subcomponents/PropertyValue/index.d.ts +0 -5
  276. package/components/gclick/MyDeviceStatus/subcomponents/PropertyValue/types.d.ts +0 -5
  277. package/components/gclick/MyDeviceStatus/types.d.ts +0 -14
  278. package/components/gclick/constants.d.ts +0 -1
  279. package/components/gclick/constants.js +0 -4
  280. package/components/gclick/types.d.ts +0 -60
  281. package/components/maps/components/Map/Map.d.ts +0 -8
  282. package/components/maps/components/Map/Map.js +0 -34
  283. package/components/maps/components/Map/Map.styles.d.ts +0 -2
  284. package/components/maps/components/Map/Map.styles.js +0 -227
  285. package/components/maps/components/Map/classes/index.d.ts +0 -8
  286. package/components/maps/components/Map/classes/index.js +0 -110
  287. package/components/maps/components/Map/classes/types.d.ts +0 -69
  288. package/components/maps/components/Map/constants.d.ts +0 -36
  289. package/components/maps/components/Map/constants.js +0 -49
  290. package/components/maps/components/Map/contexts/MapContext/MapContext.d.ts +0 -21
  291. package/components/maps/components/Map/contexts/MapContext/MapContext.js +0 -58
  292. package/components/maps/components/Map/contexts/MapContext/helper.d.ts +0 -8
  293. package/components/maps/components/Map/contexts/MapContext/index.d.ts +0 -2
  294. package/components/maps/components/Map/contexts/MapContext/store.d.ts +0 -19
  295. package/components/maps/components/Map/contexts/MapContext/store.js +0 -369
  296. package/components/maps/components/Map/contexts/MapContext/types.d.ts +0 -597
  297. package/components/maps/components/Map/dictionary.d.ts +0 -32
  298. package/components/maps/components/Map/dictionary.js +0 -38
  299. package/components/maps/components/Map/external/Control/index.d.ts +0 -9
  300. package/components/maps/components/Map/external/Control/index.js +0 -42
  301. package/components/maps/components/Map/external/Control/types.d.ts +0 -7
  302. package/components/maps/components/Map/external/Popup/component.d.ts +0 -4
  303. package/components/maps/components/Map/external/Popup/div-overlay.d.ts +0 -4
  304. package/components/maps/components/Map/external/Popup/element.d.ts +0 -4
  305. package/components/maps/components/Map/external/Popup/generic.d.ts +0 -4
  306. package/components/maps/components/Map/external/Popup/index.d.ts +0 -4
  307. package/components/maps/components/Map/external/googleMutant/LRUMap.d.ts +0 -99
  308. package/components/maps/components/Map/external/googleMutant/googleMutant.d.ts +0 -1
  309. package/components/maps/components/Map/external/googleMutant/googleMutant.js +0 -1
  310. package/components/maps/components/Map/external/googleMutant/googleMutantNoDelete.d.ts +0 -1
  311. package/components/maps/components/Map/external/googleMutant/index.d.ts +0 -132
  312. package/components/maps/components/Map/featureRenders/CommonFeatureRender/index.d.ts +0 -8
  313. package/components/maps/components/Map/featureRenders/CommonFeatureRender/index.js +0 -257
  314. package/components/maps/components/Map/featureRenders/CommonFeatureRender/subcomponents/FeatureDivIconLabel/index.d.ts +0 -6
  315. package/components/maps/components/Map/featureRenders/CommonFeatureRender/subcomponents/FeatureDivIconLabel/index.js +0 -33
  316. package/components/maps/components/Map/featureRenders/CommonFeatureRender/subcomponents/FeatureDivIconLabel/types.d.ts +0 -7
  317. package/components/maps/components/Map/featureRenders/CommonFeatureRender/subcomponents/MarkerIconLabel/index.d.ts +0 -5
  318. package/components/maps/components/Map/featureRenders/CommonFeatureRender/subcomponents/MarkerIconLabel/index.js +0 -76
  319. package/components/maps/components/Map/featureRenders/CommonFeatureRender/subcomponents/MarkerIconLabel/types.d.ts +0 -12
  320. package/components/maps/components/Map/featureRenders/MarkerFeatureRender/IconMarker.d.ts +0 -9
  321. package/components/maps/components/Map/featureRenders/MarkerFeatureRender/IconMarkerGrua.d.ts +0 -4
  322. package/components/maps/components/Map/featureRenders/MarkerFeatureRender/IconMarkerTaxi.d.ts +0 -4
  323. package/components/maps/components/Map/featureRenders/MarkerFeatureRender/index.d.ts +0 -5
  324. package/components/maps/components/Map/featureRenders/MarkerFeatureRender/index.js +0 -79
  325. package/components/maps/components/Map/featureRenders/index.d.ts +0 -2
  326. package/components/maps/components/Map/hooks/useAutoFocus/index.d.ts +0 -6
  327. package/components/maps/components/Map/hooks/useAutoFocus/index.js +0 -78
  328. package/components/maps/components/Map/hooks/useAutoFocus/types.d.ts +0 -15
  329. package/components/maps/components/Map/hooks/useDisableClickEvents/index.d.ts +0 -6
  330. package/components/maps/components/Map/hooks/useDisableZoomEvents/index.d.ts +0 -6
  331. package/components/maps/components/Map/hooks/useDisableZoomEvents/index.js +0 -21
  332. package/components/maps/components/Map/hooks/useMapStore/index.d.ts +0 -6
  333. package/components/maps/components/Map/hooks/useMapStore/index.js +0 -13
  334. package/components/maps/components/Map/icons.d.ts +0 -45
  335. package/components/maps/components/Map/icons.js +0 -61
  336. package/components/maps/components/Map/index.d.ts +0 -9
  337. package/components/maps/components/Map/pluginLayers/PolylineWithArrows/index.d.ts +0 -11
  338. package/components/maps/components/Map/pluginLayers/PolylineWithArrows/index.js +0 -74
  339. package/components/maps/components/Map/pluginLayers/index.d.ts +0 -1
  340. package/components/maps/components/Map/popups/MapPopupMyGps/MapPopupMyGps.d.ts +0 -7
  341. package/components/maps/components/Map/popups/MapPopupMyGps/MapPopupMyGps.js +0 -97
  342. package/components/maps/components/Map/popups/MapPopupMyGps/MapPopupMyGps.styles.d.ts +0 -2
  343. package/components/maps/components/Map/popups/MapPopupMyGps/MapPopupMyGps.styles.js +0 -34
  344. package/components/maps/components/Map/popups/MapPopupMyGps/constants.d.ts +0 -3
  345. package/components/maps/components/Map/popups/MapPopupMyGps/constants.js +0 -6
  346. package/components/maps/components/Map/popups/MapPopupMyGps/dictionary.d.ts +0 -15
  347. package/components/maps/components/Map/popups/MapPopupMyGps/dictionary.js +0 -21
  348. package/components/maps/components/Map/popups/MapPopupMyGps/index.d.ts +0 -2
  349. package/components/maps/components/Map/popups/MapPopupMyGps/slots/ MapPopupMyGpsSlots.d.ts +0 -3
  350. package/components/maps/components/Map/popups/MapPopupMyGps/slots/ MapPopupMyGpsSlots.js +0 -21
  351. package/components/maps/components/Map/popups/MapPopupMyGps/slots/slots.d.ts +0 -5
  352. package/components/maps/components/Map/popups/MapPopupMyGps/slots/slots.js +0 -9
  353. package/components/maps/components/Map/popups/MapPopupMyGps/stories/basic.stories.d.ts +0 -9
  354. package/components/maps/components/Map/popups/MapPopupMyGps/stories/constants.d.ts +0 -3
  355. package/components/maps/components/Map/popups/MapPopupMyGps/stories/dictionary.d.ts +0 -0
  356. package/components/maps/components/Map/popups/MapPopupMyGps/stories/subcomponents/WithMapOpenPopup.d.ts +0 -5
  357. package/components/maps/components/Map/popups/MapPopupMyGps/stories/types.d.ts +0 -3
  358. package/components/maps/components/Map/popups/MapPopupMyGps/subcomponents/PropertyValue/index.d.ts +0 -5
  359. package/components/maps/components/Map/popups/MapPopupMyGps/subcomponents/PropertyValue/index.js +0 -14
  360. package/components/maps/components/Map/popups/MapPopupMyGps/subcomponents/PropertyValue/types.d.ts +0 -5
  361. package/components/maps/components/Map/popups/MapPopupMyGps/types.d.ts +0 -7
  362. package/components/maps/components/Map/popups/index.d.ts +0 -1
  363. package/components/maps/components/Map/popups/types.d.ts +0 -10
  364. package/components/maps/components/Map/slots/MapSlots.d.ts +0 -4
  365. package/components/maps/components/Map/slots/MapSlots.js +0 -24
  366. package/components/maps/components/Map/slots/slots.d.ts +0 -6
  367. package/components/maps/components/Map/slots/slots.js +0 -10
  368. package/components/maps/components/Map/stories/basic.stories.d.ts +0 -13
  369. package/components/maps/components/Map/stories/constants.d.ts +0 -3
  370. package/components/maps/components/Map/stories/dictionary.d.ts +0 -0
  371. package/components/maps/components/Map/stories/subcomponents/ContentExample.d.ts +0 -4
  372. package/components/maps/components/Map/stories/types.d.ts +0 -3
  373. package/components/maps/components/Map/subcomponents/Controls/index.d.ts +0 -17
  374. package/components/maps/components/Map/subcomponents/Controls/index.js +0 -31
  375. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/index.d.ts +0 -4
  376. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/index.js +0 -13
  377. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/index.d.ts +0 -10
  378. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/index.js +0 -59
  379. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useCheckedLayers.d.ts +0 -9
  380. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useCheckedLayers.js +0 -17
  381. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useColumns.d.ts +0 -18
  382. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useColumns.js +0 -140
  383. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useMaster.d.ts +0 -12
  384. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useMaster.js +0 -52
  385. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useRowActionsGetter.d.ts +0 -8
  386. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useRowActionsGetter.js +0 -43
  387. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/index.d.ts +0 -4
  388. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/index.js +0 -30
  389. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/model.d.ts +0 -26
  390. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/index.d.ts +0 -4
  391. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/index.js +0 -134
  392. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/bing.d.ts +0 -2
  393. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/bing.js +0 -39
  394. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/google.d.ts +0 -4
  395. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/google.js +0 -73
  396. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/osm.d.ts +0 -2
  397. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/osm.js +0 -25
  398. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/utils.d.ts +0 -4
  399. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/utils.js +0 -19
  400. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/types.d.ts +0 -4
  401. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/types.d.ts +0 -5
  402. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/index.d.ts +0 -11
  403. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/index.js +0 -101
  404. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/constants.d.ts +0 -30
  405. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/constants.js +0 -34
  406. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/hooks/useMeasure/helpers.d.ts +0 -11
  407. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/hooks/useMeasure/helpers.js +0 -45
  408. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/hooks/useMeasure/index.d.ts +0 -13
  409. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/hooks/useMeasure/index.js +0 -245
  410. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/hooks/useMeasure/types.d.ts +0 -13
  411. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/hooks/useValidation.d.ts +0 -13
  412. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/hooks/useValidation.js +0 -17
  413. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/index.d.ts +0 -4
  414. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/index.js +0 -41
  415. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/model.d.ts +0 -17
  416. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/subcomponents/MeasureData/index.d.ts +0 -5
  417. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/subcomponents/MeasureData/index.js +0 -33
  418. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/subcomponents/MeasureData/types.d.ts +0 -6
  419. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/subcomponents/MeasureData/validations.d.ts +0 -2
  420. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/subcomponents/MeasureData/validations.js +0 -6
  421. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/subcomponents/MyActions/index.d.ts +0 -4
  422. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/subcomponents/MyActions/index.js +0 -32
  423. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/types.d.ts +0 -9
  424. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/ZoomButtons/index.d.ts +0 -4
  425. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/ZoomButtons/index.js +0 -52
  426. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/types.d.ts +0 -4
  427. package/components/maps/components/Map/subcomponents/Controls/types.d.ts +0 -22
  428. package/components/maps/components/Map/subcomponents/LayersContainer/index.d.ts +0 -5
  429. package/components/maps/components/Map/subcomponents/LayersContainer/index.js +0 -33
  430. package/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/index.d.ts +0 -14
  431. package/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/index.js +0 -132
  432. package/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/subcomponents/MarkerClusterGroup/index.d.ts +0 -9
  433. package/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/subcomponents/MarkerClusterGroup/index.js +0 -24
  434. package/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/subcomponents/MarkerClusterGroup/types.d.ts +0 -11
  435. package/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/subcomponents/RenderByEachFeatureComponent/index.d.ts +0 -11
  436. package/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/subcomponents/RenderByEachFeatureComponent/index.js +0 -13
  437. package/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/subcomponents/RenderByEachFeatureComponent/types.d.ts +0 -5
  438. package/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/types.d.ts +0 -2
  439. package/components/maps/components/Map/subcomponents/TileLayers/index.d.ts +0 -6
  440. package/components/maps/components/Map/subcomponents/TileLayers/index.js +0 -13
  441. package/components/maps/components/Map/subcomponents/TileLayers/subcomponents/TileLayerGoogle/index.d.ts +0 -4
  442. package/components/maps/components/Map/subcomponents/TileLayers/subcomponents/TileLayerGoogle/index.js +0 -100
  443. package/components/maps/components/Map/subcomponents/TileLayers/subcomponents/TileLayerOthers/index.d.ts +0 -6
  444. package/components/maps/components/Map/subcomponents/TileLayers/subcomponents/TileLayerOthers/index.js +0 -35
  445. package/components/maps/components/Map/types.d.ts +0 -56
  446. package/components/maps/components/MapGpsTools/MapGpsTools.d.ts +0 -4
  447. package/components/maps/components/MapGpsTools/MapGpsTools.js +0 -10
  448. package/components/maps/components/MapGpsTools/classes/index.d.ts +0 -7
  449. package/components/maps/components/MapGpsTools/classes/index.js +0 -21
  450. package/components/maps/components/MapGpsTools/classes/types.d.ts +0 -14
  451. package/components/maps/components/MapGpsTools/constants.d.ts +0 -8
  452. package/components/maps/components/MapGpsTools/constants.js +0 -71
  453. package/components/maps/components/MapGpsTools/contexts/MapGpsToolsContext/index.d.ts +0 -21
  454. package/components/maps/components/MapGpsTools/contexts/MapGpsToolsContext/index.js +0 -48
  455. package/components/maps/components/MapGpsTools/contexts/MapGpsToolsContext/store.d.ts +0 -19
  456. package/components/maps/components/MapGpsTools/contexts/MapGpsToolsContext/store.js +0 -155
  457. package/components/maps/components/MapGpsTools/contexts/MapGpsToolsContext/types.d.ts +0 -160
  458. package/components/maps/components/MapGpsTools/dictionary.d.ts +0 -62
  459. package/components/maps/components/MapGpsTools/dictionary.js +0 -73
  460. package/components/maps/components/MapGpsTools/hooks/useLayers/index.d.ts +0 -4
  461. package/components/maps/components/MapGpsTools/hooks/useLayers/index.js +0 -57
  462. package/components/maps/components/MapGpsTools/hooks/useMapGpsToolsStore/index.d.ts +0 -5
  463. package/components/maps/components/MapGpsTools/hooks/useMapGpsToolsStore/index.js +0 -13
  464. package/components/maps/components/MapGpsTools/icons.d.ts +0 -23
  465. package/components/maps/components/MapGpsTools/icons.js +0 -26
  466. package/components/maps/components/MapGpsTools/index.d.ts +0 -4
  467. package/components/maps/components/MapGpsTools/styles.d.ts +0 -1
  468. package/components/maps/components/MapGpsTools/styles.js +0 -18
  469. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/index.d.ts +0 -9
  470. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/index.js +0 -88
  471. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/constants.d.ts +0 -20
  472. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/constants.js +0 -40
  473. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/helpers.d.ts +0 -34
  474. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/helpers.js +0 -77
  475. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useDrawing.d.ts +0 -14
  476. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useDrawing.js +0 -216
  477. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useSubmit.d.ts +0 -11
  478. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useSubmit.js +0 -63
  479. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useSumbitErrorsFocus.d.ts +0 -5
  480. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useSumbitErrorsFocus.js +0 -36
  481. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useValidation.d.ts +0 -25
  482. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useValidation.js +0 -19
  483. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/index.d.ts +0 -5
  484. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/index.js +0 -73
  485. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/styles.d.ts +0 -1
  486. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/styles.js +0 -8
  487. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/ConfigData/index.d.ts +0 -4
  488. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/ConfigData/index.js +0 -52
  489. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/ConfigData/types.d.ts +0 -6
  490. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/ConfigData/validations.d.ts +0 -8
  491. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/ConfigData/validations.js +0 -11
  492. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/GeneralData/index.d.ts +0 -4
  493. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/GeneralData/index.js +0 -132
  494. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/GeneralData/types.d.ts +0 -7
  495. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/GeneralData/validations.d.ts +0 -9
  496. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/GeneralData/validations.js +0 -12
  497. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/MyActions/index.d.ts +0 -5
  498. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/MyActions/index.js +0 -61
  499. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/MyActions/types.d.ts +0 -2
  500. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/MyTabs/index.d.ts +0 -4
  501. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/MyTabs/index.js +0 -80
  502. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/MyTabs/types.d.ts +0 -7
  503. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/StyleData/index.d.ts +0 -4
  504. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/StyleData/index.js +0 -12
  505. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/StyleData/subcomponents/FillData/index.d.ts +0 -4
  506. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/StyleData/subcomponents/FillData/index.js +0 -49
  507. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/StyleData/subcomponents/StrokeData/index.d.ts +0 -4
  508. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/StyleData/subcomponents/StrokeData/index.js +0 -89
  509. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/StyleData/types.d.ts +0 -10
  510. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/types.d.ts +0 -27
  511. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useCheckedFeatures.d.ts +0 -9
  512. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useCheckedFeatures.js +0 -86
  513. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useCheckedGeofences.d.ts +0 -7
  514. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useCheckedGeofences.js +0 -85
  515. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useColumns.d.ts +0 -12
  516. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useColumns.js +0 -116
  517. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useMaster.d.ts +0 -22
  518. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useMaster.js +0 -162
  519. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useRowActionsGetter.d.ts +0 -12
  520. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useRowActionsGetter.js +0 -113
  521. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/index.d.ts +0 -4
  522. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/index.js +0 -75
  523. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/styles.d.ts +0 -1
  524. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/styles.js +0 -8
  525. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/subcomponents/Filter/index.d.ts +0 -9
  526. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/subcomponents/Filter/index.js +0 -49
  527. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/constants.d.ts +0 -7
  528. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/constants.js +0 -13
  529. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/model.d.ts +0 -114
  530. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/types.d.ts +0 -7
  531. package/components/maps/components/MapGpsTools/types.d.ts +0 -34
  532. package/components/maps/index.d.ts +0 -4
  533. package/components/maps/utils/courseToCartesianAngle.d.ts +0 -6
  534. package/components/maps/utils/courseToCartesianAngle.js +0 -8
  535. package/components/maps/utils/courseToCssAngle.d.ts +0 -9
  536. package/components/maps/utils/courseToCssAngle.js +0 -13
  537. package/components/maps/utils/index.d.ts +0 -6
  538. package/components/maps/utils/isFeature.d.ts +0 -2
  539. package/components/maps/utils/isFeature.js +0 -6
  540. package/components/maps/utils/isFeatureCollection.d.ts +0 -2
  541. package/components/maps/utils/isFeatureCollection.js +0 -6
  542. package/components/maps/utils/isFeatureCollectionDraft.d.ts +0 -6
  543. package/components/maps/utils/isFeatureCollectionDraft.js +0 -6
  544. package/components/maps/utils/isGeometry.d.ts +0 -2
  545. package/components/maps/utils/isGeometry.js +0 -6
  546. package/contexts/RealTimeContext/RealTimeContext.d.ts +0 -19
  547. package/contexts/RealTimeContext/RealTimeContext.js +0 -76
  548. package/contexts/RealTimeContext/index.d.ts +0 -1
  549. package/contexts/RealTimeContext/store.d.ts +0 -19
  550. package/contexts/RealTimeContext/store.js +0 -58
  551. package/contexts/RealTimeContext/types.d.ts +0 -96
  552. package/hooks/useRealTime/index.d.ts +0 -6
  553. /package/components/{PaperForm → DynamicSort}/index.js +0 -0
  554. /package/components/{formatters/CourseFormatter → DynamicSort/slots}/index.js +0 -0
  555. /package/components/{gclick/MyDevice → DynamicSort/subcomponents/AppliedSortChip}/index.js +0 -0
  556. /package/components/{gclick/MyDeviceStatus → DynamicSort/subcomponents/AppliedSorts}/index.js +0 -0
  557. /package/components/{maps/components/Map/external/googleMutant → DynamicSort/subcomponents/DynamicSortBase}/index.js +0 -0
  558. /package/components/{maps/components/Map/featureRenders → DynamicSort/subcomponents/InputSort}/index.js +0 -0
  559. /package/components/{maps/components/Map → DynamicSort/subcomponents/PopoverMenuFields}/index.js +0 -0
  560. /package/components/{maps/components/Map/pluginLayers → DynamicSort/subcomponents/PopoverSort}/index.js +0 -0
  561. /package/components/{maps/components/Map/popups/MapPopupMyGps → DynamicSort/subcomponents/SortActions}/index.js +0 -0
  562. /package/components/{extended/React-Splitter/SplitLayout/tests/SplitLayout.test.d.ts → LanguagePopover/tests/LanguagePopover.test.d.ts} +0 -0
  563. /package/components/{maps/components/Map/popups → extended/React-Spinners/PropagateLoaderSpinner}/index.js +0 -0
  564. /package/components/{maps/components/MapGpsTools → extended/React-Spinners}/index.js +0 -0
  565. /package/components/extended/{React-Splitter/SplitLayout → React-Splitter-Layout}/SplitLayout.d.ts +0 -0
  566. /package/components/extended/{React-Splitter/SplitLayout → React-Splitter-Layout}/SplitLayout.styles.d.ts +0 -0
  567. /package/components/extended/{React-Splitter/SplitLayout → React-Splitter-Layout}/SplitLayout.styles.js +0 -0
  568. /package/components/extended/{React-Splitter/SplitLayout → React-Splitter-Layout}/constants.d.ts +0 -0
  569. /package/components/extended/{React-Splitter/SplitLayout → React-Splitter-Layout}/constants.js +0 -0
  570. /package/components/{maps → extended/React-Splitter-Layout}/index.js +0 -0
  571. /package/components/extended/{React-Splitter/SplitLayout → React-Splitter-Layout}/slots/SplitLayoutEnum.d.ts +0 -0
  572. /package/components/extended/{React-Splitter/SplitLayout → React-Splitter-Layout}/slots/SplitLayoutEnum.js +0 -0
  573. /package/components/extended/{React-Splitter/SplitLayout → React-Splitter-Layout}/slots/SplitLayoutSlots.d.ts +0 -0
  574. /package/components/extended/{React-Splitter/SplitLayout → React-Splitter-Layout}/slots/SplitLayoutSlots.js +0 -0
  575. /package/components/{formatters/CourseFormatter/test/CourserFormatter.test.d.ts → extended/React-Splitter-Layout/tests/SplitLayout.test.d.ts} +0 -0
  576. /package/components/{maps/utils → extended/React-Window/FixedSizeList}/index.js +0 -0
  577. /package/{contexts/RealTimeContext → components/extended/React-Window/VariableSizeList}/index.js +0 -0
  578. /package/components/{maps/components/Map/contexts/MapContext/helper.js → extended/React-Window/index.js} +0 -0
  579. /package/components/{maps/components/Map/external/googleMutant/LRUMap.js → extended/index.js} +0 -0
@@ -0,0 +1,24 @@
1
+ import { styled } from "@mui/material/styles";
2
+ import { I as Image } from "../../Image/Image.js";
3
+ import { M as MenuActions } from "../../MenuActions/MenuActions.js";
4
+ import { L as LANGUAGE_POPOVER_KEY_COMPONENT } from "../constants.js";
5
+ import { l as languagePopoverStyles } from "../LanguagePopover.styles.js";
6
+ import { L as LanguagePopoverSlots } from "./LanguagePopoverEnum.js";
7
+ import { Paper } from "@mui/material";
8
+ const LanguagePopoverRootStyled = styled(MenuActions, {
9
+ name: LANGUAGE_POPOVER_KEY_COMPONENT,
10
+ slot: LanguagePopoverSlots.root
11
+ })(languagePopoverStyles.root);
12
+ const ImageStyled = styled(Image, {
13
+ name: LANGUAGE_POPOVER_KEY_COMPONENT,
14
+ slot: LanguagePopoverSlots.image
15
+ })(languagePopoverStyles.image);
16
+ const PaperStyled = styled(Paper, {
17
+ name: LANGUAGE_POPOVER_KEY_COMPONENT,
18
+ slot: LanguagePopoverSlots.paper
19
+ })(languagePopoverStyles.paper);
20
+ export {
21
+ ImageStyled as I,
22
+ LanguagePopoverRootStyled as L,
23
+ PaperStyled as P
24
+ };
@@ -1,10 +1,20 @@
1
- import { NetworkLocaleType } from '@m4l/graphics';
2
- export interface LanguagePopoverTestingProps {
3
- open?: HTMLElement;
4
- loading?: boolean;
5
- allLocales?: Array<NetworkLocaleType>;
6
- }
1
+ import { Theme } from '@mui/material';
2
+ import { Sizes } from '@m4l/styles';
3
+ import { M4LOverridesStyleRules } from '../../@types/augmentations';
4
+ import { LanguagePopoverSlots as Slots } from './slots/LanguagePopoverEnum';
5
+ import { LANGUAGE_POPOVER_KEY_COMPONENT } from './constants';
7
6
  export interface LanguagePopoverProps {
7
+ /**
8
+ * Identificador para pruebas unitarias
9
+ */
8
10
  dataTestId?: string;
9
- testingProps?: LanguagePopoverTestingProps;
11
+ /**
12
+ * Deshabilita el componente
13
+ */
14
+ disabled?: boolean;
15
+ /**
16
+ * Propiedad para las variantes de tamaño
17
+ */
18
+ size?: Extract<Sizes, 'small' | 'medium'>;
10
19
  }
20
+ export type LanguagePopoverStyles = M4LOverridesStyleRules<keyof typeof Slots, typeof LANGUAGE_POPOVER_KEY_COMPONENT, Theme>;
@@ -100,7 +100,7 @@ function MFIsolationApp(props) {
100
100
  // eslint-disable-next-line react-hooks/exhaustive-deps
101
101
  []
102
102
  );
103
- return /* @__PURE__ */ jsx(EnvironmentProvider, { ...environment, children: /* @__PURE__ */ jsx(HostToolsProvider, { ...hostTools, children: /* @__PURE__ */ jsx(NetworkProvider, { axiosOperation, children: /* @__PURE__ */ jsx(unstable_HistoryRouter, { history, children: /* @__PURE__ */ jsx(LocalesProvider, { isMicroFrontEnd: false, getLocaleFromNetwork, children: /* @__PURE__ */ jsx(DeviceTypeProvider, { forcedDeviceType, children: /* @__PURE__ */ jsx(AuthProvider, { children: /* @__PURE__ */ jsx(MFAuthApp, { user, pwd, children: /* @__PURE__ */ jsxs(
103
+ return /* @__PURE__ */ jsx(EnvironmentProvider, { ...environment, children: /* @__PURE__ */ jsx(HostToolsProvider, { ...hostTools, children: /* @__PURE__ */ jsx(NetworkProvider, { axiosOperation, children: /* @__PURE__ */ jsx(unstable_HistoryRouter, { history, children: /* @__PURE__ */ jsx(LocalesProvider, { isMicroFrontEnd: false, getLocaleFromNetwork, children: /* @__PURE__ */ jsx(DeviceTypeProvider, { forcedDeviceType, children: /* @__PURE__ */ jsx(AuthProvider, { children: /* @__PURE__ */ jsx(MFAuthApp, { user, pwd, children: /* @__PURE__ */ jsx(
104
104
  BaseModule,
105
105
  {
106
106
  moduleId,
@@ -109,7 +109,7 @@ function MFIsolationApp(props) {
109
109
  componentsDictionary,
110
110
  moduleNameField,
111
111
  moduleDictionaryLoaded,
112
- children: [
112
+ children: /* @__PURE__ */ jsxs(AppearanceComponentProvider, { children: [
113
113
  /* @__PURE__ */ jsx(ToastContainer, { containerId: TOAST_CONTAINER_ID }),
114
114
  " ",
115
115
  /* @__PURE__ */ jsx(
@@ -121,10 +121,10 @@ function MFIsolationApp(props) {
121
121
  onSelectLayout: (modId) => {
122
122
  console.log("onSelectLayout", modId);
123
123
  },
124
- children: /* @__PURE__ */ jsx(ResponsiveContainerProvider, { observedDivRef, children: /* @__PURE__ */ jsx(AppearanceComponentProvider, { children }) })
124
+ children: /* @__PURE__ */ jsx(ResponsiveContainerProvider, { observedDivRef, children })
125
125
  }
126
126
  )
127
- ]
127
+ ] })
128
128
  }
129
129
  ) }) }) }) }) }) }) }) });
130
130
  }
@@ -1,5 +1,5 @@
1
- import { jsxs, jsx, Fragment } from "react/jsx-runtime";
2
- import React, { useState, useMemo } from "react";
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import React, { useState, useMemo, useEffect, useCallback } from "react";
3
3
  import { useEnvironment, useModuleDictionary } from "@m4l/core";
4
4
  import { u as useComponentSize } from "../../hooks/useComponentSize/useComponentSize.js";
5
5
  import { P as Popover } from "../mui_extended/Popover/Popover.js";
@@ -7,7 +7,7 @@ import { M as MenuItem } from "../mui_extended/MenuItem/MenuItem.js";
7
7
  import { I as ICON_PATH, a as ICONS, M as MENU_ACTIONS_ } from "./constants.js";
8
8
  import { g as getMenuActionsDictionary, D as DICTIONARY } from "./dictionary.js";
9
9
  import { M as MenuDivider } from "../mui_extended/MenuDivider/MenuDivider.js";
10
- import { R as RootStyled, I as IconButtonStyled, M as MenuListStyled, a as MenuLoaderStyled, H as HeaderMenuActionsStyled, F as FooterMenuActionsStyled } from "./slots/MenuActionsSlots.js";
10
+ import { M as MenuListStyled, a as MenuLoaderStyled, R as RootStyled, I as IconButtonStyled, H as HeaderMenuActionsStyled, F as FooterMenuActionsStyled } from "./slots/MenuActionsSlots.js";
11
11
  import { C as CircularProgress } from "../mui_extended/CircularProgress/CircularProgress.js";
12
12
  function MenuActions(props) {
13
13
  const {
@@ -31,6 +31,8 @@ function MenuActions(props) {
31
31
  header,
32
32
  footer,
33
33
  className,
34
+ onOpen,
35
+ slots = {},
34
36
  ...other
35
37
  } = props;
36
38
  const { currentSize } = useComponentSize(size);
@@ -38,26 +40,40 @@ function MenuActions(props) {
38
40
  const { getLabel } = useModuleDictionary();
39
41
  const [anchorEl, setAnchorEl] = useState(null);
40
42
  const open = Boolean(externalOpen ?? anchorEl);
41
- const ownerState = {
43
+ const ownerState = useMemo(() => ({
42
44
  iconSize: currentSize,
43
45
  selected: open,
44
46
  paletteColor: color
45
- };
47
+ }), [currentSize, open, color]);
48
+ useEffect(() => {
49
+ if (onOpen) {
50
+ onOpen(open);
51
+ }
52
+ }, [open, onOpen]);
46
53
  const handleOpenClose = () => {
47
54
  setAnchorEl(null);
55
+ if (onOpen) {
56
+ onOpen(false);
57
+ }
48
58
  };
49
59
  const finalIcon = useMemo(() => {
50
60
  return icon || urlIcon || `${host_static_assets}/${environment_assets}/${ICON_PATH}/${ICONS.MENU}`;
51
61
  }, [urlIcon, icon, host_static_assets, environment_assets]);
52
- const handleClick = (e, menuAction) => {
62
+ const handleClick = useCallback((e, menuAction) => {
53
63
  e.stopPropagation();
54
64
  setAnchorEl(null);
65
+ if (onOpen) {
66
+ onOpen(false);
67
+ }
55
68
  menuAction.onClick && menuAction.onClick(e);
56
- };
57
- const handleButtonClick = (e) => {
69
+ }, [onOpen]);
70
+ const handleButtonClick = useCallback((e) => {
58
71
  e.stopPropagation();
59
72
  setAnchorEl(e.currentTarget);
60
- };
73
+ if (onOpen) {
74
+ onOpen(true);
75
+ }
76
+ }, [onOpen]);
61
77
  const finalActions = useMemo(() => {
62
78
  if (!menuActions) {
63
79
  return [];
@@ -68,28 +84,26 @@ function MenuActions(props) {
68
84
  }
69
85
  return processedActions.filter((action) => !!action.type);
70
86
  }, [menuActions, objItem]);
71
- const renderMenuContent = () => {
87
+ const renderMenuContent = useCallback(() => {
72
88
  if (!finalActions.length) {
73
89
  return /* @__PURE__ */ jsx(MenuItem, { disabled: true, role: "menu-no-actions", label: getLabel(getMenuActionsDictionary(DICTIONARY.no_actions_label)) });
74
90
  }
75
- const renderHeader = () => {
91
+ const RenderHeader = () => {
76
92
  return /* @__PURE__ */ jsx(HeaderMenuActionsStyled, { ownerState: {}, children: header });
77
93
  };
78
- const renderFooter = () => {
94
+ const RenderFooter = () => {
79
95
  return /* @__PURE__ */ jsx(FooterMenuActionsStyled, { ownerState: {}, children: footer });
80
96
  };
81
- return /* @__PURE__ */ jsxs(MenuListStyled, { ownerState: { ownerState }, children: [
82
- header && /* @__PURE__ */ jsxs(Fragment, { children: [
83
- renderHeader(),
84
- /* @__PURE__ */ jsx(MenuDivider, { variant: "solid", size })
85
- ] }),
97
+ return /* @__PURE__ */ jsxs(MenuListStyled, { ownerState: {}, children: [
98
+ header && /* @__PURE__ */ jsx(RenderHeader, {}),
99
+ header && /* @__PURE__ */ jsx(MenuDivider, { variant: "solid", size }),
86
100
  finalActions.map((menuAction, index) => {
87
101
  const key = actionKey ?? index;
88
102
  switch (menuAction.type) {
89
103
  case "divider":
90
104
  return /* @__PURE__ */ jsx(MenuDivider, { variant: "solid", size }, `divider-${key}`);
91
105
  case "loader":
92
- return /* @__PURE__ */ jsx(MenuLoaderStyled, { size, ownerState: { ownerState }, children: /* @__PURE__ */ jsx(CircularProgress, { size }) }, `loader-${key}`);
106
+ return /* @__PURE__ */ jsx(MenuLoaderStyled, { size, ownerState: {}, children: /* @__PURE__ */ jsx(CircularProgress, { size }) }, `loader-${key}`);
93
107
  case "customNode":
94
108
  return /* @__PURE__ */ jsx(React.Fragment, { children: menuAction.customNode }, `customNode-${key}`);
95
109
  case "menuItem":
@@ -107,13 +121,11 @@ function MenuActions(props) {
107
121
  return null;
108
122
  }
109
123
  }),
110
- footer && /* @__PURE__ */ jsxs(Fragment, { children: [
111
- /* @__PURE__ */ jsx(MenuDivider, { variant: "solid", size }),
112
- renderFooter()
113
- ] }),
124
+ footer && /* @__PURE__ */ jsx(MenuDivider, { variant: "solid", size }),
125
+ footer && /* @__PURE__ */ jsx(RenderFooter, {}),
114
126
  endListElement && endListElement
115
127
  ] });
116
- };
128
+ }, [finalActions, header, size, footer, endListElement, getLabel, actionKey, handleClick]);
117
129
  return /* @__PURE__ */ jsxs(RootStyled, { className, ownerState: { ownerState }, children: [
118
130
  /* @__PURE__ */ jsx(
119
131
  IconButtonStyled,
@@ -137,12 +149,13 @@ function MenuActions(props) {
137
149
  {
138
150
  id: "Popover",
139
151
  open,
140
- anchorEl: externalOpen ?? anchorEl,
152
+ anchorEl,
141
153
  onClose: handleOpenClose,
142
154
  arrowType,
143
- slotProps: { paper: { ...paperProps } },
144
155
  ...other,
145
- children: renderMenuContent()
156
+ slots: { ...slots },
157
+ slotProps: { paper: { ...paperProps } },
158
+ children: open && renderMenuContent()
146
159
  }
147
160
  )
148
161
  ] });
@@ -31,7 +31,7 @@ const menuActionsStyles = {
31
31
  */
32
32
  iconButton: ({ theme, ownerState }) => ({
33
33
  backgroundColor: ownerState.selected ? theme.vars.palette[ownerState.paletteColor ?? "default"].selectedOpacity : "transparent",
34
- outline: "none",
34
+ // outline: 'none',
35
35
  "& hover": {
36
36
  backgroundColor: theme.vars.palette[ownerState.paletteColor ?? "default"].selected
37
37
  },
@@ -5,6 +5,7 @@ import { OverridesStyleRules } from '@mui/material/styles/overrides';
5
5
  import { Theme } from '@mui/material/styles';
6
6
  import { PopoverProps } from '../mui_extended/Popover/types';
7
7
  import { MenuItemProps } from '../mui_extended/MenuItem/types';
8
+ import { IconButtonProps } from '../mui_extended/IconButton/types';
8
9
  import { MenuActionsSlots } from './slots';
9
10
  import { MENU_ACTIONS_KEY_COMPONENT } from './constants';
10
11
  /**
@@ -59,7 +60,7 @@ export type MenuAction = (MenuItemAction & Pick<MenuItemProps, 'startIcon' | 'en
59
60
  /**
60
61
  * Propiedades del componente `MenuActions`.
61
62
  */
62
- export interface MenuActionsProps extends Omit<PopoverProps, 'open' | 'anchorEl'> {
63
+ export interface MenuActionsProps extends Omit<PopoverProps, 'open' | 'anchorEl'>, Pick<IconButtonProps, 'variant'> {
63
64
  /**
64
65
  * Tamaño opcional del menú (pequeño o mediano).
65
66
  */
@@ -170,6 +171,10 @@ export interface MenuActionsProps extends Omit<PopoverProps, 'open' | 'anchorEl'
170
171
  * agrega un footer al menú
171
172
  */
172
173
  footer?: ReactNode;
174
+ /**
175
+ * Define el tipo de flecha del menú.
176
+ */
177
+ onOpen?: (param: boolean) => void;
173
178
  }
174
179
  /**
175
180
  * Estado del propietario para `MenuActions`.
@@ -3,11 +3,10 @@ import { u as useModal } from "../../hooks/useModal/index.js";
3
3
  import { useIsMobile } from "@m4l/graphics";
4
4
  import { useState, useEffect } from "react";
5
5
  import { u as useStateRef } from "../../hooks/useStateRef/index.js";
6
- import { BaseProvider, useBase } from "@m4l/core";
7
6
  import { C as ContentComponent, D as DialogRootStyled, a as DragResizeWindowStyled, P as PaperModalDialogStyled, M as ModalDialogRootStyled } from "./slots/ModalDialogSlots.js";
8
- const DraggablePaperComponent = (ref, setRef) => {
7
+ const DraggablePaperComponent = (ref, setRef, dialogProperties) => {
9
8
  return (props) => {
10
- const { initialWidth, initialHeight, maxWidth, maxHeight } = useBase();
9
+ const { initialWidth, initialHeight, maxWidth, maxHeight } = dialogProperties;
11
10
  if (!ref) {
12
11
  return props.children;
13
12
  }
@@ -60,32 +59,27 @@ const ModalDialog = () => {
60
59
  windowConfirmVariant: variant
61
60
  };
62
61
  const contentComponent = /* @__PURE__ */ jsx(ContentComponent, { children: typeof window2 === "function" ? window2() : window2 });
63
- const SelectedPaperComponent = isFullScreenMode || isMobile ? PaperComponent : DraggablePaperComponent(ref, setRef);
62
+ const dialogProperties = {
63
+ initialWidth,
64
+ initialHeight,
65
+ maxWidth,
66
+ maxHeight
67
+ };
68
+ const SelectedPaperComponent = isFullScreenMode || isMobile ? PaperComponent : DraggablePaperComponent(ref, setRef, dialogProperties);
64
69
  return /* @__PURE__ */ jsx(
65
- BaseProvider,
70
+ DialogRootStyled,
66
71
  {
67
- value: {
68
- initialWidth,
69
- initialHeight,
70
- maxWidth,
71
- maxHeight
72
- },
73
- children: /* @__PURE__ */ jsx(
74
- DialogRootStyled,
75
- {
76
- ref: setRef,
77
- role: "dialog-modal",
78
- "data-fullscreen": isFullScreenMode || isMobile ? "true" : "false",
79
- ownerState,
80
- open,
81
- onClose: closeModal,
82
- fullScreen: isFullScreenMode || isMobile,
83
- "aria-labelledby": "child-modal-title",
84
- PaperComponent: SelectedPaperComponent,
85
- disableEnforceFocus: true,
86
- children: contentComponent
87
- }
88
- )
72
+ ref: setRef,
73
+ role: "dialog-modal",
74
+ "data-fullscreen": isFullScreenMode || isMobile ? "true" : "false",
75
+ ownerState,
76
+ open,
77
+ onClose: closeModal,
78
+ fullScreen: isFullScreenMode || isMobile,
79
+ "aria-labelledby": "child-modal-title",
80
+ PaperComponent: SelectedPaperComponent,
81
+ disableEnforceFocus: true,
82
+ children: contentComponent
89
83
  }
90
84
  );
91
85
  };
@@ -1,7 +1,7 @@
1
1
  export declare const ModalDialogRootStyled: import('@emotion/styled').StyledComponent<Pick<import('@mui/material').PaperOwnProps & import('@mui/material/OverridableComponent').CommonProps & Omit<Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
2
2
  ref?: ((instance: HTMLDivElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLDivElement> | null | undefined;
3
3
  }, "children" | "style" | "square" | "variant" | "sx" | "classes" | "className" | "elevation">, "children" | "ref" | "title" | "id" | "hidden" | "color" | "content" | "style" | "square" | "variant" | "translate" | "sx" | "classes" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "slot" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "elevation"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown>, {}, {}>;
4
- export declare const DialogRootStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../mui_extended/Dialog').DialogProps, "ref"> & import('react').RefAttributes<HTMLDivElement>, "children" | "onClose" | "title" | "component" | "scroll" | "id" | "container" | "components" | "hidden" | "color" | "content" | "style" | "open" | "variant" | "maxWidth" | "transitionDuration" | "translate" | "sx" | "classes" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "slot" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "componentsProps" | "slotProps" | "slots" | "TransitionComponent" | "TransitionProps" | "disablePortal" | "keepMounted" | keyof import('react').RefAttributes<HTMLDivElement> | "dataTestId" | "BackdropComponent" | "BackdropProps" | "closeAfterTransition" | "disableAutoFocus" | "disableEnforceFocus" | "disableEscapeKeyDown" | "disableRestoreFocus" | "disableScrollLock" | "hideBackdrop" | "onBackdropClick" | "onTransitionEnter" | "onTransitionExited" | "PaperProps" | "fullWidth" | "fullScreen" | "PaperComponent"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown>, {}, {}>;
4
+ export declare const DialogRootStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../mui_extended/Dialog').DialogProps, "ref"> & import('react').RefAttributes<HTMLDivElement>, "children" | "onClose" | "title" | "component" | "scroll" | "id" | "container" | "components" | "hidden" | "color" | "content" | "style" | "open" | "variant" | "maxWidth" | "transitionDuration" | "translate" | "sx" | "classes" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "slot" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "componentsProps" | "slotProps" | "slots" | "TransitionComponent" | "TransitionProps" | "disablePortal" | "keepMounted" | keyof import('react').RefAttributes<HTMLDivElement> | "BackdropComponent" | "BackdropProps" | "closeAfterTransition" | "disableAutoFocus" | "disableEnforceFocus" | "disableEscapeKeyDown" | "disableRestoreFocus" | "disableScrollLock" | "hideBackdrop" | "onBackdropClick" | "onTransitionEnter" | "onTransitionExited" | "PaperProps" | "dataTestId" | "fullWidth" | "fullScreen" | "PaperComponent"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown>, {}, {}>;
5
5
  export declare const ContentComponent: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
6
6
  export declare const DragResizeWindowStyled: import('@emotion/styled').StyledComponent<Pick<import('../../DragResizeWindow/types').DragResizeWindowProps & import('react').RefAttributes<HTMLDivElement>, keyof import('react').RefAttributes<HTMLDivElement> | keyof import('../../DragResizeWindow/types').DragResizeWindowProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown>, {}, {}>;
7
7
  export declare const PaperModalDialogStyled: import('@emotion/styled').StyledComponent<Pick<import('@mui/material').PaperOwnProps & import('@mui/material/OverridableComponent').CommonProps & Omit<Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
@@ -1,7 +1,7 @@
1
1
  import { generateUtilityClasses } from "@mui/material";
2
2
  import { unstable_composeClasses } from "@mui/base";
3
3
  import { c as componentName } from "./constants.js";
4
- import { g as getComponentUtilityClass } from "../../../utils/index.js";
4
+ import { g as getComponentUtilityClass } from "../../../utils/getComponentUtilityClass.js";
5
5
  const classes = generateUtilityClasses(componentName, [
6
6
  /* elements */
7
7
  "root",
@@ -1,9 +1,9 @@
1
1
  import { jsxs, jsx } from "react/jsx-runtime";
2
2
  import clsx from "clsx";
3
3
  import { T as TEST_PROP_ID } from "../../test/constants_no_mock.js";
4
- import { T as TEST_PROPS_DATA, P as PROPERTY_VALUE_KEY_COMPONENT, C as COMPONENT_PREFIX } from "./constants.js";
4
+ import { P as PROPERTY_VALUE_KEY_COMPONENT, T as TEST_PROPS_DATA, C as COMPONENT_PREFIX } from "./constants.js";
5
5
  import { g as getPropDataTestId, a as getNameDataTestId } from "../../test/getNameDataTestId.js";
6
- import { P as PropertyValueRootStyled, a as PropertyStyled, V as ValueStyled } from "./slots/PropertyValueSlots.js";
6
+ import { P as PropertyValueRootStyled, N as NameStyled, V as ValueStyled } from "./slots/PropertyValueSlots.js";
7
7
  import { a as getComponentSlotRoot } from "../../utils/getComponentSlotRoot.js";
8
8
  import { u as useComponentSize } from "../../hooks/useComponentSize/useComponentSize.js";
9
9
  import React from "react";
@@ -23,12 +23,14 @@ function PropertyValue(props) {
23
23
  mandatoryMessage,
24
24
  helperMessage,
25
25
  semanticWidth = "fullWidth",
26
+ propertyWidth = 200,
26
27
  size = "medium",
27
28
  valueHeight
28
29
  } = props;
29
30
  const { currentSize } = useComponentSize(size);
30
31
  const normalizedSize = currentSize === "large" ? "medium" : currentSize;
31
32
  const ownerState = {
33
+ propertyWidth,
32
34
  disabled: isForm && disabled ? disabled : false,
33
35
  isForm: isForm ? true : false,
34
36
  semanticWidth,
@@ -42,7 +44,8 @@ function PropertyValue(props) {
42
44
  return /* @__PURE__ */ jsx(
43
45
  Icon,
44
46
  {
45
- src: startAdornment
47
+ src: startAdornment,
48
+ color: "text.secondary"
46
49
  }
47
50
  );
48
51
  }
@@ -69,7 +72,7 @@ function PropertyValue(props) {
69
72
  [TEST_PROP_ID]: getNameDataTestId(COMPONENT_PREFIX, "root", dataTestId)
70
73
  } : {},
71
74
  children: [
72
- /* @__PURE__ */ jsxs(PropertyStyled, { ownerState, children: [
75
+ /* @__PURE__ */ jsxs(NameStyled, { ownerState, children: [
73
76
  renderIcon(),
74
77
  /* @__PURE__ */ jsx(
75
78
  Label,
@@ -39,7 +39,7 @@ const propertyValueStyles = {
39
39
  return {
40
40
  display: "flex",
41
41
  flexDirection: ownerState?.isForm ? "column" : "row",
42
- justifyContent: ownerState?.isForm ? "space-between" : "center",
42
+ justifyContent: ownerState?.isForm ? "space-between" : "left",
43
43
  alignItems: "flex-start",
44
44
  gap: theme.vars.size.baseSpacings["sp0-5"],
45
45
  color: theme.palette.text.primary,
@@ -55,20 +55,20 @@ const propertyValueStyles = {
55
55
  },
56
56
  ...theme.generalSettings.isMobile && {
57
57
  flexDirection: "column"
58
- },
59
- variants: []
58
+ }
60
59
  };
61
60
  },
62
61
  /**
63
62
  * Property Styles
64
63
  */
65
- property: ({ theme, ownerState }) => ({
64
+ name: ({ theme, ownerState }) => ({
66
65
  display: "flex",
67
66
  alignItems: "center",
68
- minWidth: "200px",
67
+ minWidth: ownerState.propertyWidth,
69
68
  width: ownerState?.semanticWidth ? "auto" : "200px",
70
69
  fontSize: theme.typography.body2.fontSize,
71
- color: theme.palette.text.primary
70
+ color: theme.palette.text.primary,
71
+ gap: theme.vars.size.baseSpacings["sp1"]
72
72
  }),
73
73
  /**
74
74
  * Value Styles (Form and No Form Combined)
@@ -1,5 +1,5 @@
1
1
  export declare enum PropertyValueSlots {
2
2
  Root = "Root",
3
- property = "property",
3
+ name = "name",
4
4
  value = "value"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  var PropertyValueSlots = /* @__PURE__ */ ((PropertyValueSlots2) => {
2
2
  PropertyValueSlots2["Root"] = "Root";
3
- PropertyValueSlots2["property"] = "property";
3
+ PropertyValueSlots2["name"] = "name";
4
4
  PropertyValueSlots2["value"] = "value";
5
5
  return PropertyValueSlots2;
6
6
  })(PropertyValueSlots || {});
@@ -1,9 +1,9 @@
1
- export declare const PropertyValueRootStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('../types').PropertyVaLueOwnerState> & Record<string, unknown> & {
1
+ export declare const PropertyValueRootStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
2
2
  ownerState: Partial<import('../types').PropertyVaLueOwnerState> & Record<string, unknown>;
3
3
  }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
4
- export declare const PropertyStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('../types').PropertyVaLueOwnerState> & Record<string, unknown> & {
4
+ export declare const NameStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
5
5
  ownerState: Partial<import('../types').PropertyVaLueOwnerState> & Record<string, unknown>;
6
6
  }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
7
- export declare const ValueStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('../types').PropertyVaLueOwnerState> & Record<string, unknown> & {
7
+ export declare const ValueStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
8
8
  ownerState: Partial<import('../types').PropertyVaLueOwnerState> & Record<string, unknown>;
9
9
  }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
@@ -6,16 +6,16 @@ const PropertyValueRootStyled = styled("div", {
6
6
  name: PROPERTY_VALUE_KEY_COMPONENT,
7
7
  slot: PropertyValueSlots.Root
8
8
  })(propertyValueStyles?.Root);
9
- const PropertyStyled = styled("div", {
9
+ const NameStyled = styled("div", {
10
10
  name: PROPERTY_VALUE_KEY_COMPONENT,
11
- slot: PropertyValueSlots.property
12
- })(propertyValueStyles?.property);
11
+ slot: PropertyValueSlots.name
12
+ })(propertyValueStyles.name);
13
13
  const ValueStyled = styled("div", {
14
14
  name: PROPERTY_VALUE_KEY_COMPONENT,
15
15
  slot: PropertyValueSlots.value
16
- })(propertyValueStyles?.value);
16
+ })(propertyValueStyles.value);
17
17
  export {
18
+ NameStyled as N,
18
19
  PropertyValueRootStyled as P,
19
- ValueStyled as V,
20
- PropertyStyled as a
20
+ ValueStyled as V
21
21
  };
@@ -2,13 +2,13 @@ import { ReactNode } from 'react';
2
2
  import { LabelProps } from '../Label/types';
3
3
  import { PROPERTY_VALUE_KEY_COMPONENT } from './constants';
4
4
  import { Theme } from '@mui/material';
5
- import { OverridesStyleRules } from '@mui/material/styles/overrides';
6
5
  import { PropertyValueSlots } from './slots/PropertyValueEnum';
7
6
  import { Sizes } from '@m4l/styles';
7
+ import { M4LOverridesStyleRules } from '../../@types/augmentations';
8
8
  /**
9
9
  * Tipos de valores posibles para los componentes dentro de `PropertyValue`.
10
10
  */
11
- export type PropertyValueType = keyof typeof PropertyValueSlots;
11
+ export type PropertyValueSlotsType = keyof typeof PropertyValueSlots;
12
12
  /**
13
13
  * Propiedades relacionadas con la configuración de la propiedad (`property`) en el componente `PropertyValue`.
14
14
  */
@@ -86,7 +86,7 @@ export interface PropertyValueProps extends PropertyProps, ValueProps, Omit<Labe
86
86
  /**
87
87
  * Estado del propietario para el componente `PropertyValue`, utilizado para personalizar estilos y comportamientos.
88
88
  */
89
- export interface PropertyVaLueOwnerState extends Pick<PropertyValueProps, 'disabled' | 'semanticWidth' | 'valueHeight'> {
89
+ export interface PropertyVaLueOwnerState extends Pick<PropertyValueProps, 'disabled' | 'semanticWidth' | 'valueHeight' | 'propertyWidth'> {
90
90
  /**
91
91
  * Indica si el componente está en modo formulario.
92
92
  */
@@ -99,4 +99,4 @@ export interface PropertyVaLueOwnerState extends Pick<PropertyValueProps, 'disab
99
99
  /**
100
100
  * Definición de estilos para el componente `PropertyValue`.
101
101
  */
102
- export type PropertyValueStyles = OverridesStyleRules<PropertyValueType, typeof PROPERTY_VALUE_KEY_COMPONENT, Theme>;
102
+ export type PropertyValueStyles = M4LOverridesStyleRules<PropertyValueSlotsType, typeof PROPERTY_VALUE_KEY_COMPONENT, Theme>;
@@ -12,7 +12,8 @@ function ScrollBar(props) {
12
12
  orientation,
13
13
  children,
14
14
  className,
15
- dataTestId
15
+ dataTestId,
16
+ ...otherProps
16
17
  } = props;
17
18
  const isMobile = useIsMobile();
18
19
  const ownerState = {
@@ -36,6 +37,7 @@ function ScrollBar(props) {
36
37
  autoHide: false,
37
38
  ownerState: {},
38
39
  className: "simplebar",
40
+ ...otherProps,
39
41
  children
40
42
  }
41
43
  )
@@ -3,5 +3,4 @@ export { IconButtonAnimate } from './IconButtonAnimate';
3
3
  export { MotionContainer } from './MotionContainer';
4
4
  export { MotionLazyContainer } from './MotionLazyContainer';
5
5
  export { LoadingScreen } from './LoadingScreen';
6
- export { PropagateLoaderSpinner } from '../extended/React-Spinners/PropagateLoaderSpinner/PropagateLoaderSpinner';
7
6
  export { AnimatedScroll } from './AnimatedScroll';
@@ -12,11 +12,11 @@ import { I as ICONS } from "../../../../icons.js";
12
12
  import { g as getAreasDictionary, A as AREAS_DICCTIONARY } from "../../../../dictionary.js";
13
13
  import { A as AREAS_ADMIN_KEY_COMPONENT } from "../../constants.js";
14
14
  import { g as getComponentClasses } from "../../../../../../utils/getComponentSlotRoot.js";
15
+ import { A as AreasAdminSlots } from "../../slots/AreasAdminEnum.js";
15
16
  import { R as RHFormProvider } from "../../../../../hook-form/RHFormContext/index.js";
16
17
  import { T as Typography } from "../../../../../mui_extended/Typography/Typography.js";
17
18
  import { R as RHFTextField } from "../../../../../hook-form/RHFTextField/RHFTextField.js";
18
19
  import { A as ActionsContainer } from "../../../../../CommonActions/components/ActionsContainer/ActionsContainer.js";
19
- import { A as AreasAdminSlots } from "../../slots/AreasAdminEnum.js";
20
20
  import { P as Popover } from "../../../../../mui_extended/Popover/Popover.js";
21
21
  import { A as ActionCancel } from "../../../../../CommonActions/components/ActionCancel/ActionCancel.js";
22
22
  import { A as ActionIntro } from "../../../../../CommonActions/components/ActionIntro/ActionIntro.js";
@@ -116,7 +116,6 @@ const AreaChip = (props) => {
116
116
  opacity: selected ? false : true,
117
117
  color: selected ? "info" : "default",
118
118
  ownerState: { ...ownerState },
119
- hasIconClose: false,
120
119
  onClick: () => selectArea(areaId),
121
120
  size,
122
121
  label: `${areaName}`,