@linzjs/step-ag-grid 17.12.0 → 18.0.0

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.
@@ -288,7 +288,11 @@ $grid-base-font-size: calc(#{lui.$base-font-size} - 1px);
288
288
  font-size: 14px;
289
289
  }
290
290
 
291
- .ag-row .ag-cell[aria-colindex="1"] {
291
+ .ag-row .ag-cell:first-of-type {
292
292
  padding-left: 32px;
293
293
  }
294
+
295
+ .ag-row .ag-cell:last-of-type {
296
+ padding-right: 32px;
297
+ }
294
298
  }
@@ -21,6 +21,7 @@ export interface GridProps {
21
21
  */
22
22
  selectColumnPinned?: ColDef["pinned"];
23
23
  noRowsOverlayText?: string;
24
+ noRowsMatchingOverlayText?: string;
24
25
  animateRows?: boolean;
25
26
  rowHeight?: number;
26
27
  rowClassRules?: GridOptions["rowClassRules"];
@@ -3,6 +3,7 @@ export interface GridNoRowsOverlayProps {
3
3
  rowCount: number | undefined | null;
4
4
  filteredRowCount: number;
5
5
  noRowsOverlayText: string | undefined;
6
+ noRowsMatchingOverlayText: string | undefined;
6
7
  headerRowHeight: number;
7
8
  }
8
9
  export declare const GridNoRowsOverlay: (props: GridNoRowsOverlayProps) => import("react/jsx-runtime").JSX.Element;
@@ -15,4 +15,3 @@ export * from "./react-menu3/types";
15
15
  export * from "./utils/bearing";
16
16
  export * from "./utils/util";
17
17
  export * from "./utils/deferredPromise";
18
- export * from "./utils/testUtil";