@m4l/components 0.1.53 → 0.1.54
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.8dedf1d5.js → index.91b4e98a.js} +10 -10
- package/components/CommonActions/components/ActionIntro/{index.5d5294f2.js → index.9004fca7.js} +1 -1
- package/components/CommonActions/components/Actions/{index.93c9823a.js → index.5e17c889.js} +9 -9
- package/components/DataGrid/{index.1a6508e2.js → index.2c875ddb.js} +32 -31
- package/components/DynamicFilter/{index.2189989e.js → index.931a2f9c.js} +32 -32
- package/components/ErrorLabel/{index.12994bff.js → index.28e80b6b.js} +3 -3
- package/components/LanguagePopover/{index.628fe97f.js → index.9ec5f3cf.js} +3 -3
- package/components/ModalDialog/{index.49c40899.js → index.c0cb2945.js} +2 -2
- package/components/ObjectLogs/{index.d7c0092a.js → index.214967c3.js} +12 -12
- package/components/Period/{index.4f6e419d.js → index.23b6b403.js} +10 -10
- package/components/SplitLayout/{index.5a8355d8.js → index.fde8c830.js} +1 -1
- package/components/areas/components/AreasAdmin/{index.25e50e70.js → index.a9d8e790.js} +4 -4
- package/components/areas/components/AreasContainer/{index.432b9d4c.js → index.1d804927.js} +2 -2
- package/components/areas/components/GridLayout/{index.359e777e.js → index.e3566f2a.js} +4 -4
- package/components/areas/components/Window/{index.2b9f12fe.js → index.e3b76f29.js} +26 -26
- package/components/areas/components/WindowPopUp/{index.d5fa0d74.js → index.0795e28d.js} +27 -27
- package/components/areas/components/{index.912056a0.js → index.8eaa42fa.js} +7 -7
- package/components/areas/contexts/AreaContext/{index.b1439daf.js → index.7a52aefa.js} +1 -1
- package/components/areas/contexts/AreasContext/{index.fb21af84.js → index.1f2d6776.js} +1 -1
- package/components/areas/contexts/{index.1e46147e.js → index.3be51103.js} +1 -1
- package/components/areas/hooks/{index.5feefc73.js → index.8923d389.js} +1 -1
- package/components/areas/hooks/useArea/{index.6f45f930.js → index.8e9fbcde.js} +2 -2
- package/components/areas/{index.3df8c6d4.js → index.a1517f9d.js} +5 -5
- package/components/hook-form/RHFAutocomplete/{index.0ffa2185.js → index.19b255b5.js} +1 -1
- package/components/hook-form/RHFAutocompleteAsync/{index.2dfbe7aa.js → index.9bedb9df.js} +1 -1
- package/components/hook-form/RHFCheckbox/{index.1fcf42c8.js → index.2e8950b3.js} +1 -1
- package/components/hook-form/RHFPeriod/{index.1f6aa4c6.js → index.4986e492.js} +2 -2
- package/components/hook-form/RHFTextField/{index.a021a2b3.js → index.2887da3c.js} +1 -1
- package/components/modal/{WindowBase.66ef3c9a.js → WindowBase.a29640e3.js} +1 -1
- package/components/modal/{WindowConfirm.b31ed329.js → WindowConfirm.e872e238.js} +10 -10
- package/components/modal/{index.6d5b19ef.js → index.661b068a.js} +10 -10
- package/components/mui_extended/Accordion/{index.002bad72.js → index.549938bd.js} +1 -1
- package/components/mui_extended/MenuActions/{index.aaafafc3.js → index.01e3ccfe.js} +1 -1
- package/components/mui_extended/Popover/{index.58c49cc0.js → index.708c0af6.js} +2 -1
- package/components/mui_extended/{index.915e84dc.js → index.44306d3a.js} +3 -3
- package/contexts/ModalContext/{index.d1aaddbc.js → index.a59e3e81.js} +1 -1
- package/hooks/useModal/{index.f77ab08b.js → index.6741a628.js} +1 -1
- package/index.js +37 -37
- package/package.json +1 -1
- package/{vendor.d5904857.js → vendor.b4e23d82.js} +29 -29
package/components/CommonActions/components/ActionFormCancel/{index.8dedf1d5.js → index.91b4e98a.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.6741a628.js";
|
|
7
7
|
import "../../../../react-draggable.6471b07e.js";
|
|
8
|
-
import "../../../ModalDialog/index.
|
|
8
|
+
import "../../../ModalDialog/index.c0cb2945.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.e872e238.js";
|
|
13
|
+
import "../../../modal/WindowBase.a29640e3.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.8eaa42fa.js";
|
|
17
|
+
import "../../../areas/components/AreasAdmin/index.a9d8e790.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.1f2d6776.js";
|
|
21
21
|
import "zustand/shallow";
|
|
22
|
-
import "../../../areas/components/AreasContainer/index.
|
|
22
|
+
import "../../../areas/components/AreasContainer/index.1d804927.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.3be51103.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.8923d389.js";
|
|
28
28
|
function ActionFormCancel() {
|
|
29
29
|
const {
|
|
30
30
|
getLabel
|
package/components/CommonActions/components/ActionIntro/{index.5d5294f2.js → index.9004fca7.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.b4e23d82.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.a59e3e81.js";
|
|
10
10
|
import "../../../../react-draggable.6471b07e.js";
|
|
11
|
-
import "../../../ModalDialog/index.
|
|
11
|
+
import "../../../ModalDialog/index.c0cb2945.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.e872e238.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.a29640e3.js";
|
|
18
|
+
import "../../../areas/components/index.8eaa42fa.js";
|
|
19
|
+
import "../../../areas/components/AreasAdmin/index.a9d8e790.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.1f2d6776.js";
|
|
23
23
|
import "zustand/shallow";
|
|
24
|
-
import "../../../areas/components/AreasContainer/index.
|
|
24
|
+
import "../../../areas/components/AreasContainer/index.1d804927.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.3be51103.js";
|
|
28
28
|
import "../../../areas/contexts/DynamicMFParmsContext/index.c19cb8cc.js";
|
|
29
29
|
const WrapperStandarActions = styled("div")(({
|
|
30
30
|
theme
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { alpha, styled as styled$1 } from "@mui/material/styles";
|
|
2
|
+
import { styled } from "@m4l/styles";
|
|
2
3
|
import { forwardRef, createContext, useState, useMemo, useEffect, useCallback, useContext, useRef, useLayoutEffect, useImperativeHandle } from "react";
|
|
3
4
|
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";
|
|
4
5
|
import { useDrag, useDrop, DndProvider } from "react-dnd";
|
|
@@ -6,34 +7,34 @@ import { HTML5Backend } from "react-dnd-html5-backend";
|
|
|
6
7
|
import { SvgIcon, Checkbox, InputBase, Skeleton } from "@mui/material";
|
|
7
8
|
import { jsx, jsxs, Fragment } from "react/jsx-runtime";
|
|
8
9
|
import { voidFunction, useModuleDictionary, useModuleSkeleton, getPropertyByString, useEnvironment } from "@m4l/core";
|
|
9
|
-
import { M as MenuActions } from "../mui_extended/MenuActions/index.
|
|
10
|
+
import { M as MenuActions } from "../mui_extended/MenuActions/index.01e3ccfe.js";
|
|
10
11
|
import { P as Pager, g as getPagerComponentsDictionary } from "../mui_extended/Pager/index.458f9f0d.js";
|
|
11
12
|
import { I as IconButton } from "../mui_extended/IconButton/index.460c0476.js";
|
|
12
|
-
import { u as useModal } from "../../hooks/useModal/index.
|
|
13
|
+
import { u as useModal } from "../../hooks/useModal/index.6741a628.js";
|
|
13
14
|
import { A as ActionCancel } from "../CommonActions/components/ActionCancel/index.a81752ef.js";
|
|
14
|
-
import { A as ActionIntro } from "../CommonActions/components/ActionIntro/index.
|
|
15
|
+
import { A as ActionIntro } from "../CommonActions/components/ActionIntro/index.9004fca7.js";
|
|
15
16
|
import "../../react-draggable.6471b07e.js";
|
|
16
|
-
import { g as getModalDialogComponentsDictionary } from "../ModalDialog/index.
|
|
17
|
+
import { g as getModalDialogComponentsDictionary } from "../ModalDialog/index.c0cb2945.js";
|
|
17
18
|
import "../Resizeable/index.04fa8de5.js";
|
|
18
19
|
import { useResponsiveDesktop } from "@m4l/graphics";
|
|
19
|
-
import { A as Actions$1 } from "../CommonActions/components/Actions/index.
|
|
20
|
+
import { A as Actions$1 } from "../CommonActions/components/Actions/index.5e17c889.js";
|
|
20
21
|
import "react-hook-form";
|
|
21
22
|
import "@mui/material/Button";
|
|
22
23
|
import "../mui_extended/Button/index.8406ed5b.js";
|
|
23
|
-
import "../areas/components/index.
|
|
24
|
-
import "../areas/components/AreasAdmin/index.
|
|
24
|
+
import "../areas/components/index.8eaa42fa.js";
|
|
25
|
+
import "../areas/components/AreasAdmin/index.a9d8e790.js";
|
|
25
26
|
import "zustand";
|
|
26
|
-
import "../areas/contexts/AreasContext/index.
|
|
27
|
+
import "../areas/contexts/AreasContext/index.1f2d6776.js";
|
|
27
28
|
import "zustand/shallow";
|
|
28
|
-
import "../areas/components/AreasContainer/index.
|
|
29
|
+
import "../areas/components/AreasContainer/index.1d804927.js";
|
|
29
30
|
import "react-grid-layout/css/styles.css";
|
|
30
31
|
import "../../react-resizable.b620abed.js";
|
|
31
|
-
import "../areas/contexts/index.
|
|
32
|
+
import "../areas/contexts/index.3be51103.js";
|
|
32
33
|
import "../areas/contexts/DynamicMFParmsContext/index.c19cb8cc.js";
|
|
33
34
|
import "@mui/lab";
|
|
34
|
-
import "../modal/WindowConfirm.
|
|
35
|
+
import "../modal/WindowConfirm.e872e238.js";
|
|
35
36
|
import "../Icon/index.b29ff2d9.js";
|
|
36
|
-
import { W as WindowBase } from "../modal/WindowBase.
|
|
37
|
+
import { W as WindowBase } from "../modal/WindowBase.a29640e3.js";
|
|
37
38
|
import { B as BooleanFormatter } from "../formatters/BooleanFormatter/index.a50933fb.js";
|
|
38
39
|
import { D as DateFormatter } from "../formatters/DateFormatter/index.578a9f53.js";
|
|
39
40
|
import { C as ConcatenatedFormatter } from "../formatters/index.7d2ad9ca.js";
|
|
@@ -171,7 +172,7 @@ const OriginalDataGridWrapperStyled = styled("div")(({
|
|
|
171
172
|
borderBottom: `2px solid ${theme.palette.primary.main}`
|
|
172
173
|
}
|
|
173
174
|
}));
|
|
174
|
-
const WrapperTable = styled("div", {
|
|
175
|
+
const WrapperTable = styled$1("div", {
|
|
175
176
|
shouldForwardProp: (prop) => prop !== "withActions"
|
|
176
177
|
})(({
|
|
177
178
|
withActions,
|
|
@@ -720,7 +721,7 @@ const ActionsColumn = {
|
|
|
720
721
|
type: "custom",
|
|
721
722
|
formatter: ActionsFormatter
|
|
722
723
|
};
|
|
723
|
-
const WrapperSkeleton = styled("div")(() => ({
|
|
724
|
+
const WrapperSkeleton = styled$1("div")(() => ({
|
|
724
725
|
display: "flex",
|
|
725
726
|
width: "100%",
|
|
726
727
|
height: "100%",
|
|
@@ -994,7 +995,7 @@ function Table(props) {
|
|
|
994
995
|
})
|
|
995
996
|
});
|
|
996
997
|
}
|
|
997
|
-
const SKTWrapperFilter = styled("div")(({
|
|
998
|
+
const SKTWrapperFilter = styled$1("div")(({
|
|
998
999
|
theme
|
|
999
1000
|
}) => ({
|
|
1000
1001
|
display: "flex",
|
|
@@ -1032,7 +1033,7 @@ function Filter() {
|
|
|
1032
1033
|
src: `${host_static_assets}/${environment_assets}/frontend/components/data_grid/assets/icons/filter.svg`
|
|
1033
1034
|
});
|
|
1034
1035
|
}
|
|
1035
|
-
const WrapperColumnsConfig = styled("div")(({ theme }) => ({
|
|
1036
|
+
const WrapperColumnsConfig = styled$1("div")(({ theme }) => ({
|
|
1036
1037
|
color: theme.palette.text.primary,
|
|
1037
1038
|
position: "relative",
|
|
1038
1039
|
display: "flex",
|
|
@@ -1040,31 +1041,31 @@ const WrapperColumnsConfig = styled("div")(({ theme }) => ({
|
|
|
1040
1041
|
height: "100%",
|
|
1041
1042
|
width: "100%"
|
|
1042
1043
|
}));
|
|
1043
|
-
styled("div")(({ theme }) => ({
|
|
1044
|
+
styled$1("div")(({ theme }) => ({
|
|
1044
1045
|
color: theme.palette.text.primary,
|
|
1045
1046
|
fontSize: theme.typography.h4.fontSize
|
|
1046
1047
|
}));
|
|
1047
|
-
const DivSelColumns = styled("div")(({ theme }) => ({
|
|
1048
|
+
const DivSelColumns = styled$1("div")(({ theme }) => ({
|
|
1048
1049
|
...theme.typography.subtitle2,
|
|
1049
1050
|
color: theme.palette.text.primary,
|
|
1050
1051
|
padding: `${theme.spacing(3)} ${theme.spacing(1)}`
|
|
1051
1052
|
}));
|
|
1052
|
-
const WrapperDataGrid = styled("div")(() => ({
|
|
1053
|
+
const WrapperDataGrid = styled$1("div")(() => ({
|
|
1053
1054
|
position: "relative",
|
|
1054
1055
|
display: "flex",
|
|
1055
1056
|
flexDirection: "column",
|
|
1056
1057
|
flexGrow: 1
|
|
1057
1058
|
}));
|
|
1058
|
-
styled("div")(() => ({
|
|
1059
|
+
styled$1("div")(() => ({
|
|
1059
1060
|
display: "flex",
|
|
1060
1061
|
flexDirection: "row"
|
|
1061
1062
|
}));
|
|
1062
|
-
const ColumnActions = styled("div")(({ theme }) => ({
|
|
1063
|
+
const ColumnActions = styled$1("div")(({ theme }) => ({
|
|
1063
1064
|
paddingTop: theme.spacing(3),
|
|
1064
1065
|
display: "flex",
|
|
1065
1066
|
flexDirection: "row"
|
|
1066
1067
|
}));
|
|
1067
|
-
styled("div")(({ theme }) => ({
|
|
1068
|
+
styled$1("div")(({ theme }) => ({
|
|
1068
1069
|
paddingTop: theme.spacing(3),
|
|
1069
1070
|
display: "flex",
|
|
1070
1071
|
flexDirection: "row",
|
|
@@ -1340,7 +1341,7 @@ const ColumnsConfig = forwardRef((props, ref) => {
|
|
|
1340
1341
|
});
|
|
1341
1342
|
});
|
|
1342
1343
|
ColumnsConfig.displayName = "ColumnsConfig";
|
|
1343
|
-
const SKTWrapperColumnsSettings = styled("div")(({ theme }) => ({
|
|
1344
|
+
const SKTWrapperColumnsSettings = styled$1("div")(({ theme }) => ({
|
|
1344
1345
|
display: "flex",
|
|
1345
1346
|
justifyContent: "center",
|
|
1346
1347
|
alignItems: "center",
|
|
@@ -1410,12 +1411,12 @@ function Settings() {
|
|
|
1410
1411
|
src: `${host_static_assets}/${environment_assets}/frontend/components/data_grid/assets/icons/configuration.svg`
|
|
1411
1412
|
});
|
|
1412
1413
|
}
|
|
1413
|
-
const Container = styled("div")(() => ({
|
|
1414
|
+
const Container = styled$1("div")(() => ({
|
|
1414
1415
|
display: "flex",
|
|
1415
1416
|
alignItems: "center"
|
|
1416
1417
|
}));
|
|
1417
|
-
const RowsLabel = styled("span")(() => ({}));
|
|
1418
|
-
const InsetLabel = styled("span")(({ theme }) => ({
|
|
1418
|
+
const RowsLabel = styled$1("span")(() => ({}));
|
|
1419
|
+
const InsetLabel = styled$1("span")(({ theme }) => ({
|
|
1419
1420
|
marginLeft: theme.spacing(2),
|
|
1420
1421
|
paddingTop: "2px",
|
|
1421
1422
|
paddingBottom: "2px",
|
|
@@ -1458,13 +1459,13 @@ function RowsCount() {
|
|
|
1458
1459
|
})]
|
|
1459
1460
|
});
|
|
1460
1461
|
}
|
|
1461
|
-
const WrapperDensity = styled("div")(({ theme }) => ({
|
|
1462
|
+
const WrapperDensity = styled$1("div")(({ theme }) => ({
|
|
1462
1463
|
marginLeft: 0,
|
|
1463
1464
|
[theme.breakpoints.up("sm")]: {
|
|
1464
1465
|
marginLeft: theme.spacing(3)
|
|
1465
1466
|
}
|
|
1466
1467
|
}));
|
|
1467
|
-
const SKTWrapperDensity = styled("div")(({ theme }) => ({
|
|
1468
|
+
const SKTWrapperDensity = styled$1("div")(({ theme }) => ({
|
|
1468
1469
|
display: "flex",
|
|
1469
1470
|
justifyContent: "center",
|
|
1470
1471
|
alignItems: "center",
|
|
@@ -1545,7 +1546,7 @@ function Density() {
|
|
|
1545
1546
|
})
|
|
1546
1547
|
});
|
|
1547
1548
|
}
|
|
1548
|
-
const WrapperActions = styled("div")(({ theme }) => ({
|
|
1549
|
+
const WrapperActions = styled$1("div")(({ theme }) => ({
|
|
1549
1550
|
...theme.typography.caption,
|
|
1550
1551
|
position: "absolute",
|
|
1551
1552
|
left: "0px",
|
|
@@ -1693,7 +1694,7 @@ function columnConcatenatedValuesFormatter(props) {
|
|
|
1693
1694
|
function getDataGridComponentsDictionary() {
|
|
1694
1695
|
return ["data_grid"].concat(getPagerComponentsDictionary()).concat(getModalDialogComponentsDictionary());
|
|
1695
1696
|
}
|
|
1696
|
-
const Input = styled("input")(() => ({
|
|
1697
|
+
const Input = styled$1("input")(() => ({
|
|
1697
1698
|
appearance: "none",
|
|
1698
1699
|
boxSizing: "border-box",
|
|
1699
1700
|
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.b4e23d82.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$2, Skeleton, MenuItem } from "@mui/material";
|
|
11
|
+
import { L as LabelMemuItem } from "../mui_extended/MenuActions/index.01e3ccfe.js";
|
|
12
|
+
import { P as Popover } from "../mui_extended/Popover/index.708c0af6.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.5e17c889.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.9004fca7.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.a59e3e81.js";
|
|
22
22
|
import "../../react-draggable.6471b07e.js";
|
|
23
|
-
import "../ModalDialog/index.
|
|
23
|
+
import "../ModalDialog/index.c0cb2945.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.e872e238.js";
|
|
26
|
+
import "../modal/WindowBase.a29640e3.js";
|
|
27
|
+
import "../areas/components/index.8eaa42fa.js";
|
|
28
|
+
import "../areas/components/AreasAdmin/index.a9d8e790.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.1f2d6776.js";
|
|
31
|
+
import "../areas/components/AreasContainer/index.1d804927.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.3be51103.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.549938bd.js";
|
|
38
38
|
import "../mui_extended/Avatar/index.fe06afd7.js";
|
|
39
39
|
import "react-router-dom";
|
|
40
40
|
import "../Image/index.aa24e982.js";
|
|
@@ -45,22 +45,22 @@ 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.19b255b5.js";
|
|
49
49
|
import "lodash/debounce";
|
|
50
|
-
import "../hook-form/RHFCheckbox/index.
|
|
50
|
+
import "../hook-form/RHFCheckbox/index.2e8950b3.js";
|
|
51
51
|
import { styled, alpha as alpha$1 } from "@mui/material/styles";
|
|
52
|
-
import "../ErrorLabel/index.
|
|
52
|
+
import "../ErrorLabel/index.28e80b6b.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.2887da3c.js";
|
|
56
|
+
import "../hook-form/RHFPeriod/index.4986e492.js";
|
|
57
|
+
import "../Period/index.23b6b403.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";
|
|
62
63
|
import "@hookform/resolvers/yup";
|
|
63
|
-
import { styled as styled$2 } from "@m4l/styles";
|
|
64
64
|
const COMPONENT_CLASS_NAME = "M4LDynamicFilter";
|
|
65
65
|
const ASSETS_URL = "/frontend/components/dynamic_filter/assets/icons/";
|
|
66
66
|
const ASSETS = {
|
|
@@ -1168,7 +1168,7 @@ const ContainerApplyedFilters = styled("div")(({
|
|
|
1168
1168
|
height: "auto",
|
|
1169
1169
|
gap: theme.spacing(1.5)
|
|
1170
1170
|
}));
|
|
1171
|
-
const WrapperApplyedFilter = styled("div")(({
|
|
1171
|
+
const WrapperApplyedFilter = styled$1("div")(({
|
|
1172
1172
|
theme
|
|
1173
1173
|
}) => ({
|
|
1174
1174
|
width: "auto",
|
|
@@ -1184,7 +1184,7 @@ const WrapperApplyedFilter = styled("div")(({
|
|
|
1184
1184
|
overflow: "visible",
|
|
1185
1185
|
borderRadius: theme.spacing(1)
|
|
1186
1186
|
}));
|
|
1187
|
-
const AplyedFilterStyled = styled("div")(({
|
|
1187
|
+
const AplyedFilterStyled = styled$1("div")(({
|
|
1188
1188
|
theme
|
|
1189
1189
|
}) => ({
|
|
1190
1190
|
...theme.typography.body2,
|
|
@@ -1197,19 +1197,19 @@ const AplyedFilterStyled = styled("div")(({
|
|
|
1197
1197
|
marginLeft: theme.spacing(1),
|
|
1198
1198
|
whiteSpace: "nowrap"
|
|
1199
1199
|
}));
|
|
1200
|
-
const ContainerField = styled("span")(({
|
|
1200
|
+
const ContainerField = styled$1("span")(({
|
|
1201
1201
|
theme
|
|
1202
1202
|
}) => ({
|
|
1203
1203
|
...theme.typography.subtitle2
|
|
1204
1204
|
}));
|
|
1205
|
-
const ContainerOperator = styled("span")(({
|
|
1205
|
+
const ContainerOperator = styled$1("span")(({
|
|
1206
1206
|
theme
|
|
1207
1207
|
}) => ({
|
|
1208
1208
|
...theme.typography.body2,
|
|
1209
1209
|
marginLeft: theme.spacing(1.5),
|
|
1210
1210
|
fontStyle: "italic"
|
|
1211
1211
|
}));
|
|
1212
|
-
const ContainerOperands = styled("span")(({
|
|
1212
|
+
const ContainerOperands = styled$1("span")(({
|
|
1213
1213
|
theme
|
|
1214
1214
|
}) => ({
|
|
1215
1215
|
...theme.typography.body2,
|
|
@@ -1304,7 +1304,7 @@ function ApplyedFilters() {
|
|
|
1304
1304
|
})
|
|
1305
1305
|
});
|
|
1306
1306
|
}
|
|
1307
|
-
const SKTClearFilters = styled$
|
|
1307
|
+
const SKTClearFilters = styled$2("div")(({
|
|
1308
1308
|
theme
|
|
1309
1309
|
}) => ({
|
|
1310
1310
|
display: "flex",
|
|
@@ -1313,7 +1313,7 @@ const SKTClearFilters = styled$1("div")(({
|
|
|
1313
1313
|
minWidth: theme.spacing(3.75),
|
|
1314
1314
|
height: theme.spacing(3.75)
|
|
1315
1315
|
}));
|
|
1316
|
-
const WrapperClearFilters = styled$
|
|
1316
|
+
const WrapperClearFilters = styled$2("div")(({
|
|
1317
1317
|
theme
|
|
1318
1318
|
}) => ({
|
|
1319
1319
|
paddingLeft: theme.spacing(0.5),
|
|
@@ -1617,7 +1617,7 @@ function InputFilter() {
|
|
|
1617
1617
|
})]
|
|
1618
1618
|
});
|
|
1619
1619
|
}
|
|
1620
|
-
const TitleContainer = styled
|
|
1620
|
+
const TitleContainer = styled("div")(({
|
|
1621
1621
|
theme
|
|
1622
1622
|
}) => ({
|
|
1623
1623
|
...theme.typography.subtitle2,
|
|
@@ -1628,7 +1628,7 @@ const TitleContainer = styled$2("div")(({
|
|
|
1628
1628
|
padding: theme.spacing(2, 0),
|
|
1629
1629
|
marginLeft: theme.spacing(1.5)
|
|
1630
1630
|
}));
|
|
1631
|
-
const StyledHeaderFilter = styled
|
|
1631
|
+
const StyledHeaderFilter = styled("div")(({
|
|
1632
1632
|
theme
|
|
1633
1633
|
}) => ({
|
|
1634
1634
|
width: "100%",
|
|
@@ -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.549938bd.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.708c0af6.js";
|
|
16
|
+
import "../mui_extended/MenuActions/index.01e3ccfe.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.549938bd.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.708c0af6.js";
|
|
18
|
+
import "../mui_extended/MenuActions/index.01e3ccfe.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.6741a628.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.5e17c889.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.2c875ddb.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.6741a628.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.c0cb2945.js";
|
|
14
14
|
import "../Resizeable/index.04fa8de5.js";
|
|
15
|
-
import "../CommonActions/components/Actions/index.
|
|
15
|
+
import "../CommonActions/components/Actions/index.5e17c889.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.8eaa42fa.js";
|
|
20
|
+
import "../areas/components/AreasAdmin/index.a9d8e790.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.1f2d6776.js";
|
|
24
24
|
import "zustand/shallow";
|
|
25
|
-
import "../areas/components/AreasContainer/index.
|
|
25
|
+
import "../areas/components/AreasContainer/index.1d804927.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.3be51103.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.e872e238.js";
|
|
32
|
+
import { W as WindowBase } from "../modal/WindowBase.a29640e3.js";
|
|
33
|
+
import { D as DynamicFilter, g as getDynamicFilterComponentsDictionary } from "../DynamicFilter/index.931a2f9c.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.5e17c889.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.a59e3e81.js";
|
|
11
11
|
import "../../react-draggable.6471b07e.js";
|
|
12
|
-
import "../ModalDialog/index.
|
|
12
|
+
import "../ModalDialog/index.c0cb2945.js";
|
|
13
13
|
import "../Resizeable/index.04fa8de5.js";
|
|
14
14
|
import "@m4l/graphics";
|
|
15
|
-
import "../modal/WindowConfirm.
|
|
15
|
+
import "../modal/WindowConfirm.e872e238.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.a29640e3.js";
|
|
18
|
+
import "../areas/components/index.8eaa42fa.js";
|
|
19
|
+
import "../areas/components/AreasAdmin/index.a9d8e790.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.1f2d6776.js";
|
|
23
23
|
import "zustand/shallow";
|
|
24
|
-
import "../areas/components/AreasContainer/index.
|
|
24
|
+
import "../areas/components/AreasContainer/index.1d804927.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.3be51103.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.8e9fbcde.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.549938bd.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.708c0af6.js";
|
|
17
|
+
import "../../../mui_extended/MenuActions/index.01e3ccfe.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.8eaa42fa.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.8e9fbcde.js";
|
|
6
6
|
import { jsx } from "react/jsx-runtime";
|
|
7
7
|
const ContainerAreas = styled("div")(({
|
|
8
8
|
theme
|