@nethru/ui 1.0.78 → 1.0.80

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/DataGrid.js CHANGED
@@ -101,6 +101,7 @@ export default function DataGrid({
101
101
  autoHeight: true,
102
102
  pagination: true,
103
103
  disableColumnMenu: true,
104
+ disableColumnReorder: true,
104
105
  disableRowSelectionOnClick: true,
105
106
  getRowClassName: params => params.indexRelativeToCurrentPage % 2 === 0 ? '' : 'odd',
106
107
  columnVisibilityModel: columnVisibilityModel,
package/dist/Section.js CHANGED
@@ -1,11 +1,13 @@
1
1
  import { Paper } from "@mui/material";
2
+ import { forwardRef } from "react";
2
3
  import { jsx as _jsx } from "react/jsx-runtime";
3
- export default function Section({
4
+ const Section = /*#__PURE__*/forwardRef(({
4
5
  children,
5
6
  sx,
6
7
  ...props
7
- }) {
8
+ }, ref) => {
8
9
  return /*#__PURE__*/_jsx(Paper, {
10
+ ref: ref,
9
11
  variant: "outlined",
10
12
  square: false,
11
13
  sx: {
@@ -16,4 +18,5 @@ export default function Section({
16
18
  ...props,
17
19
  children: children
18
20
  });
19
- }
21
+ });
22
+ export default Section;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nethru/ui",
3
- "version": "1.0.78",
3
+ "version": "1.0.80",
4
4
  "main": "dist/index.js",
5
5
  "files": [
6
6
  "/dist"