@m4l/components 0.1.61 → 0.1.62
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.209c6c18.js → index.2124a98a.js} +11 -11
- package/components/CommonActions/components/ActionIntro/{index.0316f6fd.js → index.3f75a205.js} +1 -1
- package/components/CommonActions/components/Actions/{index.ada3dad0.js → index.6eb24c0b.js} +9 -9
- package/components/DataGrid/{index.e0dbed95.js → index.58f35158.js} +12 -12
- package/components/DynamicFilter/{index.4b678a4c.js → index.10f901c6.js} +17 -17
- package/components/ModalDialog/{index.f604a139.js → index.dc7ebe06.js} +2 -2
- package/components/ObjectLogs/{index.16bec4d1.js → index.38c2ad18.js} +12 -12
- package/components/Period/dictionary.d.ts +6 -5
- package/components/Period/{index.08eb0046.js → index.796b3af4.js} +22 -16
- package/components/ScrollBar/{index.35ebe9a1.js → index.b77feabd.js} +8 -5
- package/components/areas/components/AreasAdmin/{index.b9c660f6.js → index.645bd2c7.js} +1 -1
- package/components/areas/components/AreasContainer/{index.0a1e3e83.js → index.3e74c849.js} +2 -2
- package/components/areas/components/GridLayout/{index.e8a4734f.js → index.50810712.js} +4 -4
- package/components/areas/components/Window/{index.e5df21bb.js → index.8040dbe4.js} +20 -20
- package/components/areas/components/WindowPopUp/{index.86a4e480.js → index.4514046e.js} +21 -21
- package/components/areas/components/{index.3f3f9812.js → index.9f62ca8e.js} +7 -7
- package/components/areas/contexts/AreaContext/{index.0c6a855b.js → index.368adb8d.js} +1 -1
- package/components/areas/contexts/AreasContext/{index.75ccd2bf.js → index.f3d6e728.js} +1 -1
- package/components/areas/contexts/{index.24da4b7b.js → index.3623b460.js} +1 -1
- package/components/areas/hooks/{index.67a0b978.js → index.18982960.js} +1 -1
- package/components/areas/hooks/useArea/{index.ccbdccbb.js → index.dab7ce20.js} +2 -2
- package/components/areas/{index.ff7f0e3c.js → index.a0456f95.js} +5 -5
- package/components/formatters/PeriodFormatter/dictionary.d.ts +16 -7
- package/components/formatters/{index.12ac825b.js → index.acd3dcea.js} +20 -18
- package/components/hook-form/RHFAutocomplete/{index.b06ed59c.js → index.bb6cb5df.js} +1 -1
- package/components/hook-form/RHFAutocompleteAsync/{index.1296f3c7.js → index.815949a9.js} +1 -1
- package/components/hook-form/RHFPeriod/{index.d5cd4e1a.js → index.c4944f9c.js} +1 -1
- package/components/hook-form/RHFTextField/{index.a3fd0cdf.js → index.d3544fa3.js} +1 -1
- package/components/modal/{WindowBase.bda5a80a.js → WindowBase.7828e042.js} +1 -1
- package/components/modal/WindowConfirm/dictionary.d.ts +6 -0
- package/components/modal/{WindowConfirm.d9c87591.js → WindowConfirm.42ec4dcd.js} +18 -12
- package/components/modal/{index.9fbe9933.js → index.3cc54b93.js} +10 -10
- package/contexts/ModalContext/{index.9ddde31c.js → index.b4114066.js} +1 -1
- package/hooks/useModal/{index.3aca4716.js → index.77b3415c.js} +1 -1
- package/index.js +31 -31
- package/package.json +1 -1
- package/{vendor.afa62d25.js → vendor.29969396.js} +24 -24
package/components/CommonActions/components/ActionFormCancel/{index.209c6c18.js → index.2124a98a.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.77b3415c.js";
|
|
7
7
|
import "../../../../react-draggable.6471b07e.js";
|
|
8
|
-
import "../../../ModalDialog/index.
|
|
8
|
+
import "../../../ModalDialog/index.dc7ebe06.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.42ec4dcd.js";
|
|
13
|
+
import "../../../modal/WindowBase.7828e042.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.9f62ca8e.js";
|
|
17
|
+
import "../../../areas/components/AreasAdmin/index.645bd2c7.js";
|
|
18
18
|
import "../../../mui_extended/IconButton/index.afa201a7.js";
|
|
19
19
|
import "zustand";
|
|
20
|
-
import "../../../areas/contexts/AreasContext/index.
|
|
20
|
+
import "../../../areas/contexts/AreasContext/index.f3d6e728.js";
|
|
21
21
|
import "zustand/shallow";
|
|
22
|
-
import "../../../areas/components/AreasContainer/index.
|
|
22
|
+
import "../../../areas/components/AreasContainer/index.3e74c849.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.3623b460.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.18982960.js";
|
|
28
28
|
function ActionFormCancel() {
|
|
29
29
|
const {
|
|
30
30
|
getLabel
|
|
@@ -52,7 +52,7 @@ function ActionFormCancel() {
|
|
|
52
52
|
openModal({
|
|
53
53
|
window: /* @__PURE__ */ jsx(WindowConfirm, {
|
|
54
54
|
variant: "warning",
|
|
55
|
-
title: getLabel("
|
|
55
|
+
title: getLabel("common_actions.confirm_quit_title"),
|
|
56
56
|
msg: getLabel("form_provider.confirm_quit_msg"),
|
|
57
57
|
onClickIntro: onConfirmQuit
|
|
58
58
|
})
|
package/components/CommonActions/components/ActionIntro/{index.0316f6fd.js → index.3f75a205.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.29969396.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.b4114066.js";
|
|
10
10
|
import "../../../../react-draggable.6471b07e.js";
|
|
11
|
-
import "../../../ModalDialog/index.
|
|
11
|
+
import "../../../ModalDialog/index.dc7ebe06.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.42ec4dcd.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.7828e042.js";
|
|
18
|
+
import "../../../areas/components/index.9f62ca8e.js";
|
|
19
|
+
import "../../../areas/components/AreasAdmin/index.645bd2c7.js";
|
|
20
20
|
import "../../../mui_extended/IconButton/index.afa201a7.js";
|
|
21
21
|
import "zustand";
|
|
22
|
-
import "../../../areas/contexts/AreasContext/index.
|
|
22
|
+
import "../../../areas/contexts/AreasContext/index.f3d6e728.js";
|
|
23
23
|
import "zustand/shallow";
|
|
24
|
-
import "../../../areas/components/AreasContainer/index.
|
|
24
|
+
import "../../../areas/components/AreasContainer/index.3e74c849.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.3623b460.js";
|
|
28
28
|
import "../../../areas/contexts/DynamicMFParmsContext/index.c19cb8cc.js";
|
|
29
29
|
const WrapperStandarActions = styled("div")(({
|
|
30
30
|
theme
|
|
@@ -9,34 +9,34 @@ import { voidFunction, useModuleDictionary, useModuleSkeleton, getPropertyByStri
|
|
|
9
9
|
import { M as MenuActions } from "../mui_extended/MenuActions/index.1affe51a.js";
|
|
10
10
|
import { g as getPagerComponentsDictionary, P as Pager } from "../mui_extended/Pager/index.d4d1a1a0.js";
|
|
11
11
|
import { I as IconButton } from "../mui_extended/IconButton/index.afa201a7.js";
|
|
12
|
-
import { u as useModal } from "../../hooks/useModal/index.
|
|
12
|
+
import { u as useModal } from "../../hooks/useModal/index.77b3415c.js";
|
|
13
13
|
import { A as ActionCancel } from "../CommonActions/components/ActionCancel/index.a81752ef.js";
|
|
14
|
-
import { A as ActionIntro } from "../CommonActions/components/ActionIntro/index.
|
|
14
|
+
import { A as ActionIntro } from "../CommonActions/components/ActionIntro/index.3f75a205.js";
|
|
15
15
|
import "../../react-draggable.6471b07e.js";
|
|
16
|
-
import { g as getModalDialogComponentsDictionary } from "../ModalDialog/index.
|
|
16
|
+
import { g as getModalDialogComponentsDictionary } from "../ModalDialog/index.dc7ebe06.js";
|
|
17
17
|
import "../Resizeable/index.04fa8de5.js";
|
|
18
18
|
import { useResponsiveDesktop } from "@m4l/graphics";
|
|
19
|
-
import { A as Actions$1 } from "../CommonActions/components/Actions/index.
|
|
19
|
+
import { A as Actions$1 } from "../CommonActions/components/Actions/index.6eb24c0b.js";
|
|
20
20
|
import "react-hook-form";
|
|
21
21
|
import "@mui/material/Button";
|
|
22
22
|
import "../mui_extended/Button/index.8406ed5b.js";
|
|
23
|
-
import "../areas/components/index.
|
|
24
|
-
import "../areas/components/AreasAdmin/index.
|
|
23
|
+
import "../areas/components/index.9f62ca8e.js";
|
|
24
|
+
import "../areas/components/AreasAdmin/index.645bd2c7.js";
|
|
25
25
|
import "zustand";
|
|
26
|
-
import "../areas/contexts/AreasContext/index.
|
|
26
|
+
import "../areas/contexts/AreasContext/index.f3d6e728.js";
|
|
27
27
|
import "zustand/shallow";
|
|
28
|
-
import "../areas/components/AreasContainer/index.
|
|
28
|
+
import "../areas/components/AreasContainer/index.3e74c849.js";
|
|
29
29
|
import "react-grid-layout/css/styles.css";
|
|
30
30
|
import "../../react-resizable.b620abed.js";
|
|
31
|
-
import "../areas/contexts/index.
|
|
31
|
+
import "../areas/contexts/index.3623b460.js";
|
|
32
32
|
import "../areas/contexts/DynamicMFParmsContext/index.c19cb8cc.js";
|
|
33
33
|
import "@mui/lab";
|
|
34
|
-
import "../modal/WindowConfirm.
|
|
34
|
+
import "../modal/WindowConfirm.42ec4dcd.js";
|
|
35
35
|
import "../Icon/index.b29ff2d9.js";
|
|
36
|
-
import { W as WindowBase } from "../modal/WindowBase.
|
|
36
|
+
import { W as WindowBase } from "../modal/WindowBase.7828e042.js";
|
|
37
37
|
import { B as BooleanFormatter } from "../formatters/BooleanFormatter/index.bf947220.js";
|
|
38
38
|
import { D as DateFormatter } from "../formatters/DateFormatter/index.578a9f53.js";
|
|
39
|
-
import { C as ConcatenatedFormatter } from "../formatters/index.
|
|
39
|
+
import { C as ConcatenatedFormatter } from "../formatters/index.acd3dcea.js";
|
|
40
40
|
const WrapperGrid = styled("div")(() => ({
|
|
41
41
|
display: "flex",
|
|
42
42
|
flexDirection: "column",
|
|
@@ -1,37 +1,37 @@
|
|
|
1
1
|
import { shallow } from "zustand/shallow";
|
|
2
|
-
import { S as ScrollBar } from "../ScrollBar/index.
|
|
2
|
+
import { S as ScrollBar } from "../ScrollBar/index.b77feabd.js";
|
|
3
3
|
import { useContext, useMemo, useEffect, createContext, useRef, createElement, useState, useCallback } from "react";
|
|
4
4
|
import clsx from "clsx";
|
|
5
5
|
import { useModuleDictionary, useEnvironment, useModuleSkeleton, useFlagsPresent, CommonFlags } from "@m4l/core";
|
|
6
6
|
import { useResponsiveDesktop, useFirstRender, useFormatter } from "@m4l/graphics";
|
|
7
7
|
import { I as IconButton } from "../mui_extended/IconButton/index.afa201a7.js";
|
|
8
|
-
import { T as TEST_PROP_ID } from "../../vendor.
|
|
8
|
+
import { T as TEST_PROP_ID } from "../../vendor.29969396.js";
|
|
9
9
|
import { jsxs, jsx, Fragment } from "react/jsx-runtime";
|
|
10
10
|
import { generateUtilityClasses, alpha, styled as styled$1, Skeleton, MenuItem } from "@mui/material";
|
|
11
11
|
import { L as LabelMemuItem } from "../mui_extended/MenuActions/index.1affe51a.js";
|
|
12
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.6eb24c0b.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.3f75a205.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.b4114066.js";
|
|
22
22
|
import "../../react-draggable.6471b07e.js";
|
|
23
|
-
import "../ModalDialog/index.
|
|
23
|
+
import "../ModalDialog/index.dc7ebe06.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.42ec4dcd.js";
|
|
26
|
+
import "../modal/WindowBase.7828e042.js";
|
|
27
|
+
import "../areas/components/index.9f62ca8e.js";
|
|
28
|
+
import "../areas/components/AreasAdmin/index.645bd2c7.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.f3d6e728.js";
|
|
31
|
+
import "../areas/components/AreasContainer/index.3e74c849.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.3623b460.js";
|
|
35
35
|
import "../areas/contexts/DynamicMFParmsContext/index.c19cb8cc.js";
|
|
36
36
|
import "@mui/lab";
|
|
37
37
|
import "../mui_extended/Accordion/index.725a10af.js";
|
|
@@ -45,16 +45,16 @@ 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.bb6cb5df.js";
|
|
49
49
|
import "lodash/debounce";
|
|
50
50
|
import "../hook-form/RHFCheckbox/index.6e80f572.js";
|
|
51
51
|
import { styled, alpha as alpha$1 } from "@mui/material/styles";
|
|
52
52
|
import "../ErrorLabel/index.e140421c.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.d3544fa3.js";
|
|
56
|
+
import "../hook-form/RHFPeriod/index.c4944f9c.js";
|
|
57
|
+
import "../Period/index.796b3af4.js";
|
|
58
58
|
import "lodash/isString";
|
|
59
59
|
import "react-dropzone";
|
|
60
60
|
import "../hook-form/RHFUpload/index.7fdff30f.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.77b3415c.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.6eb24c0b.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.58f35158.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.77b3415c.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.dc7ebe06.js";
|
|
14
14
|
import "../Resizeable/index.04fa8de5.js";
|
|
15
|
-
import "../CommonActions/components/Actions/index.
|
|
15
|
+
import "../CommonActions/components/Actions/index.6eb24c0b.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.9f62ca8e.js";
|
|
20
|
+
import "../areas/components/AreasAdmin/index.645bd2c7.js";
|
|
21
21
|
import "../mui_extended/IconButton/index.afa201a7.js";
|
|
22
22
|
import "zustand";
|
|
23
|
-
import "../areas/contexts/AreasContext/index.
|
|
23
|
+
import "../areas/contexts/AreasContext/index.f3d6e728.js";
|
|
24
24
|
import "zustand/shallow";
|
|
25
|
-
import "../areas/components/AreasContainer/index.
|
|
25
|
+
import "../areas/components/AreasContainer/index.3e74c849.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.3623b460.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.42ec4dcd.js";
|
|
32
|
+
import { W as WindowBase } from "../modal/WindowBase.7828e042.js";
|
|
33
|
+
import { D as DynamicFilter, g as getDynamicFilterComponentsDictionary } from "../DynamicFilter/index.10f901c6.js";
|
|
34
34
|
const Container$1 = styled("div")(() => ({
|
|
35
35
|
height: "100%",
|
|
36
36
|
width: "100%",
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
export declare const PERIOD_FORMATTER_DICTIONARY_KEY = "period_formatter";
|
|
2
|
+
export declare const dictionary: {
|
|
3
|
+
LABEL_YEARS: string;
|
|
4
|
+
LABEL_MONTHS: string;
|
|
5
|
+
LABEL_DAYS: string;
|
|
6
|
+
};
|
|
2
7
|
export declare function getPeriodComponetsDictionary(): string[];
|
|
3
|
-
export declare const defaultPeriodDictionary: Dictionary;
|
|
4
|
-
export declare const LABEL_YEARS = "label_years";
|
|
5
|
-
export declare const LABEL_MONTHS = "label_months";
|
|
6
|
-
export declare const LABEL_DAYS = "label_days";
|
|
@@ -2,29 +2,29 @@ import { useModuleDictionary, useModuleSkeleton, useEnvironment } from "@m4l/cor
|
|
|
2
2
|
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
|
+
import { g as getCommonActionsDictionary } from "../CommonActions/components/Actions/index.6eb24c0b.js";
|
|
5
6
|
import { jsxs, jsx } from "react/jsx-runtime";
|
|
6
|
-
import { g as getCommonActionsDictionary } from "../CommonActions/components/Actions/index.ada3dad0.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.b4114066.js";
|
|
11
11
|
import "../../react-draggable.6471b07e.js";
|
|
12
|
-
import "../ModalDialog/index.
|
|
12
|
+
import "../ModalDialog/index.dc7ebe06.js";
|
|
13
13
|
import "../Resizeable/index.04fa8de5.js";
|
|
14
14
|
import "@m4l/graphics";
|
|
15
|
-
import "../modal/WindowConfirm.
|
|
15
|
+
import "../modal/WindowConfirm.42ec4dcd.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.7828e042.js";
|
|
18
|
+
import "../areas/components/index.9f62ca8e.js";
|
|
19
|
+
import "../areas/components/AreasAdmin/index.645bd2c7.js";
|
|
20
20
|
import "../mui_extended/IconButton/index.afa201a7.js";
|
|
21
21
|
import "zustand";
|
|
22
|
-
import "../areas/contexts/AreasContext/index.
|
|
22
|
+
import "../areas/contexts/AreasContext/index.f3d6e728.js";
|
|
23
23
|
import "zustand/shallow";
|
|
24
|
-
import "../areas/components/AreasContainer/index.
|
|
24
|
+
import "../areas/components/AreasContainer/index.3e74c849.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.3623b460.js";
|
|
28
28
|
import "../areas/contexts/DynamicMFParmsContext/index.c19cb8cc.js";
|
|
29
29
|
import "@mui/lab";
|
|
30
30
|
const ContainerPeriod = styled("div")(({
|
|
@@ -106,6 +106,15 @@ var ETimePeriods = /* @__PURE__ */ ((ETimePeriods2) => {
|
|
|
106
106
|
ETimePeriods2[ETimePeriods2["DAYS"] = 2] = "DAYS";
|
|
107
107
|
return ETimePeriods2;
|
|
108
108
|
})(ETimePeriods || {});
|
|
109
|
+
const PERIOD_FORMATTER_DICTIONARY_KEY = `period_formatter`;
|
|
110
|
+
const dictionary = {
|
|
111
|
+
LABEL_YEARS: `${PERIOD_FORMATTER_DICTIONARY_KEY}.label_years`,
|
|
112
|
+
LABEL_MONTHS: `${PERIOD_FORMATTER_DICTIONARY_KEY}.label_months`,
|
|
113
|
+
LABEL_DAYS: `${PERIOD_FORMATTER_DICTIONARY_KEY}.label_days`
|
|
114
|
+
};
|
|
115
|
+
function getPeriodComponetsDictionary() {
|
|
116
|
+
return ["dictionary"].concat(getCommonActionsDictionary());
|
|
117
|
+
}
|
|
109
118
|
const getSelPeriodTime = (period) => {
|
|
110
119
|
if (!period)
|
|
111
120
|
return ETimePeriods.YEARS;
|
|
@@ -176,13 +185,13 @@ const Period = (props) => {
|
|
|
176
185
|
} = useEnvironment();
|
|
177
186
|
const options = useMemo(() => [{
|
|
178
187
|
id: 0,
|
|
179
|
-
label: getLabel(
|
|
188
|
+
label: getLabel(dictionary.LABEL_DAYS)
|
|
180
189
|
}, {
|
|
181
190
|
id: 1,
|
|
182
|
-
label: getLabel(
|
|
191
|
+
label: getLabel(dictionary.LABEL_MONTHS)
|
|
183
192
|
}, {
|
|
184
193
|
id: 2,
|
|
185
|
-
label: getLabel(
|
|
194
|
+
label: getLabel(dictionary.LABEL_YEARS)
|
|
186
195
|
}], [getLabel]);
|
|
187
196
|
if (isSkeleton) {
|
|
188
197
|
return /* @__PURE__ */ jsxs(SKTWrapper, {
|
|
@@ -258,9 +267,6 @@ const Period = (props) => {
|
|
|
258
267
|
})]
|
|
259
268
|
});
|
|
260
269
|
};
|
|
261
|
-
function getPeriodComponetsDictionary() {
|
|
262
|
-
return ["period"].concat(getCommonActionsDictionary());
|
|
263
|
-
}
|
|
264
270
|
export {
|
|
265
271
|
Period as P,
|
|
266
272
|
getPeriodComponetsDictionary as g
|
|
@@ -1,15 +1,18 @@
|
|
|
1
1
|
import { Box } from "@mui/material";
|
|
2
|
-
import { styled,
|
|
2
|
+
import { styled, alpha } from "@mui/material/styles";
|
|
3
3
|
import SimpleBarReact from "simplebar-react";
|
|
4
4
|
import simpleBarCss from "simplebar/dist/simplebar.min.css?used";
|
|
5
5
|
import { jsx } from "react/jsx-runtime";
|
|
6
|
+
styled("div")`
|
|
7
|
+
flex-grow: 1;
|
|
8
|
+
height: 100%;
|
|
9
|
+
overflow: hidden;
|
|
10
|
+
${simpleBarCss}
|
|
11
|
+
`;
|
|
6
12
|
const RootStyle = styled("div")(() => ({
|
|
7
13
|
flexGrow: 1,
|
|
8
14
|
height: "100%",
|
|
9
|
-
overflow: "hidden"
|
|
10
|
-
...css`
|
|
11
|
-
${simpleBarCss}
|
|
12
|
-
`
|
|
15
|
+
overflow: "hidden"
|
|
13
16
|
}));
|
|
14
17
|
const SimpleBarStyle = styled(SimpleBarReact)(({
|
|
15
18
|
theme
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { styled } from "@mui/material/styles";
|
|
2
2
|
import { I as IconButton } from "../../../mui_extended/IconButton/index.afa201a7.js";
|
|
3
|
-
import { u as useAreasStore } from "../../hooks/useArea/index.
|
|
3
|
+
import { u as useAreasStore } from "../../hooks/useArea/index.dab7ce20.js";
|
|
4
4
|
import { useEnvironment } from "@m4l/core";
|
|
5
5
|
import "@mui/material";
|
|
6
6
|
import "../../../Icon/index.b29ff2d9.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.9f62ca8e.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.dab7ce20.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.dab7ce20.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.4514046e.js";
|
|
5
|
+
import { M as MemonizedWindow, a as MemonizedWindowModal } from "../Window/index.8040dbe4.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.368adb8d.js";
|
|
10
10
|
import { jsxs, jsx } from "react/jsx-runtime";
|
|
11
11
|
const WrapperPoups = styled("div")(() => ({
|
|
12
12
|
zIndex: 1,
|
|
@@ -7,20 +7,20 @@ import { styled } from "@mui/material/styles";
|
|
|
7
7
|
import "react-router-dom";
|
|
8
8
|
import "../../../animate/LoadingScreen/index.1d0c4307.js";
|
|
9
9
|
import "../../../animate/PropagateLoader/index.be5b02c3.js";
|
|
10
|
-
import "../index.
|
|
11
|
-
import "../AreasAdmin/index.
|
|
10
|
+
import "../index.9f62ca8e.js";
|
|
11
|
+
import "../AreasAdmin/index.645bd2c7.js";
|
|
12
12
|
import { useEnvironment, useModuleSkeleton, useModuleDictionary, useNetwork, useHostTools, axiosOperation } from "@m4l/core";
|
|
13
13
|
import { I as IconButton } from "../../../mui_extended/IconButton/index.afa201a7.js";
|
|
14
14
|
import "zustand";
|
|
15
|
-
import "../../contexts/AreasContext/index.
|
|
15
|
+
import "../../contexts/AreasContext/index.f3d6e728.js";
|
|
16
16
|
import { shallow } from "zustand/shallow";
|
|
17
|
-
import "../AreasContainer/index.
|
|
17
|
+
import "../AreasContainer/index.3e74c849.js";
|
|
18
18
|
import "react-grid-layout/css/styles.css";
|
|
19
19
|
import "../../../../react-resizable.b620abed.js";
|
|
20
|
-
import { W as WindowToolsMFProvider, a as WindowMFProvider } from "../../contexts/index.
|
|
20
|
+
import { W as WindowToolsMFProvider, a as WindowMFProvider } from "../../contexts/index.3623b460.js";
|
|
21
21
|
import { D as DynamicMFParmsProvider } from "../../contexts/DynamicMFParmsContext/index.c19cb8cc.js";
|
|
22
22
|
import "react-hook-form";
|
|
23
|
-
import "../../../hook-form/RHFAutocomplete/index.
|
|
23
|
+
import "../../../hook-form/RHFAutocomplete/index.bb6cb5df.js";
|
|
24
24
|
import { I as Image } from "../../../Image/index.aa24e982.js";
|
|
25
25
|
import debounce from "lodash/debounce";
|
|
26
26
|
import "../../../hook-form/RHFCheckbox/index.6e80f572.js";
|
|
@@ -38,39 +38,39 @@ import "../../../ErrorLabel/index.e140421c.js";
|
|
|
38
38
|
import "@mui/x-date-pickers";
|
|
39
39
|
import "../../../hook-form/RHFDateTime/index.6c129ce4.js";
|
|
40
40
|
import { useResponsiveDesktop, useHostTheme, useFormatter, useLocales, useFirstRender } from "@m4l/graphics";
|
|
41
|
-
import "../../../hook-form/RHFTextField/index.
|
|
42
|
-
import "../../../hook-form/RHFPeriod/index.
|
|
43
|
-
import "../../../Period/index.
|
|
44
|
-
import "../../../CommonActions/components/Actions/index.
|
|
45
|
-
import "../../../../contexts/ModalContext/index.
|
|
41
|
+
import "../../../hook-form/RHFTextField/index.d3544fa3.js";
|
|
42
|
+
import "../../../hook-form/RHFPeriod/index.c4944f9c.js";
|
|
43
|
+
import "../../../Period/index.796b3af4.js";
|
|
44
|
+
import "../../../CommonActions/components/Actions/index.6eb24c0b.js";
|
|
45
|
+
import "../../../../contexts/ModalContext/index.b4114066.js";
|
|
46
46
|
import { c as cjs } from "../../../../react-draggable.6471b07e.js";
|
|
47
|
-
import "../../../ModalDialog/index.
|
|
47
|
+
import "../../../ModalDialog/index.dc7ebe06.js";
|
|
48
48
|
import { R as ResizeableWindow } from "../../../Resizeable/index.04fa8de5.js";
|
|
49
|
-
import "../../../modal/WindowConfirm.
|
|
50
|
-
import "../../../modal/WindowBase.
|
|
49
|
+
import "../../../modal/WindowConfirm.42ec4dcd.js";
|
|
50
|
+
import "../../../modal/WindowBase.7828e042.js";
|
|
51
51
|
import "lodash/isString";
|
|
52
52
|
import "react-dropzone";
|
|
53
53
|
import "../../../hook-form/RHFUpload/index.7fdff30f.js";
|
|
54
|
-
import "../../../DataGrid/index.
|
|
54
|
+
import "../../../DataGrid/index.58f35158.js";
|
|
55
55
|
import "react-dnd";
|
|
56
56
|
import "react-dnd-html5-backend";
|
|
57
|
-
import "../../../DynamicFilter/index.
|
|
58
|
-
import "../../../ScrollBar/index.
|
|
57
|
+
import "../../../DynamicFilter/index.10f901c6.js";
|
|
58
|
+
import "../../../ScrollBar/index.b77feabd.js";
|
|
59
59
|
import "clsx";
|
|
60
60
|
import "yup";
|
|
61
61
|
import "@hookform/resolvers/yup";
|
|
62
62
|
import "../../../../contexts/RHFormContext/index.3dc6e2f5.js";
|
|
63
63
|
import "../../../LanguagePopover/index.df9b47a6.js";
|
|
64
64
|
import "../../../NoItemSelected/index.9636ec8a.js";
|
|
65
|
-
import "../../../ObjectLogs/index.
|
|
65
|
+
import "../../../ObjectLogs/index.38c2ad18.js";
|
|
66
66
|
import "../../../../react-json-view.57125fcf.js";
|
|
67
67
|
import "../../../PaperForm/index.3cdac885.js";
|
|
68
68
|
import "../../../Page/index.4237c241.js";
|
|
69
69
|
import "../../../PropertyValue/index.dfcfe1ba.js";
|
|
70
70
|
import "../../../../react-splitter-layout.8b1655c8.js";
|
|
71
71
|
import "../../../SplitLayout/index.5a8355d8.js";
|
|
72
|
-
import { a as useAreaStore } from "../../hooks/useArea/index.
|
|
73
|
-
import { a as useWindow, b as useWindowStore } from "../../hooks/index.
|
|
72
|
+
import { a as useAreaStore } from "../../hooks/useArea/index.dab7ce20.js";
|
|
73
|
+
import { a as useWindow, b as useWindowStore } from "../../hooks/index.18982960.js";
|
|
74
74
|
import { L as LinearProgress } from "../../../mui_extended/LinearProgress/index.c92b9ba9.js";
|
|
75
75
|
import { v as varBounce } from "../../../animate/variants/bounce.784aaaaa.js";
|
|
76
76
|
const WrapperWindow = styled("div", {
|
|
@@ -7,20 +7,20 @@ import "@mui/material/styles";
|
|
|
7
7
|
import "react-router-dom";
|
|
8
8
|
import "../../../animate/LoadingScreen/index.1d0c4307.js";
|
|
9
9
|
import "../../../animate/PropagateLoader/index.be5b02c3.js";
|
|
10
|
-
import "../index.
|
|
11
|
-
import "../AreasAdmin/index.
|
|
10
|
+
import "../index.9f62ca8e.js";
|
|
11
|
+
import "../AreasAdmin/index.645bd2c7.js";
|
|
12
12
|
import "@m4l/core";
|
|
13
13
|
import "../../../mui_extended/IconButton/index.afa201a7.js";
|
|
14
14
|
import "zustand";
|
|
15
|
-
import "../../contexts/AreasContext/index.
|
|
15
|
+
import "../../contexts/AreasContext/index.f3d6e728.js";
|
|
16
16
|
import "zustand/shallow";
|
|
17
|
-
import "../AreasContainer/index.
|
|
17
|
+
import "../AreasContainer/index.3e74c849.js";
|
|
18
18
|
import "react-grid-layout/css/styles.css";
|
|
19
19
|
import "../../../../react-resizable.b620abed.js";
|
|
20
|
-
import "../../contexts/index.
|
|
20
|
+
import "../../contexts/index.3623b460.js";
|
|
21
21
|
import "../../contexts/DynamicMFParmsContext/index.c19cb8cc.js";
|
|
22
22
|
import "react-hook-form";
|
|
23
|
-
import "../../../hook-form/RHFAutocomplete/index.
|
|
23
|
+
import "../../../hook-form/RHFAutocomplete/index.bb6cb5df.js";
|
|
24
24
|
import "../../../Image/index.aa24e982.js";
|
|
25
25
|
import "lodash/debounce";
|
|
26
26
|
import "../../../hook-form/RHFCheckbox/index.6e80f572.js";
|
|
@@ -38,40 +38,40 @@ import "../../../ErrorLabel/index.e140421c.js";
|
|
|
38
38
|
import "@mui/x-date-pickers";
|
|
39
39
|
import "../../../hook-form/RHFDateTime/index.6c129ce4.js";
|
|
40
40
|
import "@m4l/graphics";
|
|
41
|
-
import "../../../hook-form/RHFTextField/index.
|
|
42
|
-
import "../../../hook-form/RHFPeriod/index.
|
|
43
|
-
import "../../../Period/index.
|
|
44
|
-
import "../../../CommonActions/components/Actions/index.
|
|
45
|
-
import "../../../../contexts/ModalContext/index.
|
|
41
|
+
import "../../../hook-form/RHFTextField/index.d3544fa3.js";
|
|
42
|
+
import "../../../hook-form/RHFPeriod/index.c4944f9c.js";
|
|
43
|
+
import "../../../Period/index.796b3af4.js";
|
|
44
|
+
import "../../../CommonActions/components/Actions/index.6eb24c0b.js";
|
|
45
|
+
import "../../../../contexts/ModalContext/index.b4114066.js";
|
|
46
46
|
import "../../../../react-draggable.6471b07e.js";
|
|
47
|
-
import "../../../ModalDialog/index.
|
|
47
|
+
import "../../../ModalDialog/index.dc7ebe06.js";
|
|
48
48
|
import { R as ResizeableWindow } from "../../../Resizeable/index.04fa8de5.js";
|
|
49
|
-
import "../../../modal/WindowConfirm.
|
|
50
|
-
import "../../../modal/WindowBase.
|
|
49
|
+
import "../../../modal/WindowConfirm.42ec4dcd.js";
|
|
50
|
+
import "../../../modal/WindowBase.7828e042.js";
|
|
51
51
|
import "lodash/isString";
|
|
52
52
|
import "react-dropzone";
|
|
53
53
|
import "../../../hook-form/RHFUpload/index.7fdff30f.js";
|
|
54
|
-
import "../../../DataGrid/index.
|
|
54
|
+
import "../../../DataGrid/index.58f35158.js";
|
|
55
55
|
import "react-dnd";
|
|
56
56
|
import "react-dnd-html5-backend";
|
|
57
|
-
import "../../../DynamicFilter/index.
|
|
58
|
-
import "../../../ScrollBar/index.
|
|
57
|
+
import "../../../DynamicFilter/index.10f901c6.js";
|
|
58
|
+
import "../../../ScrollBar/index.b77feabd.js";
|
|
59
59
|
import "clsx";
|
|
60
60
|
import "yup";
|
|
61
61
|
import "@hookform/resolvers/yup";
|
|
62
62
|
import "../../../../contexts/RHFormContext/index.3dc6e2f5.js";
|
|
63
|
-
import { D as DraggableWindow } from "../../../../vendor.
|
|
63
|
+
import { D as DraggableWindow } from "../../../../vendor.29969396.js";
|
|
64
64
|
import "../../../LanguagePopover/index.df9b47a6.js";
|
|
65
65
|
import "../../../NoItemSelected/index.9636ec8a.js";
|
|
66
|
-
import "../../../ObjectLogs/index.
|
|
66
|
+
import "../../../ObjectLogs/index.38c2ad18.js";
|
|
67
67
|
import "../../../../react-json-view.57125fcf.js";
|
|
68
68
|
import "../../../PaperForm/index.3cdac885.js";
|
|
69
69
|
import "../../../Page/index.4237c241.js";
|
|
70
70
|
import "../../../PropertyValue/index.dfcfe1ba.js";
|
|
71
71
|
import "../../../../react-splitter-layout.8b1655c8.js";
|
|
72
72
|
import "../../../SplitLayout/index.5a8355d8.js";
|
|
73
|
-
import { a as useAreaStore } from "../../hooks/useArea/index.
|
|
74
|
-
import { W as Window } from "../Window/index.
|
|
73
|
+
import { a as useAreaStore } from "../../hooks/useArea/index.dab7ce20.js";
|
|
74
|
+
import { W as Window } from "../Window/index.8040dbe4.js";
|
|
75
75
|
const WindowPopUp = (props) => {
|
|
76
76
|
const {
|
|
77
77
|
windowProps,
|