@m4l/components 9.1.142 → 9.1.144
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/utils/getStylesColorsByMode.d.ts +48 -48
- package/@types/types.d.ts +17 -0
- package/components/AccountPopover/slots/AccountPopoverSlots.d.ts +7 -7
- package/components/AppBar/slots/AppBarSlots.d.ts +6 -6
- package/components/AppBar/slots/AppBarSlots.js +1 -1
- package/components/Chip/slots/ChipSlots.d.ts +2 -2
- package/components/Color/slots/ColorSlots.d.ts +2 -2
- package/components/Color/slots/ColorSlots.js +1 -1
- package/components/CommonActions/components/ActionCancel/slots/ActionsCancelSlots.d.ts +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/DataGrid/DataGrid.d.ts +9 -0
- package/components/DataGrid/DataGrid.js +95 -0
- package/components/DataGrid/contexts/DataGridContext/index.js +2 -2
- package/components/DataGrid/contexts/FilterContext/index.js +2 -2
- package/components/DataGrid/formatters/ColumnDateFormatter/useColumnDate.js +6 -2
- package/components/DataGrid/hooks/useDataGrid.js +1 -1
- package/components/DataGrid/hooks/useFilters.js +1 -1
- package/components/DataGrid/index.d.ts +8 -9
- package/components/DataGrid/index.js +1 -89
- package/components/DataGrid/slots/DataGridEnum.d.ts +2 -1
- package/components/DataGrid/slots/DataGridEnum.js +1 -0
- package/components/DataGrid/slots/DataGridSlot.d.ts +19 -18
- package/components/DataGrid/slots/DataGridSlot.js +13 -8
- package/components/DataGrid/styles.js +10 -8
- package/components/DataGrid/subcomponents/Actions/index.js +15 -12
- package/components/DataGrid/subcomponents/Actions/subcomponents/Settings/subcomponents/ColumnsConfig/index.js +1 -1
- package/components/DataGrid/subcomponents/Actions/subcomponents/hooks/useModalSettings/index.js +1 -1
- package/components/DataGrid/subcomponents/Actions/types.d.ts +2 -0
- package/components/DataGrid/subcomponents/Table/index.js +1 -1
- package/components/DataGrid/subcomponents/Table/subcomponents/DraggableHeaderRenderer.js +1 -1
- package/components/DataGrid/types.d.ts +8 -12
- package/components/DragResizeWindow/slots/DragResizeWindowSlots.d.ts +2 -2
- package/components/DynamicFilter/__tests__/fronEndHelpers.test.d.ts +1 -0
- package/components/DynamicFilter/helpers/frontEndHelpers.d.ts +12 -0
- package/components/DynamicFilter/helpers/frontEndHelpers.js +213 -0
- package/components/DynamicFilter/index.d.ts +1 -0
- package/components/DynamicFilter/slots/dynamicFilterSlots.d.ts +15 -15
- package/components/DynamicFilter/slots/dynamicFilterSlots.js +1 -1
- package/components/DynamicFilter/store/DynamicFilterContext.d.ts +1 -1
- package/components/DynamicFilter/store/DynamicFilterStore.d.ts +1 -1
- package/components/DynamicFilter/store/DynamicFilterStore.js +5 -2
- package/components/DynamicFilter/store/{DynamicFilterStoreTypes.d.ts → types.d.ts} +4 -5
- package/components/DynamicFilter/store/useDynamicFilterStore.d.ts +1 -1
- package/components/DynamicFilter/subcomponents/AppliedFilterChip/useAppliedFilterChip.d.ts +1 -1
- package/components/DynamicFilter/subcomponents/AppliedFilterChip/useAppliedFilterChip.js +2 -4
- package/components/DynamicFilter/subcomponents/DynamicFilterBase/DynamicFilterBase.js +4 -0
- package/components/DynamicFilter/subcomponents/PopoverFilter/usePopoverFilter.js +2 -1
- package/components/DynamicFilter/subcomponents/PopoverMenuFields/usePopoverMenuFields.d.ts +0 -1
- package/components/DynamicFilter/subcomponents/PopoverMenuFields/usePopoverMenuFields.js +1 -3
- package/components/DynamicFilter/types.d.ts +2 -2
- package/components/DynamicSort/DynamicSort.styles.js +3 -0
- package/components/DynamicSort/constants.d.ts +3 -3
- package/components/DynamicSort/constants.js +5 -3
- package/components/DynamicSort/dictionary.js +3 -2
- package/components/DynamicSort/helpers/formatToRowSort.js +3 -2
- package/components/DynamicSort/helpers/frontEndHelpers.d.ts +7 -0
- package/components/DynamicSort/helpers/frontEndHelpers.js +38 -0
- package/components/DynamicSort/helpers/getPurgedInitialSortApplyed.js +2 -2
- package/components/DynamicSort/index.d.ts +2 -1
- package/components/DynamicSort/slots/DynamicSortSlots.d.ts +29 -29
- package/components/DynamicSort/store/DynamicSortContext.d.ts +3 -3
- package/components/DynamicSort/store/DynamicSortContext.js +5 -14
- package/components/DynamicSort/store/DynamicSortStore.d.ts +2 -2
- package/components/DynamicSort/store/DynamicSortStore.js +30 -21
- package/components/DynamicSort/store/{type.d.ts → types.d.ts} +19 -22
- package/components/DynamicSort/store/useDynamicSortStore.d.ts +1 -1
- package/components/DynamicSort/store/useDynamicSortStore.js +1 -1
- package/components/DynamicSort/subcomponents/AppliedSortChip/useAppliedSortChip.d.ts +1 -1
- package/components/DynamicSort/subcomponents/AppliedSortChip/useAppliedSortChip.js +3 -4
- package/components/DynamicSort/subcomponents/AppliedSorts/AppliedSorts.js +1 -1
- package/components/DynamicSort/subcomponents/AppliedSorts/useAppliedSorts.d.ts +1 -1
- package/components/DynamicSort/subcomponents/AppliedSorts/useAppliedSorts.js +2 -1
- package/components/DynamicSort/subcomponents/DynamicSortBase/DynamicSortBase.js +4 -0
- package/components/DynamicSort/subcomponents/FieldTypes/DataTypeComponent.js +2 -2
- package/components/DynamicSort/subcomponents/FieldTypes/FieldTypeInterface.d.ts +4 -4
- package/components/DynamicSort/subcomponents/FieldTypes/StringSort/helpers.d.ts +4 -4
- package/components/DynamicSort/subcomponents/FieldTypes/StringSort/helpers.js +4 -4
- package/components/DynamicSort/subcomponents/FieldTypes/StringSort/index.js +1 -1
- package/components/DynamicSort/subcomponents/FieldTypes/fieldFactory.d.ts +2 -3
- package/components/DynamicSort/subcomponents/FieldTypes/fieldFactory.js +4 -4
- package/components/DynamicSort/subcomponents/InputSort/InputSort.js +11 -2
- package/components/DynamicSort/subcomponents/InputSort/useInputSort.d.ts +13 -1
- package/components/DynamicSort/subcomponents/InputSort/useInputSort.js +26 -16
- package/components/DynamicSort/subcomponents/PopoverMenuFields/PopoverMenuFields.js +5 -4
- package/components/DynamicSort/subcomponents/PopoverMenuFields/usePopoverMenuFields.d.ts +2 -1
- package/components/DynamicSort/subcomponents/PopoverMenuFields/usePopoverMenuFields.js +6 -5
- package/components/DynamicSort/subcomponents/PopoverSort/usePopoverSort.d.ts +3 -2
- package/components/DynamicSort/subcomponents/PopoverSort/usePopoverSort.js +8 -6
- package/components/DynamicSort/subcomponents/SortActions/SortActions.js +1 -1
- package/components/DynamicSort/subcomponents/SortActions/useSortActions.js +4 -4
- package/components/DynamicSort/tests/fronEndHelpers.test.d.ts +1 -0
- package/components/DynamicSort/types.d.ts +36 -46
- package/components/Icon/slots/IconSlots.d.ts +2 -2
- package/components/Label/slots/LabelSlots.d.ts +1 -1
- package/components/LanguagePopover/slots/LanguagePopoverSlots.d.ts +1 -1
- package/components/LoadingError/slots/LoadingErrorSlots.d.ts +8 -8
- package/components/MenuActions/MenuActions.js +1 -1
- package/components/MenuActions/slots/MenuActionsSlots.d.ts +6 -6
- package/components/MenuActions/types.d.ts +4 -7
- package/components/ModalDialog/slots/ModalDialogSlots.d.ts +2 -2
- package/components/NoItemSelected/slots/NoItemSelectedSlots.d.ts +3 -3
- package/components/NumberInput/slots/NumberInputSlots.d.ts +5 -5
- package/components/ObjectLogs/index.js +1 -1
- package/components/PDFViewer/slots/PDFViewerSlots.d.ts +1 -1
- package/components/Pager/Pager.js +4 -1
- package/components/Pager/slots/PagerSlots.d.ts +4 -4
- package/components/PaperForm/slots/PaperFormSlots.d.ts +3 -3
- package/components/PropertyValue/slots/PropertyValueSlots.d.ts +3 -3
- package/components/ScrollBar/slots/ScrollBarSlots.d.ts +1 -1
- package/components/SideBar/slots/SideBarSlots.d.ts +15 -15
- package/components/ToastContainer/slots/toastContainerSlots.d.ts +7 -7
- package/components/WindowBase/slots/WindowBaseSlots.d.ts +8 -8
- package/components/WindowBase/subcomponents/Header/types.d.ts +2 -4
- package/components/WindowConfirm/slots/WindowConfirmSlots.d.ts +8 -8
- package/components/areas/components/AreasAdmin/slots/AreasAdminSlots.d.ts +17 -17
- package/components/areas/components/AreasAdmin/subcomponents/AreaChip/AreaChip.js +1 -1
- package/components/areas/components/AreasViewer/slots/AreasViewerSlots.d.ts +5 -5
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Component/index.js +2 -2
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Component/types.d.ts +1 -0
- package/components/areas/contexts/WindowToolsMFContext/types.d.ts +1 -1
- package/components/areas/types.d.ts +2 -4
- package/components/extended/React-Spinners/PropagateLoaderSpinner/slots/PropagateLoaderSpinnerSlots.d.ts +1 -1
- package/components/extended/React-Splitter-Layout/slots/SplitLayoutSlots.d.ts +3 -3
- package/components/extended/React-Window/FixedSizeList/slots/FixedSizeListSlots.js +1 -1
- package/components/extended/React-Window/VariableSizeList/VariableSizeList.js +1 -1
- package/components/hook-form/RHFAutocomplete/slots/RHFAutocompleteSlots.d.ts +1 -1
- package/components/hook-form/RHFCheckbox/slots/RHFCheckBoxSlots.d.ts +3 -3
- package/components/hook-form/RHFColorPicker/slots/RHFColorPickerSlots.d.ts +1 -1
- package/components/hook-form/RHFDateTime/slots/RHFDateTimeSlots.d.ts +1 -1
- package/components/hook-form/RHFNumberInput/slots/RHFNumberInputSlots.d.ts +1 -1
- package/components/hook-form/RHFPeriod/slots/RHFPeriodSlots.d.ts +4 -4
- package/components/hook-form/RHFSelect/slots/RHFSlots.d.ts +2 -2
- package/components/hook-form/RHFTextField/slots/RHFTextFieldSlots.d.ts +2 -2
- package/components/hook-form/RHFTextFieldPassword/slots/RHFTextFieldPasswordSlots.d.ts +3 -3
- package/components/hook-form/RHFTimePicker/slots/RHFTimePickerSlots.d.ts +1 -1
- package/components/index.d.ts +27 -33
- package/components/mui_extended/Accordion/slots/AccordionSlots.d.ts +2 -2
- package/components/mui_extended/Autocomplete/slots/AutocompleteSlots.d.ts +5 -5
- package/components/mui_extended/Autocomplete/slots/AutocompleteSlots.js +1 -1
- 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 +2 -2
- package/components/mui_extended/DateTimePicker/slots/DateTimePickerSlots.d.ts +4 -4
- package/components/mui_extended/Dialog/slots/DialogSlots.d.ts +2 -2
- package/components/mui_extended/Divider/slots/DividerSlots.d.ts +2 -2
- package/components/mui_extended/IconButton/IconButton.js +2 -2
- 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 +2 -2
- package/components/mui_extended/MenuItem/slots/MenuItemSlots.d.ts +2 -2
- package/components/mui_extended/MenuItem/slots/MenuItemSlots.js +1 -1
- package/components/mui_extended/NavLink/slots/NavLinkSlots.d.ts +1 -1
- package/components/mui_extended/Popper/slots/PopperStlots.d.ts +1 -1
- package/components/mui_extended/Select/slots/SelectSlots.d.ts +3 -3
- 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/Tooltip/slots/TooltipSlots.d.ts +1 -1
- package/components/mui_extended/Typography/slots/typographySlots.d.ts +1 -1
- package/components/popups/components/PopupsProvider/contexts/PopupsContext/store.js +2 -2
- package/components/popups/components/PopupsProvider/contexts/PopupsContext/types.d.ts +6 -13
- package/components/popups/components/PopupsProvider/hooks/usePopops/usePopups.js +1 -1
- package/components/popups/components/PopupsViewer/slots/popupsViewerSlots.d.ts +5 -5
- package/hooks/index.d.ts +1 -0
- package/hooks/useDynamicFilterAndSort/constants.d.ts +1 -0
- package/hooks/useDynamicFilterAndSort/constants.js +4 -0
- package/hooks/useDynamicFilterAndSort/icons.d.ts +6 -0
- package/hooks/useDynamicFilterAndSort/icons.js +11 -0
- package/hooks/useDynamicFilterAndSort/index.d.ts +2 -0
- package/hooks/useDynamicFilterAndSort/index.js +1 -0
- package/hooks/useDynamicFilterAndSort/slots/DynamicFilterAndSortEnum.d.ts +5 -0
- package/hooks/useDynamicFilterAndSort/slots/DynamicFilterAndSortEnum.js +9 -0
- package/hooks/useDynamicFilterAndSort/slots/DynamicFilterAndSortSlots.d.ts +9 -0
- package/hooks/useDynamicFilterAndSort/slots/DynamicFilterAndSortSlots.js +22 -0
- package/hooks/useDynamicFilterAndSort/styles.d.ts +2 -0
- package/hooks/useDynamicFilterAndSort/styles.js +43 -0
- package/hooks/useDynamicFilterAndSort/types.d.ts +34 -0
- package/hooks/useDynamicFilterAndSort/useDynamicFilterAndSort.d.ts +10 -0
- package/hooks/useDynamicFilterAndSort/useDynamicFilterAndSort.js +90 -0
- package/index.js +304 -295
- package/package.json +1 -1
- package/utils/getValidDate.d.ts +4 -0
- package/utils/getValidDate.js +17 -0
- package/utils/index.d.ts +1 -0
- package/vendor.js +2 -2
- package/not_recognized/index.js +0 -23261
package/index.js
CHANGED
|
@@ -1,153 +1,140 @@
|
|
|
1
1
|
import { c } from "./components/ToastContainer/helpers/toaster.js";
|
|
2
|
-
import { D } from "./components/DataGrid/index.js";
|
|
3
|
-
import { g } from "./components/DataGrid/dictionary.js";
|
|
4
|
-
import { N, T } from "./components/DataGrid/subcomponents/editors/TextEditor/index.js";
|
|
5
|
-
import { g as g2 } from "./components/DataGrid/utils/getDataGridRowsFromSet.js";
|
|
6
2
|
import { S } from "./components/ScrollToTop/index.js";
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
3
|
+
import { A } from "./components/AccountPopover/AccountPopover.js";
|
|
4
|
+
import { g } from "./components/AccountPopover/dictionary.js";
|
|
5
|
+
import { I } from "./components/animate/IconButtonAnimate/index.js";
|
|
9
6
|
import { M } from "./components/animate/MotionContainer/index.js";
|
|
10
7
|
import { M as M2 } from "./components/animate/MotionLazyContainer/index.js";
|
|
11
8
|
import { L } from "./components/animate/LoadingScreen/index.js";
|
|
12
|
-
import { A } from "./components/animate/AnimatedScroll/animatedScroll.js";
|
|
9
|
+
import { A as A2 } from "./components/animate/AnimatedScroll/animatedScroll.js";
|
|
13
10
|
import { v } from "./components/animate/variants/fade.js";
|
|
14
11
|
import { v as v2 } from "./components/animate/variants/bounce.js";
|
|
15
12
|
import { v as v3 } from "./components/animate/variants/container.js";
|
|
16
13
|
import { v as v4, a, b } from "./components/animate/variants/transition.js";
|
|
17
|
-
import { A as
|
|
18
|
-
import {
|
|
14
|
+
import { A as A3 } from "./components/AppBar/AppBar.js";
|
|
15
|
+
import { g as g2 } from "./components/AppBar/dictionary.js";
|
|
16
|
+
import { A as A4 } from "./components/areas/components/AreasAdmin/AreasAdmin.js";
|
|
17
|
+
import { A as A5 } from "./components/areas/components/AreasViewer/AreasViewer.js";
|
|
19
18
|
import { a as a2, W } from "./components/areas/contexts/WindowToolsMFContext/index.js";
|
|
20
19
|
import { c as c2 } from "./components/areas/contexts/DynamicMFParmsContext/store.js";
|
|
21
|
-
import { a as a3, A as
|
|
20
|
+
import { a as a3, A as A6 } from "./components/areas/contexts/AreasContext/index.js";
|
|
22
21
|
import { u } from "./components/areas/hooks/useDynamicMFParameters/index.js";
|
|
23
22
|
import { u as u2 } from "./components/areas/hooks/useWindowToolsMF/index.js";
|
|
24
23
|
import { u as u3 } from "./components/areas/hooks/useSetWindowsTitle/useSetWindowsTitle.js";
|
|
25
24
|
import { u as u4 } from "./components/areas/hooks/useAreas/index.js";
|
|
26
|
-
import { A as
|
|
27
|
-
import {
|
|
28
|
-
import { g as g4 } from "./components/hook-form/RHFAutocomplete/dictionary.js";
|
|
29
|
-
import { R as R2 } from "./components/hook-form/RHFAutocompleteAsync/RHFAutocompleteAsync.js";
|
|
30
|
-
import { g as g5 } from "./components/hook-form/RHFAutocompleteAsync/dictionary.js";
|
|
31
|
-
import { R as R3 } from "./components/hook-form/RHFDateTime/RHFDateTime.js";
|
|
32
|
-
import { R as R4 } from "./components/hook-form/RHFMultiCheckbox/index.js";
|
|
33
|
-
import { R as R5 } from "./components/hook-form/RHFSelect/RHFSelect.js";
|
|
34
|
-
import { R as R6 } from "./components/hook-form/RHFHelperError/index.js";
|
|
35
|
-
import { R as R7 } from "./components/hook-form/RHFRadioGroup/RHFRadioGroup.js";
|
|
36
|
-
import { R as R8 } from "./components/hook-form/RHFNumberInput/RHFNumberInput.js";
|
|
37
|
-
import { R as R9 } from "./components/hook-form/RHFUpload/RHFUploadFile/index.js";
|
|
38
|
-
import { R as R10 } from "./components/hook-form/RHFColorPicker/RFHColorPicker.js";
|
|
39
|
-
import { R as R11 } from "./components/hook-form/RHFCheckbox/RHFCheckbox.js";
|
|
40
|
-
import { R as R12 } from "./components/hook-form/RHFTextField/RHFTextField.js";
|
|
41
|
-
import { R as R13 } from "./components/hook-form/RHFTextFieldPassword/RHFTextFieldPassword.js";
|
|
42
|
-
import { g as g6 } from "./components/hook-form/RHFPeriod/subcomponents/Period/dictionary.js";
|
|
43
|
-
import { r } from "./components/hook-form/RHFPeriod/RHFPeriod.styles.js";
|
|
44
|
-
import { R as R14 } from "./components/hook-form/RHFPeriod/RHFPeriod.js";
|
|
45
|
-
import { R as R15 } from "./components/hook-form/RHFPeriod/constants.js";
|
|
46
|
-
import { R as R16 } from "./components/hook-form/RHFPeriod/slots/RHFPeriodEnum.js";
|
|
47
|
-
import { P, R as R17, S as S2, T as T2 } from "./components/hook-form/RHFPeriod/slots/RHFPeriodSlots.js";
|
|
48
|
-
import { R as R18 } from "./components/hook-form/RHFUpload/RHFUploadImage/RHFUploadImage.js";
|
|
25
|
+
import { A as A7, a as a4, L as L2, b as b2, g as g3 } from "./components/areas/dictionary.js";
|
|
26
|
+
import { B } from "./components/BaseModule/BaseModule.js";
|
|
49
27
|
import { C } from "./components/Chip/Chip.js";
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import { g as
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import { C as
|
|
65
|
-
import { C as
|
|
66
|
-
import { C as
|
|
67
|
-
import { C as
|
|
68
|
-
import { C as
|
|
69
|
-
import { C as
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import { u as
|
|
75
|
-
import { u as
|
|
76
|
-
import { u as
|
|
77
|
-
import { u as
|
|
78
|
-
import { u as
|
|
28
|
+
import { A as A8 } from "./components/commercial/AppBarCommercial/index.js";
|
|
29
|
+
import { H } from "./components/commercial/HamburgerMenu/HamburgerMenu.js";
|
|
30
|
+
import { T } from "./components/commercial/TopBar/TopBar.js";
|
|
31
|
+
import { S as S2 } from "./components/commercial/SectionCommercial/index.js";
|
|
32
|
+
import { A as A9 } from "./components/CommonActions/components/ActionsContainer/ActionsContainer.js";
|
|
33
|
+
import { A as A10 } from "./components/CommonActions/components/ActionCancel/ActionCancel.js";
|
|
34
|
+
import { A as A11 } from "./components/CommonActions/components/ActionIntro/ActionIntro.js";
|
|
35
|
+
import { A as A12 } from "./components/CommonActions/components/ActionFormCancel/ActionFormCancel.js";
|
|
36
|
+
import { A as A13 } from "./components/CommonActions/components/ActionFormIntro/ActionFormIntro.js";
|
|
37
|
+
import { D, d, g as g4 } from "./components/CommonActions/dictionary.js";
|
|
38
|
+
import { D as D2 } from "./components/DataGrid/DataGrid.js";
|
|
39
|
+
import { g as g5 } from "./components/DataGrid/dictionary.js";
|
|
40
|
+
import { N, T as T2 } from "./components/DataGrid/subcomponents/editors/TextEditor/index.js";
|
|
41
|
+
import { g as g6 } from "./components/DataGrid/utils/getDataGridRowsFromSet.js";
|
|
42
|
+
import { C as C2 } from "./components/DataGrid/formatters/ColumnUncertaintyFormatter/index.js";
|
|
43
|
+
import { C as C3 } from "./components/DataGrid/formatters/ColumnPointsFormatter/index.js";
|
|
44
|
+
import { C as C4 } from "./components/DataGrid/formatters/ColumnNestedValueFormatter/index.js";
|
|
45
|
+
import { C as C5 } from "./components/DataGrid/formatters/ColumnBooleanFormatter/index.js";
|
|
46
|
+
import { C as C6 } from "./components/DataGrid/formatters/ColumnDateFormatter/index.js";
|
|
47
|
+
import { C as C7 } from "./components/DataGrid/formatters/ColumnConcatenatedValueFormatter/index.js";
|
|
48
|
+
import { C as C8 } from "./components/DataGrid/formatters/ColumnPriceFormatter/index.js";
|
|
49
|
+
import { C as C9 } from "./components/DataGrid/formatters/ColumnInteractiveCheckFormatter/index.js";
|
|
50
|
+
import { C as C10 } from "./components/DataGrid/formatters/ColumnSetCheckFormatter/index.js";
|
|
51
|
+
import { C as C11 } from "./components/DataGrid/formatters/ColumnIconFormatter/index.js";
|
|
52
|
+
import { u as u5 } from "./components/DataGrid/formatters/ColumnBooleanFormatter/useColumnBoolean.js";
|
|
53
|
+
import { u as u6 } from "./components/DataGrid/formatters/ColumnConcatenatedValueFormatter/useColumnConcatenatedValue.js";
|
|
54
|
+
import { u as u7 } from "./components/DataGrid/formatters/ColumnDateFormatter/useColumnDate.js";
|
|
55
|
+
import { u as u8 } from "./components/DataGrid/formatters/ColumnNestedValueFormatter/useColumnNestedValue.js";
|
|
56
|
+
import { u as u9 } from "./components/DataGrid/formatters/ColumnPriceFormatter/useColumnPrice.js";
|
|
57
|
+
import { u as u10 } from "./components/DataGrid/formatters/ColumnUncertaintyFormatter/useColumnUncertainty.js";
|
|
58
|
+
import { u as u11 } from "./components/DataGrid/formatters/ColumnPointsFormatter/useColumnPoints.js";
|
|
59
|
+
import { u as u12 } from "./components/DataGrid/formatters/ColumnInteractiveCheckFormatter/useColumnInteractiveCheck.js";
|
|
60
|
+
import { u as u13 } from "./components/DataGrid/formatters/ColumnSetCheckFormatter/useColumnSetCheck.js";
|
|
61
|
+
import { D as D3 } from "./components/DragResizeWindow/DragResizeWindow.js";
|
|
62
|
+
import { d as d2 } from "./components/DragResizeWindow/classes/index.js";
|
|
79
63
|
import { a as a5 } from "./components/DynamicFilter/dictionary.js";
|
|
64
|
+
import { a as a6, g as g7 } from "./components/DynamicFilter/helpers/frontEndHelpers.js";
|
|
80
65
|
import { D as D4 } from "./components/DynamicFilter/DynamicFilter.js";
|
|
81
|
-
import {
|
|
66
|
+
import { b as b3 } from "./components/DynamicSort/dictionary.js";
|
|
67
|
+
import { S as S3 } from "./components/DynamicSort/helpers/frontEndHelpers.js";
|
|
82
68
|
import { D as D5 } from "./components/DynamicSort/DynamicSort.js";
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import { D as D6,
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
69
|
+
import { R } from "./components/extended/React-Resizable/Resizable/Resizable.js";
|
|
70
|
+
import { R as R2 } from "./components/extended/React-Resizable/ResizableBox/ResizableBox.js";
|
|
71
|
+
import { S as S4 } from "./components/extended/React-Splitter-Layout/SplitLayout.js";
|
|
72
|
+
import { P } from "./components/extended/React-Spinners/PropagateLoaderSpinner/PropagateLoaderSpinner.js";
|
|
73
|
+
import { F } from "./components/extended/React-Window/FixedSizeList/FixedSizeList.js";
|
|
74
|
+
import { V } from "./components/extended/React-Window/VariableSizeList/VariableSizeList.js";
|
|
75
|
+
import { B as B2 } from "./components/formatters/BooleanFormatter/BooleanFormatter.js";
|
|
76
|
+
import { D as D6, g as g8 } from "./components/formatters/DateFormatter/DateFormatter.js";
|
|
77
|
+
import { U, g as g9 } from "./components/formatters/UncertaintyFormatter/UncertaintyFormatter.js";
|
|
78
|
+
import { P as P2, g as g10 } from "./components/formatters/PointsFormatter/PointsFormatter.js";
|
|
79
|
+
import { C as C12, g as g11 } from "./components/formatters/ConcatenatedFormatter/ConcatenatedFormatter.js";
|
|
80
|
+
import { P as P3, u as u14 } from "./components/formatters/PeriodFormatter/PeriodFormatter.js";
|
|
81
|
+
import { P as P4, g as g12 } from "./components/formatters/PriceFormatter/PriceFormatter.js";
|
|
82
|
+
import { g as g13 } from "./components/formatters/DistanceToNowFormatter/dictionary.js";
|
|
83
|
+
import { D as D7 } from "./components/formatters/DistanceToNowFormatter/DistanceToNowFormatter.js";
|
|
84
|
+
import { g as g14 } from "./components/formatters/dictionary.js";
|
|
93
85
|
import { G } from "./components/GridLayout/GridLayout.js";
|
|
94
|
-
import { R as
|
|
86
|
+
import { R as R3 } from "./components/GridLayout/subcomponents/Responsive/index.js";
|
|
95
87
|
import { c as c3, d as d3, e } from "./components/GridLayout/subcomponents/Responsive/responsiveUtils.js";
|
|
96
88
|
import { i, k } from "./components/GridLayout/utils.js";
|
|
97
89
|
import { w } from "./components/GridLayout/subcomponents/withSizeProvider/index.js";
|
|
98
|
-
import {
|
|
90
|
+
import { H as H2 } from "./components/HelmetPage/index.js";
|
|
91
|
+
import { H as H3 } from "./components/HelperError/HelperError.js";
|
|
92
|
+
import { R as R4 } from "./components/hook-form/RHFAutocomplete/RHFAutocomplete.js";
|
|
93
|
+
import { g as g15 } from "./components/hook-form/RHFAutocomplete/dictionary.js";
|
|
94
|
+
import { R as R5 } from "./components/hook-form/RHFAutocompleteAsync/RHFAutocompleteAsync.js";
|
|
95
|
+
import { g as g16 } from "./components/hook-form/RHFAutocompleteAsync/dictionary.js";
|
|
96
|
+
import { R as R6 } from "./components/hook-form/RHFDateTime/RHFDateTime.js";
|
|
97
|
+
import { R as R7 } from "./components/hook-form/RHFMultiCheckbox/index.js";
|
|
98
|
+
import { R as R8 } from "./components/hook-form/RHFSelect/RHFSelect.js";
|
|
99
|
+
import { R as R9 } from "./components/hook-form/RHFHelperError/index.js";
|
|
100
|
+
import { R as R10 } from "./components/hook-form/RHFRadioGroup/RHFRadioGroup.js";
|
|
101
|
+
import { R as R11 } from "./components/hook-form/RHFNumberInput/RHFNumberInput.js";
|
|
102
|
+
import { R as R12 } from "./components/hook-form/RHFUpload/RHFUploadFile/index.js";
|
|
103
|
+
import { R as R13 } from "./components/hook-form/RHFColorPicker/RFHColorPicker.js";
|
|
104
|
+
import { R as R14 } from "./components/hook-form/RHFCheckbox/RHFCheckbox.js";
|
|
105
|
+
import { R as R15 } from "./components/hook-form/RHFTextField/RHFTextField.js";
|
|
106
|
+
import { R as R16 } from "./components/hook-form/RHFTextFieldPassword/RHFTextFieldPassword.js";
|
|
107
|
+
import { g as g17 } from "./components/hook-form/RHFPeriod/subcomponents/Period/dictionary.js";
|
|
108
|
+
import { r } from "./components/hook-form/RHFPeriod/RHFPeriod.styles.js";
|
|
109
|
+
import { R as R17 } from "./components/hook-form/RHFPeriod/RHFPeriod.js";
|
|
110
|
+
import { R as R18 } from "./components/hook-form/RHFPeriod/constants.js";
|
|
111
|
+
import { R as R19 } from "./components/hook-form/RHFPeriod/slots/RHFPeriodEnum.js";
|
|
112
|
+
import { P as P5, R as R20, S as S5, T as T3 } from "./components/hook-form/RHFPeriod/slots/RHFPeriodSlots.js";
|
|
113
|
+
import { R as R21 } from "./components/hook-form/RHFUpload/RHFUploadImage/RHFUploadImage.js";
|
|
114
|
+
import { I as I2 } from "./components/Icon/Icon.js";
|
|
115
|
+
import { I as I3 } from "./components/Image/Image.js";
|
|
116
|
+
import { L as L3 } from "./components/Label/Label.js";
|
|
99
117
|
import { L as L4 } from "./components/LanguagePopover/LanguagePopover.js";
|
|
100
118
|
import { L as L5 } from "./components/LinearProgressIndeterminate/LinearProgressIndeterminate.js";
|
|
101
|
-
import { I as I3 } from "./components/Image/Image.js";
|
|
102
119
|
import { L as L6 } from "./components/Loadable/index.js";
|
|
103
|
-
import {
|
|
104
|
-
import { g as
|
|
105
|
-
import {
|
|
120
|
+
import { L as L7 } from "./components/LoadingError/LoadingError.js";
|
|
121
|
+
import { g as g18 } from "./components/LoadingError/dictionary.js";
|
|
122
|
+
import { a as a7 } from "./components/MenuActions/dictionary.js";
|
|
123
|
+
import { a as a8, M as M3 } from "./components/MenuActions/MenuActions.js";
|
|
124
|
+
import { M as M4 } from "./components/MFIsolationApp/MFIsolationApp.js";
|
|
125
|
+
import { M as M5 } from "./components/MFLoader/MFLoader.js";
|
|
126
|
+
import { g as g19 } from "./components/MFLoader/dictionary.js";
|
|
127
|
+
import { M as M6 } from "./components/ModalDialog/ModalDialog.js";
|
|
128
|
+
import { g as g20 } from "./components/modal/dictionary.js";
|
|
129
|
+
import { d as d4, g as g21 } from "./components/ModalDialog/dictionary.js";
|
|
106
130
|
import { W as W2 } from "./components/WindowConfirm/WindowConfirm.js";
|
|
107
131
|
import { w as w2 } from "./components/WindowBase/WindowBase.styles.js";
|
|
108
132
|
import { W as W3 } from "./components/WindowBase/WindowBase.js";
|
|
109
133
|
import { W as W4 } from "./components/WindowBase/constants.js";
|
|
110
134
|
import { I as I4 } from "./components/WindowBase/icons.js";
|
|
111
135
|
import { W as W5 } from "./components/WindowBase/slots/WindowBaseEnum.js";
|
|
112
|
-
import { a as
|
|
113
|
-
import { H as
|
|
114
|
-
import { L as L8 } from "./components/LoadingError/LoadingError.js";
|
|
115
|
-
import { g as g17 } from "./components/LoadingError/dictionary.js";
|
|
116
|
-
import { M as M5 } from "./components/MFLoader/MFLoader.js";
|
|
117
|
-
import { g as g18 } from "./components/MFLoader/dictionary.js";
|
|
118
|
-
import { N as N2 } from "./components/NoItemSelected/NoItemSelected.js";
|
|
119
|
-
import { g as g19 } from "./components/NoItemSelected/dictionary.js";
|
|
120
|
-
import { O } from "./components/ObjectLogs/index.js";
|
|
121
|
-
import { d as d6, g as g20 } from "./components/ObjectLogs/dictionary.js";
|
|
122
|
-
import { P as P7 } from "./components/PaperForm/PaperForm.js";
|
|
123
|
-
import { P as P8 } from "./components/PDFViewer/PDFViewer.js";
|
|
124
|
-
import { H as H4 } from "./components/HelmetPage/index.js";
|
|
125
|
-
import { P as P9 } from "./components/PropertyValue/PropertyValue.js";
|
|
126
|
-
import { a as a8 } from "./components/MenuActions/dictionary.js";
|
|
127
|
-
import { a as a9, M as M6 } from "./components/MenuActions/MenuActions.js";
|
|
128
|
-
import { R as R20 } from "./components/extended/React-Resizable/Resizable/Resizable.js";
|
|
129
|
-
import { R as R21 } from "./components/extended/React-Resizable/ResizableBox/ResizableBox.js";
|
|
130
|
-
import { S as S4 } from "./components/extended/React-Splitter-Layout/SplitLayout.js";
|
|
131
|
-
import { P as P10 } from "./components/extended/React-Spinners/PropagateLoaderSpinner/PropagateLoaderSpinner.js";
|
|
132
|
-
import { F } from "./components/extended/React-Window/FixedSizeList/FixedSizeList.js";
|
|
133
|
-
import { V } from "./components/extended/React-Window/VariableSizeList/VariableSizeList.js";
|
|
134
|
-
import { S as S5 } from "./components/ScrollBar/ScrollBar.js";
|
|
135
|
-
import { T as T4 } from "./components/ToastContainer/ToastContainer.js";
|
|
136
|
-
import { T as T5 } from "./components/ToastContainer/subcomponents/ToastMessage/ToastMessage.js";
|
|
137
|
-
import { S as S6 } from "./components/SideBar/SideBar.js";
|
|
138
|
-
import { A as A11 } from "./components/AppBar/AppBar.js";
|
|
139
|
-
import { g as g21 } from "./components/AppBar/dictionary.js";
|
|
140
|
-
import { A as A12 } from "./components/AccountPopover/AccountPopover.js";
|
|
141
|
-
import { g as g22 } from "./components/AccountPopover/dictionary.js";
|
|
142
|
-
import { u as u15 } from "./components/popups/components/PopupsProvider/hooks/usePopupsStore/index.js";
|
|
143
|
-
import { P as P11, a as a10 } from "./components/popups/components/PopupsProvider/contexts/PopupsContext/PopupsContext.js";
|
|
144
|
-
import { P as P12 } from "./components/popups/components/PopupsViewer/PopupsViewer.js";
|
|
145
|
-
import { A as A13 } from "./components/commercial/AppBarCommercial/index.js";
|
|
146
|
-
import { H as H5 } from "./components/commercial/HamburgerMenu/HamburgerMenu.js";
|
|
147
|
-
import { T as T6 } from "./components/commercial/TopBar/TopBar.js";
|
|
148
|
-
import { S as S7 } from "./components/commercial/SectionCommercial/index.js";
|
|
149
|
-
import { M as M7 } from "./components/MFIsolationApp/MFIsolationApp.js";
|
|
150
|
-
import { B as B2 } from "./components/BaseModule/BaseModule.js";
|
|
136
|
+
import { a as a9, C as C13, b as b4, H as H4, I as I5, e as e2, L as L8, M as M7, c as c4, P as P6, S as S6, d as d5, T as T4, W as W6 } from "./components/WindowBase/slots/WindowBaseSlots.js";
|
|
137
|
+
import { H as H5 } from "./components/WindowBase/subcomponents/Header/HeaderWindowBase.js";
|
|
151
138
|
import { A as A14 } from "./components/mui_extended/Accordion/Accordion.js";
|
|
152
139
|
import { A as A15 } from "./components/mui_extended/Avatar/Avatar.js";
|
|
153
140
|
import { B as B3 } from "./components/mui_extended/BoxIcon/index.js";
|
|
@@ -157,42 +144,57 @@ import { B as B5 } from "./components/mui_extended/Badge/Badge.js";
|
|
|
157
144
|
import { L as L9 } from "./components/mui_extended/LinearProgress/index.js";
|
|
158
145
|
import { L as L10 } from "./components/mui_extended/LinkWithRoute/index.js";
|
|
159
146
|
import { L as L11 } from "./components/mui_extended/LoadingButton/LoadingButton.js";
|
|
160
|
-
import { P as
|
|
161
|
-
import { g as
|
|
162
|
-
import { T as
|
|
163
|
-
import { T as
|
|
147
|
+
import { P as P7 } from "./components/Pager/Pager.js";
|
|
148
|
+
import { g as g22 } from "./components/Pager/dicctionary.js";
|
|
149
|
+
import { T as T5 } from "./components/mui_extended/Tab/Tab.js";
|
|
150
|
+
import { T as T6 } from "./components/mui_extended/Tooltip/Tooltip.js";
|
|
164
151
|
import { I as I6 } from "./components/mui_extended/IconButton/IconButton.js";
|
|
165
152
|
import { B as B6 } from "./components/mui_extended/Button/Button.js";
|
|
166
153
|
import { C as C15 } from "./components/mui_extended/CheckBox/CheckBox.js";
|
|
167
154
|
import { I as I7 } from "./components/mui_extended/ImageButton/ImageButton.js";
|
|
168
|
-
import { P as
|
|
169
|
-
import { S as
|
|
170
|
-
import { S as
|
|
171
|
-
import { T as
|
|
172
|
-
import { T as
|
|
173
|
-
import { T as
|
|
174
|
-
import { T as
|
|
155
|
+
import { P as P8 } from "./components/mui_extended/Popover/Popover.js";
|
|
156
|
+
import { S as S7 } from "./components/mui_extended/Skeleton/Skeleton.js";
|
|
157
|
+
import { S as S8 } from "./components/mui_extended/Stack/Stack.js";
|
|
158
|
+
import { T as T7 } from "./components/mui_extended/Tabs/Tabs.js";
|
|
159
|
+
import { T as T8 } from "./components/mui_extended/TabContent/TabContent.js";
|
|
160
|
+
import { T as T9, a as a10 } from "./components/mui_extended/TabContext/index.js";
|
|
161
|
+
import { T as T10 } from "./components/mui_extended/Typography/Typography.js";
|
|
175
162
|
import { t } from "./components/mui_extended/ToggleButton/ToggleButton.styles.js";
|
|
176
|
-
import { T as
|
|
177
|
-
import { T as
|
|
178
|
-
import { T as
|
|
179
|
-
import { T as
|
|
163
|
+
import { T as T11 } from "./components/mui_extended/ToggleButton/ToggleButton.js";
|
|
164
|
+
import { T as T12 } from "./components/mui_extended/ToggleButton/constants.js";
|
|
165
|
+
import { T as T13 } from "./components/mui_extended/ToggleButton/slots/ToggleButtonEnum.js";
|
|
166
|
+
import { T as T14 } from "./components/mui_extended/ToggleButton/slots/ToggleButtonSlots.js";
|
|
180
167
|
import { t as t2 } from "./components/mui_extended/ToggleIconButton/ToggleIconButton.styles.js";
|
|
181
|
-
import { T as
|
|
182
|
-
import { T as
|
|
183
|
-
import { T as
|
|
184
|
-
import { T as
|
|
185
|
-
import { N as
|
|
168
|
+
import { T as T15 } from "./components/mui_extended/ToggleIconButton/ToggleIconButton.js";
|
|
169
|
+
import { T as T16 } from "./components/mui_extended/ToggleIconButton/constants.js";
|
|
170
|
+
import { T as T17 } from "./components/mui_extended/ToggleIconButton/slots/ToggleIconButtonEnum.js";
|
|
171
|
+
import { T as T18 } from "./components/mui_extended/ToggleIconButton/slots/ToggleIconButtonSlots.js";
|
|
172
|
+
import { N as N2 } from "./components/mui_extended/NavLink/NavLink.js";
|
|
173
|
+
import { N as N3 } from "./components/NoItemSelected/NoItemSelected.js";
|
|
174
|
+
import { g as g23 } from "./components/NoItemSelected/dictionary.js";
|
|
175
|
+
import { O } from "./components/ObjectLogs/index.js";
|
|
176
|
+
import { d as d6, g as g24 } from "./components/ObjectLogs/dictionary.js";
|
|
177
|
+
import { P as P9 } from "./components/PaperForm/PaperForm.js";
|
|
178
|
+
import { P as P10 } from "./components/PDFViewer/PDFViewer.js";
|
|
179
|
+
import { u as u15 } from "./components/popups/components/PopupsProvider/hooks/usePopupsStore/index.js";
|
|
180
|
+
import { P as P11, a as a11 } from "./components/popups/components/PopupsProvider/contexts/PopupsContext/PopupsContext.js";
|
|
181
|
+
import { P as P12 } from "./components/popups/components/PopupsViewer/PopupsViewer.js";
|
|
182
|
+
import { P as P13 } from "./components/PrintingSystem/PrintingSystem.js";
|
|
183
|
+
import { P as P14 } from "./components/PropertyValue/PropertyValue.js";
|
|
184
|
+
import { S as S9 } from "./components/ScrollBar/ScrollBar.js";
|
|
185
|
+
import { S as S10 } from "./components/SideBar/SideBar.js";
|
|
186
|
+
import { T as T19 } from "./components/ToastContainer/ToastContainer.js";
|
|
187
|
+
import { T as T20 } from "./components/ToastContainer/subcomponents/ToastMessage/ToastMessage.js";
|
|
186
188
|
import { a as a12, D as D8, M as M8 } from "./components/areas/contexts/DynamicMFParmsContext/index.js";
|
|
187
189
|
import { F as F2, R as R22, u as u16 } from "./components/hook-form/RHFormContext/index.js";
|
|
188
|
-
import { g as
|
|
190
|
+
import { g as g25 } from "./components/hook-form/RHFormContext/dictionary.js";
|
|
189
191
|
import { u as u17 } from "./contexts/AppearanceComponentContext/useAppearanceComponentStore.js";
|
|
190
192
|
import { A as A16 } from "./contexts/AppearanceComponentContext/AppearanceComponentContext.js";
|
|
191
193
|
import { a as a13, M as M9 } from "./contexts/ModalContext/index.js";
|
|
192
194
|
import { u as u18 } from "./hooks/useFormAddEdit/index.js";
|
|
193
195
|
import { u as u19 } from "./hooks/useModal/index.js";
|
|
194
196
|
import { u as u20 } from "./hooks/useTab/index.js";
|
|
195
|
-
import { g as
|
|
197
|
+
import { g as g26 } from "./hooks/useFormAddEdit/dictionary.js";
|
|
196
198
|
import { u as u21 } from "./hooks/useFormFocus/index.js";
|
|
197
199
|
import { u as u22 } from "./hooks/useInterval/index.js";
|
|
198
200
|
import { u as u23 } from "./hooks/useComponentSize/useComponentSize.js";
|
|
@@ -200,63 +202,65 @@ import { u as u24 } from "./hooks/useFormReadyForUpdate/index.js";
|
|
|
200
202
|
import { u as u25 } from "./hooks/useStateRef/index.js";
|
|
201
203
|
import { a as a14 } from "./hooks/useSvgColor/constants.js";
|
|
202
204
|
import { u as u26 } from "./hooks/useSvgColor/useSvgColor.js";
|
|
205
|
+
import { u as u27 } from "./hooks/useDynamicFilterAndSort/useDynamicFilterAndSort.js";
|
|
203
206
|
import { c as c5 } from "./utils/capitalizeFirstLetter.js";
|
|
204
207
|
import { i as i2 } from "./utils/isValidDate.js";
|
|
205
|
-
import { g as
|
|
206
|
-
import { g as
|
|
207
|
-
import { g as
|
|
208
|
-
import { g as
|
|
208
|
+
import { g as g27 } from "./utils/getComponentUtilityClass.js";
|
|
209
|
+
import { g as g28 } from "./utils/getPaletteColor.js";
|
|
210
|
+
import { g as g29 } from "./utils/getTypographyStyles.js";
|
|
211
|
+
import { g as g30 } from "./utils/getIconColor.js";
|
|
209
212
|
import { a as a15 } from "./utils/getSizeStyles/getSizeStyles.js";
|
|
213
|
+
import { g as g31 } from "./utils/getValidDate.js";
|
|
210
214
|
import { O as O2 } from "./utils/ObjectQueue.js";
|
|
211
|
-
import { g as
|
|
215
|
+
import { g as g32, a as a16 } from "./utils/getComponentSlotRoot.js";
|
|
212
216
|
import { f } from "./utils/formatDistanceToNow/formatDistanteToNow.js";
|
|
213
|
-
import { W as W7, c as c6, b as
|
|
217
|
+
import { W as W7, c as c6, b as b5, a as a17, e as e3, d as d7, f as f2 } from "./vendor.js";
|
|
214
218
|
export {
|
|
215
|
-
|
|
219
|
+
A7 as AREAS_DICCTIONARY,
|
|
216
220
|
a4 as AREAS_DICTIONARY_ID,
|
|
217
221
|
A14 as Accordion,
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
222
|
+
A as AccountPopover,
|
|
223
|
+
A10 as ActionCancel,
|
|
224
|
+
A12 as ActionFormCancel,
|
|
225
|
+
A13 as ActionFormIntro,
|
|
226
|
+
A11 as ActionIntro,
|
|
227
|
+
A9 as ActionsContainer,
|
|
228
|
+
A2 as AnimatedScroll,
|
|
229
|
+
A3 as AppBar,
|
|
230
|
+
A8 as AppBarComercial,
|
|
227
231
|
A16 as AppearanceComponentProvider,
|
|
228
|
-
|
|
232
|
+
A4 as AreasAdmin,
|
|
229
233
|
a3 as AreasContext,
|
|
230
|
-
|
|
231
|
-
|
|
234
|
+
A6 as AreasProvider,
|
|
235
|
+
A5 as AreasViewer,
|
|
232
236
|
A15 as Avatar,
|
|
233
237
|
B5 as Badge,
|
|
234
|
-
|
|
235
|
-
|
|
238
|
+
B as BaseModule,
|
|
239
|
+
B2 as BooleanFormatter,
|
|
236
240
|
B3 as BoxIcon,
|
|
237
241
|
B4 as Breadcrumbs,
|
|
238
242
|
B6 as Button,
|
|
239
243
|
C15 as CheckBox,
|
|
240
244
|
C as Chip,
|
|
241
245
|
C14 as CircularProgress,
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
246
|
+
C5 as ColumnBooleanFormatter,
|
|
247
|
+
C7 as ColumnConcatenatedValueFormatter,
|
|
248
|
+
C6 as ColumnDateFormatter,
|
|
249
|
+
C11 as ColumnIconFormatter,
|
|
250
|
+
C9 as ColumnInteractiveCheckFormatter,
|
|
251
|
+
C4 as ColumnNestedValueFormatter,
|
|
252
|
+
C3 as ColumnPointsFormatter,
|
|
253
|
+
C8 as ColumnPriceFormatter,
|
|
254
|
+
C10 as ColumnSetCheckFormatter,
|
|
255
|
+
C2 as ColumnUncertaintyFormatter,
|
|
256
|
+
C12 as ConcatenatedFormatter,
|
|
257
|
+
a9 as ContentEditionInfoStyled,
|
|
254
258
|
C13 as ContentWindowStyled,
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
259
|
+
D as DICTIONARY,
|
|
260
|
+
D2 as DataGrid,
|
|
261
|
+
D6 as DateFormatter,
|
|
262
|
+
D7 as DistanceToNowFormatter,
|
|
263
|
+
D3 as DragResizeWindow,
|
|
260
264
|
D4 as DynamicFilter,
|
|
261
265
|
a12 as DynamicMFParmsContext,
|
|
262
266
|
D8 as DynamicMFParmsProvider,
|
|
@@ -264,16 +268,16 @@ export {
|
|
|
264
268
|
F as FixedSizeList,
|
|
265
269
|
F2 as FormProviderCustom,
|
|
266
270
|
G as GridLayout,
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
271
|
+
H as HamburgerMenu,
|
|
272
|
+
b4 as HeaderContentStyled,
|
|
273
|
+
H5 as HeaderWindowBase,
|
|
274
|
+
H4 as HeaderWindowComponentStyled,
|
|
275
|
+
H2 as HelmetPage,
|
|
276
|
+
H3 as HelperError,
|
|
273
277
|
I4 as ICONS,
|
|
274
|
-
|
|
278
|
+
I2 as Icon,
|
|
275
279
|
I6 as IconButton,
|
|
276
|
-
|
|
280
|
+
I as IconButtonAnimate,
|
|
277
281
|
I5 as IconWindowStyled,
|
|
278
282
|
e2 as IconsWrapperStyled,
|
|
279
283
|
I3 as Image,
|
|
@@ -283,98 +287,99 @@ export {
|
|
|
283
287
|
L4 as LanguagePopover,
|
|
284
288
|
L9 as LinearProgress,
|
|
285
289
|
L5 as LinearProgressIndeterminate,
|
|
286
|
-
|
|
290
|
+
L8 as LinearProgressIndeterminateStyled,
|
|
287
291
|
L10 as LinkWithRoute,
|
|
288
292
|
L6 as Loadable,
|
|
289
293
|
L11 as LoadingButton,
|
|
290
|
-
|
|
294
|
+
L7 as LoadingError,
|
|
291
295
|
L as LoadingScreen,
|
|
292
|
-
|
|
296
|
+
M4 as MFIsolationApp,
|
|
293
297
|
M5 as MFLoader,
|
|
294
298
|
M8 as MemonizedDynamicMFParmsProvider,
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
299
|
+
a8 as MemonizedMenuActions,
|
|
300
|
+
M3 as MenuActions,
|
|
301
|
+
M7 as MenuActionsWindowsStyled,
|
|
298
302
|
a13 as ModalContext,
|
|
299
|
-
|
|
303
|
+
M6 as ModalDialog,
|
|
300
304
|
M9 as ModalProvider,
|
|
301
305
|
M as MotionContainer,
|
|
302
306
|
M2 as MotionLazyContainer,
|
|
303
|
-
|
|
304
|
-
|
|
307
|
+
N2 as NavLink,
|
|
308
|
+
N3 as NoItemSelected,
|
|
305
309
|
N as NumberEditor,
|
|
306
310
|
O as ObjectLogs,
|
|
307
311
|
O2 as ObjectQueue,
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
312
|
+
P10 as PDFViewer,
|
|
313
|
+
P7 as Pager,
|
|
314
|
+
P9 as PaperForm,
|
|
311
315
|
P3 as PeriodFormatter,
|
|
312
|
-
|
|
316
|
+
P5 as PeriodRootStyled,
|
|
313
317
|
c4 as PointIconStyled,
|
|
314
318
|
P6 as PointStyled,
|
|
315
319
|
P2 as PointsFormatter,
|
|
316
|
-
|
|
320
|
+
P8 as Popover,
|
|
317
321
|
P11 as PopupsContext,
|
|
318
|
-
|
|
322
|
+
a11 as PopupsProvider,
|
|
319
323
|
P12 as PopupsViewer,
|
|
320
324
|
P4 as PriceFormatter,
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
325
|
+
P13 as PrintingSystem,
|
|
326
|
+
P as PropagateLoaderSpinner,
|
|
327
|
+
P14 as PropertyValue,
|
|
328
|
+
R4 as RHFAutocomplete,
|
|
329
|
+
R5 as RHFAutocompleteAsync,
|
|
330
|
+
R14 as RHFCheckbox,
|
|
331
|
+
R13 as RHFColorPicker,
|
|
332
|
+
R6 as RHFDateTime,
|
|
333
|
+
R9 as RHFHelperError,
|
|
334
|
+
R7 as RHFMultiCheckbox,
|
|
335
|
+
R11 as RHFNumberInput,
|
|
336
|
+
R17 as RHFPeriod,
|
|
337
|
+
R20 as RHFPeriodRootStyled,
|
|
338
|
+
R19 as RHFPeriodSlots,
|
|
339
|
+
R10 as RHFRadioGroup,
|
|
340
|
+
R8 as RHFSelect,
|
|
341
|
+
R15 as RHFTextField,
|
|
342
|
+
R16 as RHFTextFieldPassword,
|
|
343
|
+
R12 as RHFUploadFile,
|
|
344
|
+
R21 as RHFUploadImage,
|
|
345
|
+
R18 as RHF_PERIOD_KEY_COMPONENT,
|
|
342
346
|
R22 as RHFormProvider,
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
347
|
+
R as Resizable,
|
|
348
|
+
R2 as ResizableBox,
|
|
349
|
+
R3 as Responsive,
|
|
346
350
|
a14 as SKELETON_SVG_ICON,
|
|
347
|
-
|
|
351
|
+
S9 as ScrollBar,
|
|
348
352
|
S as ScrollToTop,
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
+
S2 as SectionCommercial,
|
|
354
|
+
S5 as SelectStyled,
|
|
355
|
+
S10 as SideBar,
|
|
356
|
+
S7 as Skeleton,
|
|
357
|
+
S3 as SortCompareValues,
|
|
353
358
|
S4 as SplitLayout,
|
|
354
|
-
|
|
355
|
-
|
|
359
|
+
S8 as Stack,
|
|
360
|
+
S6 as SubtitleContainerStyled,
|
|
356
361
|
d5 as SubtitleWindowStyled,
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
362
|
+
T12 as TOGGLE_BUTTON_KEY_COMPONENT,
|
|
363
|
+
T16 as TOGGLE_ICON_BUTTON_KEY_COMPONENT,
|
|
364
|
+
T5 as Tab,
|
|
365
|
+
T8 as TabContent,
|
|
366
|
+
T9 as TabContext,
|
|
367
|
+
a10 as TabProvider,
|
|
368
|
+
T7 as Tabs,
|
|
369
|
+
T2 as TextEditor,
|
|
370
|
+
T3 as TextFieldStyled,
|
|
371
|
+
T4 as TitleWindowStyled,
|
|
372
|
+
T19 as ToastContainer,
|
|
373
|
+
T20 as ToastMessage,
|
|
374
|
+
T11 as ToggleButton,
|
|
375
|
+
T14 as ToggleButtonRootStyled,
|
|
376
|
+
T13 as ToggleButtonSlots,
|
|
377
|
+
T15 as ToggleIconButton,
|
|
378
|
+
T18 as ToggleIconButtonRootStyled,
|
|
379
|
+
T17 as ToggleIconButtonSlots,
|
|
380
|
+
T6 as Tooltip,
|
|
381
|
+
T as TopBar,
|
|
382
|
+
T10 as Typography,
|
|
378
383
|
U as UncertaintyFormatter,
|
|
379
384
|
V as VariableSizeList,
|
|
380
385
|
W4 as WINDOW_BASE_KEY_COMPONENT,
|
|
@@ -386,7 +391,7 @@ export {
|
|
|
386
391
|
W as WindowToolsMFProvider,
|
|
387
392
|
W7 as WithContexts,
|
|
388
393
|
c6 as WithFormAutoValidation,
|
|
389
|
-
|
|
394
|
+
b5 as WithForms,
|
|
390
395
|
a17 as WithPopupsProvider,
|
|
391
396
|
e3 as WithScaleIcons,
|
|
392
397
|
d7 as WithWindowsContainer,
|
|
@@ -402,42 +407,45 @@ export {
|
|
|
402
407
|
d6 as defaultObjectLogDictionary,
|
|
403
408
|
d2 as dragResizeWindowClasses,
|
|
404
409
|
f as formatDistanceToNow,
|
|
405
|
-
|
|
406
|
-
|
|
410
|
+
g as getAccountPopoverDictionary,
|
|
411
|
+
g2 as getAppBarDictionary,
|
|
407
412
|
b2 as getAreasComponentsDictionary,
|
|
408
413
|
g3 as getAreasDictionary,
|
|
409
|
-
|
|
410
|
-
|
|
414
|
+
g4 as getCommonActionsDictionary,
|
|
415
|
+
g32 as getComponentClasses,
|
|
411
416
|
a16 as getComponentSlotRoot,
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
417
|
+
g27 as getComponentUtilityClass,
|
|
418
|
+
g5 as getDataGridComponentsDictionary,
|
|
419
|
+
g6 as getDataGridRowsFromSet,
|
|
420
|
+
g13 as getDistanceToNowFormatterComponentsDictionary,
|
|
416
421
|
a5 as getDynamicFilterComponentsDictionary,
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
422
|
+
b3 as getDynamicSortComponentsDictionary,
|
|
423
|
+
a6 as getFilterGroupFieldsByName,
|
|
424
|
+
g25 as getFormComponentsDictionary,
|
|
425
|
+
g11 as getFormatConcatenated,
|
|
426
|
+
g8 as getFormatDate,
|
|
427
|
+
g10 as getFormatPoints,
|
|
428
|
+
g12 as getFormatPrice,
|
|
429
|
+
g14 as getFormattersComponentsDictionary,
|
|
424
430
|
a15 as getHeightSizeStyles,
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
g18 as
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
431
|
+
g30 as getIconColor,
|
|
432
|
+
g7 as getIsIfInDynamicFilter,
|
|
433
|
+
g18 as getLoadingErrorComponentsDictionary,
|
|
434
|
+
g19 as getMFLoaderComponentsDictionary,
|
|
435
|
+
a7 as getMenuActionsComponentsDictionary,
|
|
436
|
+
g21 as getModalDialogComponentsDictionary,
|
|
437
|
+
g20 as getModalDictionary,
|
|
438
|
+
g23 as getNoItemSelectedComponentsDictionary,
|
|
439
|
+
g24 as getObjectLogsComponentsDictionary,
|
|
440
|
+
g22 as getPagerComponentsDictionary,
|
|
441
|
+
g28 as getPaletteColor,
|
|
442
|
+
g17 as getPeriodComponetsDictionary,
|
|
443
|
+
g16 as getRHFAutocompleteAsyncComponentsDictionary,
|
|
444
|
+
g15 as getRHFAutocompleteComponentsDictionary,
|
|
445
|
+
g29 as getTypographyStyles,
|
|
446
|
+
g9 as getUncertaintyFormat,
|
|
447
|
+
g31 as getValidDate,
|
|
448
|
+
g26 as getformAddEditDictionary,
|
|
441
449
|
i as isEqualLayout,
|
|
442
450
|
k as isEqualLayouts,
|
|
443
451
|
i2 as isValidDate,
|
|
@@ -446,22 +454,23 @@ export {
|
|
|
446
454
|
t2 as toggleIconButtonStyles,
|
|
447
455
|
u17 as useAppearanceComponentStore,
|
|
448
456
|
u4 as useAreasStore,
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
457
|
+
u5 as useColumnBoolean,
|
|
458
|
+
u10 as useColumnCertanity,
|
|
459
|
+
u6 as useColumnConcatenatedValue,
|
|
460
|
+
u7 as useColumnDate,
|
|
461
|
+
u12 as useColumnInteractiveCheck,
|
|
462
|
+
u8 as useColumnNestedValue,
|
|
463
|
+
u11 as useColumnPoints,
|
|
464
|
+
u9 as useColumnPrice,
|
|
465
|
+
u13 as useColumnSetCheck,
|
|
458
466
|
u23 as useComponentSize,
|
|
459
467
|
u16 as useCustomForm,
|
|
468
|
+
u27 as useDynamicFilterAndSort,
|
|
460
469
|
u as useDynamicMFParametersStore,
|
|
461
470
|
u18 as useFormAddEdit,
|
|
462
471
|
u21 as useFormFocus,
|
|
463
472
|
u24 as useFormReadyForUpdate,
|
|
464
|
-
|
|
473
|
+
u14 as useFormatPeriod,
|
|
465
474
|
u22 as useInterval,
|
|
466
475
|
u19 as useModal,
|
|
467
476
|
u15 as usePopupsStore,
|