@m4l/components 0.0.7 → 0.0.8
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/dist/components/DataGrid/components/Actions/types.d.ts +1 -1
- package/dist/components/DataGrid/contexts/BaseContext/types.d.ts +1 -1
- package/dist/components/DataGrid/index.js +5 -3
- package/dist/components/DataGrid/types.d.ts +1 -1
- package/dist/components/FormActions/types.d.ts +1 -1
- package/dist/components/ModalDialog/components/Header/types.d.ts +1 -1
- package/dist/index.js +0 -1
- package/dist/vendor.js +0 -1
- package/package.json +1 -1
|
@@ -6,11 +6,13 @@ import { HTML5Backend } from "react-dnd-html5-backend";
|
|
|
6
6
|
import { SvgIcon, Checkbox, InputBase, Skeleton } from "@mui/material";
|
|
7
7
|
import { jsx, jsxs, Fragment } from "react/jsx-runtime";
|
|
8
8
|
import { voidFunction, useModuleDictionary, useEnvironment } from "@m4l/core";
|
|
9
|
-
import
|
|
9
|
+
import "@mui/material/Box";
|
|
10
|
+
import "../mui_extended/MenuPopover/index.js";
|
|
11
|
+
import "react-router-dom";
|
|
12
|
+
import { M as MenuActions } from "../mui_extended/MenuActions/index.js";
|
|
10
13
|
import { P as Pager, g as getPagerComponentsDictionary, d as defaultPagerDictionary } from "../mui_extended/Pager/index.js";
|
|
11
14
|
import { I as IconButton } from "../mui_extended/IconButton/index.js";
|
|
12
15
|
import { u as useModal } from "../../hooks/useModal/index.js";
|
|
13
|
-
import { M as MenuActions$1 } from "../mui_extended/MenuActions/index.js";
|
|
14
16
|
import { u as useResponsiveDesktop } from "../../vendor.js";
|
|
15
17
|
import { g as getModalDialogComponentsDictionary, d as defaultModalDialogDictionary } from "../ModalDialog/index.js";
|
|
16
18
|
import { format } from "date-fns";
|
|
@@ -1478,7 +1480,7 @@ function Density() {
|
|
|
1478
1480
|
}
|
|
1479
1481
|
return /* @__PURE__ */ jsx(WrapperDensity, {
|
|
1480
1482
|
id: "WrapperDensity",
|
|
1481
|
-
children: /* @__PURE__ */ jsx(MenuActions
|
|
1483
|
+
children: /* @__PURE__ */ jsx(MenuActions, {
|
|
1482
1484
|
arrow: "right-top",
|
|
1483
1485
|
anchorOrigin: {
|
|
1484
1486
|
vertical: "top",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { MenuAction } from '@mui_extended/MenuActions/types';
|
|
3
2
|
import { Column } from 'react-data-grid';
|
|
3
|
+
import { MenuAction } from '../mui_extended';
|
|
4
4
|
import { ActionsProps } from './components/Actions/types';
|
|
5
5
|
export declare type ColumnType = 'text' | 'date' | 'number' | 'boolean' | 'custom';
|
|
6
6
|
export declare type ColumnAlign = 'left' | 'center' | 'right';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ModalOpenOptions } from "
|
|
1
|
+
import { ModalOpenOptions } from "../../contexts/ModalContext/types";
|
|
2
2
|
declare type ImodalOpt = Pick<ModalOpenOptions, 'actionComponents' | 'standardActions'>;
|
|
3
3
|
export interface ActionsProps extends ImodalOpt {
|
|
4
4
|
variant?: string | undefined;
|
package/dist/index.js
CHANGED
package/dist/vendor.js
CHANGED
|
@@ -12,7 +12,6 @@ import useMediaQuery from "@mui/material/useMediaQuery";
|
|
|
12
12
|
import { i as initialPagerState } from "./components/DataGrid/index.js";
|
|
13
13
|
import "react-dnd";
|
|
14
14
|
import "react-dnd-html5-backend";
|
|
15
|
-
import "@mui_extended";
|
|
16
15
|
import "./contexts/ModalContext/index.js";
|
|
17
16
|
import "@mui/x-date-pickers";
|
|
18
17
|
import "@mui/lab/AdapterDateFns";
|