@m4l/components 0.0.63 → 0.1.2

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.
@@ -14,6 +14,7 @@ import { R as RHFDateTime } from "../hook-form/RHFDateTime.js";
14
14
  import "@mui/x-date-pickers";
15
15
  import { R as RHFTextField } from "../hook-form/RHFTextField/index.js";
16
16
  import "../../lodash.js";
17
+ import "react-dropzone";
17
18
  import "../../react-lazy-load-image-component.js";
18
19
  import "../Image/index.js";
19
20
  import "../hook-form/RHFUpload.js";
@@ -1107,7 +1108,6 @@ function ApplyedFilter(props) {
1107
1108
  host_static_assets,
1108
1109
  environment_assets
1109
1110
  } = useEnvironment();
1110
- useModuleDictionary();
1111
1111
  const field = useMemo(() => {
1112
1112
  return getFieldByName(fieldName);
1113
1113
  }, [getFieldByName]);
@@ -1335,7 +1335,6 @@ function InputFilter() {
1335
1335
  closeMenuFields,
1336
1336
  hidePopupEdit
1337
1337
  } = useBase();
1338
- useModuleDictionary();
1339
1338
  const [valueFilter, setValueFilter] = useState("");
1340
1339
  const finalFields = useMemo(() => {
1341
1340
  if (!openAnchorEl) {
@@ -1,8 +1,18 @@
1
1
  import { useState } from "react";
2
- import { Skeleton, IconButton } from "@mui/material";
2
+ import { Skeleton, IconButton, Stack, MenuItem } from "@mui/material";
3
3
  import { I as Image } from "../Image/index.js";
4
4
  import { useLocales } from "@m4l/graphics";
5
- import { jsx, Fragment } from "react/jsx-runtime";
5
+ import "@m4l/core";
6
+ import "../Icon/index.js";
7
+ import "@mui/material/styles";
8
+ import { jsx, jsxs, Fragment } from "react/jsx-runtime";
9
+ import "react-router-dom";
10
+ import "@mui/lab";
11
+ import "../mui_extended/LoadingButton/index.js";
12
+ import { M as MenuPopover } from "../mui_extended/MenuPopover/index.js";
13
+ import "../CommonActions/components/Actions/index.js";
14
+ import "../mui_extended/Pager/index.js";
15
+ import "../mui_extended/Tab/index.js";
6
16
  function LanguagePopover(props) {
7
17
  const {
8
18
  isSkeleton
@@ -16,6 +26,9 @@ function LanguagePopover(props) {
16
26
  const handleOpen = (event) => {
17
27
  setOpen(event.currentTarget);
18
28
  };
29
+ const handleClose = () => {
30
+ setOpen(null);
31
+ };
19
32
  if (isSkeleton) {
20
33
  return /* @__PURE__ */ jsx(Skeleton, {
21
34
  variant: "circular",
@@ -23,8 +36,8 @@ function LanguagePopover(props) {
23
36
  height: 20
24
37
  });
25
38
  }
26
- return /* @__PURE__ */ jsx(Fragment, {
27
- children: /* @__PURE__ */ jsx(IconButton, {
39
+ return /* @__PURE__ */ jsxs(Fragment, {
40
+ children: [/* @__PURE__ */ jsx(IconButton, {
28
41
  onClick: handleOpen,
29
42
  sx: {
30
43
  width: 40,
@@ -37,7 +50,39 @@ function LanguagePopover(props) {
37
50
  src: currentLang.icon,
38
51
  alt: currentLang.label
39
52
  })
40
- })
53
+ }), /* @__PURE__ */ jsx(MenuPopover, {
54
+ open: Boolean(open),
55
+ anchorEl: open,
56
+ onClose: handleClose,
57
+ sx: {
58
+ mt: 1.5,
59
+ ml: 0.75,
60
+ width: 180,
61
+ "& .MuiMenuItem-root": {
62
+ px: 1,
63
+ typography: "body2",
64
+ borderRadius: 0.75
65
+ }
66
+ },
67
+ children: /* @__PURE__ */ jsx(Stack, {
68
+ spacing: 0.75,
69
+ children: allLang.map((option) => /* @__PURE__ */ jsxs(MenuItem, {
70
+ selected: option.value === currentLang.value,
71
+ onClick: () => {
72
+ onChangeLang(option.value);
73
+ handleClose();
74
+ },
75
+ children: [/* @__PURE__ */ jsx(Image, {
76
+ alt: option.label,
77
+ src: option.icon,
78
+ sx: {
79
+ width: 28,
80
+ mr: 2
81
+ }
82
+ }), option.label]
83
+ }, option.value))
84
+ })
85
+ })]
41
86
  });
42
87
  }
43
88
  export { LanguagePopover as L };
@@ -1,5 +1,5 @@
1
- import { styled, useTheme } from "@mui/material/styles";
2
1
  import { Skeleton } from "@mui/material";
2
+ import { styled } from "@mui/material/styles";
3
3
  import { jsxs, Fragment, jsx } from "react/jsx-runtime";
4
4
  import { I as Icon } from "../Icon/index.js";
5
5
  const WrapperPaper = styled("div")(({
@@ -93,7 +93,6 @@ function PaperForm(props) {
93
93
  children,
94
94
  isSkeleton = false
95
95
  } = props;
96
- useTheme();
97
96
  return /* @__PURE__ */ jsx(WrapperPaper, {
98
97
  id: "ContainerPropertyValue",
99
98
  children: !isSkeleton ? /* @__PURE__ */ jsxs(Fragment, {
@@ -2,7 +2,7 @@ import { styled as styled$1, FormHelperText } from "@mui/material";
2
2
  import { useCallback } from "react";
3
3
  import { useFormContext, Controller } from "react-hook-form";
4
4
  import { i as isString_1 } from "../../lodash.js";
5
- import { u as useDropzone } from "../../node_modules.js";
5
+ import { useDropzone } from "react-dropzone";
6
6
  import { styled, alpha } from "@mui/material/styles";
7
7
  import { I as Image } from "../Image/index.js";
8
8
  import { useEnvironment, useModuleDictionary } from "@m4l/core";
@@ -104,9 +104,7 @@ const WrapperImage = styled("div")(({
104
104
  alignItems: "center",
105
105
  maxWidth: theme.spacing(20)
106
106
  }));
107
- styled("div")(({
108
- theme
109
- }) => ({
107
+ styled("div")(() => ({
110
108
  width: "100%",
111
109
  height: "100%",
112
110
  position: "absolute",
@@ -204,9 +202,7 @@ function UploadImage({
204
202
  }), helperText && helperText]
205
203
  });
206
204
  }
207
- const WrapperRHFUploadImage = styled$1("div")(({
208
- theme
209
- }) => ({
205
+ const WrapperRHFUploadImage = styled$1("div")(() => ({
210
206
  width: "inherit",
211
207
  height: "inherit",
212
208
  padding: "1px"
package/index.js CHANGED
@@ -57,13 +57,14 @@ import "react/jsx-runtime";
57
57
  import "@m4l/core";
58
58
  import "react-hook-form";
59
59
  import "./node_modules.js";
60
- import "prop-types";
61
60
  import "@mui/material/styles";
62
61
  import "@mui/x-date-pickers";
63
62
  import "./lodash.js";
64
63
  import "./commonjs.js";
65
64
  import "react-dom";
65
+ import "prop-types";
66
66
  import "clsx";
67
+ import "react-dropzone";
67
68
  import "./react-lazy-load-image-component.js";
68
69
  import "react-router-dom";
69
70
  import "@mui/lab";