@m4l/components 9.2.0 → 9.2.2
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.
- package/.storybook/decorators/WithPopupsProvider/WithPopupsProvider.d.ts +6 -1
- package/.storybook/decorators/WithWindowsContainerSizer/WithWindowsContainerSizer.d.ts +5 -0
- package/@types/types.d.ts +11 -0
- package/components/AccountPopover/slots/AccountPopoverSlots.d.ts +3 -3
- package/components/AppBar/slots/AppBarSlots.d.ts +2 -2
- package/components/Chip/slots/ChipSlots.d.ts +1 -1
- package/components/Color/slots/ColorSlots.d.ts +1 -1
- package/components/CommonActions/components/ActionCancel/slots/ActionsCancelSlots.d.ts +1 -1
- package/components/CommonActions/components/ActionFormCancel/ActionFormCancel.js +1 -1
- package/components/CommonActions/components/ActionFormCancel/slots/ActionFormCancelSlots.d.ts +1 -1
- package/components/CommonActions/components/ActionIntro/slots/ActionsIntroSlots.d.ts +1 -1
- package/components/CommonActions/components/ActionsContainer/slots/ActionsContainerSlots.d.ts +1 -1
- package/components/DragResizeWindow/DragResizeWindow.d.ts +2 -2
- package/components/DragResizeWindow/DragResizeWindow.js +69 -11
- package/components/DragResizeWindow/DragResizeWindow.styles.js +0 -2
- package/components/DragResizeWindow/classes/index.js +1 -0
- package/components/DragResizeWindow/classes/types.d.ts +1 -0
- package/components/DragResizeWindow/helpers/draggingOrResizingWindow.d.ts +7 -0
- package/components/DragResizeWindow/helpers/draggingOrResizingWindow.js +1 -0
- package/components/DragResizeWindow/helpers/expandingParentContainer.d.ts +12 -0
- package/components/DragResizeWindow/helpers/expandingParentContainer.js +31 -0
- package/components/DragResizeWindow/helpers/getInitialSize.d.ts +15 -0
- package/components/DragResizeWindow/helpers/getInitialSize.js +56 -0
- package/components/DragResizeWindow/helpers/index.d.ts +6 -15
- package/components/DragResizeWindow/helpers/index.js +1 -37
- package/components/DragResizeWindow/helpers/isElmentInViewport.d.ts +15 -0
- package/components/DragResizeWindow/helpers/isElmentInViewport.js +1 -0
- package/components/DragResizeWindow/helpers/pointPosition.d.ts +36 -0
- package/components/DragResizeWindow/helpers/pointPosition.js +82 -0
- package/components/DragResizeWindow/helpers/shrinkingParentContainer.d.ts +6 -0
- package/components/DragResizeWindow/helpers/shrinkingParentContainer.js +34 -0
- package/components/DragResizeWindow/hooks/useDimensionEffects.d.ts +2 -0
- package/components/DragResizeWindow/hooks/useDimensionEffects.js +20 -223
- package/components/DragResizeWindow/hooks/useDragOptions.d.ts +8 -1
- package/components/DragResizeWindow/hooks/useDragOptions.js +79 -6
- package/components/DragResizeWindow/hooks/useResizeOptions.d.ts +11 -0
- package/components/DragResizeWindow/hooks/useResizeOptions.js +164 -19
- package/components/DragResizeWindow/slots/DragResizeWindowSlots.d.ts +2 -2
- package/components/DragResizeWindow/types.d.ts +53 -4
- package/components/DragResizeWindow/utils.d.ts +5 -2
- package/components/DragResizeWindow/utils.js +32 -13
- package/components/DragResizeWindowRND/DragResizeWindowRND.d.ts +19 -0
- package/components/DragResizeWindowRND/DragResizeWindowRND.js +224 -0
- package/components/DragResizeWindowRND/DragResizeWindowRND.styles.d.ts +5 -0
- package/components/DragResizeWindowRND/DragResizeWindowRND.styles.js +75 -0
- package/components/DragResizeWindowRND/classes/index.d.ts +2 -0
- package/components/DragResizeWindowRND/classes/index.js +18 -0
- package/components/DragResizeWindowRND/classes/types.d.ts +9 -0
- package/components/DragResizeWindowRND/constants.d.ts +3 -0
- package/components/DragResizeWindowRND/constants.js +6 -0
- package/components/DragResizeWindowRND/helpers/expandingParentContainer.d.ts +12 -0
- package/components/DragResizeWindowRND/helpers/expandingParentContainer.js +31 -0
- package/components/DragResizeWindowRND/helpers/getInitialSize.d.ts +15 -0
- package/components/DragResizeWindowRND/helpers/getInitialSize.js +56 -0
- package/components/DragResizeWindowRND/helpers/index.d.ts +5 -0
- package/components/DragResizeWindowRND/helpers/index.js +1 -0
- package/components/DragResizeWindowRND/helpers/isElmentInViewport.d.ts +15 -0
- package/components/DragResizeWindowRND/helpers/isElmentInViewport.js +1 -0
- package/components/DragResizeWindowRND/helpers/pointPosition.d.ts +36 -0
- package/components/DragResizeWindowRND/helpers/pointPosition.js +1 -0
- package/components/DragResizeWindowRND/helpers/shrinkingParentContainer.d.ts +6 -0
- package/components/DragResizeWindowRND/helpers/shrinkingParentContainer.js +34 -0
- package/components/DragResizeWindowRND/hooks/useRNDDimensionEffects.d.ts +23 -0
- package/components/DragResizeWindowRND/hooks/useRNDDimensionEffects.js +90 -0
- package/components/DragResizeWindowRND/hooks/useRNDDragOptions.d.ts +28 -0
- package/components/DragResizeWindowRND/hooks/useRNDDragOptions.js +220 -0
- package/components/DragResizeWindowRND/hooks/useRNDReResizeOptions.d.ts +45 -0
- package/components/DragResizeWindowRND/hooks/useRNDReResizeOptions.js +173 -0
- package/components/DragResizeWindowRND/icons.d.ts +3 -0
- package/components/DragResizeWindowRND/index.d.ts +2 -0
- package/components/DragResizeWindowRND/index.js +1 -0
- package/components/DragResizeWindowRND/slots/DragResizeWindowRNDSlots.d.ts +12 -0
- package/components/DragResizeWindowRND/slots/DragResizeWindowRNDSlots.js +19 -0
- package/components/DragResizeWindowRND/slots/slots.d.ts +5 -0
- package/components/DragResizeWindowRND/slots/slots.js +9 -0
- package/components/DragResizeWindowRND/types.d.ts +295 -0
- package/components/DragResizeWindowRND/utils.d.ts +15 -0
- package/components/DynamicFilter/slots/dynamicFilterSlots.d.ts +4 -4
- package/components/DynamicFilter/subcomponents/PopoverFilter/usePopoverFilter.d.ts +3 -3
- package/components/DynamicSort/slots/DynamicSortSlots.d.ts +2 -2
- package/components/DynamicSort/subcomponents/PopoverSort/usePopoverSort.d.ts +3 -3
- package/components/GridLayout/GridLayout.d.ts +2 -1
- package/components/GridLayout/GridLayout.js +10 -5
- package/components/GridLayout/classes/index.d.ts +1 -1
- package/components/GridLayout/subcomponents/Responsive/index.d.ts +1 -1
- package/components/GridLayout/subcomponents/Responsive/index.js +4 -3
- package/components/GridLayout/subcomponents/Responsive/types.d.ts +4 -0
- package/components/GridLayout/subcomponents/withSizeProvider/index.d.ts +3 -1
- package/components/GridLayout/subcomponents/withSizeProvider/index.js +11 -15
- package/components/GridLayout/types.d.ts +4 -0
- package/components/Label/slots/LabelSlots.d.ts +1 -1
- package/components/LanguagePopover/slots/LanguagePopoverSlots.d.ts +1 -1
- package/components/MFIsolationApp/MFIsolationApp.js +24 -11
- package/components/MFIsolationApp/types.d.ts +8 -1
- package/components/MFLoader/styles.js +17 -2
- package/components/MFLoader/types.d.ts +19 -2
- package/components/MenuActions/slots/MenuActionsSlots.d.ts +2 -2
- package/components/ModalDialog/ModalDialog.js +2 -2
- package/components/ModalDialog/slots/ModalDialogSlots.d.ts +2 -2
- package/components/NumberInput/slots/NumberInputSlots.d.ts +2 -2
- package/components/ToastContainer/slots/toastContainerSlots.d.ts +2 -2
- package/components/ToastContainer/slots/toastContainerSlots.js +1 -1
- package/components/WindowBase/WindowBase.js +3 -5
- package/components/WindowBase/WindowBase.styles.js +26 -17
- package/components/{areas/contexts/DynamicMFParmsContext/index.js → WindowBase/contexts/DynamicMFParmsContext/DynamicMFParmsContext.js} +2 -2
- package/components/WindowBase/contexts/DynamicMFParmsContext/index.d.ts +4 -0
- package/components/WindowBase/contexts/DynamicMFParmsContext/index.js +1 -0
- package/components/{areas → WindowBase}/contexts/DynamicMFParmsContext/store.d.ts +0 -1
- package/components/{areas/contexts/WindowToolsMFContext/index.js → WindowBase/contexts/WindowToolsMFContext/WindowToolsMFContext.js} +4 -3
- package/components/WindowBase/contexts/WindowToolsMFContext/index.d.ts +2 -0
- package/components/WindowBase/contexts/WindowToolsMFContext/index.js +1 -0
- package/components/{areas → WindowBase}/contexts/WindowToolsMFContext/types.d.ts +3 -2
- package/components/WindowBase/contexts/index.d.ts +2 -0
- package/components/WindowBase/helpers.d.ts +22 -0
- package/components/{areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/hooks/useHeaderActions/helper.js → WindowBase/helpers.js} +17 -13
- package/components/{areas → WindowBase}/hooks/useDynamicMFParameters/index.js +9 -1
- package/components/{areas → WindowBase}/hooks/useWindowToolsMF/index.js +1 -1
- package/components/WindowBase/index.d.ts +5 -0
- package/components/WindowBase/slots/WindowBaseEnum.d.ts +2 -1
- package/components/WindowBase/slots/WindowBaseEnum.js +1 -0
- package/components/WindowBase/slots/WindowBaseSlots.d.ts +45 -14
- package/components/WindowBase/slots/WindowBaseSlots.js +10 -5
- package/components/{areas/components/AreasViewer/subcomponents/Area/subcomponents/Window → WindowBase}/subcomponents/Component/index.d.ts +1 -1
- package/components/{areas/components/AreasViewer/subcomponents/Area/subcomponents/Window → WindowBase}/subcomponents/Component/index.js +6 -6
- package/components/WindowBase/subcomponents/Component/types.d.ts +9 -0
- package/components/WindowBase/subcomponents/EditionInfo/EditionInfo.js +1 -1
- package/components/WindowBase/subcomponents/Header/HeaderWindowBase.js +52 -24
- package/components/WindowBase/subcomponents/Header/types.d.ts +1 -38
- package/components/WindowBase/subcomponents/MicroFrontend/MicroFrontend.d.ts +8 -0
- package/components/WindowBase/subcomponents/MicroFrontend/MicroFrontend.js +10 -0
- package/components/WindowBase/subcomponents/MicroFrontend/types.d.ts +8 -0
- package/components/WindowBase/types.d.ts +52 -18
- package/components/WindowConfirm/WindowConfirm.js +1 -1
- package/components/areas/components/AreasAdmin/slots/AreasAdminSlots.d.ts +2 -2
- package/components/areas/components/AreasViewer/AreasViewer.d.ts +1 -1
- package/components/areas/components/AreasViewer/AreasViewer.js +7 -9
- package/components/areas/components/AreasViewer/AreasViewer.styles.js +12 -11
- package/components/areas/components/AreasViewer/slots/AreasViewerEnum.d.ts +2 -2
- package/components/areas/components/AreasViewer/slots/AreasViewerEnum.js +1 -1
- package/components/areas/components/AreasViewer/slots/AreasViewerSlots.d.ts +3 -3
- package/components/areas/components/AreasViewer/slots/AreasViewerSlots.js +6 -5
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/AreaGridLayout/AreaGridLayout.js +44 -4
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/Window.d.ts +7 -5
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/Window.js +9 -9
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/hooks/useHeaderActions.d.ts +12 -0
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/hooks/useHeaderActions.js +58 -0
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/hooks/useRightActions.d.ts +6 -0
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/hooks/useRightActions.js +88 -0
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/hooks/{useWindow/useWindow.d.ts → useWindow.d.ts} +7 -7
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/hooks/{useWindow/useWindow.js → useWindow.js} +13 -11
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/types.d.ts +7 -3
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/WindowModal/WindowModal.d.ts +5 -4
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/WindowModal/WindowModal.js +25 -25
- package/components/areas/components/AreasViewer/types.d.ts +3 -1
- package/components/areas/components/index.d.ts +1 -1
- package/components/areas/constants.d.ts +1 -0
- package/components/areas/constants.js +3 -1
- package/components/areas/contexts/AreasContext/helpers/generateModuleCount.d.ts +2 -2
- package/components/areas/contexts/AreasContext/helpers/getWindowForAreaTest.d.ts +2 -2
- package/components/areas/contexts/AreasContext/helpers/helper.d.ts +4 -4
- package/components/areas/contexts/AreasContext/helpers/helper.js +6 -8
- package/components/areas/contexts/AreasContext/helpers/selectLayout.d.ts +6 -0
- package/components/areas/contexts/AreasContext/helpers/selectLayout.js +27 -0
- package/components/areas/contexts/AreasContext/index.d.ts +4 -4
- package/components/areas/contexts/AreasContext/index.js +24 -4
- package/components/areas/contexts/AreasContext/store.d.ts +4 -4
- package/components/areas/contexts/AreasContext/store.js +128 -86
- package/components/areas/contexts/AreasContext/types.d.ts +142 -31
- package/components/areas/contexts/index.d.ts +0 -6
- package/components/areas/hooks/index.d.ts +0 -2
- package/components/areas/hooks/useAreas/index.d.ts +5 -5
- package/components/areas/hooks/useSetWindowsTitle/useSetWindowsTitle.js +2 -2
- package/components/areas/types.d.ts +109 -100
- package/components/extended/React-Resizable/Resizable/Resizable.js +2 -1
- package/components/extended/React-Resizable/Resizable/slots/ResizableSlots.d.ts +1 -1
- package/components/extended/React-Resizable/ResizableBox/slots/ResizableBoxSlots.d.ts +1 -1
- package/components/extended/React-Resizable/helpers.d.ts +6 -1
- package/components/extended/React-Resizable/helpers.js +11 -2
- package/components/hook-form/RHFCheckbox/slots/RHFCheckBoxSlots.d.ts +1 -1
- package/components/hook-form/RHFPeriod/slots/RHFPeriodSlots.d.ts +2 -2
- package/components/hook-form/RHFSelect/slots/RHFSlots.d.ts +1 -1
- package/components/hook-form/RHFTextField/slots/RHFTextFieldSlots.d.ts +1 -1
- package/components/hook-form/RHFTextFieldPassword/slots/RHFTextFieldPasswordSlots.d.ts +2 -2
- package/components/index.d.ts +1 -0
- package/components/mui_extended/Accordion/slots/AccordionSlots.d.ts +2 -2
- package/components/mui_extended/Autocomplete/slots/AutocompleteSlots.d.ts +4 -4
- package/components/mui_extended/Avatar/slots/AvatarSlots.d.ts +1 -1
- package/components/mui_extended/Badge/slots/BadgeSlots.d.ts +1 -1
- package/components/mui_extended/Button/slots/ButtonSlots.d.ts +1 -1
- package/components/mui_extended/CheckBox/slots/CheckBoxSlots.d.ts +1 -1
- package/components/mui_extended/DateTimePicker/slots/DateTimePickerSlots.d.ts +4 -4
- package/components/mui_extended/Divider/slots/DividerSlots.d.ts +1 -1
- package/components/mui_extended/IconButton/slots/IconButtonSlots.d.ts +2 -2
- package/components/mui_extended/LoadingButton/slots/LoadingButtonSlots.d.ts +1 -1
- package/components/mui_extended/MenuDivider/slots/MenuDividerSlots.d.ts +1 -1
- package/components/mui_extended/MenuItem/slots/MenuItemSlots.d.ts +1 -1
- package/components/mui_extended/MenuItem/types.d.ts +1 -1
- package/components/mui_extended/Popper/slots/PopperStlots.d.ts +1 -1
- package/components/mui_extended/Select/slots/SelectSlots.d.ts +2 -2
- package/components/mui_extended/Select/slots/SelectSlots.js +1 -1
- package/components/mui_extended/Skeleton/Slots/skeletonSlots.d.ts +1 -1
- package/components/mui_extended/Stack/slots/StackSlot.d.ts +1 -1
- package/components/mui_extended/Tab/Slots/TabSlots.d.ts +1 -1
- package/components/mui_extended/Tabs/slots/TabsSlots.d.ts +1 -1
- package/components/mui_extended/TextField/slots/TextFieldSlots.d.ts +1 -1
- package/components/mui_extended/TimePicker/slots/TimePickerSlots.d.ts +3 -3
- package/components/mui_extended/ToggleButton/slots/ToggleButtonSlots.d.ts +1 -1
- package/components/mui_extended/ToggleIconButton/slots/ToggleIconButtonSlots.d.ts +1 -1
- package/components/mui_extended/Typography/slots/typographySlots.d.ts +1 -1
- package/components/popups/components/PopupsProvider/contexts/PopupsContext/PopupsContext.d.ts +8 -2
- package/components/popups/components/PopupsProvider/contexts/PopupsContext/PopupsContext.js +6 -24
- package/components/popups/components/PopupsProvider/contexts/PopupsContext/store.d.ts +9 -3
- package/components/popups/components/PopupsProvider/contexts/PopupsContext/store.js +278 -211
- package/components/popups/components/PopupsProvider/contexts/PopupsContext/tests/PopupContext.test.d.ts +1 -0
- package/components/popups/components/PopupsProvider/contexts/PopupsContext/tests/PopusContext.store.test.d.ts +1 -0
- package/components/popups/components/PopupsProvider/contexts/PopupsContext/tests/__mocks__/storeMock.d.ts +29 -0
- package/components/popups/components/PopupsProvider/contexts/PopupsContext/types.d.ts +183 -79
- package/components/popups/components/PopupsProvider/hooks/{useHeaderActionsPopups/useHeaderActionsPopups.d.ts → useHeaderActionsPopups.d.ts} +2 -8
- package/components/popups/components/PopupsProvider/hooks/useHeaderActionsPopups.js +60 -0
- package/components/popups/components/PopupsProvider/hooks/usePopups.d.ts +43 -0
- package/components/popups/components/PopupsProvider/hooks/usePopups.js +138 -0
- package/components/popups/components/PopupsProvider/hooks/usePopupsStore.d.ts +5 -0
- package/components/popups/components/PopupsProvider/hooks/{usePopupsStore/index.js → usePopupsStore.js} +1 -1
- package/components/popups/components/PopupsViewer/PopupsViewer.d.ts +13 -4
- package/components/popups/components/PopupsViewer/PopupsViewer.js +27 -6
- package/components/popups/components/PopupsViewer/PopupsViewer.styles.js +3 -11
- package/components/popups/components/PopupsViewer/slots/popupsViewerSlots.d.ts +7 -10
- package/components/popups/components/PopupsViewer/slots/popupsViewerSlots.js +3 -8
- package/components/popups/components/PopupsViewer/slots/slots.d.ts +1 -2
- package/components/popups/components/PopupsViewer/slots/slots.js +0 -1
- package/components/popups/components/PopupsViewer/subcomponents/Popup/Popup.d.ts +1 -1
- package/components/popups/components/PopupsViewer/subcomponents/Popup/Popup.js +69 -53
- package/components/popups/components/PopupsViewer/subcomponents/Popup/types.d.ts +16 -0
- package/components/popups/components/PopupsViewer/tests/PopupsViewer.integration.test.d.ts +1 -0
- package/components/popups/components/PopupsViewer/types.d.ts +13 -5
- package/contexts/AppearanceComponentContext/AppearanceComponentContext.d.ts +8 -0
- package/contexts/AppearanceComponentContext/AppearanceComponentContext.js +4 -3
- package/contexts/AppearanceComponentContext/AppearanceComponentStore.d.ts +8 -1
- package/contexts/AppearanceComponentContext/AppearanceComponentStore.js +10 -3
- package/contexts/index.d.ts +1 -1
- package/hooks/useDataGridPersistence/useDataGridPersistence.js +4 -4
- package/hooks/useDynamicFilterAndSort/types.d.ts +1 -1
- package/hooks/useSizeContainer/index.js +2 -2
- package/index.js +91 -85
- package/not_recognized/index.js +1280 -0
- package/package.json +2 -1
- package/storybook/components/Areas/AreasViewer/{AreasViewr.stories.d.ts → AreasViewer.stories.d.ts} +2 -2
- package/storybook/components/Areas/AreasViewer/hooks/useWindowsActions.d.ts +4 -0
- package/storybook/components/Areas/AreasViewer/subcomponents/AreasViewerRender.d.ts +4 -0
- package/storybook/components/Areas/AreasViewer/subcomponents/Launcher/Launcher.d.ts +5 -0
- package/storybook/components/Areas/AreasViewer/subcomponents/Launcher/PopupButton.d.ts +21 -0
- package/storybook/components/Areas/AreasViewer/subcomponents/Launcher/PopupContentExample.d.ts +4 -0
- package/storybook/components/Areas/AreasViewer/subcomponents/layouts/ClientsLayout.d.ts +4 -0
- package/storybook/components/Areas/AreasViewer/subcomponents/layouts/UsersLayout.d.ts +4 -0
- package/storybook/components/DragResizeWindowRND/stories/DragResizeWindowRND.stories.d.ts +8 -0
- package/storybook/components/DragResizeWindowRND/stories/constants.d.ts +3 -0
- package/storybook/components/DragResizeWindowRND/stories/subcomponents/ContentExample.d.ts +4 -0
- package/storybook/components/DragResizeWindowRND/stories/subcomponents/RNDWindowsContainer/RNDWindowsContainer.d.ts +5 -0
- package/storybook/components/DragResizeWindowRND/stories/subcomponents/RNDWindowsContainer/index.d.ts +1 -0
- package/storybook/components/DragResizeWindowRND/stories/subcomponents/RNDWindowsContainer/types.d.ts +4 -0
- package/storybook/components/{Areas/AreasViewer → DragResizeWindowRND/stories}/subcomponents/WithExtendedContainer.d.ts +1 -1
- package/storybook/components/DragResizeWindowRND/stories/types.d.ts +3 -0
- package/storybook/components/PopupsViewer/basic.stories.d.ts +12 -2
- package/storybook/components/PopupsViewer/subcomponents/PopupActions.d.ts +3 -1
- package/storybook/components/PopupsViewer/subcomponents/PopupContentExample.d.ts +2 -1
- package/storybook/components/PopupsViewer/subcomponents/initialPopups.d.ts +1 -1
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/hooks/useHeaderActions/helper.d.ts +0 -22
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/hooks/useHeaderActions/useHeaderActions.d.ts +0 -28
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/hooks/useHeaderActions/useHeaderActions.js +0 -155
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Component/types.d.ts +0 -10
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/MicroFrontend/MicroFrontend.d.ts +0 -8
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/MicroFrontend/MicroFrontend.js +0 -10
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/MicroFrontend/types.d.ts +0 -8
- package/components/popups/components/PopupsProvider/hooks/useHeaderActionsPopups/helper.d.ts +0 -28
- package/components/popups/components/PopupsProvider/hooks/useHeaderActionsPopups/helper.js +0 -44
- package/components/popups/components/PopupsProvider/hooks/useHeaderActionsPopups/useHeaderActionsPopups.js +0 -157
- package/components/popups/components/PopupsProvider/hooks/usePopops/usePopups.d.ts +0 -28
- package/components/popups/components/PopupsProvider/hooks/usePopops/usePopups.js +0 -117
- package/components/popups/components/PopupsProvider/hooks/usePopupsStore/index.d.ts +0 -6
- package/storybook/components/Areas/AreasViewer/subcomponents/ClientsHeaderActions.d.ts +0 -4
- package/storybook/components/Areas/AreasViewer/subcomponents/UsersHeaderActions.d.ts +0 -4
- /package/components/{popups/components/PopupsProvider/tests/PopupsProvider.test.d.ts → DragResizeWindowRND/tests/DragResizeWindow.test.d.ts} +0 -0
- /package/components/{areas/contexts/DynamicMFParmsContext/index.d.ts → WindowBase/contexts/DynamicMFParmsContext/DynamicMFParmsContext.d.ts} +0 -0
- /package/components/{areas → WindowBase}/contexts/DynamicMFParmsContext/store.js +0 -0
- /package/components/{areas → WindowBase}/contexts/DynamicMFParmsContext/types.d.ts +0 -0
- /package/components/{areas/contexts/WindowToolsMFContext/index.d.ts → WindowBase/contexts/WindowToolsMFContext/WindowToolsMFContext.d.ts} +0 -0
- /package/components/{areas → WindowBase}/hooks/useDynamicMFParameters/index.d.ts +0 -0
- /package/components/{areas → WindowBase}/hooks/useWindowToolsMF/index.d.ts +0 -0
package/index.js
CHANGED
|
@@ -15,14 +15,10 @@ import { A as A3 } from "./components/AppBar/AppBar.js";
|
|
|
15
15
|
import { g as g2 } from "./components/AppBar/dictionary.js";
|
|
16
16
|
import { A as A4 } from "./components/areas/components/AreasAdmin/AreasAdmin.js";
|
|
17
17
|
import { A as A5 } from "./components/areas/components/AreasViewer/AreasViewer.js";
|
|
18
|
-
import { a as a2,
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import { u as u2 } from "./components/areas/hooks/useWindowToolsMF/index.js";
|
|
23
|
-
import { u as u3 } from "./components/areas/hooks/useSetWindowsTitle/useSetWindowsTitle.js";
|
|
24
|
-
import { u as u4 } from "./components/areas/hooks/useAreas/index.js";
|
|
25
|
-
import { A as A7, a as a4, L as L2, b as b2, g as g3 } from "./components/areas/dictionary.js";
|
|
18
|
+
import { a as a2, A as A6 } from "./components/areas/contexts/AreasContext/index.js";
|
|
19
|
+
import { u } from "./components/areas/hooks/useSetWindowsTitle/useSetWindowsTitle.js";
|
|
20
|
+
import { u as u2 } from "./components/areas/hooks/useAreas/index.js";
|
|
21
|
+
import { A as A7, a as a3, L as L2, b as b2, g as g3 } from "./components/areas/dictionary.js";
|
|
26
22
|
import { B } from "./components/BaseModule/BaseModule.js";
|
|
27
23
|
import { C } from "./components/Chip/Chip.js";
|
|
28
24
|
import { A as A8 } from "./components/commercial/AppBarCommercial/index.js";
|
|
@@ -49,23 +45,25 @@ import { C as C8 } from "./components/DataGrid/formatters/ColumnPriceFormatter/i
|
|
|
49
45
|
import { C as C9 } from "./components/DataGrid/formatters/ColumnInteractiveCheckFormatter/index.js";
|
|
50
46
|
import { C as C10 } from "./components/DataGrid/formatters/ColumnSetCheckFormatter/index.js";
|
|
51
47
|
import { C as C11 } from "./components/DataGrid/formatters/ColumnIconFormatter/index.js";
|
|
52
|
-
import { u as
|
|
53
|
-
import { u as
|
|
54
|
-
import { u as
|
|
55
|
-
import { u as
|
|
56
|
-
import { u as
|
|
57
|
-
import { u as
|
|
58
|
-
import { u as
|
|
59
|
-
import { u as
|
|
60
|
-
import { u as
|
|
48
|
+
import { u as u3 } from "./components/DataGrid/formatters/ColumnBooleanFormatter/useColumnBoolean.js";
|
|
49
|
+
import { u as u4 } from "./components/DataGrid/formatters/ColumnConcatenatedValueFormatter/useColumnConcatenatedValue.js";
|
|
50
|
+
import { u as u5 } from "./components/DataGrid/formatters/ColumnDateFormatter/useColumnDate.js";
|
|
51
|
+
import { u as u6 } from "./components/DataGrid/formatters/ColumnNestedValueFormatter/useColumnNestedValue.js";
|
|
52
|
+
import { u as u7 } from "./components/DataGrid/formatters/ColumnPriceFormatter/useColumnPrice.js";
|
|
53
|
+
import { u as u8 } from "./components/DataGrid/formatters/ColumnUncertaintyFormatter/useColumnUncertainty.js";
|
|
54
|
+
import { u as u9 } from "./components/DataGrid/formatters/ColumnPointsFormatter/useColumnPoints.js";
|
|
55
|
+
import { u as u10 } from "./components/DataGrid/formatters/ColumnInteractiveCheckFormatter/useColumnInteractiveCheck.js";
|
|
56
|
+
import { u as u11 } from "./components/DataGrid/formatters/ColumnSetCheckFormatter/useColumnSetCheck.js";
|
|
61
57
|
import { D as D3 } from "./components/DragResizeWindow/DragResizeWindow.js";
|
|
62
58
|
import { d as d2 } from "./components/DragResizeWindow/classes/index.js";
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
59
|
+
import { D as D4 } from "./components/DragResizeWindowRND/DragResizeWindowRND.js";
|
|
60
|
+
import { d as d3 } from "./components/DragResizeWindowRND/classes/index.js";
|
|
61
|
+
import { a as a4 } from "./components/DynamicFilter/dictionary.js";
|
|
62
|
+
import { a as a5, g as g7 } from "./components/DynamicFilter/helpers/frontEndHelpers.js";
|
|
63
|
+
import { D as D5 } from "./components/DynamicFilter/DynamicFilter.js";
|
|
66
64
|
import { b as b3 } from "./components/DynamicSort/dictionary.js";
|
|
67
65
|
import { S as S3 } from "./components/DynamicSort/helpers/frontEndHelpers.js";
|
|
68
|
-
import { D as
|
|
66
|
+
import { D as D6 } from "./components/DynamicSort/DynamicSort.js";
|
|
69
67
|
import { R } from "./components/extended/React-Resizable/Resizable/Resizable.js";
|
|
70
68
|
import { R as R2 } from "./components/extended/React-Resizable/ResizableBox/ResizableBox.js";
|
|
71
69
|
import { S as S4 } from "./components/extended/React-Splitter-Layout/SplitLayout.js";
|
|
@@ -73,18 +71,18 @@ import { P } from "./components/extended/React-Spinners/PropagateLoaderSpinner/P
|
|
|
73
71
|
import { F } from "./components/extended/React-Window/FixedSizeList/FixedSizeList.js";
|
|
74
72
|
import { V } from "./components/extended/React-Window/VariableSizeList/VariableSizeList.js";
|
|
75
73
|
import { B as B2 } from "./components/formatters/BooleanFormatter/BooleanFormatter.js";
|
|
76
|
-
import { D as
|
|
74
|
+
import { D as D7, g as g8 } from "./components/formatters/DateFormatter/DateFormatter.js";
|
|
77
75
|
import { U, g as g9 } from "./components/formatters/UncertaintyFormatter/UncertaintyFormatter.js";
|
|
78
76
|
import { P as P2, g as g10 } from "./components/formatters/PointsFormatter/PointsFormatter.js";
|
|
79
77
|
import { C as C12, g as g11 } from "./components/formatters/ConcatenatedFormatter/ConcatenatedFormatter.js";
|
|
80
|
-
import { P as P3, u as
|
|
78
|
+
import { P as P3, u as u12 } from "./components/formatters/PeriodFormatter/PeriodFormatter.js";
|
|
81
79
|
import { P as P4, g as g12 } from "./components/formatters/PriceFormatter/PriceFormatter.js";
|
|
82
80
|
import { g as g13 } from "./components/formatters/DistanceToNowFormatter/dictionary.js";
|
|
83
|
-
import { D as
|
|
81
|
+
import { D as D8 } from "./components/formatters/DistanceToNowFormatter/DistanceToNowFormatter.js";
|
|
84
82
|
import { g as g14 } from "./components/formatters/dictionary.js";
|
|
85
83
|
import { G } from "./components/GridLayout/GridLayout.js";
|
|
86
84
|
import { R as R3 } from "./components/GridLayout/subcomponents/Responsive/index.js";
|
|
87
|
-
import { c as
|
|
85
|
+
import { c as c2, d as d4, e } from "./components/GridLayout/subcomponents/Responsive/responsiveUtils.js";
|
|
88
86
|
import { i, k } from "./components/GridLayout/utils.js";
|
|
89
87
|
import { w } from "./components/GridLayout/subcomponents/withSizeProvider/index.js";
|
|
90
88
|
import { H as H2 } from "./components/HelmetPage/index.js";
|
|
@@ -119,8 +117,8 @@ import { L as L5 } from "./components/LinearProgressIndeterminate/LinearProgress
|
|
|
119
117
|
import { L as L6 } from "./components/Loadable/index.js";
|
|
120
118
|
import { L as L7 } from "./components/LoadingError/LoadingError.js";
|
|
121
119
|
import { g as g18 } from "./components/LoadingError/dictionary.js";
|
|
122
|
-
import { a as
|
|
123
|
-
import { a as
|
|
120
|
+
import { a as a6 } from "./components/MenuActions/dictionary.js";
|
|
121
|
+
import { a as a7, M as M3 } from "./components/MenuActions/MenuActions.js";
|
|
124
122
|
import { M as M4 } from "./components/MFIsolationApp/MFIsolationApp.js";
|
|
125
123
|
import { M as M5 } from "./components/MFLoader/MFLoader.js";
|
|
126
124
|
import { g as g19 } from "./components/MFLoader/dictionary.js";
|
|
@@ -146,7 +144,7 @@ import { S as S6 } from "./components/mui_extended/Skeleton/Skeleton.js";
|
|
|
146
144
|
import { S as S7 } from "./components/mui_extended/Stack/Stack.js";
|
|
147
145
|
import { T as T6 } from "./components/mui_extended/Tabs/Tabs.js";
|
|
148
146
|
import { T as T7 } from "./components/mui_extended/TabContent/TabContent.js";
|
|
149
|
-
import { T as T8, a as
|
|
147
|
+
import { T as T8, a as a8 } from "./components/mui_extended/TabContext/index.js";
|
|
150
148
|
import { T as T9 } from "./components/mui_extended/Typography/Typography.js";
|
|
151
149
|
import { t } from "./components/mui_extended/ToggleButton/ToggleButton.styles.js";
|
|
152
150
|
import { T as T10 } from "./components/mui_extended/ToggleButton/ToggleButton.js";
|
|
@@ -159,15 +157,15 @@ import { T as T15 } from "./components/mui_extended/ToggleIconButton/constants.j
|
|
|
159
157
|
import { T as T16 } from "./components/mui_extended/ToggleIconButton/slots/ToggleIconButtonEnum.js";
|
|
160
158
|
import { T as T17 } from "./components/mui_extended/ToggleIconButton/slots/ToggleIconButtonSlots.js";
|
|
161
159
|
import { N as N2 } from "./components/mui_extended/NavLink/NavLink.js";
|
|
162
|
-
import { D as
|
|
160
|
+
import { D as D9 } from "./components/mui_extended/Dialog/Dialog.js";
|
|
163
161
|
import { N as N3 } from "./components/NoItemSelected/NoItemSelected.js";
|
|
164
162
|
import { g as g21 } from "./components/NoItemSelected/dictionary.js";
|
|
165
163
|
import { O } from "./components/ObjectLogs/index.js";
|
|
166
|
-
import { d as
|
|
164
|
+
import { d as d5, g as g22 } from "./components/ObjectLogs/dictionary.js";
|
|
167
165
|
import { P as P8 } from "./components/PaperForm/PaperForm.js";
|
|
168
166
|
import { P as P9 } from "./components/PDFViewer/PDFViewer.js";
|
|
169
|
-
import { u as
|
|
170
|
-
import {
|
|
167
|
+
import { u as u13 } from "./components/popups/components/PopupsProvider/hooks/usePopupsStore.js";
|
|
168
|
+
import { a as a9, P as P10 } from "./components/popups/components/PopupsProvider/contexts/PopupsContext/PopupsContext.js";
|
|
171
169
|
import { P as P11 } from "./components/popups/components/PopupsViewer/PopupsViewer.js";
|
|
172
170
|
import { P as P12 } from "./components/PrintingSystem/PrintingSystem.js";
|
|
173
171
|
import { P as P13 } from "./components/PropertyValue/PropertyValue.js";
|
|
@@ -175,16 +173,20 @@ import { S as S8 } from "./components/ScrollBar/ScrollBar.js";
|
|
|
175
173
|
import { S as S9 } from "./components/SideBar/SideBar.js";
|
|
176
174
|
import { T as T18 } from "./components/ToastContainer/ToastContainer.js";
|
|
177
175
|
import { T as T19 } from "./components/ToastContainer/subcomponents/ToastMessage/ToastMessage.js";
|
|
178
|
-
import { W
|
|
176
|
+
import { W } from "./components/WindowBase/WindowBase.js";
|
|
177
|
+
import { u as u14 } from "./components/WindowBase/hooks/useWindowToolsMF/index.js";
|
|
178
|
+
import { a as a10, u as u15 } from "./components/WindowBase/hooks/useDynamicMFParameters/index.js";
|
|
179
|
+
import { M as M6, W as W2, a as a11 } from "./components/WindowBase/contexts/WindowToolsMFContext/WindowToolsMFContext.js";
|
|
180
|
+
import { c as c3 } from "./components/WindowBase/contexts/DynamicMFParmsContext/store.js";
|
|
181
|
+
import { D as D10, a as a12, M as M7 } from "./components/WindowBase/contexts/DynamicMFParmsContext/DynamicMFParmsContext.js";
|
|
179
182
|
import { W as W3 } from "./components/WindowConfirm/WindowConfirm.js";
|
|
180
|
-
import { a as
|
|
181
|
-
import { M as
|
|
182
|
-
import { a as a12, D as D9, M as M7 } from "./components/areas/contexts/DynamicMFParmsContext/index.js";
|
|
183
|
+
import { a as a13, g as g23 } from "./components/ModalDialog/dictionary.js";
|
|
184
|
+
import { M as M8 } from "./components/ModalDialog/ModalDialog.js";
|
|
183
185
|
import { F as F2, R as R22, u as u16 } from "./components/hook-form/RHFormContext/index.js";
|
|
184
186
|
import { g as g24 } from "./components/hook-form/RHFormContext/dictionary.js";
|
|
185
187
|
import { u as u17 } from "./contexts/AppearanceComponentContext/useAppearanceComponentStore.js";
|
|
186
188
|
import { A as A16 } from "./contexts/AppearanceComponentContext/AppearanceComponentContext.js";
|
|
187
|
-
import { a as
|
|
189
|
+
import { a as a14, M as M9 } from "./contexts/ModalContext/index.js";
|
|
188
190
|
import { u as u18 } from "./hooks/useFormAddEdit/index.js";
|
|
189
191
|
import { u as u19 } from "./hooks/useModal/index.js";
|
|
190
192
|
import { u as u20 } from "./hooks/useTab/index.js";
|
|
@@ -194,7 +196,7 @@ import { u as u22 } from "./hooks/useInterval/index.js";
|
|
|
194
196
|
import { u as u23 } from "./hooks/useComponentSize/useComponentSize.js";
|
|
195
197
|
import { u as u24 } from "./hooks/useFormReadyForUpdate/index.js";
|
|
196
198
|
import { u as u25 } from "./hooks/useStateRef/index.js";
|
|
197
|
-
import { a as
|
|
199
|
+
import { a as a15 } from "./hooks/useSvgColor/constants.js";
|
|
198
200
|
import { u as u26 } from "./hooks/useSvgColor/useSvgColor.js";
|
|
199
201
|
import { u as u27 } from "./hooks/useDynamicFilterAndSort/useDynamicFilterAndSort.js";
|
|
200
202
|
import { u as u28 } from "./hooks/useDataGridPersistence/useDataGridPersistence.js";
|
|
@@ -204,14 +206,14 @@ import { g as g26 } from "./utils/getComponentUtilityClass.js";
|
|
|
204
206
|
import { g as g27 } from "./utils/getPaletteColor.js";
|
|
205
207
|
import { g as g28 } from "./utils/getTypographyStyles.js";
|
|
206
208
|
import { g as g29 } from "./utils/getIconColor.js";
|
|
207
|
-
import { a as
|
|
209
|
+
import { a as a16 } from "./utils/getSizeStyles/getSizeStyles.js";
|
|
208
210
|
import { g as g30 } from "./utils/getValidDate.js";
|
|
209
211
|
import { O as O2 } from "./utils/ObjectQueue.js";
|
|
210
|
-
import { g as g31, a as
|
|
212
|
+
import { g as g31, a as a17 } from "./utils/getComponentSlotRoot.js";
|
|
211
213
|
import { f } from "./utils/formatDistanceToNow/formatDistanteToNow.js";
|
|
212
214
|
export {
|
|
213
215
|
A7 as AREAS_DICCTIONARY,
|
|
214
|
-
|
|
216
|
+
a3 as AREAS_DICTIONARY_ID,
|
|
215
217
|
A14 as Accordion,
|
|
216
218
|
A as AccountPopover,
|
|
217
219
|
A10 as ActionCancel,
|
|
@@ -224,7 +226,7 @@ export {
|
|
|
224
226
|
A8 as AppBarComercial,
|
|
225
227
|
A16 as AppearanceComponentProvider,
|
|
226
228
|
A4 as AreasAdmin,
|
|
227
|
-
|
|
229
|
+
a2 as AreasContext,
|
|
228
230
|
A6 as AreasProvider,
|
|
229
231
|
A5 as AreasViewer,
|
|
230
232
|
A15 as Avatar,
|
|
@@ -250,14 +252,15 @@ export {
|
|
|
250
252
|
C12 as ConcatenatedFormatter,
|
|
251
253
|
D as DICTIONARY,
|
|
252
254
|
D2 as DataGrid,
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
255
|
+
D7 as DateFormatter,
|
|
256
|
+
D9 as Dialog,
|
|
257
|
+
D8 as DistanceToNowFormatter,
|
|
256
258
|
D3 as DragResizeWindow,
|
|
257
|
-
D4 as
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
259
|
+
D4 as DragResizeWindowRND,
|
|
260
|
+
D5 as DynamicFilter,
|
|
261
|
+
D10 as DynamicMFParmsContext,
|
|
262
|
+
a12 as DynamicMFParmsProvider,
|
|
263
|
+
D6 as DynamicSort,
|
|
261
264
|
F as FixedSizeList,
|
|
262
265
|
F2 as FormProviderCustom,
|
|
263
266
|
G as GridLayout,
|
|
@@ -282,11 +285,12 @@ export {
|
|
|
282
285
|
M4 as MFIsolationApp,
|
|
283
286
|
M5 as MFLoader,
|
|
284
287
|
M7 as MemonizedDynamicMFParmsProvider,
|
|
285
|
-
|
|
288
|
+
a7 as MemonizedMenuActions,
|
|
289
|
+
M6 as MemonizedWindowToolsMFContext,
|
|
286
290
|
M3 as MenuActions,
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
291
|
+
a14 as ModalContext,
|
|
292
|
+
M8 as ModalDialog,
|
|
293
|
+
M9 as ModalProvider,
|
|
290
294
|
M as MotionContainer,
|
|
291
295
|
M2 as MotionLazyContainer,
|
|
292
296
|
N2 as NavLink,
|
|
@@ -301,8 +305,8 @@ export {
|
|
|
301
305
|
P5 as PeriodRootStyled,
|
|
302
306
|
P2 as PointsFormatter,
|
|
303
307
|
P7 as Popover,
|
|
304
|
-
|
|
305
|
-
|
|
308
|
+
a9 as PopupsContext,
|
|
309
|
+
P10 as PopupsProvider,
|
|
306
310
|
P11 as PopupsViewer,
|
|
307
311
|
P4 as PriceFormatter,
|
|
308
312
|
P12 as PrintingSystem,
|
|
@@ -330,7 +334,7 @@ export {
|
|
|
330
334
|
R as Resizable,
|
|
331
335
|
R2 as ResizableBox,
|
|
332
336
|
R3 as Responsive,
|
|
333
|
-
|
|
337
|
+
a15 as SKELETON_SVG_ICON,
|
|
334
338
|
S8 as ScrollBar,
|
|
335
339
|
S as ScrollToTop,
|
|
336
340
|
S2 as SectionCommercial,
|
|
@@ -345,7 +349,7 @@ export {
|
|
|
345
349
|
T4 as Tab,
|
|
346
350
|
T7 as TabContent,
|
|
347
351
|
T8 as TabContext,
|
|
348
|
-
|
|
352
|
+
a8 as TabProvider,
|
|
349
353
|
T6 as Tabs,
|
|
350
354
|
T2 as TextEditor,
|
|
351
355
|
T3 as TextFieldStyled,
|
|
@@ -362,19 +366,20 @@ export {
|
|
|
362
366
|
T9 as Typography,
|
|
363
367
|
U as UncertaintyFormatter,
|
|
364
368
|
V as VariableSizeList,
|
|
365
|
-
|
|
369
|
+
W as WindowBase,
|
|
366
370
|
W3 as WindowConfirm,
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
+
W2 as WindowToolsMFContext,
|
|
372
|
+
a11 as WindowToolsMFProvider,
|
|
373
|
+
c2 as addLayoutItemToBreakPointIfNoExists,
|
|
374
|
+
d4 as addLayoutItemToBreakPoints,
|
|
371
375
|
c4 as capitalizeFirstLetter,
|
|
372
376
|
e as cloneLayouts,
|
|
373
|
-
|
|
377
|
+
c3 as createDynamicMFStore,
|
|
374
378
|
c as createToaster,
|
|
375
379
|
d as defaultCommonActionsDictionary,
|
|
376
|
-
|
|
380
|
+
d5 as defaultObjectLogDictionary,
|
|
377
381
|
d2 as dragResizeWindowClasses,
|
|
382
|
+
d3 as dragResizeWindowRNDClasses,
|
|
378
383
|
f as formatDistanceToNow,
|
|
379
384
|
g as getAccountPopoverDictionary,
|
|
380
385
|
g2 as getAppBarDictionary,
|
|
@@ -382,27 +387,27 @@ export {
|
|
|
382
387
|
g3 as getAreasDictionary,
|
|
383
388
|
g4 as getCommonActionsDictionary,
|
|
384
389
|
g31 as getComponentClasses,
|
|
385
|
-
|
|
390
|
+
a17 as getComponentSlotRoot,
|
|
386
391
|
g26 as getComponentUtilityClass,
|
|
387
392
|
g5 as getDataGridComponentsDictionary,
|
|
388
393
|
g6 as getDataGridRowsFromSet,
|
|
389
394
|
g13 as getDistanceToNowFormatterComponentsDictionary,
|
|
390
|
-
|
|
395
|
+
a4 as getDynamicFilterComponentsDictionary,
|
|
391
396
|
b3 as getDynamicSortComponentsDictionary,
|
|
392
|
-
|
|
397
|
+
a5 as getFilterGroupFieldsByName,
|
|
393
398
|
g24 as getFormComponentsDictionary,
|
|
394
399
|
g11 as getFormatConcatenated,
|
|
395
400
|
g8 as getFormatDate,
|
|
396
401
|
g10 as getFormatPoints,
|
|
397
402
|
g12 as getFormatPrice,
|
|
398
403
|
g14 as getFormattersComponentsDictionary,
|
|
399
|
-
|
|
404
|
+
a16 as getHeightSizeStyles,
|
|
400
405
|
g29 as getIconColor,
|
|
401
406
|
g7 as getIsIfInDynamicFilter,
|
|
402
407
|
g18 as getLoadingErrorComponentsDictionary,
|
|
403
408
|
g19 as getMFLoaderComponentsDictionary,
|
|
404
|
-
|
|
405
|
-
|
|
409
|
+
a6 as getMenuActionsComponentsDictionary,
|
|
410
|
+
a13 as getModalDialogComponentsDictionary,
|
|
406
411
|
g23 as getModalDictionary,
|
|
407
412
|
g21 as getNoItemSelectedComponentsDictionary,
|
|
408
413
|
g22 as getObjectLogsComponentsDictionary,
|
|
@@ -422,33 +427,34 @@ export {
|
|
|
422
427
|
t as toggleButtonStyles,
|
|
423
428
|
t2 as toggleIconButtonStyles,
|
|
424
429
|
u17 as useAppearanceComponentStore,
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
430
|
+
u2 as useAreasStore,
|
|
431
|
+
u3 as useColumnBoolean,
|
|
432
|
+
u8 as useColumnCertanity,
|
|
433
|
+
u4 as useColumnConcatenatedValue,
|
|
434
|
+
u5 as useColumnDate,
|
|
435
|
+
u10 as useColumnInteractiveCheck,
|
|
436
|
+
u6 as useColumnNestedValue,
|
|
437
|
+
u9 as useColumnPoints,
|
|
438
|
+
u7 as useColumnPrice,
|
|
439
|
+
u11 as useColumnSetCheck,
|
|
435
440
|
u23 as useComponentSize,
|
|
436
441
|
u16 as useCustomForm,
|
|
437
442
|
u28 as useDataGridPersistence,
|
|
438
443
|
u27 as useDynamicFilterAndSort,
|
|
439
|
-
|
|
444
|
+
a10 as useDynamicMFParameters,
|
|
445
|
+
u15 as useDynamicMFParametersStore,
|
|
440
446
|
u18 as useFormAddEdit,
|
|
441
447
|
u21 as useFormFocus,
|
|
442
448
|
u24 as useFormReadyForUpdate,
|
|
443
|
-
|
|
449
|
+
u12 as useFormatPeriod,
|
|
444
450
|
u22 as useInterval,
|
|
445
451
|
u19 as useModal,
|
|
446
|
-
|
|
447
|
-
|
|
452
|
+
u13 as usePopupsStore,
|
|
453
|
+
u as useSetWindowsTitle,
|
|
448
454
|
u25 as useStateRef,
|
|
449
455
|
u26 as useSvgColor,
|
|
450
456
|
u20 as useTab,
|
|
451
|
-
|
|
457
|
+
u14 as useWindowToolsMF,
|
|
452
458
|
v2 as varBounce,
|
|
453
459
|
v3 as varContainer,
|
|
454
460
|
v as varFade,
|