@m4l/components 0.1.54 → 0.1.56
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/CommonActions/components/ActionFormCancel/{index.91b4e98a.js → index.a99b84aa.js} +10 -10
- package/components/CommonActions/components/ActionIntro/{index.9004fca7.js → index.bb313873.js} +1 -1
- package/components/CommonActions/components/Actions/{index.5e17c889.js → index.7c749647.js} +9 -9
- package/components/DataGrid/{index.2c875ddb.js → index.f2bd89c9.js} +31 -32
- package/components/DynamicFilter/{index.931a2f9c.js → index.18aa9ca3.js} +29 -31
- package/components/ErrorLabel/{index.28e80b6b.js → index.908fb555.js} +3 -3
- package/components/LanguagePopover/{index.9ec5f3cf.js → index.14d4d878.js} +3 -3
- package/components/ModalDialog/{index.c0cb2945.js → index.cecce13a.js} +2 -2
- package/components/ObjectLogs/{index.214967c3.js → index.8c50aac4.js} +12 -12
- package/components/Period/{index.23b6b403.js → index.dbe9d7fc.js} +10 -10
- package/components/SplitLayout/{index.fde8c830.js → index.5a8355d8.js} +1 -1
- package/components/areas/components/AreasAdmin/{index.a9d8e790.js → index.a77794f0.js} +4 -4
- package/components/areas/components/AreasContainer/{index.1d804927.js → index.ebea50de.js} +2 -2
- package/components/areas/components/GridLayout/{index.e3566f2a.js → index.ac6c97ec.js} +4 -4
- package/components/areas/components/Window/{index.e3b76f29.js → index.c7dbcfdb.js} +26 -26
- package/components/areas/components/WindowPopUp/{index.0795e28d.js → index.d578142d.js} +27 -27
- package/components/areas/components/{index.8eaa42fa.js → index.c8687ec7.js} +7 -7
- package/components/areas/contexts/AreaContext/{index.7a52aefa.js → index.ea45d809.js} +1 -1
- package/components/areas/contexts/AreasContext/{index.1f2d6776.js → index.b8494c26.js} +1 -1
- package/components/areas/contexts/{index.3be51103.js → index.41841fbb.js} +1 -1
- package/components/areas/hooks/{index.8923d389.js → index.39148e1d.js} +1 -1
- package/components/areas/hooks/useArea/{index.8e9fbcde.js → index.88c16040.js} +2 -2
- package/components/areas/{index.a1517f9d.js → index.400beeb3.js} +5 -5
- package/components/hook-form/RHFAutocomplete/{index.19b255b5.js → index.1e466cd7.js} +1 -1
- package/components/hook-form/RHFAutocompleteAsync/{index.9bedb9df.js → index.0a2173d3.js} +1 -1
- package/components/hook-form/RHFCheckbox/{index.2e8950b3.js → index.da7bc824.js} +1 -1
- package/components/hook-form/RHFPeriod/{index.4986e492.js → index.aa3db361.js} +2 -2
- package/components/hook-form/RHFTextField/{index.2887da3c.js → index.09c6aab5.js} +1 -1
- package/components/modal/{WindowBase.a29640e3.js → WindowBase.398b3152.js} +1 -1
- package/components/modal/{WindowConfirm.e872e238.js → WindowConfirm.5e8c22dc.js} +10 -10
- package/components/modal/{index.661b068a.js → index.fa29078b.js} +10 -10
- package/components/mui_extended/Accordion/{index.549938bd.js → index.002bad72.js} +1 -1
- package/components/mui_extended/MenuActions/{index.01e3ccfe.js → index.1affe51a.js} +1 -1
- package/components/mui_extended/Popover/{index.708c0af6.js → index.8ed52492.js} +1 -1
- package/components/mui_extended/{index.44306d3a.js → index.5095705d.js} +3 -3
- package/contexts/ModalContext/{index.a59e3e81.js → index.bd535720.js} +1 -1
- package/hooks/useModal/{index.6741a628.js → index.6b980dd0.js} +1 -1
- package/index.js +36 -37
- package/package.json +1 -1
- package/{vendor.b4e23d82.js → vendor.1735f56f.js} +29 -29
package/components/CommonActions/components/ActionFormCancel/{index.91b4e98a.js → index.a99b84aa.js}
RENAMED
|
@@ -3,28 +3,28 @@ import { useModuleDictionary, useModuleSkeleton } from "@m4l/core";
|
|
|
3
3
|
import { Skeleton } from "@mui/material";
|
|
4
4
|
import { B as Button } from "../../../mui_extended/Button/index.8406ed5b.js";
|
|
5
5
|
import { useCallback } from "react";
|
|
6
|
-
import { u as useModal } from "../../../../hooks/useModal/index.
|
|
6
|
+
import { u as useModal } from "../../../../hooks/useModal/index.6b980dd0.js";
|
|
7
7
|
import "../../../../react-draggable.6471b07e.js";
|
|
8
|
-
import "../../../ModalDialog/index.
|
|
8
|
+
import "../../../ModalDialog/index.cecce13a.js";
|
|
9
9
|
import "../../../Resizeable/index.04fa8de5.js";
|
|
10
10
|
import { jsx } from "react/jsx-runtime";
|
|
11
11
|
import "@m4l/graphics";
|
|
12
|
-
import { W as WindowConfirm } from "../../../modal/WindowConfirm.
|
|
13
|
-
import "../../../modal/WindowBase.
|
|
12
|
+
import { W as WindowConfirm } from "../../../modal/WindowConfirm.5e8c22dc.js";
|
|
13
|
+
import "../../../modal/WindowBase.398b3152.js";
|
|
14
14
|
import "../../../Icon/index.b29ff2d9.js";
|
|
15
15
|
import "@mui/material/styles";
|
|
16
|
-
import "../../../areas/components/index.
|
|
17
|
-
import "../../../areas/components/AreasAdmin/index.
|
|
16
|
+
import "../../../areas/components/index.c8687ec7.js";
|
|
17
|
+
import "../../../areas/components/AreasAdmin/index.a77794f0.js";
|
|
18
18
|
import "../../../mui_extended/IconButton/index.460c0476.js";
|
|
19
19
|
import "zustand";
|
|
20
|
-
import "../../../areas/contexts/AreasContext/index.
|
|
20
|
+
import "../../../areas/contexts/AreasContext/index.b8494c26.js";
|
|
21
21
|
import "zustand/shallow";
|
|
22
|
-
import "../../../areas/components/AreasContainer/index.
|
|
22
|
+
import "../../../areas/components/AreasContainer/index.ebea50de.js";
|
|
23
23
|
import "react-grid-layout/css/styles.css";
|
|
24
24
|
import "../../../../react-resizable.b620abed.js";
|
|
25
|
-
import "../../../areas/contexts/index.
|
|
25
|
+
import "../../../areas/contexts/index.41841fbb.js";
|
|
26
26
|
import "../../../areas/contexts/DynamicMFParmsContext/index.c19cb8cc.js";
|
|
27
|
-
import { u as useWindowToolsMF } from "../../../areas/hooks/index.
|
|
27
|
+
import { u as useWindowToolsMF } from "../../../areas/hooks/index.39148e1d.js";
|
|
28
28
|
function ActionFormCancel() {
|
|
29
29
|
const {
|
|
30
30
|
getLabel
|
package/components/CommonActions/components/ActionIntro/{index.9004fca7.js → index.bb313873.js}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { useModuleDictionary } from "@m4l/core";
|
|
2
2
|
import { B as Button } from "../../../mui_extended/Button/index.8406ed5b.js";
|
|
3
|
-
import { T as TEST_PROP_ID } from "../../../../vendor.
|
|
3
|
+
import { T as TEST_PROP_ID } from "../../../../vendor.1735f56f.js";
|
|
4
4
|
import { jsx } from "react/jsx-runtime";
|
|
5
5
|
const ACTIONINTRO_TEST_ID = "m4lactions";
|
|
6
6
|
const ActionIntro = (props) => {
|
|
@@ -6,25 +6,25 @@ import "@mui/material/Button";
|
|
|
6
6
|
import "../../../mui_extended/Button/index.8406ed5b.js";
|
|
7
7
|
import "react-hook-form";
|
|
8
8
|
import "react";
|
|
9
|
-
import "../../../../contexts/ModalContext/index.
|
|
9
|
+
import "../../../../contexts/ModalContext/index.bd535720.js";
|
|
10
10
|
import "../../../../react-draggable.6471b07e.js";
|
|
11
|
-
import "../../../ModalDialog/index.
|
|
11
|
+
import "../../../ModalDialog/index.cecce13a.js";
|
|
12
12
|
import "../../../Resizeable/index.04fa8de5.js";
|
|
13
13
|
import "@m4l/graphics";
|
|
14
14
|
import "@mui/lab";
|
|
15
|
-
import "../../../modal/WindowConfirm.
|
|
15
|
+
import "../../../modal/WindowConfirm.5e8c22dc.js";
|
|
16
16
|
import "../../../Icon/index.b29ff2d9.js";
|
|
17
|
-
import "../../../modal/WindowBase.
|
|
18
|
-
import "../../../areas/components/index.
|
|
19
|
-
import "../../../areas/components/AreasAdmin/index.
|
|
17
|
+
import "../../../modal/WindowBase.398b3152.js";
|
|
18
|
+
import "../../../areas/components/index.c8687ec7.js";
|
|
19
|
+
import "../../../areas/components/AreasAdmin/index.a77794f0.js";
|
|
20
20
|
import "../../../mui_extended/IconButton/index.460c0476.js";
|
|
21
21
|
import "zustand";
|
|
22
|
-
import "../../../areas/contexts/AreasContext/index.
|
|
22
|
+
import "../../../areas/contexts/AreasContext/index.b8494c26.js";
|
|
23
23
|
import "zustand/shallow";
|
|
24
|
-
import "../../../areas/components/AreasContainer/index.
|
|
24
|
+
import "../../../areas/components/AreasContainer/index.ebea50de.js";
|
|
25
25
|
import "react-grid-layout/css/styles.css";
|
|
26
26
|
import "../../../../react-resizable.b620abed.js";
|
|
27
|
-
import "../../../areas/contexts/index.
|
|
27
|
+
import "../../../areas/contexts/index.41841fbb.js";
|
|
28
28
|
import "../../../areas/contexts/DynamicMFParmsContext/index.c19cb8cc.js";
|
|
29
29
|
const WrapperStandarActions = styled("div")(({
|
|
30
30
|
theme
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { styled } from "@m4l/styles";
|
|
1
|
+
import { styled, alpha } from "@mui/material/styles";
|
|
3
2
|
import { forwardRef, createContext, useState, useMemo, useEffect, useCallback, useContext, useRef, useLayoutEffect, useImperativeHandle } from "react";
|
|
4
3
|
import { S as SELECT_COLUMN_KEY, u as useRowSelection, a as SelectCellFormatter, H as HeaderRenderer, D as DataGrid$1 } from "../../react-data-grid.d46d625e.js";
|
|
5
4
|
import { useDrag, useDrop, DndProvider } from "react-dnd";
|
|
@@ -7,34 +6,34 @@ import { HTML5Backend } from "react-dnd-html5-backend";
|
|
|
7
6
|
import { SvgIcon, Checkbox, InputBase, Skeleton } from "@mui/material";
|
|
8
7
|
import { jsx, jsxs, Fragment } from "react/jsx-runtime";
|
|
9
8
|
import { voidFunction, useModuleDictionary, useModuleSkeleton, getPropertyByString, useEnvironment } from "@m4l/core";
|
|
10
|
-
import { M as MenuActions } from "../mui_extended/MenuActions/index.
|
|
9
|
+
import { M as MenuActions } from "../mui_extended/MenuActions/index.1affe51a.js";
|
|
11
10
|
import { P as Pager, g as getPagerComponentsDictionary } from "../mui_extended/Pager/index.458f9f0d.js";
|
|
12
11
|
import { I as IconButton } from "../mui_extended/IconButton/index.460c0476.js";
|
|
13
|
-
import { u as useModal } from "../../hooks/useModal/index.
|
|
12
|
+
import { u as useModal } from "../../hooks/useModal/index.6b980dd0.js";
|
|
14
13
|
import { A as ActionCancel } from "../CommonActions/components/ActionCancel/index.a81752ef.js";
|
|
15
|
-
import { A as ActionIntro } from "../CommonActions/components/ActionIntro/index.
|
|
14
|
+
import { A as ActionIntro } from "../CommonActions/components/ActionIntro/index.bb313873.js";
|
|
16
15
|
import "../../react-draggable.6471b07e.js";
|
|
17
|
-
import { g as getModalDialogComponentsDictionary } from "../ModalDialog/index.
|
|
16
|
+
import { g as getModalDialogComponentsDictionary } from "../ModalDialog/index.cecce13a.js";
|
|
18
17
|
import "../Resizeable/index.04fa8de5.js";
|
|
19
18
|
import { useResponsiveDesktop } from "@m4l/graphics";
|
|
20
|
-
import { A as Actions$1 } from "../CommonActions/components/Actions/index.
|
|
19
|
+
import { A as Actions$1 } from "../CommonActions/components/Actions/index.7c749647.js";
|
|
21
20
|
import "react-hook-form";
|
|
22
21
|
import "@mui/material/Button";
|
|
23
22
|
import "../mui_extended/Button/index.8406ed5b.js";
|
|
24
|
-
import "../areas/components/index.
|
|
25
|
-
import "../areas/components/AreasAdmin/index.
|
|
23
|
+
import "../areas/components/index.c8687ec7.js";
|
|
24
|
+
import "../areas/components/AreasAdmin/index.a77794f0.js";
|
|
26
25
|
import "zustand";
|
|
27
|
-
import "../areas/contexts/AreasContext/index.
|
|
26
|
+
import "../areas/contexts/AreasContext/index.b8494c26.js";
|
|
28
27
|
import "zustand/shallow";
|
|
29
|
-
import "../areas/components/AreasContainer/index.
|
|
28
|
+
import "../areas/components/AreasContainer/index.ebea50de.js";
|
|
30
29
|
import "react-grid-layout/css/styles.css";
|
|
31
30
|
import "../../react-resizable.b620abed.js";
|
|
32
|
-
import "../areas/contexts/index.
|
|
31
|
+
import "../areas/contexts/index.41841fbb.js";
|
|
33
32
|
import "../areas/contexts/DynamicMFParmsContext/index.c19cb8cc.js";
|
|
34
33
|
import "@mui/lab";
|
|
35
|
-
import "../modal/WindowConfirm.
|
|
34
|
+
import "../modal/WindowConfirm.5e8c22dc.js";
|
|
36
35
|
import "../Icon/index.b29ff2d9.js";
|
|
37
|
-
import { W as WindowBase } from "../modal/WindowBase.
|
|
36
|
+
import { W as WindowBase } from "../modal/WindowBase.398b3152.js";
|
|
38
37
|
import { B as BooleanFormatter } from "../formatters/BooleanFormatter/index.a50933fb.js";
|
|
39
38
|
import { D as DateFormatter } from "../formatters/DateFormatter/index.578a9f53.js";
|
|
40
39
|
import { C as ConcatenatedFormatter } from "../formatters/index.7d2ad9ca.js";
|
|
@@ -172,7 +171,7 @@ const OriginalDataGridWrapperStyled = styled("div")(({
|
|
|
172
171
|
borderBottom: `2px solid ${theme.palette.primary.main}`
|
|
173
172
|
}
|
|
174
173
|
}));
|
|
175
|
-
const WrapperTable = styled
|
|
174
|
+
const WrapperTable = styled("div", {
|
|
176
175
|
shouldForwardProp: (prop) => prop !== "withActions"
|
|
177
176
|
})(({
|
|
178
177
|
withActions,
|
|
@@ -721,7 +720,7 @@ const ActionsColumn = {
|
|
|
721
720
|
type: "custom",
|
|
722
721
|
formatter: ActionsFormatter
|
|
723
722
|
};
|
|
724
|
-
const WrapperSkeleton = styled
|
|
723
|
+
const WrapperSkeleton = styled("div")(() => ({
|
|
725
724
|
display: "flex",
|
|
726
725
|
width: "100%",
|
|
727
726
|
height: "100%",
|
|
@@ -995,7 +994,7 @@ function Table(props) {
|
|
|
995
994
|
})
|
|
996
995
|
});
|
|
997
996
|
}
|
|
998
|
-
const SKTWrapperFilter = styled
|
|
997
|
+
const SKTWrapperFilter = styled("div")(({
|
|
999
998
|
theme
|
|
1000
999
|
}) => ({
|
|
1001
1000
|
display: "flex",
|
|
@@ -1033,7 +1032,7 @@ function Filter() {
|
|
|
1033
1032
|
src: `${host_static_assets}/${environment_assets}/frontend/components/data_grid/assets/icons/filter.svg`
|
|
1034
1033
|
});
|
|
1035
1034
|
}
|
|
1036
|
-
const WrapperColumnsConfig = styled
|
|
1035
|
+
const WrapperColumnsConfig = styled("div")(({ theme }) => ({
|
|
1037
1036
|
color: theme.palette.text.primary,
|
|
1038
1037
|
position: "relative",
|
|
1039
1038
|
display: "flex",
|
|
@@ -1041,31 +1040,31 @@ const WrapperColumnsConfig = styled$1("div")(({ theme }) => ({
|
|
|
1041
1040
|
height: "100%",
|
|
1042
1041
|
width: "100%"
|
|
1043
1042
|
}));
|
|
1044
|
-
styled
|
|
1043
|
+
styled("div")(({ theme }) => ({
|
|
1045
1044
|
color: theme.palette.text.primary,
|
|
1046
1045
|
fontSize: theme.typography.h4.fontSize
|
|
1047
1046
|
}));
|
|
1048
|
-
const DivSelColumns = styled
|
|
1047
|
+
const DivSelColumns = styled("div")(({ theme }) => ({
|
|
1049
1048
|
...theme.typography.subtitle2,
|
|
1050
1049
|
color: theme.palette.text.primary,
|
|
1051
1050
|
padding: `${theme.spacing(3)} ${theme.spacing(1)}`
|
|
1052
1051
|
}));
|
|
1053
|
-
const WrapperDataGrid = styled
|
|
1052
|
+
const WrapperDataGrid = styled("div")(() => ({
|
|
1054
1053
|
position: "relative",
|
|
1055
1054
|
display: "flex",
|
|
1056
1055
|
flexDirection: "column",
|
|
1057
1056
|
flexGrow: 1
|
|
1058
1057
|
}));
|
|
1059
|
-
styled
|
|
1058
|
+
styled("div")(() => ({
|
|
1060
1059
|
display: "flex",
|
|
1061
1060
|
flexDirection: "row"
|
|
1062
1061
|
}));
|
|
1063
|
-
const ColumnActions = styled
|
|
1062
|
+
const ColumnActions = styled("div")(({ theme }) => ({
|
|
1064
1063
|
paddingTop: theme.spacing(3),
|
|
1065
1064
|
display: "flex",
|
|
1066
1065
|
flexDirection: "row"
|
|
1067
1066
|
}));
|
|
1068
|
-
styled
|
|
1067
|
+
styled("div")(({ theme }) => ({
|
|
1069
1068
|
paddingTop: theme.spacing(3),
|
|
1070
1069
|
display: "flex",
|
|
1071
1070
|
flexDirection: "row",
|
|
@@ -1341,7 +1340,7 @@ const ColumnsConfig = forwardRef((props, ref) => {
|
|
|
1341
1340
|
});
|
|
1342
1341
|
});
|
|
1343
1342
|
ColumnsConfig.displayName = "ColumnsConfig";
|
|
1344
|
-
const SKTWrapperColumnsSettings = styled
|
|
1343
|
+
const SKTWrapperColumnsSettings = styled("div")(({ theme }) => ({
|
|
1345
1344
|
display: "flex",
|
|
1346
1345
|
justifyContent: "center",
|
|
1347
1346
|
alignItems: "center",
|
|
@@ -1411,12 +1410,12 @@ function Settings() {
|
|
|
1411
1410
|
src: `${host_static_assets}/${environment_assets}/frontend/components/data_grid/assets/icons/configuration.svg`
|
|
1412
1411
|
});
|
|
1413
1412
|
}
|
|
1414
|
-
const Container = styled
|
|
1413
|
+
const Container = styled("div")(() => ({
|
|
1415
1414
|
display: "flex",
|
|
1416
1415
|
alignItems: "center"
|
|
1417
1416
|
}));
|
|
1418
|
-
const RowsLabel = styled
|
|
1419
|
-
const InsetLabel = styled
|
|
1417
|
+
const RowsLabel = styled("span")(() => ({}));
|
|
1418
|
+
const InsetLabel = styled("span")(({ theme }) => ({
|
|
1420
1419
|
marginLeft: theme.spacing(2),
|
|
1421
1420
|
paddingTop: "2px",
|
|
1422
1421
|
paddingBottom: "2px",
|
|
@@ -1459,13 +1458,13 @@ function RowsCount() {
|
|
|
1459
1458
|
})]
|
|
1460
1459
|
});
|
|
1461
1460
|
}
|
|
1462
|
-
const WrapperDensity = styled
|
|
1461
|
+
const WrapperDensity = styled("div")(({ theme }) => ({
|
|
1463
1462
|
marginLeft: 0,
|
|
1464
1463
|
[theme.breakpoints.up("sm")]: {
|
|
1465
1464
|
marginLeft: theme.spacing(3)
|
|
1466
1465
|
}
|
|
1467
1466
|
}));
|
|
1468
|
-
const SKTWrapperDensity = styled
|
|
1467
|
+
const SKTWrapperDensity = styled("div")(({ theme }) => ({
|
|
1469
1468
|
display: "flex",
|
|
1470
1469
|
justifyContent: "center",
|
|
1471
1470
|
alignItems: "center",
|
|
@@ -1546,7 +1545,7 @@ function Density() {
|
|
|
1546
1545
|
})
|
|
1547
1546
|
});
|
|
1548
1547
|
}
|
|
1549
|
-
const WrapperActions = styled
|
|
1548
|
+
const WrapperActions = styled("div")(({ theme }) => ({
|
|
1550
1549
|
...theme.typography.caption,
|
|
1551
1550
|
position: "absolute",
|
|
1552
1551
|
left: "0px",
|
|
@@ -1694,7 +1693,7 @@ function columnConcatenatedValuesFormatter(props) {
|
|
|
1694
1693
|
function getDataGridComponentsDictionary() {
|
|
1695
1694
|
return ["data_grid"].concat(getPagerComponentsDictionary()).concat(getModalDialogComponentsDictionary());
|
|
1696
1695
|
}
|
|
1697
|
-
const Input = styled
|
|
1696
|
+
const Input = styled("input")(() => ({
|
|
1698
1697
|
appearance: "none",
|
|
1699
1698
|
boxSizing: "border-box",
|
|
1700
1699
|
inlineSize: "100%",
|
|
@@ -5,36 +5,36 @@ import { useContext, useMemo, useEffect, createContext, useRef, createElement, u
|
|
|
5
5
|
import { useModuleDictionary, useEnvironment, useModuleSkeleton, useFlagsPresent, CommonFlags } from "@m4l/core";
|
|
6
6
|
import { useResponsiveDesktop, useFirstRender, useFormatter } from "@m4l/graphics";
|
|
7
7
|
import clsx from "clsx";
|
|
8
|
-
import { T as TEST_PROP_ID } from "../../vendor.
|
|
8
|
+
import { T as TEST_PROP_ID } from "../../vendor.1735f56f.js";
|
|
9
9
|
import { jsxs, jsx, Fragment } from "react/jsx-runtime";
|
|
10
|
-
import { generateUtilityClasses, alpha, styled as styled$
|
|
11
|
-
import { L as LabelMemuItem } from "../mui_extended/MenuActions/index.
|
|
12
|
-
import { P as Popover } from "../mui_extended/Popover/index.
|
|
10
|
+
import { generateUtilityClasses, alpha, styled as styled$1, Skeleton, MenuItem } from "@mui/material";
|
|
11
|
+
import { L as LabelMemuItem } from "../mui_extended/MenuActions/index.1affe51a.js";
|
|
12
|
+
import { P as Popover } from "../mui_extended/Popover/index.8ed52492.js";
|
|
13
13
|
import { I as Icon } from "../Icon/index.b29ff2d9.js";
|
|
14
14
|
import { R as RHFormProvider } from "../../contexts/RHFormContext/index.3dc6e2f5.js";
|
|
15
|
-
import { g as getCommonActionsDictionary, A as Actions } from "../CommonActions/components/Actions/index.
|
|
15
|
+
import { g as getCommonActionsDictionary, A as Actions } from "../CommonActions/components/Actions/index.7c749647.js";
|
|
16
16
|
import { A as ActionCancel } from "../CommonActions/components/ActionCancel/index.a81752ef.js";
|
|
17
|
-
import { A as ActionIntro } from "../CommonActions/components/ActionIntro/index.
|
|
17
|
+
import { A as ActionIntro } from "../CommonActions/components/ActionIntro/index.bb313873.js";
|
|
18
18
|
import { useFormContext, useWatch } from "react-hook-form";
|
|
19
19
|
import "@mui/material/Button";
|
|
20
20
|
import "../mui_extended/Button/index.8406ed5b.js";
|
|
21
|
-
import "../../contexts/ModalContext/index.
|
|
21
|
+
import "../../contexts/ModalContext/index.bd535720.js";
|
|
22
22
|
import "../../react-draggable.6471b07e.js";
|
|
23
|
-
import "../ModalDialog/index.
|
|
23
|
+
import "../ModalDialog/index.cecce13a.js";
|
|
24
24
|
import "../Resizeable/index.04fa8de5.js";
|
|
25
|
-
import "../modal/WindowConfirm.
|
|
26
|
-
import "../modal/WindowBase.
|
|
27
|
-
import "../areas/components/index.
|
|
28
|
-
import "../areas/components/AreasAdmin/index.
|
|
25
|
+
import "../modal/WindowConfirm.5e8c22dc.js";
|
|
26
|
+
import "../modal/WindowBase.398b3152.js";
|
|
27
|
+
import "../areas/components/index.c8687ec7.js";
|
|
28
|
+
import "../areas/components/AreasAdmin/index.a77794f0.js";
|
|
29
29
|
import { useStore, createStore } from "zustand";
|
|
30
|
-
import "../areas/contexts/AreasContext/index.
|
|
31
|
-
import "../areas/components/AreasContainer/index.
|
|
30
|
+
import "../areas/contexts/AreasContext/index.b8494c26.js";
|
|
31
|
+
import "../areas/components/AreasContainer/index.ebea50de.js";
|
|
32
32
|
import "react-grid-layout/css/styles.css";
|
|
33
33
|
import "../../react-resizable.b620abed.js";
|
|
34
|
-
import "../areas/contexts/index.
|
|
34
|
+
import "../areas/contexts/index.41841fbb.js";
|
|
35
35
|
import "../areas/contexts/DynamicMFParmsContext/index.c19cb8cc.js";
|
|
36
36
|
import "@mui/lab";
|
|
37
|
-
import "../mui_extended/Accordion/index.
|
|
37
|
+
import "../mui_extended/Accordion/index.002bad72.js";
|
|
38
38
|
import "../mui_extended/Avatar/index.fe06afd7.js";
|
|
39
39
|
import "react-router-dom";
|
|
40
40
|
import "../Image/index.aa24e982.js";
|
|
@@ -45,21 +45,20 @@ import { unstable_composeClasses } from "@mui/base";
|
|
|
45
45
|
import { g as getComponentUtilityClass, i as isValidDate } from "../../utils/index.b6ae791a.js";
|
|
46
46
|
import { devtools } from "zustand/middleware";
|
|
47
47
|
import { immer } from "zustand/middleware/immer";
|
|
48
|
-
import { R as RHFAutocomplete } from "../hook-form/RHFAutocomplete/index.
|
|
48
|
+
import { R as RHFAutocomplete } from "../hook-form/RHFAutocomplete/index.1e466cd7.js";
|
|
49
49
|
import "lodash/debounce";
|
|
50
|
-
import "../hook-form/RHFCheckbox/index.
|
|
50
|
+
import "../hook-form/RHFCheckbox/index.da7bc824.js";
|
|
51
51
|
import { styled, alpha as alpha$1 } from "@mui/material/styles";
|
|
52
|
-
import "../ErrorLabel/index.
|
|
52
|
+
import "../ErrorLabel/index.908fb555.js";
|
|
53
53
|
import "@mui/x-date-pickers";
|
|
54
54
|
import { R as RHFDateTime } from "../hook-form/RHFDateTime/index.6c129ce4.js";
|
|
55
|
-
import { R as RHFTextField } from "../hook-form/RHFTextField/index.
|
|
56
|
-
import "../hook-form/RHFPeriod/index.
|
|
57
|
-
import "../Period/index.
|
|
55
|
+
import { R as RHFTextField } from "../hook-form/RHFTextField/index.09c6aab5.js";
|
|
56
|
+
import "../hook-form/RHFPeriod/index.aa3db361.js";
|
|
57
|
+
import "../Period/index.dbe9d7fc.js";
|
|
58
58
|
import "lodash/isString";
|
|
59
59
|
import "react-dropzone";
|
|
60
60
|
import "../hook-form/RHFUpload/index.7fdff30f.js";
|
|
61
61
|
import * as Yup from "yup";
|
|
62
|
-
import { styled as styled$1 } from "@m4l/styles";
|
|
63
62
|
import "@hookform/resolvers/yup";
|
|
64
63
|
const COMPONENT_CLASS_NAME = "M4LDynamicFilter";
|
|
65
64
|
const ASSETS_URL = "/frontend/components/dynamic_filter/assets/icons/";
|
|
@@ -1168,7 +1167,7 @@ const ContainerApplyedFilters = styled("div")(({
|
|
|
1168
1167
|
height: "auto",
|
|
1169
1168
|
gap: theme.spacing(1.5)
|
|
1170
1169
|
}));
|
|
1171
|
-
const WrapperApplyedFilter = styled
|
|
1170
|
+
const WrapperApplyedFilter = styled("div")(({
|
|
1172
1171
|
theme
|
|
1173
1172
|
}) => ({
|
|
1174
1173
|
width: "auto",
|
|
@@ -1184,7 +1183,7 @@ const WrapperApplyedFilter = styled$1("div")(({
|
|
|
1184
1183
|
overflow: "visible",
|
|
1185
1184
|
borderRadius: theme.spacing(1)
|
|
1186
1185
|
}));
|
|
1187
|
-
const AplyedFilterStyled = styled
|
|
1186
|
+
const AplyedFilterStyled = styled("div")(({
|
|
1188
1187
|
theme
|
|
1189
1188
|
}) => ({
|
|
1190
1189
|
...theme.typography.body2,
|
|
@@ -1197,19 +1196,19 @@ const AplyedFilterStyled = styled$1("div")(({
|
|
|
1197
1196
|
marginLeft: theme.spacing(1),
|
|
1198
1197
|
whiteSpace: "nowrap"
|
|
1199
1198
|
}));
|
|
1200
|
-
const ContainerField = styled
|
|
1199
|
+
const ContainerField = styled("span")(({
|
|
1201
1200
|
theme
|
|
1202
1201
|
}) => ({
|
|
1203
1202
|
...theme.typography.subtitle2
|
|
1204
1203
|
}));
|
|
1205
|
-
const ContainerOperator = styled
|
|
1204
|
+
const ContainerOperator = styled("span")(({
|
|
1206
1205
|
theme
|
|
1207
1206
|
}) => ({
|
|
1208
1207
|
...theme.typography.body2,
|
|
1209
1208
|
marginLeft: theme.spacing(1.5),
|
|
1210
1209
|
fontStyle: "italic"
|
|
1211
1210
|
}));
|
|
1212
|
-
const ContainerOperands = styled
|
|
1211
|
+
const ContainerOperands = styled("span")(({
|
|
1213
1212
|
theme
|
|
1214
1213
|
}) => ({
|
|
1215
1214
|
...theme.typography.body2,
|
|
@@ -1304,7 +1303,7 @@ function ApplyedFilters() {
|
|
|
1304
1303
|
})
|
|
1305
1304
|
});
|
|
1306
1305
|
}
|
|
1307
|
-
const SKTClearFilters = styled$
|
|
1306
|
+
const SKTClearFilters = styled$1("div")(({
|
|
1308
1307
|
theme
|
|
1309
1308
|
}) => ({
|
|
1310
1309
|
display: "flex",
|
|
@@ -1313,7 +1312,7 @@ const SKTClearFilters = styled$2("div")(({
|
|
|
1313
1312
|
minWidth: theme.spacing(3.75),
|
|
1314
1313
|
height: theme.spacing(3.75)
|
|
1315
1314
|
}));
|
|
1316
|
-
const WrapperClearFilters = styled$
|
|
1315
|
+
const WrapperClearFilters = styled$1("div")(({
|
|
1317
1316
|
theme
|
|
1318
1317
|
}) => ({
|
|
1319
1318
|
paddingLeft: theme.spacing(0.5),
|
|
@@ -1493,7 +1492,6 @@ const WrapperInputFilter = styled("div")(({
|
|
|
1493
1492
|
}));
|
|
1494
1493
|
function InputFilter() {
|
|
1495
1494
|
const anchorEl = useDynamicFilter((state) => state.fnAnchorEl, shallow);
|
|
1496
|
-
useDynamicFilter((state) => state.popoverFilterData, shallow);
|
|
1497
1495
|
const withAllField = useDynamicFilter((state) => state.withAllField);
|
|
1498
1496
|
const inputData = useDynamicFilter((state) => state.inputData);
|
|
1499
1497
|
const availableFields = useDynamicFilter((state) => state.availableFields, shallow);
|
|
@@ -5,15 +5,15 @@ import "../Icon/index.b29ff2d9.js";
|
|
|
5
5
|
import "@mui/material/styles";
|
|
6
6
|
import { jsx } from "react/jsx-runtime";
|
|
7
7
|
import "../mui_extended/IconButton/index.460c0476.js";
|
|
8
|
-
import "../mui_extended/Accordion/index.
|
|
8
|
+
import "../mui_extended/Accordion/index.002bad72.js";
|
|
9
9
|
import "../mui_extended/Avatar/index.fe06afd7.js";
|
|
10
10
|
import "react-router-dom";
|
|
11
11
|
import "@mui/material/Button";
|
|
12
12
|
import "../mui_extended/Button/index.8406ed5b.js";
|
|
13
13
|
import "../Image/index.aa24e982.js";
|
|
14
14
|
import "@mui/lab";
|
|
15
|
-
import "../mui_extended/Popover/index.
|
|
16
|
-
import "../mui_extended/MenuActions/index.
|
|
15
|
+
import "../mui_extended/Popover/index.8ed52492.js";
|
|
16
|
+
import "../mui_extended/MenuActions/index.1affe51a.js";
|
|
17
17
|
import "../mui_extended/Pager/index.458f9f0d.js";
|
|
18
18
|
import "../mui_extended/Tab/index.e0653a0a.js";
|
|
19
19
|
import { t as typographyClasses, T as Typography } from "../mui_extended/Typography/index.be3a279a.js";
|
|
@@ -7,15 +7,15 @@ import "../Icon/index.b29ff2d9.js";
|
|
|
7
7
|
import "@mui/material/styles";
|
|
8
8
|
import { jsxs, jsx } from "react/jsx-runtime";
|
|
9
9
|
import "../mui_extended/IconButton/index.460c0476.js";
|
|
10
|
-
import "../mui_extended/Accordion/index.
|
|
10
|
+
import "../mui_extended/Accordion/index.002bad72.js";
|
|
11
11
|
import "../mui_extended/Avatar/index.fe06afd7.js";
|
|
12
12
|
import "react-router-dom";
|
|
13
13
|
import "@mui/material/Button";
|
|
14
14
|
import { I as ImageButton } from "../mui_extended/Button/index.8406ed5b.js";
|
|
15
15
|
import { C as CircularProgress } from "../mui_extended/CircularProgress/index.ad569afd.js";
|
|
16
16
|
import "@mui/lab";
|
|
17
|
-
import { P as Popover } from "../mui_extended/Popover/index.
|
|
18
|
-
import "../mui_extended/MenuActions/index.
|
|
17
|
+
import { P as Popover } from "../mui_extended/Popover/index.8ed52492.js";
|
|
18
|
+
import "../mui_extended/MenuActions/index.1affe51a.js";
|
|
19
19
|
import "../mui_extended/Pager/index.458f9f0d.js";
|
|
20
20
|
import "../mui_extended/Tab/index.e0653a0a.js";
|
|
21
21
|
import "../mui_extended/Typography/index.be3a279a.js";
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { Dialog, Paper } from "@mui/material";
|
|
2
2
|
import { c as cjs } from "../../react-draggable.6471b07e.js";
|
|
3
|
-
import { u as useModal } from "../../hooks/useModal/index.
|
|
3
|
+
import { u as useModal } from "../../hooks/useModal/index.6b980dd0.js";
|
|
4
4
|
import { styled } from "@mui/material/styles";
|
|
5
5
|
import { b as getThemeVariantColor } from "../../utils/index.b6ae791a.js";
|
|
6
6
|
import { R as ResizeableWindow } from "../Resizeable/index.04fa8de5.js";
|
|
7
7
|
import { useResponsiveDesktop } from "@m4l/graphics";
|
|
8
8
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
9
|
-
import { g as getCommonActionsDictionary } from "../CommonActions/components/Actions/index.
|
|
9
|
+
import { g as getCommonActionsDictionary } from "../CommonActions/components/Actions/index.7c749647.js";
|
|
10
10
|
const WrapperDialog = styled(Dialog)(() => ({}));
|
|
11
11
|
const Container = styled("div")(({ theme }) => ({
|
|
12
12
|
display: "flex",
|
|
@@ -1,36 +1,36 @@
|
|
|
1
1
|
import { useState, useEffect, useCallback, useMemo } from "react";
|
|
2
2
|
import { useNetwork, useModuleDictionary, useEnvironment, usePaginate } from "@m4l/core";
|
|
3
3
|
import { styled } from "@mui/material/styles";
|
|
4
|
-
import { D as DataGrid, g as getDataGridComponentsDictionary } from "../DataGrid/index.
|
|
4
|
+
import { D as DataGrid, g as getDataGridComponentsDictionary } from "../DataGrid/index.f2bd89c9.js";
|
|
5
5
|
import { D as DateFormatter } from "../formatters/DateFormatter/index.578a9f53.js";
|
|
6
6
|
import { Tooltip, IconButton } from "@mui/material";
|
|
7
7
|
import { useHostTheme, useResponsiveDesktop } from "@m4l/graphics";
|
|
8
8
|
import { R as ReactJson } from "../../react-json-view.57125fcf.js";
|
|
9
9
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
10
|
-
import { u as useModal } from "../../hooks/useModal/index.
|
|
10
|
+
import { u as useModal } from "../../hooks/useModal/index.6b980dd0.js";
|
|
11
11
|
import { I as Icon } from "../Icon/index.b29ff2d9.js";
|
|
12
12
|
import "../../react-draggable.6471b07e.js";
|
|
13
|
-
import "../ModalDialog/index.
|
|
13
|
+
import "../ModalDialog/index.cecce13a.js";
|
|
14
14
|
import "../Resizeable/index.04fa8de5.js";
|
|
15
|
-
import "../CommonActions/components/Actions/index.
|
|
15
|
+
import "../CommonActions/components/Actions/index.7c749647.js";
|
|
16
16
|
import "@mui/material/Button";
|
|
17
17
|
import "../mui_extended/Button/index.8406ed5b.js";
|
|
18
18
|
import "react-hook-form";
|
|
19
|
-
import "../areas/components/index.
|
|
20
|
-
import "../areas/components/AreasAdmin/index.
|
|
19
|
+
import "../areas/components/index.c8687ec7.js";
|
|
20
|
+
import "../areas/components/AreasAdmin/index.a77794f0.js";
|
|
21
21
|
import "../mui_extended/IconButton/index.460c0476.js";
|
|
22
22
|
import "zustand";
|
|
23
|
-
import "../areas/contexts/AreasContext/index.
|
|
23
|
+
import "../areas/contexts/AreasContext/index.b8494c26.js";
|
|
24
24
|
import "zustand/shallow";
|
|
25
|
-
import "../areas/components/AreasContainer/index.
|
|
25
|
+
import "../areas/components/AreasContainer/index.ebea50de.js";
|
|
26
26
|
import "react-grid-layout/css/styles.css";
|
|
27
27
|
import "../../react-resizable.b620abed.js";
|
|
28
|
-
import "../areas/contexts/index.
|
|
28
|
+
import "../areas/contexts/index.41841fbb.js";
|
|
29
29
|
import "../areas/contexts/DynamicMFParmsContext/index.c19cb8cc.js";
|
|
30
30
|
import "@mui/lab";
|
|
31
|
-
import "../modal/WindowConfirm.
|
|
32
|
-
import { W as WindowBase } from "../modal/WindowBase.
|
|
33
|
-
import { D as DynamicFilter, g as getDynamicFilterComponentsDictionary } from "../DynamicFilter/index.
|
|
31
|
+
import "../modal/WindowConfirm.5e8c22dc.js";
|
|
32
|
+
import { W as WindowBase } from "../modal/WindowBase.398b3152.js";
|
|
33
|
+
import { D as DynamicFilter, g as getDynamicFilterComponentsDictionary } from "../DynamicFilter/index.18aa9ca3.js";
|
|
34
34
|
const Container$1 = styled("div")(() => ({
|
|
35
35
|
height: "100%",
|
|
36
36
|
width: "100%",
|
|
@@ -3,28 +3,28 @@ import { styled, Skeleton, Autocomplete, TextField } from "@mui/material";
|
|
|
3
3
|
import { useMemo } from "react";
|
|
4
4
|
import { I as Icon } from "../Icon/index.b29ff2d9.js";
|
|
5
5
|
import { jsxs, jsx } from "react/jsx-runtime";
|
|
6
|
-
import { g as getCommonActionsDictionary } from "../CommonActions/components/Actions/index.
|
|
6
|
+
import { g as getCommonActionsDictionary } from "../CommonActions/components/Actions/index.7c749647.js";
|
|
7
7
|
import "@mui/material/Button";
|
|
8
8
|
import "../mui_extended/Button/index.8406ed5b.js";
|
|
9
9
|
import "react-hook-form";
|
|
10
|
-
import "../../contexts/ModalContext/index.
|
|
10
|
+
import "../../contexts/ModalContext/index.bd535720.js";
|
|
11
11
|
import "../../react-draggable.6471b07e.js";
|
|
12
|
-
import "../ModalDialog/index.
|
|
12
|
+
import "../ModalDialog/index.cecce13a.js";
|
|
13
13
|
import "../Resizeable/index.04fa8de5.js";
|
|
14
14
|
import "@m4l/graphics";
|
|
15
|
-
import "../modal/WindowConfirm.
|
|
15
|
+
import "../modal/WindowConfirm.5e8c22dc.js";
|
|
16
16
|
import "@mui/material/styles";
|
|
17
|
-
import "../modal/WindowBase.
|
|
18
|
-
import "../areas/components/index.
|
|
19
|
-
import "../areas/components/AreasAdmin/index.
|
|
17
|
+
import "../modal/WindowBase.398b3152.js";
|
|
18
|
+
import "../areas/components/index.c8687ec7.js";
|
|
19
|
+
import "../areas/components/AreasAdmin/index.a77794f0.js";
|
|
20
20
|
import "../mui_extended/IconButton/index.460c0476.js";
|
|
21
21
|
import "zustand";
|
|
22
|
-
import "../areas/contexts/AreasContext/index.
|
|
22
|
+
import "../areas/contexts/AreasContext/index.b8494c26.js";
|
|
23
23
|
import "zustand/shallow";
|
|
24
|
-
import "../areas/components/AreasContainer/index.
|
|
24
|
+
import "../areas/components/AreasContainer/index.ebea50de.js";
|
|
25
25
|
import "react-grid-layout/css/styles.css";
|
|
26
26
|
import "../../react-resizable.b620abed.js";
|
|
27
|
-
import "../areas/contexts/index.
|
|
27
|
+
import "../areas/contexts/index.41841fbb.js";
|
|
28
28
|
import "../areas/contexts/DynamicMFParmsContext/index.c19cb8cc.js";
|
|
29
29
|
import "@mui/lab";
|
|
30
30
|
const ContainerPeriod = styled("div")(({
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import { styled } from "@mui/material/styles";
|
|
2
2
|
import { I as IconButton } from "../../../mui_extended/IconButton/index.460c0476.js";
|
|
3
|
-
import { u as useAreasStore } from "../../hooks/useArea/index.
|
|
3
|
+
import { u as useAreasStore } from "../../hooks/useArea/index.88c16040.js";
|
|
4
4
|
import { useEnvironment } from "@m4l/core";
|
|
5
5
|
import "@mui/material";
|
|
6
6
|
import "../../../Icon/index.b29ff2d9.js";
|
|
7
7
|
import "react";
|
|
8
8
|
import { jsxs, jsx } from "react/jsx-runtime";
|
|
9
|
-
import "../../../mui_extended/Accordion/index.
|
|
9
|
+
import "../../../mui_extended/Accordion/index.002bad72.js";
|
|
10
10
|
import "../../../mui_extended/Avatar/index.fe06afd7.js";
|
|
11
11
|
import "react-router-dom";
|
|
12
12
|
import "@mui/material/Button";
|
|
13
13
|
import "../../../mui_extended/Button/index.8406ed5b.js";
|
|
14
14
|
import "../../../Image/index.aa24e982.js";
|
|
15
15
|
import "@mui/lab";
|
|
16
|
-
import "../../../mui_extended/Popover/index.
|
|
17
|
-
import "../../../mui_extended/MenuActions/index.
|
|
16
|
+
import "../../../mui_extended/Popover/index.8ed52492.js";
|
|
17
|
+
import "../../../mui_extended/MenuActions/index.1affe51a.js";
|
|
18
18
|
import "../../../mui_extended/Pager/index.458f9f0d.js";
|
|
19
19
|
import "../../../mui_extended/Tab/index.e0653a0a.js";
|
|
20
20
|
import "../../../mui_extended/Typography/index.be3a279a.js";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { styled } from "@mui/material/styles";
|
|
2
|
-
import { A as Area } from "../index.
|
|
2
|
+
import { A as Area } from "../index.c8687ec7.js";
|
|
3
3
|
import "react-grid-layout/css/styles.css";
|
|
4
4
|
import "../../../../react-resizable.b620abed.js";
|
|
5
|
-
import { u as useAreasStore } from "../../hooks/useArea/index.
|
|
5
|
+
import { u as useAreasStore } from "../../hooks/useArea/index.88c16040.js";
|
|
6
6
|
import { jsx } from "react/jsx-runtime";
|
|
7
7
|
const ContainerAreas = styled("div")(({
|
|
8
8
|
theme
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { WidthProvider, Responsive } from "react-grid-layout";
|
|
2
|
-
import { a as useAreaStore } from "../../hooks/useArea/index.
|
|
2
|
+
import { a as useAreaStore } from "../../hooks/useArea/index.88c16040.js";
|
|
3
3
|
import { styled } from "@mui/material/styles";
|
|
4
|
-
import { M as MemonizedWindowPopUp } from "../WindowPopUp/index.
|
|
5
|
-
import { M as MemonizedWindow, a as MemonizedWindowModal } from "../Window/index.
|
|
4
|
+
import { M as MemonizedWindowPopUp } from "../WindowPopUp/index.d578142d.js";
|
|
5
|
+
import { M as MemonizedWindow, a as MemonizedWindowModal } from "../Window/index.c7dbcfdb.js";
|
|
6
6
|
import "react-grid-layout/css/styles.css";
|
|
7
7
|
import "../../../../react-resizable.b620abed.js";
|
|
8
8
|
import { shallow } from "zustand/shallow";
|
|
9
|
-
import { R as ROW_HEIGTH_GRIDLAYOUT, C as CONTAINER_PADDING_GRIDLAYOUT } from "../../contexts/AreaContext/index.
|
|
9
|
+
import { R as ROW_HEIGTH_GRIDLAYOUT, C as CONTAINER_PADDING_GRIDLAYOUT } from "../../contexts/AreaContext/index.ea45d809.js";
|
|
10
10
|
import { jsxs, jsx } from "react/jsx-runtime";
|
|
11
11
|
const WrapperPoups = styled("div")(() => ({
|
|
12
12
|
zIndex: 1,
|