@leapdevuk/component-toolbox 0.1.3 → 0.1.5

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/CHANGELOG.md CHANGED
@@ -1,7 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.5 (2026-02-26)
4
+
5
+ ### Bug Fixes
6
+
7
+ - Footer bar correct order of OK, Cancel and Close buttons
8
+
3
9
  ### Features
4
10
 
11
+ ## 0.1.4 (2026-02-17)
12
+
13
+ - DataGrid add params 'getRowClassName' and 'showBorders' to either show or hide borders.
14
+
5
15
  ## 0.1.3 (2026-01-20)
6
16
 
7
17
  - DataGrid fixed issue with column menu not appearing on hover.
@@ -1,4 +1,4 @@
1
- import { GridCallbackDetails, GridColDef, GridColumnVisibilityModel, GridGroupingColDefOverride, GridGroupingColDefOverrideParams, GridInitialState, GridProSlotsComponent, GridRowParams, GridRowSelectionModel, GridSlotProps, GridSlotsComponentsProps, GridValidRowModel } from '@mui/x-data-grid-pro';
1
+ import { GridCallbackDetails, GridColDef, GridColumnVisibilityModel, GridGroupingColDefOverride, GridGroupingColDefOverrideParams, GridInitialState, GridProSlotsComponent, GridRowClassNameParams, GridRowParams, GridRowSelectionModel, GridSlotProps, GridSlotsComponentsProps, GridValidRowModel } from '@mui/x-data-grid-pro';
2
2
  interface IDataGridProps {
3
3
  borderTop?: boolean;
4
4
  checkboxSelection?: boolean;
@@ -8,6 +8,7 @@ interface IDataGridProps {
8
8
  componentsProps?: GridSlotsComponentsProps | undefined;
9
9
  defaultGroupingExpansionDepth?: number;
10
10
  disableMultipleRowSelection?: boolean;
11
+ getRowClassName?: ((params: GridRowClassNameParams<GridValidRowModel>) => string) | undefined;
11
12
  getTreeDataPath?: ((row: GridValidRowModel) => readonly string[]) | undefined;
12
13
  groupingColDef?: GridGroupingColDefOverride<GridValidRowModel> | ((params: GridGroupingColDefOverrideParams) => GridGroupingColDefOverride<GridValidRowModel> | null | undefined) | undefined;
13
14
  height?: any;
@@ -26,6 +27,7 @@ interface IDataGridProps {
26
27
  rowHeight?: number;
27
28
  rows: any[];
28
29
  rowSelectionModel?: GridRowSelectionModel;
30
+ showBorders?: boolean;
29
31
  slots?: Partial<GridProSlotsComponent>;
30
32
  treeData?: boolean;
31
33
  }