@nethru/ui 1.0.64 → 1.0.65

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.
Files changed (2) hide show
  1. package/dist/DataGrid.js +2 -2
  2. package/package.json +1 -1
package/dist/DataGrid.js CHANGED
@@ -52,7 +52,7 @@ export default function DataGrid({
52
52
  columns,
53
53
  rows,
54
54
  customToolbar = /*#__PURE__*/_jsx(_Fragment, {}),
55
- customGridCellMap = {},
55
+ customGridCellMap,
56
56
  slots = {},
57
57
  slotProps,
58
58
  initialState,
@@ -112,7 +112,7 @@ export default function DataGrid({
112
112
  },
113
113
  slots: {
114
114
  toolbar: hideToolbar ? null : CustomToolbar,
115
- cell: CustomGridCell,
115
+ cell: customGridCellMap ? CustomGridCell : undefined,
116
116
  ...slots
117
117
  },
118
118
  slotProps: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nethru/ui",
3
- "version": "1.0.64",
3
+ "version": "1.0.65",
4
4
  "main": "dist/index.js",
5
5
  "files": [
6
6
  "/dist"