@m4l/components 0.2.29 → 0.2.31
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/components/AppBar/{index.1562b3b8.js → index.0cc0bd40.js} +8 -4
- package/components/DataGrid/formatters/ColumnInteractiveCheckFormatter/{index.c097ac25.js → index.c2a8a7d0.js} +1 -1
- package/components/DataGrid/{index.6bdcbf70.js → index.ca78a0a9.js} +6 -2
- package/components/DataGrid/subcomponents/Actions/{index.380c24dc.js → index.6cfca40a.js} +8 -7
- package/components/DragResizeWindow/{index.1c6d51f9.js → index.ff74eed8.js} +1 -1
- package/components/DynamicFilter/{index.04cc1034.js → index.740ab57c.js} +3 -3
- package/components/ObjectLogs/{index.edc0fecc.js → index.c0a6ebab.js} +2 -2
- package/components/PropertyValue/{index.3e240f9d.js → index.1dbf6ef8.js} +5 -5
- package/components/areas/components/AreasAdmin/{index.be0ad2f1.js → index.c116bd31.js} +5 -3
- package/components/areas/components/AreasViewer/{index.4d7caeeb.js → index.88cb57e4.js} +2 -2
- package/components/areas/contexts/AreasContext/helper.d.ts +2 -2
- package/components/areas/contexts/AreasContext/{index.ef8e9ef3.js → index.7d883aa4.js} +4 -4
- package/components/areas/hooks/useAreas/{index.33fe5c67.js → index.01011617.js} +1 -1
- package/components/hook-form/RHFAutocomplete/{index.42ec23c5.js → index.4b666e32.js} +1 -1
- package/components/hook-form/RHFAutocompleteAsync/{index.91ad29a5.js → index.0536f712.js} +1 -1
- package/components/hook-form/RHFCheckbox/{index.f890d98f.js → index.4942ed5e.js} +1 -1
- package/components/hook-form/RHFColorPicker/{index.25a0318a.js → index.b2d1edf3.js} +1 -1
- package/components/hook-form/RHFDateTime/{index.1d21546f.js → index.59623e57.js} +1 -1
- package/components/hook-form/RHFPeriod/{index.d30e8d8c.js → index.d3960c8c.js} +1 -1
- package/components/hook-form/RHFTextField/{index.2c2dcc64.js → index.ad830000.js} +1 -1
- package/components/mui_extended/Pager/{index.8e2d569e.js → index.91696066.js} +6 -47
- package/components/mui_extended/Pager/types.d.ts +1 -1
- package/index.js +22 -22
- package/package.json +1 -1
- package/{vendor.e5e34bad.js → vendor.1c5be0ff.js} +18 -18
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { styled, generateUtilityClasses, generateUtilityClass } from "@mui/material";
|
|
2
|
-
import {
|
|
2
|
+
import { useResponsiveContainerStore } from "@m4l/graphics";
|
|
3
3
|
import { useEnvironment, useModuleDictionary } from "@m4l/core";
|
|
4
4
|
import { T as TEST_PROP_ID } from "../../test/constants_no_mock.86c553a9.js";
|
|
5
5
|
import { unstable_composeClasses } from "@mui/base";
|
|
@@ -49,7 +49,10 @@ const AppBar = (props) => {
|
|
|
49
49
|
companyLogo,
|
|
50
50
|
companyName
|
|
51
51
|
} = props;
|
|
52
|
-
const
|
|
52
|
+
const {
|
|
53
|
+
isUpSm,
|
|
54
|
+
breakPoint
|
|
55
|
+
} = useResponsiveContainerStore((state) => state);
|
|
53
56
|
const {
|
|
54
57
|
host_static_assets,
|
|
55
58
|
environment_assets
|
|
@@ -58,12 +61,13 @@ const AppBar = (props) => {
|
|
|
58
61
|
const {
|
|
59
62
|
getLabel
|
|
60
63
|
} = useModuleDictionary();
|
|
64
|
+
console.log("host break point", breakPoint);
|
|
61
65
|
return /* @__PURE__ */ jsxs(AppBarRoot, {
|
|
62
66
|
className: classes.root,
|
|
63
67
|
...process.env.NODE_ENV !== "production" ? {
|
|
64
68
|
[TEST_PROP_ID]: getNameDataTestId("root")
|
|
65
69
|
} : {},
|
|
66
|
-
children: [companyLogo &&
|
|
70
|
+
children: [companyLogo && isUpSm ? /* @__PURE__ */ jsx("div", {
|
|
67
71
|
className: classes.containerLogo,
|
|
68
72
|
children: /* @__PURE__ */ jsxs("div", {
|
|
69
73
|
className: classes.containerImageTypography,
|
|
@@ -76,7 +80,7 @@ const AppBar = (props) => {
|
|
|
76
80
|
children: companyName
|
|
77
81
|
})]
|
|
78
82
|
})
|
|
79
|
-
}) : null, !
|
|
83
|
+
}) : null, !isUpSm ? /* @__PURE__ */ jsx("div", {
|
|
80
84
|
className: classes.containerIconMenuToggle,
|
|
81
85
|
...process.env.NODE_ENV !== "production" ? {
|
|
82
86
|
[TEST_PROP_ID]: getNameDataTestId("containerIconMenuToggle")
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Checkbox } from "@mui/material";
|
|
2
|
-
import { d as dataGridClasses } from "../../index.
|
|
2
|
+
import { d as dataGridClasses } from "../../index.ca78a0a9.js";
|
|
3
3
|
import { jsx } from "react/jsx-runtime";
|
|
4
4
|
function ColumnInteractiveCheckFormatter(props) {
|
|
5
5
|
const {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { g as getModalDialogComponentsDictionary } from "../ModalDialog/index.7b85f8b0.js";
|
|
2
|
-
import { g as getPagerComponentsDictionary } from "../mui_extended/Pager/index.
|
|
2
|
+
import { g as getPagerComponentsDictionary } from "../mui_extended/Pager/index.91696066.js";
|
|
3
3
|
import { styled, SvgIcon, Checkbox, InputBase, Skeleton, generateUtilityClasses, generateUtilityClass } from "@mui/material";
|
|
4
4
|
import { forwardRef, createContext, useState, useMemo, useEffect, useCallback, useContext, useRef, useLayoutEffect } from "react";
|
|
5
5
|
import { u as useRowSelection, S as SelectCellFormatter, H as HeaderRenderer, D as DataGrid$1 } from "../../react-data-grid.c5377916.js";
|
|
@@ -8,10 +8,12 @@ import { HTML5Backend } from "react-dnd-html5-backend";
|
|
|
8
8
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
9
9
|
import { D as DATAGRID_SELECT_COLUMN_KEY, c as componentName, a as DATAGRID_PREFIX_NAME } from "./constants.e334cd50.js";
|
|
10
10
|
import { voidFunction, useModuleDictionary, useModuleSkeleton, getPropertyByString } from "@m4l/core";
|
|
11
|
-
import { A as ActionsColumn, a as Actions } from "./subcomponents/Actions/index.
|
|
11
|
+
import { A as ActionsColumn, a as Actions } from "./subcomponents/Actions/index.6cfca40a.js";
|
|
12
12
|
import { unstable_composeClasses } from "@mui/base";
|
|
13
13
|
import { T as TEST_PROP_ID } from "../../test/constants_no_mock.86c553a9.js";
|
|
14
14
|
import { g as getNameDataTestId } from "../../test/getNameDataTestId.14875ec7.js";
|
|
15
|
+
import { shallow } from "zustand/shallow";
|
|
16
|
+
import { useResponsiveContainerStore } from "@m4l/graphics";
|
|
15
17
|
const DataGridRoot = styled("div")(({
|
|
16
18
|
theme
|
|
17
19
|
}) => ({
|
|
@@ -901,6 +903,8 @@ function DataGrid(props) {
|
|
|
901
903
|
onCheckedRowsChange,
|
|
902
904
|
dataTestId = ""
|
|
903
905
|
} = props;
|
|
906
|
+
const isUpSm = useResponsiveContainerStore((state) => state.isUpSm, shallow);
|
|
907
|
+
console.log("isUpSm", isUpSm);
|
|
904
908
|
const ownerState = {
|
|
905
909
|
actionsProps,
|
|
906
910
|
withActions
|
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
import { M as MenuActions } from "../../../mui_extended/MenuActions/index.154d57f0.js";
|
|
2
|
-
import { u as useDataGrid, a as useFilters, D as DataGridRoot, b as dictionary } from "../../index.
|
|
2
|
+
import { u as useDataGrid, a as useFilters, D as DataGridRoot, b as dictionary } from "../../index.ca78a0a9.js";
|
|
3
3
|
import { useTheme, styled, Skeleton } from "@mui/material";
|
|
4
4
|
import { b as DATAGRID_ACTIONS_COLUMN_KEY } from "../../constants.e334cd50.js";
|
|
5
5
|
import { jsx, Fragment, jsxs } from "react/jsx-runtime";
|
|
6
|
-
import { P as Pager } from "../../../mui_extended/Pager/index.
|
|
6
|
+
import { P as Pager } from "../../../mui_extended/Pager/index.91696066.js";
|
|
7
7
|
import { I as IconButton } from "../../../mui_extended/IconButton/index.d8bdadaa.js";
|
|
8
8
|
import { useEnvironment, useModuleDictionary, useModuleSkeleton } from "@m4l/core";
|
|
9
9
|
import { forwardRef, useRef, useState, useImperativeHandle, useMemo, useEffect, useCallback } from "react";
|
|
10
10
|
import { D as DataGrid$1 } from "../../../../react-data-grid.c5377916.js";
|
|
11
|
-
import { C as ColumnInteractiveCheckFormatter } from "../../formatters/ColumnInteractiveCheckFormatter/index.
|
|
11
|
+
import { C as ColumnInteractiveCheckFormatter } from "../../formatters/ColumnInteractiveCheckFormatter/index.c2a8a7d0.js";
|
|
12
12
|
import { u as useModal } from "../../../../hooks/useModal/index.b64e2ea0.js";
|
|
13
13
|
import { A as ActionCancel } from "../../../CommonActions/components/ActionCancel/index.f00f026d.js";
|
|
14
14
|
import { A as ActionIntro } from "../../../CommonActions/components/ActionIntro/index.574967a0.js";
|
|
15
|
-
import { useResponsiveDesktop } from "@m4l/graphics";
|
|
15
|
+
import { useResponsiveDesktop, useResponsiveContainerStore } from "@m4l/graphics";
|
|
16
16
|
import { W as WindowBase } from "../../../modal/WindowBase.ab22627c.js";
|
|
17
17
|
import { A as Actions$1 } from "../../../CommonActions/components/Actions/index.23bfc86b.js";
|
|
18
|
+
import { shallow } from "zustand/shallow";
|
|
18
19
|
function ActionsFormatter(props) {
|
|
19
20
|
const {
|
|
20
21
|
rowActionsGetter,
|
|
@@ -552,7 +553,7 @@ function Density() {
|
|
|
552
553
|
});
|
|
553
554
|
}
|
|
554
555
|
function Actions(props) {
|
|
555
|
-
const
|
|
556
|
+
const isXs = useResponsiveContainerStore((state) => state.isXs, shallow);
|
|
556
557
|
const {
|
|
557
558
|
rowHeights,
|
|
558
559
|
classes
|
|
@@ -571,11 +572,11 @@ function Actions(props) {
|
|
|
571
572
|
} = props;
|
|
572
573
|
return /* @__PURE__ */ jsxs("div", {
|
|
573
574
|
className: classes.actions,
|
|
574
|
-
children: [withRowsCount &&
|
|
575
|
+
children: [withRowsCount && !isXs && /* @__PURE__ */ jsx(RowsCount, {}), withPager && pagerOptions && /* @__PURE__ */ jsx(Pager, {
|
|
575
576
|
...pagerOptions,
|
|
576
577
|
totalRecords: pagerOptions.totalRecords,
|
|
577
578
|
isSkeleton,
|
|
578
|
-
|
|
579
|
+
isXs,
|
|
579
580
|
labelRows: getLabel(dictionary.LABEL_ROWS_PER_PAGE),
|
|
580
581
|
labelOf: getLabel(dictionary.LABEL_OF)
|
|
581
582
|
}), /* @__PURE__ */ jsxs("div", {
|
|
@@ -2,7 +2,7 @@ import React__default, { useState, useRef, useCallback, useEffect, useMemo } fro
|
|
|
2
2
|
import { D as DraggableCore_1 } from "../../react-draggable.6cf19cba.js";
|
|
3
3
|
import clsx from "clsx";
|
|
4
4
|
import { styled, generateUtilityClasses } from "@mui/material";
|
|
5
|
-
import { M as MAP_ZINDEX_OVER_MAP } from "../../vendor.
|
|
5
|
+
import { M as MAP_ZINDEX_OVER_MAP } from "../../vendor.1c5be0ff.js";
|
|
6
6
|
import "@mui/base";
|
|
7
7
|
import { M as MAP_ZINDEX_OVER_MAP$1 } from "../PopupsProvider/index.3d5ad0ee.js";
|
|
8
8
|
import { R as Resizable } from "../../react-resizable.0ebffd82.js";
|
|
@@ -8,13 +8,13 @@ import { devtools } from "zustand/middleware";
|
|
|
8
8
|
import { immer } from "zustand/middleware/immer";
|
|
9
9
|
import { T as TEST_PROP_ID } from "../../test/constants_no_mock.86c553a9.js";
|
|
10
10
|
import { g as getCommonActionsDictionary, A as Actions } from "../CommonActions/components/Actions/index.23bfc86b.js";
|
|
11
|
-
import { g as getRHFAutocompleteComponentsDictionary, R as RHFAutocomplete } from "../hook-form/RHFAutocomplete/index.
|
|
11
|
+
import { g as getRHFAutocompleteComponentsDictionary, R as RHFAutocomplete } from "../hook-form/RHFAutocomplete/index.4b666e32.js";
|
|
12
12
|
import { g as getNameDataTestId } from "../../test/getNameDataTestId.14875ec7.js";
|
|
13
13
|
import { jsxs, jsx, Fragment } from "react/jsx-runtime";
|
|
14
14
|
import { useFormContext, useWatch } from "react-hook-form";
|
|
15
15
|
import { shallow } from "zustand/shallow";
|
|
16
|
-
import { R as RHFDateTime } from "../hook-form/RHFDateTime/index.
|
|
17
|
-
import { R as RHFTextField } from "../hook-form/RHFTextField/index.
|
|
16
|
+
import { R as RHFDateTime } from "../hook-form/RHFDateTime/index.59623e57.js";
|
|
17
|
+
import { R as RHFTextField } from "../hook-form/RHFTextField/index.ad830000.js";
|
|
18
18
|
import * as Yup from "yup";
|
|
19
19
|
import { useResponsiveDesktop, useFirstRender, useFormatter } from "@m4l/graphics";
|
|
20
20
|
import { S as ScrollBar } from "../ScrollBar/index.7dfc2f29.js";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { useState, useEffect, useCallback, useMemo } from "react";
|
|
2
2
|
import { useNetwork, useModuleDictionary, useEnvironment, usePaginate } from "@m4l/core";
|
|
3
3
|
import { styled, Tooltip, IconButton } from "@mui/material";
|
|
4
|
-
import { c as DataGrid, g as getDataGridComponentsDictionary } from "../DataGrid/index.
|
|
4
|
+
import { c as DataGrid, g as getDataGridComponentsDictionary } from "../DataGrid/index.ca78a0a9.js";
|
|
5
5
|
import { D as DateFormatter } from "../formatters/DateFormatter/index.578a9f53.js";
|
|
6
6
|
import { useHostTheme, useResponsiveDesktop } from "@m4l/graphics";
|
|
7
7
|
import { R as ReactJson } from "../../react-json-view.5636414a.js";
|
|
@@ -11,7 +11,7 @@ import { u as useModal } from "../../hooks/useModal/index.b64e2ea0.js";
|
|
|
11
11
|
import { I as Icon } from "../Icon/index.14670a00.js";
|
|
12
12
|
import { S as Stack } from "../mui_extended/Stack/index.0e53197c.js";
|
|
13
13
|
import { W as WindowBase } from "../modal/WindowBase.ab22627c.js";
|
|
14
|
-
import { D as DynamicFilter, g as getDynamicFilterComponentsDictionary } from "../DynamicFilter/index.
|
|
14
|
+
import { D as DynamicFilter, g as getDynamicFilterComponentsDictionary } from "../DynamicFilter/index.740ab57c.js";
|
|
15
15
|
import { T as TEST_PROP_ID } from "../../test/constants_no_mock.86c553a9.js";
|
|
16
16
|
const Container = styled("div")(() => ({
|
|
17
17
|
height: "100%",
|
|
@@ -8,7 +8,6 @@ import { useState } from "react";
|
|
|
8
8
|
import { jsxs, jsx } from "react/jsx-runtime";
|
|
9
9
|
import { F as FieldLabel } from "../FieldLabel/index.75e89ace.js";
|
|
10
10
|
import { I as Icon } from "../Icon/index.14670a00.js";
|
|
11
|
-
import { T as Typography } from "../mui_extended/Typography/index.379dd374.js";
|
|
12
11
|
const PropertyValueRoot = styled("div")(({
|
|
13
12
|
theme
|
|
14
13
|
}) => ({
|
|
@@ -185,10 +184,11 @@ function PropertyValue(props) {
|
|
|
185
184
|
children: [iconProperty ? /* @__PURE__ */ jsx(Icon, {
|
|
186
185
|
src: iconProperty,
|
|
187
186
|
className: classes.iconProperty
|
|
188
|
-
}) : null, /* @__PURE__ */ jsx(
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
187
|
+
}) : null, /* @__PURE__ */ jsx(FieldLabel, {
|
|
188
|
+
label: property,
|
|
189
|
+
mandatory,
|
|
190
|
+
mandatoryMessage,
|
|
191
|
+
helperMessage
|
|
192
192
|
})]
|
|
193
193
|
}), /* @__PURE__ */ jsx("div", {
|
|
194
194
|
className: classes.value,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { u as useAreasStore } from "../../hooks/useAreas/index.
|
|
1
|
+
import { u as useAreasStore } from "../../hooks/useAreas/index.01011617.js";
|
|
2
2
|
import { useEnvironment, useModuleDictionary } from "@m4l/core";
|
|
3
3
|
import { useState, useRef, useMemo } from "react";
|
|
4
4
|
import * as Yup from "yup";
|
|
@@ -9,12 +9,12 @@ import { g as getComponentUtilityClass } from "../../../../utils/index.24b5284a.
|
|
|
9
9
|
import { A as AREAS_ADMIN_CLASS_NAME } from "../../constants.66529246.js";
|
|
10
10
|
import { I as ICONS } from "../../icons.8266ccc8.js";
|
|
11
11
|
import { g as getAreasDictionary, D as DICCTIONARY } from "../../dictionary.08cfc4c9.js";
|
|
12
|
-
import { useResponsiveDesktop } from "@m4l/graphics";
|
|
12
|
+
import { useResponsiveDesktop, useResponsiveContainerStore } from "@m4l/graphics";
|
|
13
13
|
import { shallow } from "zustand/shallow";
|
|
14
14
|
import { jsx, jsxs, Fragment } from "react/jsx-runtime";
|
|
15
15
|
import { M as MenuActions } from "../../../mui_extended/MenuActions/index.154d57f0.js";
|
|
16
16
|
import { R as RHFormProvider } from "../../../../contexts/RHFormContext/index.7b2a8723.js";
|
|
17
|
-
import { R as RHFTextField } from "../../../hook-form/RHFTextField/index.
|
|
17
|
+
import { R as RHFTextField } from "../../../hook-form/RHFTextField/index.ad830000.js";
|
|
18
18
|
import { A as Actions } from "../../../CommonActions/components/Actions/index.23bfc86b.js";
|
|
19
19
|
import { A as ActionCancel } from "../../../CommonActions/components/ActionCancel/index.f00f026d.js";
|
|
20
20
|
import { A as ActionIntro } from "../../../CommonActions/components/ActionIntro/index.574967a0.js";
|
|
@@ -658,6 +658,8 @@ function AreasAdmin() {
|
|
|
658
658
|
const classesRoot = useAreasStore((state) => state.adminClasses.root);
|
|
659
659
|
const areasLength = useAreasStore((state) => state.areasIds.length);
|
|
660
660
|
const isDesktop = useResponsiveDesktop();
|
|
661
|
+
const isUpSm = useResponsiveContainerStore((state) => state.isUpSm, shallow);
|
|
662
|
+
console.log("host isUpSm", isUpSm);
|
|
661
663
|
const {
|
|
662
664
|
addArea
|
|
663
665
|
} = useAreasStore((state) => state.areasActions, shallow);
|
|
@@ -6,7 +6,7 @@ import { a as AREAS_VIEWER_CLASS_NAME } from "../../constants.66529246.js";
|
|
|
6
6
|
import { shallow } from "zustand/shallow";
|
|
7
7
|
import React__default, { useMemo, useEffect } from "react";
|
|
8
8
|
import clsx from "clsx";
|
|
9
|
-
import { u as useAreasStore } from "../../hooks/useAreas/index.
|
|
9
|
+
import { u as useAreasStore } from "../../hooks/useAreas/index.01011617.js";
|
|
10
10
|
import { useModuleDictionary, useEnvironment, useModuleSkeleton } from "@m4l/core";
|
|
11
11
|
import { a as MemonizedMenuActions } from "../../../mui_extended/MenuActions/index.154d57f0.js";
|
|
12
12
|
import { jsx, jsxs, Fragment } from "react/jsx-runtime";
|
|
@@ -23,7 +23,7 @@ import { D as DynamicMFParmsProvider } from "../../contexts/DynamicMFParmsContex
|
|
|
23
23
|
import { L as LinearProgress } from "../../../mui_extended/LinearProgress/index.c92b9ba9.js";
|
|
24
24
|
import { T as TEST_PROP_ID } from "../../../../test/constants_no_mock.86c553a9.js";
|
|
25
25
|
import { g as getNameDataTestId } from "../../../../test/getNameDataTestId.14875ec7.js";
|
|
26
|
-
import { R as RESPONSIVE_COLAPSED_HEIGHTS, a as RESPONSIVE_ROW_HEIGHTS, M as MARGIN_GRIDLAYOUT, P as PADDING_GRIDLAYOUT } from "../../contexts/AreasContext/index.
|
|
26
|
+
import { R as RESPONSIVE_COLAPSED_HEIGHTS, a as RESPONSIVE_ROW_HEIGHTS, M as MARGIN_GRIDLAYOUT, P as PADDING_GRIDLAYOUT } from "../../contexts/AreasContext/index.7d883aa4.js";
|
|
27
27
|
import { w as withSizeProvider } from "../../../GridLayout/subcomponents/SizeProvider/index.607d8861.js";
|
|
28
28
|
import { R as Responsive } from "../../../GridLayout/subcomponents/Responsive/index.69e13d04.js";
|
|
29
29
|
import { useLocation } from "react-router-dom";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { WritableDraft } from 'immer/dist/internal';
|
|
2
2
|
import type { Area, AreasStateWithActions } from './types';
|
|
3
3
|
import type { WindowState, WindowStateProps } from '../../types';
|
|
4
|
-
export declare const PADDING_GRIDLAYOUT =
|
|
5
|
-
export declare const MARGIN_GRIDLAYOUT =
|
|
4
|
+
export declare const PADDING_GRIDLAYOUT = 8;
|
|
5
|
+
export declare const MARGIN_GRIDLAYOUT = 8;
|
|
6
6
|
export declare const DEBOUCED_SAVE_TIME = 500;
|
|
7
7
|
export declare const THROTTLE_RESIZE_TIME = 300;
|
|
8
8
|
export declare const COOKIE_BREAKPOINT_LAYOUTS = "layoutPros";
|
|
@@ -5,8 +5,8 @@ import { useResponsiveDesktop, useFirstRender } from "@m4l/graphics";
|
|
|
5
5
|
import { useHostTools, useModuleDictionary, useNetwork, useModuleSkeleton, EmitEvents } from "@m4l/core";
|
|
6
6
|
import { devtools } from "zustand/middleware";
|
|
7
7
|
import { immer } from "zustand/middleware/immer";
|
|
8
|
-
import { u as useAreasViewerUtilityClasses } from "../../components/AreasViewer/index.
|
|
9
|
-
import { u as useAreasAdminUtilityClasses } from "../../components/AreasAdmin/index.
|
|
8
|
+
import { u as useAreasViewerUtilityClasses } from "../../components/AreasViewer/index.88cb57e4.js";
|
|
9
|
+
import { u as useAreasAdminUtilityClasses } from "../../components/AreasAdmin/index.c116bd31.js";
|
|
10
10
|
import { c as createDynamicMFStore } from "../DynamicMFParmsContext/index.1607c78e.js";
|
|
11
11
|
import { g as getAreasDictionary, D as DICCTIONARY } from "../../dictionary.08cfc4c9.js";
|
|
12
12
|
import { a as addLayoutItemToBreakPointIfNoExists, b as addLayoutItemToBreakPoints, c as cloneLayouts } from "../../../GridLayout/subcomponents/Responsive/index.69e13d04.js";
|
|
@@ -14,8 +14,8 @@ import { debounce, cloneDeep } from "lodash";
|
|
|
14
14
|
import { A as isEqualLayouts } from "../../../GridLayout/index.e005b65b.js";
|
|
15
15
|
import { useNavigate } from "react-router-dom";
|
|
16
16
|
import { jsx } from "react/jsx-runtime";
|
|
17
|
-
const PADDING_GRIDLAYOUT =
|
|
18
|
-
const MARGIN_GRIDLAYOUT =
|
|
17
|
+
const PADDING_GRIDLAYOUT = 8;
|
|
18
|
+
const MARGIN_GRIDLAYOUT = 8;
|
|
19
19
|
const DEBOUCED_SAVE_TIME = 500;
|
|
20
20
|
const COOKIE_BREAKPOINT_LAYOUTS = "layoutPros";
|
|
21
21
|
const COOKIE_WINDOWS = "windows";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { useContext } from "react";
|
|
2
2
|
import { useStore } from "zustand";
|
|
3
|
-
import { A as AreasContext } from "../../contexts/AreasContext/index.
|
|
3
|
+
import { A as AreasContext } from "../../contexts/AreasContext/index.7d883aa4.js";
|
|
4
4
|
function useAreasStore(selector, equalityFn) {
|
|
5
5
|
const context = useContext(AreasContext);
|
|
6
6
|
if (!context)
|
|
@@ -9,7 +9,7 @@ import { T as Typography } from "../../mui_extended/Typography/index.379dd374.js
|
|
|
9
9
|
import { unstable_composeClasses } from "@mui/base";
|
|
10
10
|
import { H as HelperText } from "../../HelperText/index.7d2afdb3.js";
|
|
11
11
|
import { useResponsiveDesktop } from "@m4l/graphics";
|
|
12
|
-
import { u as useFormFocus } from "../../../vendor.
|
|
12
|
+
import { u as useFormFocus } from "../../../vendor.1c5be0ff.js";
|
|
13
13
|
import { F as FieldLabel } from "../../FieldLabel/index.75e89ace.js";
|
|
14
14
|
import { I as IconButton } from "../../mui_extended/IconButton/index.d8bdadaa.js";
|
|
15
15
|
const AutocompleteRoot = styled("div")(({
|
|
@@ -5,7 +5,7 @@ import { styled, generateUtilityClasses, generateUtilityClass } from "@mui/mater
|
|
|
5
5
|
import { unstable_composeClasses } from "@mui/base";
|
|
6
6
|
import { T as TEST_PROP_ID } from "../../../test/constants_no_mock.86c553a9.js";
|
|
7
7
|
import { jsx } from "react/jsx-runtime";
|
|
8
|
-
import { R as RHFAutocomplete, g as getRHFAutocompleteComponentsDictionary } from "../RHFAutocomplete/index.
|
|
8
|
+
import { R as RHFAutocomplete, g as getRHFAutocompleteComponentsDictionary } from "../RHFAutocomplete/index.4b666e32.js";
|
|
9
9
|
styled("div")(() => ({
|
|
10
10
|
display: "flex",
|
|
11
11
|
width: "100%",
|
|
@@ -6,7 +6,7 @@ import { T as TEST_PROP_ID } from "../../../test/constants_no_mock.86c553a9.js";
|
|
|
6
6
|
import { useResponsiveDesktop } from "@m4l/graphics";
|
|
7
7
|
import { useModuleSkeleton } from "@m4l/core";
|
|
8
8
|
import { jsx, jsxs, Fragment } from "react/jsx-runtime";
|
|
9
|
-
import { u as useFormFocus } from "../../../vendor.
|
|
9
|
+
import { u as useFormFocus } from "../../../vendor.1c5be0ff.js";
|
|
10
10
|
import { C as CheckBox } from "../../mui_extended/CheckBox.0dcf39ae.js";
|
|
11
11
|
const RHFCheckboxRoot = styled("div")(({
|
|
12
12
|
theme
|
|
@@ -10,7 +10,7 @@ import { generateUtilityClasses, generateUtilityClass, styled, Skeleton } from "
|
|
|
10
10
|
import { unstable_composeClasses } from "@mui/base";
|
|
11
11
|
import { useTheme } from "@mui/material/styles";
|
|
12
12
|
import { useResponsiveDesktop } from "@m4l/graphics";
|
|
13
|
-
import { u as useFormFocus } from "../../../vendor.
|
|
13
|
+
import { u as useFormFocus } from "../../../vendor.1c5be0ff.js";
|
|
14
14
|
import { F as FieldLabel } from "../../FieldLabel/index.75e89ace.js";
|
|
15
15
|
import { P as Popover } from "../../mui_extended/Popover/index.d85de73b.js";
|
|
16
16
|
import { I as Icon } from "../../Icon/index.14670a00.js";
|
|
@@ -9,7 +9,7 @@ import { unstable_composeClasses } from "@mui/base";
|
|
|
9
9
|
import clsx from "clsx";
|
|
10
10
|
import { H as HelperText } from "../../HelperText/index.7d2afdb3.js";
|
|
11
11
|
import { T as TEST_PROP_ID } from "../../../test/constants_no_mock.86c553a9.js";
|
|
12
|
-
import { u as useFormFocus } from "../../../vendor.
|
|
12
|
+
import { u as useFormFocus } from "../../../vendor.1c5be0ff.js";
|
|
13
13
|
import { F as FieldLabel } from "../../FieldLabel/index.75e89ace.js";
|
|
14
14
|
import { I as Icon } from "../../Icon/index.14670a00.js";
|
|
15
15
|
const SkeletonRHFDateTime = (props) => {
|
|
@@ -4,7 +4,7 @@ import { H as HelperText } from "../../HelperText/index.7d2afdb3.js";
|
|
|
4
4
|
import { unstable_composeClasses } from "@mui/base";
|
|
5
5
|
import { useModuleSkeleton } from "@m4l/core";
|
|
6
6
|
import { jsx, jsxs, Fragment } from "react/jsx-runtime";
|
|
7
|
-
import { u as useFormFocus } from "../../../vendor.
|
|
7
|
+
import { u as useFormFocus } from "../../../vendor.1c5be0ff.js";
|
|
8
8
|
import { F as FieldLabel } from "../../FieldLabel/index.75e89ace.js";
|
|
9
9
|
import { P as Period } from "../../Period/index.ddf8716c.js";
|
|
10
10
|
const RHFPeriodRoot = styled("div")(({
|
|
@@ -9,7 +9,7 @@ import { unstable_composeClasses } from "@mui/base";
|
|
|
9
9
|
import { g as getComponentUtilityClass } from "../../../utils/index.24b5284a.js";
|
|
10
10
|
import { H as HelperText } from "../../HelperText/index.7d2afdb3.js";
|
|
11
11
|
import { useResponsiveDesktop } from "@m4l/graphics";
|
|
12
|
-
import { u as useFormFocus } from "../../../vendor.
|
|
12
|
+
import { u as useFormFocus } from "../../../vendor.1c5be0ff.js";
|
|
13
13
|
import { F as FieldLabel } from "../../FieldLabel/index.75e89ace.js";
|
|
14
14
|
const SkeletonTextFieldRoot = styled("div")(() => ({
|
|
15
15
|
display: "flex",
|
|
@@ -4,41 +4,11 @@ import { unstable_composeClasses } from "@mui/base";
|
|
|
4
4
|
import { I as IconButton } from "../IconButton/index.d8bdadaa.js";
|
|
5
5
|
import { useEnvironment } from "@m4l/core";
|
|
6
6
|
import { jsxs, jsx, Fragment } from "react/jsx-runtime";
|
|
7
|
-
import {
|
|
7
|
+
import { useResponsiveContainerStore } from "@m4l/graphics";
|
|
8
8
|
import { T as Typography } from "../Typography/index.379dd374.js";
|
|
9
9
|
const PagerRoot = styled("div")(({ theme }) => ({
|
|
10
10
|
...theme.components?.M4LPager?.styleOverrides
|
|
11
11
|
}));
|
|
12
|
-
styled("div")(() => ({
|
|
13
|
-
display: "flex",
|
|
14
|
-
flexDirection: "column",
|
|
15
|
-
height: "100%",
|
|
16
|
-
overflow: "hidden"
|
|
17
|
-
}));
|
|
18
|
-
styled("div")(({ theme }) => ({
|
|
19
|
-
width: "100%",
|
|
20
|
-
display: "flex",
|
|
21
|
-
justifyContent: "center",
|
|
22
|
-
alignItems: "center",
|
|
23
|
-
marginLeft: theme.spacing(3)
|
|
24
|
-
}));
|
|
25
|
-
styled("div")(({ theme }) => ({
|
|
26
|
-
display: "flex",
|
|
27
|
-
marginLeft: theme.spacing(3)
|
|
28
|
-
}));
|
|
29
|
-
styled("div")(({ theme }) => ({
|
|
30
|
-
display: "flex",
|
|
31
|
-
justifyContent: "center",
|
|
32
|
-
alignItems: "center",
|
|
33
|
-
width: theme.spacing(3.75),
|
|
34
|
-
height: theme.spacing(3.75)
|
|
35
|
-
}));
|
|
36
|
-
styled("div")(({ theme }) => ({
|
|
37
|
-
display: "grid",
|
|
38
|
-
gridTemplateColumns: "auto auto",
|
|
39
|
-
gridGap: theme.spacing(1),
|
|
40
|
-
marginRight: theme.spacing(3)
|
|
41
|
-
}));
|
|
42
12
|
const componentName = "M4LPager";
|
|
43
13
|
generateUtilityClasses(componentName, [
|
|
44
14
|
"root",
|
|
@@ -87,17 +57,6 @@ const pagerUtilityClasses = () => {
|
|
|
87
57
|
...composedClasses
|
|
88
58
|
};
|
|
89
59
|
};
|
|
90
|
-
const WrapperPagerActions = styled("div")(({ theme }) => ({
|
|
91
|
-
width: "100%",
|
|
92
|
-
justifyContent: "center",
|
|
93
|
-
display: "flex",
|
|
94
|
-
marginLeft: 0,
|
|
95
|
-
[theme.breakpoints.up("sm")]: {
|
|
96
|
-
display: "flex",
|
|
97
|
-
alignItems: "center",
|
|
98
|
-
marginLeft: theme.spacing(3)
|
|
99
|
-
}
|
|
100
|
-
}));
|
|
101
60
|
function PagerActions(props) {
|
|
102
61
|
const {
|
|
103
62
|
count,
|
|
@@ -122,7 +81,7 @@ function PagerActions(props) {
|
|
|
122
81
|
const handleLastPageButtonClick = (event) => {
|
|
123
82
|
onPageChange(event, Math.max(0, Math.ceil(count / rowsPerPage) - 1));
|
|
124
83
|
};
|
|
125
|
-
return /* @__PURE__ */ jsxs(
|
|
84
|
+
return /* @__PURE__ */ jsxs("div", {
|
|
126
85
|
className: classes.pagerActions,
|
|
127
86
|
children: [/* @__PURE__ */ jsx(IconButton, {
|
|
128
87
|
dictionaryTooltipId: "pager.first",
|
|
@@ -168,7 +127,7 @@ const CustomTablePagination = (props) => {
|
|
|
168
127
|
SelectProps,
|
|
169
128
|
labelDisplayedRows = defaultLabelDisplayedRows
|
|
170
129
|
} = props;
|
|
171
|
-
const
|
|
130
|
+
const isUpSm = useResponsiveContainerStore((state) => state.isUpSm);
|
|
172
131
|
const theme = useTheme();
|
|
173
132
|
function defaultLabelDisplayedRows({
|
|
174
133
|
from,
|
|
@@ -186,7 +145,7 @@ const CustomTablePagination = (props) => {
|
|
|
186
145
|
return /* @__PURE__ */ jsxs(Fragment, {
|
|
187
146
|
children: [rowsPerPageOptions?.length > 1 ? /* @__PURE__ */ jsxs("div", {
|
|
188
147
|
className: classes.labelRowsPerPageContainer,
|
|
189
|
-
children: [
|
|
148
|
+
children: [isUpSm ? /* @__PURE__ */ jsx(Typography, {
|
|
190
149
|
variant: "body",
|
|
191
150
|
children: labelRowsPerPage
|
|
192
151
|
}) : null, /* @__PURE__ */ jsx(Select, {
|
|
@@ -240,7 +199,7 @@ function Pager(props) {
|
|
|
240
199
|
onRowsPerPageChange,
|
|
241
200
|
labelRows = "Rows per page",
|
|
242
201
|
labelOf = "Of",
|
|
243
|
-
|
|
202
|
+
isXs
|
|
244
203
|
} = props;
|
|
245
204
|
const currentPage = useMemo(() => {
|
|
246
205
|
if (rowsPerPage * page > totalRecords) {
|
|
@@ -267,7 +226,7 @@ function Pager(props) {
|
|
|
267
226
|
page: currentPage,
|
|
268
227
|
onPageChange: handleChangePage,
|
|
269
228
|
onRowsPerPageChange: handleChangeRowsPerPage,
|
|
270
|
-
labelDisplayedRows:
|
|
229
|
+
labelDisplayedRows: !isXs ? ({
|
|
271
230
|
from,
|
|
272
231
|
to,
|
|
273
232
|
count
|
package/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { L } from "./assets/Logo/index.228dcb5a.js";
|
|
2
|
-
import { c, e, g } from "./components/DataGrid/index.
|
|
2
|
+
import { c, e, g } from "./components/DataGrid/index.ca78a0a9.js";
|
|
3
3
|
import { N, T } from "./components/DataGrid/subcomponents/editors/TextEditor/index.eac1749c.js";
|
|
4
4
|
import { N as N2 } from "./components/NavLink/index.b75c91e1.js";
|
|
5
5
|
import { S } from "./components/ScrollToTop/index.e06f98f6.js";
|
|
@@ -12,25 +12,25 @@ import { v } from "./components/animate/variants/fade.b561c0fc.js";
|
|
|
12
12
|
import { v as v2 } from "./components/animate/variants/bounce.784aaaaa.js";
|
|
13
13
|
import { v as v3 } from "./components/animate/variants/container.11f82b76.js";
|
|
14
14
|
import { v as v4, a, b } from "./components/animate/variants/transition.bd46b9ce.js";
|
|
15
|
-
import { A as A2 } from "./components/areas/components/AreasAdmin/index.
|
|
16
|
-
import { A as A3 } from "./components/areas/components/AreasViewer/index.
|
|
15
|
+
import { A as A2 } from "./components/areas/components/AreasAdmin/index.c116bd31.js";
|
|
16
|
+
import { A as A3 } from "./components/areas/components/AreasViewer/index.88cb57e4.js";
|
|
17
17
|
import { a as a2, W } from "./components/areas/contexts/WindowToolsMFContext/index.8f3e2a04.js";
|
|
18
18
|
import { a as a3, D, M as M3, c as c2 } from "./components/areas/contexts/DynamicMFParmsContext/index.1607c78e.js";
|
|
19
|
-
import { A as A4, b as b2 } from "./components/areas/contexts/AreasContext/index.
|
|
19
|
+
import { A as A4, b as b2 } from "./components/areas/contexts/AreasContext/index.7d883aa4.js";
|
|
20
20
|
import { u } from "./components/areas/hooks/useDynamicMFParameters/index.e52c5392.js";
|
|
21
21
|
import { u as u2 } from "./components/areas/hooks/useWindowToolsMF/index.b7afaf88.js";
|
|
22
22
|
import { A as A5, D as D2, L as L3, a as a4, g as g2 } from "./components/areas/dictionary.08cfc4c9.js";
|
|
23
|
-
import { R, g as g3 } from "./components/hook-form/RHFAutocomplete/index.
|
|
24
|
-
import { R as R2, g as g4 } from "./components/hook-form/RHFAutocompleteAsync/index.
|
|
25
|
-
import { R as R3 } from "./components/hook-form/RHFDateTime/index.
|
|
23
|
+
import { R, g as g3 } from "./components/hook-form/RHFAutocomplete/index.4b666e32.js";
|
|
24
|
+
import { R as R2, g as g4 } from "./components/hook-form/RHFAutocompleteAsync/index.0536f712.js";
|
|
25
|
+
import { R as R3 } from "./components/hook-form/RHFDateTime/index.59623e57.js";
|
|
26
26
|
import { R as R4 } from "./components/hook-form/RHFMultiCheckbox/index.2680b3b6.js";
|
|
27
27
|
import { R as R5 } from "./components/hook-form/RHFSelect/index.b6ca8bb2.js";
|
|
28
|
-
import { R as R6 } from "./components/hook-form/RHFPeriod/index.
|
|
28
|
+
import { R as R6 } from "./components/hook-form/RHFPeriod/index.d3960c8c.js";
|
|
29
29
|
import { P as P2, g as g5 } from "./components/Period/index.ddf8716c.js";
|
|
30
30
|
import { R as R7 } from "./components/hook-form/RHFRadioGroup/index.1ddb3d93.js";
|
|
31
|
-
import { R as R8, g as g6 } from "./components/hook-form/RHFColorPicker/index.
|
|
32
|
-
import { R as R9 } from "./components/hook-form/RHFCheckbox/index.
|
|
33
|
-
import { b as b3, c as c3, a as a5, R as R10, d } from "./components/hook-form/RHFTextField/index.
|
|
31
|
+
import { R as R8, g as g6 } from "./components/hook-form/RHFColorPicker/index.b2d1edf3.js";
|
|
32
|
+
import { R as R9 } from "./components/hook-form/RHFCheckbox/index.4942ed5e.js";
|
|
33
|
+
import { b as b3, c as c3, a as a5, R as R10, d } from "./components/hook-form/RHFTextField/index.ad830000.js";
|
|
34
34
|
import { R as R11 } from "./components/hook-form/RHFUpload/index.9d4d4460.js";
|
|
35
35
|
import { A as A6 } from "./components/mui_extended/Accordion/index.f9042228.js";
|
|
36
36
|
import { A as A7 } from "./components/mui_extended/Avatar/index.75e6ed57.js";
|
|
@@ -42,7 +42,7 @@ import { L as L4 } from "./components/mui_extended/LinearProgress/index.c92b9ba9
|
|
|
42
42
|
import { L as L5 } from "./components/mui_extended/LinkWithRoute/index.16436ab8.js";
|
|
43
43
|
import { B as B4, I as I2, L as L6 } from "./components/mui_extended/Button/index.d5a031be.js";
|
|
44
44
|
import { M as M4 } from "./components/mui_extended/MenuActions/index.154d57f0.js";
|
|
45
|
-
import { P as P3, g as g7 } from "./components/mui_extended/Pager/index.
|
|
45
|
+
import { P as P3, g as g7 } from "./components/mui_extended/Pager/index.91696066.js";
|
|
46
46
|
import { a as a6, c as c4, T as T2, d as d2, b as b4 } from "./components/mui_extended/Tab/index.2068925d.js";
|
|
47
47
|
import { C as C2 } from "./components/mui_extended/CheckBox.0dcf39ae.js";
|
|
48
48
|
import { I as I3 } from "./components/mui_extended/IconButton/index.d8bdadaa.js";
|
|
@@ -65,9 +65,9 @@ import { C as C7 } from "./components/DataGrid/formatters/ColumnBooleanFormatter
|
|
|
65
65
|
import { C as C8 } from "./components/DataGrid/formatters/ColumnDateFormatter/index.704db1ca.js";
|
|
66
66
|
import { C as C9 } from "./components/DataGrid/formatters/ColumnConcatenatedValueFormatter/index.00f9ed87.js";
|
|
67
67
|
import { C as C10 } from "./components/DataGrid/formatters/ColumnPriceFormatter/index.d717405e.js";
|
|
68
|
-
import { C as C11 } from "./components/DataGrid/formatters/ColumnInteractiveCheckFormatter/index.
|
|
68
|
+
import { C as C11 } from "./components/DataGrid/formatters/ColumnInteractiveCheckFormatter/index.c2a8a7d0.js";
|
|
69
69
|
import { C as C12 } from "./components/DataGrid/formatters/ColumnSetCheckFormatter/index.eb406256.js";
|
|
70
|
-
import { D as D4, g as g13 } from "./components/DynamicFilter/index.
|
|
70
|
+
import { D as D4, g as g13 } from "./components/DynamicFilter/index.740ab57c.js";
|
|
71
71
|
import { F } from "./components/FieldLabel/index.75e89ace.js";
|
|
72
72
|
import { H, e as e2 } from "./components/HelperText/index.7d2afdb3.js";
|
|
73
73
|
import { A as A8, d as d3, g as g14 } from "./components/CommonActions/components/Actions/index.23bfc86b.js";
|
|
@@ -75,7 +75,7 @@ import { A as A9 } from "./components/CommonActions/components/ActionCancel/inde
|
|
|
75
75
|
import { A as A10 } from "./components/CommonActions/components/ActionIntro/index.574967a0.js";
|
|
76
76
|
import { A as A11 } from "./components/CommonActions/components/ActionFormCancel/index.674a0faa.js";
|
|
77
77
|
import { A as A12 } from "./components/CommonActions/components/ActionFormIntro/index.b5a5c4b4.js";
|
|
78
|
-
import { D as D5, d as d4 } from "./components/DragResizeWindow/index.
|
|
78
|
+
import { D as D5, d as d4 } from "./components/DragResizeWindow/index.ff74eed8.js";
|
|
79
79
|
import { G, w, A as A13 } from "./components/GridLayout/index.e005b65b.js";
|
|
80
80
|
import { R as R12, a as a8, b as b6, c as c5 } from "./components/GridLayout/subcomponents/Responsive/index.69e13d04.js";
|
|
81
81
|
import { w as w2 } from "./components/GridLayout/subcomponents/SizeProvider/index.607d8861.js";
|
|
@@ -92,22 +92,22 @@ import { W as W3 } from "./components/modal/WindowBase.ab22627c.js";
|
|
|
92
92
|
import { L as L10, g as g17 } from "./components/LoadingError/index.1ec78dd5.js";
|
|
93
93
|
import { M as M6, g as g18 } from "./components/MFLoader/index.6037f834.js";
|
|
94
94
|
import { N as N3, d as d6, g as g19 } from "./components/NoItemSelected/index.54023226.js";
|
|
95
|
-
import { O, d as d7, g as g20 } from "./components/ObjectLogs/index.
|
|
95
|
+
import { O, d as d7, g as g20 } from "./components/ObjectLogs/index.c0a6ebab.js";
|
|
96
96
|
import { P as P9 } from "./components/PaperForm/index.63dc4b29.js";
|
|
97
97
|
import { P as P10 } from "./components/PDFViewer/index.d185afd0.js";
|
|
98
98
|
import { H as H2 } from "./components/Page/index.2c550c91.js";
|
|
99
|
-
import { P as P11 } from "./components/PropertyValue/index.
|
|
99
|
+
import { P as P11 } from "./components/PropertyValue/index.1dbf6ef8.js";
|
|
100
100
|
import { R as R13 } from "./components/Resizeable/index.eba4fda9.js";
|
|
101
101
|
import { S as S3 } from "./components/ScrollBar/index.7dfc2f29.js";
|
|
102
102
|
import { S as S4 } from "./components/SplitLayout/index.3856385c.js";
|
|
103
103
|
import { T as T7, a as a9 } from "./components/ToastContainer/index.a33ebb52.js";
|
|
104
104
|
import { S as S5 } from "./components/SideBar/index.b1455bd0.js";
|
|
105
|
-
import { A as A14, g as g21 } from "./components/AppBar/index.
|
|
105
|
+
import { A as A14, g as g21 } from "./components/AppBar/index.0cc0bd40.js";
|
|
106
106
|
import { A as A15, g as g22 } from "./components/AccountPopover/index.69cda48b.js";
|
|
107
107
|
import { A as A16 } from "./components/commercial/AppBarCommercial/index.3e0ad6ef.js";
|
|
108
108
|
import { H as H3 } from "./components/HamburgerMenu/index.fb1a3aae.js";
|
|
109
109
|
import { T as T8 } from "./components/commercial/TopBar/index.7b22d97b.js";
|
|
110
|
-
import { S as S6, u as u3 } from "./vendor.
|
|
110
|
+
import { S as S6, u as u3 } from "./vendor.1c5be0ff.js";
|
|
111
111
|
import { R as R14, g as g23 } from "./contexts/RHFormContext/index.7b2a8723.js";
|
|
112
112
|
import { M as M7, a as a10 } from "./contexts/ModalContext/index.f9da6aa8.js";
|
|
113
113
|
import { g as g24, u as u4 } from "./hooks/useFormAddEdit/index.8127dd88.js";
|
|
@@ -124,21 +124,21 @@ import "react-dnd";
|
|
|
124
124
|
import "react-dnd-html5-backend";
|
|
125
125
|
import "./components/DataGrid/constants.e334cd50.js";
|
|
126
126
|
import "@m4l/core";
|
|
127
|
-
import "./components/DataGrid/subcomponents/Actions/index.
|
|
127
|
+
import "./components/DataGrid/subcomponents/Actions/index.6cfca40a.js";
|
|
128
128
|
import "@m4l/graphics";
|
|
129
|
+
import "zustand/shallow";
|
|
129
130
|
import "@mui/base";
|
|
130
131
|
import "./test/constants_no_mock.86c553a9.js";
|
|
131
132
|
import "./test/getNameDataTestId.14875ec7.js";
|
|
132
133
|
import "framer-motion";
|
|
133
134
|
import "simplebar-react";
|
|
134
135
|
import "./react-spinners.342a6578.js";
|
|
135
|
-
import "./components/areas/hooks/useAreas/index.
|
|
136
|
+
import "./components/areas/hooks/useAreas/index.01011617.js";
|
|
136
137
|
import "zustand";
|
|
137
138
|
import "yup";
|
|
138
139
|
import "./utils/index.24b5284a.js";
|
|
139
140
|
import "./components/areas/constants.66529246.js";
|
|
140
141
|
import "./components/areas/icons.8266ccc8.js";
|
|
141
|
-
import "zustand/shallow";
|
|
142
142
|
import "@mui/material/ButtonBase/TouchRipple";
|
|
143
143
|
import "./components/areas/index.4cc6a221.js";
|
|
144
144
|
import "./react-resizable.0ebffd82.js";
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import "./assets/Logo/index.228dcb5a.js";
|
|
2
|
-
import "./components/DataGrid/index.
|
|
2
|
+
import "./components/DataGrid/index.ca78a0a9.js";
|
|
3
3
|
import "./components/DataGrid/subcomponents/editors/TextEditor/index.eac1749c.js";
|
|
4
4
|
import "./components/NavLink/index.b75c91e1.js";
|
|
5
5
|
import "./components/ScrollToTop/index.e06f98f6.js";
|
|
@@ -12,25 +12,25 @@ import "./components/animate/variants/fade.b561c0fc.js";
|
|
|
12
12
|
import "./components/animate/variants/bounce.784aaaaa.js";
|
|
13
13
|
import "./components/animate/variants/container.11f82b76.js";
|
|
14
14
|
import "./components/animate/variants/transition.bd46b9ce.js";
|
|
15
|
-
import "./components/areas/components/AreasAdmin/index.
|
|
16
|
-
import "./components/areas/components/AreasViewer/index.
|
|
15
|
+
import "./components/areas/components/AreasAdmin/index.c116bd31.js";
|
|
16
|
+
import "./components/areas/components/AreasViewer/index.88cb57e4.js";
|
|
17
17
|
import "./components/areas/contexts/WindowToolsMFContext/index.8f3e2a04.js";
|
|
18
18
|
import "./components/areas/contexts/DynamicMFParmsContext/index.1607c78e.js";
|
|
19
|
-
import "./components/areas/contexts/AreasContext/index.
|
|
19
|
+
import "./components/areas/contexts/AreasContext/index.7d883aa4.js";
|
|
20
20
|
import "./components/areas/hooks/useDynamicMFParameters/index.e52c5392.js";
|
|
21
21
|
import "./components/areas/hooks/useWindowToolsMF/index.b7afaf88.js";
|
|
22
22
|
import "./components/areas/dictionary.08cfc4c9.js";
|
|
23
|
-
import "./components/hook-form/RHFAutocomplete/index.
|
|
24
|
-
import "./components/hook-form/RHFAutocompleteAsync/index.
|
|
25
|
-
import "./components/hook-form/RHFDateTime/index.
|
|
23
|
+
import "./components/hook-form/RHFAutocomplete/index.4b666e32.js";
|
|
24
|
+
import "./components/hook-form/RHFAutocompleteAsync/index.0536f712.js";
|
|
25
|
+
import "./components/hook-form/RHFDateTime/index.59623e57.js";
|
|
26
26
|
import "./components/hook-form/RHFMultiCheckbox/index.2680b3b6.js";
|
|
27
27
|
import "./components/hook-form/RHFSelect/index.b6ca8bb2.js";
|
|
28
|
-
import "./components/hook-form/RHFPeriod/index.
|
|
28
|
+
import "./components/hook-form/RHFPeriod/index.d3960c8c.js";
|
|
29
29
|
import "./components/Period/index.ddf8716c.js";
|
|
30
30
|
import "./components/hook-form/RHFRadioGroup/index.1ddb3d93.js";
|
|
31
|
-
import "./components/hook-form/RHFColorPicker/index.
|
|
32
|
-
import "./components/hook-form/RHFCheckbox/index.
|
|
33
|
-
import "./components/hook-form/RHFTextField/index.
|
|
31
|
+
import "./components/hook-form/RHFColorPicker/index.b2d1edf3.js";
|
|
32
|
+
import "./components/hook-form/RHFCheckbox/index.4942ed5e.js";
|
|
33
|
+
import "./components/hook-form/RHFTextField/index.ad830000.js";
|
|
34
34
|
import "./components/hook-form/RHFUpload/index.9d4d4460.js";
|
|
35
35
|
import "./components/mui_extended/Accordion/index.f9042228.js";
|
|
36
36
|
import "./components/mui_extended/Avatar/index.75e6ed57.js";
|
|
@@ -42,7 +42,7 @@ import "./components/mui_extended/LinearProgress/index.c92b9ba9.js";
|
|
|
42
42
|
import "./components/mui_extended/LinkWithRoute/index.16436ab8.js";
|
|
43
43
|
import "./components/mui_extended/Button/index.d5a031be.js";
|
|
44
44
|
import "./components/mui_extended/MenuActions/index.154d57f0.js";
|
|
45
|
-
import "./components/mui_extended/Pager/index.
|
|
45
|
+
import "./components/mui_extended/Pager/index.91696066.js";
|
|
46
46
|
import "./components/mui_extended/Tab/index.2068925d.js";
|
|
47
47
|
import "./components/mui_extended/CheckBox.0dcf39ae.js";
|
|
48
48
|
import "./components/mui_extended/IconButton/index.d8bdadaa.js";
|
|
@@ -65,9 +65,9 @@ import "./components/DataGrid/formatters/ColumnBooleanFormatter/index.cf410875.j
|
|
|
65
65
|
import "./components/DataGrid/formatters/ColumnDateFormatter/index.704db1ca.js";
|
|
66
66
|
import "./components/DataGrid/formatters/ColumnConcatenatedValueFormatter/index.00f9ed87.js";
|
|
67
67
|
import "./components/DataGrid/formatters/ColumnPriceFormatter/index.d717405e.js";
|
|
68
|
-
import "./components/DataGrid/formatters/ColumnInteractiveCheckFormatter/index.
|
|
68
|
+
import "./components/DataGrid/formatters/ColumnInteractiveCheckFormatter/index.c2a8a7d0.js";
|
|
69
69
|
import "./components/DataGrid/formatters/ColumnSetCheckFormatter/index.eb406256.js";
|
|
70
|
-
import "./components/DynamicFilter/index.
|
|
70
|
+
import "./components/DynamicFilter/index.740ab57c.js";
|
|
71
71
|
import "./components/FieldLabel/index.75e89ace.js";
|
|
72
72
|
import "./components/HelperText/index.7d2afdb3.js";
|
|
73
73
|
import "./components/CommonActions/components/Actions/index.23bfc86b.js";
|
|
@@ -75,7 +75,7 @@ import "./components/CommonActions/components/ActionCancel/index.f00f026d.js";
|
|
|
75
75
|
import "./components/CommonActions/components/ActionIntro/index.574967a0.js";
|
|
76
76
|
import "./components/CommonActions/components/ActionFormCancel/index.674a0faa.js";
|
|
77
77
|
import "./components/CommonActions/components/ActionFormIntro/index.b5a5c4b4.js";
|
|
78
|
-
import "./components/DragResizeWindow/index.
|
|
78
|
+
import "./components/DragResizeWindow/index.ff74eed8.js";
|
|
79
79
|
import "./components/GridLayout/index.e005b65b.js";
|
|
80
80
|
import "./components/GridLayout/subcomponents/Responsive/index.69e13d04.js";
|
|
81
81
|
import "./components/GridLayout/subcomponents/SizeProvider/index.607d8861.js";
|
|
@@ -92,17 +92,17 @@ import "./components/modal/WindowBase.ab22627c.js";
|
|
|
92
92
|
import "./components/LoadingError/index.1ec78dd5.js";
|
|
93
93
|
import "./components/MFLoader/index.6037f834.js";
|
|
94
94
|
import "./components/NoItemSelected/index.54023226.js";
|
|
95
|
-
import "./components/ObjectLogs/index.
|
|
95
|
+
import "./components/ObjectLogs/index.c0a6ebab.js";
|
|
96
96
|
import "./components/PaperForm/index.63dc4b29.js";
|
|
97
97
|
import "./components/PDFViewer/index.d185afd0.js";
|
|
98
98
|
import "./components/Page/index.2c550c91.js";
|
|
99
|
-
import "./components/PropertyValue/index.
|
|
99
|
+
import "./components/PropertyValue/index.1dbf6ef8.js";
|
|
100
100
|
import "./components/Resizeable/index.eba4fda9.js";
|
|
101
101
|
import "./components/ScrollBar/index.7dfc2f29.js";
|
|
102
102
|
import "./components/SplitLayout/index.3856385c.js";
|
|
103
103
|
import "./components/ToastContainer/index.a33ebb52.js";
|
|
104
104
|
import "./components/SideBar/index.b1455bd0.js";
|
|
105
|
-
import "./components/AppBar/index.
|
|
105
|
+
import "./components/AppBar/index.0cc0bd40.js";
|
|
106
106
|
import "./components/AccountPopover/index.69cda48b.js";
|
|
107
107
|
import "./components/commercial/AppBarCommercial/index.3e0ad6ef.js";
|
|
108
108
|
import "./components/HamburgerMenu/index.fb1a3aae.js";
|