@linzjs/step-ag-grid 17.13.0 → 18.1.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.
- package/dist/index.css +8 -0
- package/dist/src/components/Grid.d.ts +2 -0
- package/dist/src/index.d.ts +0 -1
- package/dist/step-ag-grid.cjs.js +55959 -25655
- package/dist/step-ag-grid.cjs.js.map +1 -1
- package/dist/step-ag-grid.esm.js +55996 -25641
- package/dist/step-ag-grid.esm.js.map +1 -1
- package/package.json +20 -20
- package/src/components/Grid.tsx +4 -0
- package/src/index.ts +0 -1
- package/src/stories/grid/GridPinnedRow.stories.tsx +105 -0
- package/src/stories/grid/GridReadOnly.stories.tsx +0 -19
- package/src/styles/Grid.scss +9 -0
package/dist/index.css
CHANGED
|
@@ -400,6 +400,14 @@
|
|
|
400
400
|
max-width: 400px;
|
|
401
401
|
}
|
|
402
402
|
|
|
403
|
+
.ag-floating-top-container .ag-row {
|
|
404
|
+
background-color: #f9f9f9;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
.ag-floating-bottom-container .ag-row {
|
|
408
|
+
background-color: #f9f9f9;
|
|
409
|
+
}
|
|
410
|
+
|
|
403
411
|
.GridCell-container {
|
|
404
412
|
overflow: hidden;
|
|
405
413
|
text-overflow: ellipsis;
|
|
@@ -71,6 +71,8 @@ export interface GridProps {
|
|
|
71
71
|
singleClickEdit?: boolean;
|
|
72
72
|
loading?: boolean;
|
|
73
73
|
suppressCellFocus?: boolean;
|
|
74
|
+
pinnedTopRowData?: GridOptions["pinnedTopRowData"];
|
|
75
|
+
pinnedBottomRowData?: GridOptions["pinnedBottomRowData"];
|
|
74
76
|
}
|
|
75
77
|
/**
|
|
76
78
|
* Wrapper for AgGrid to add commonly used functionality.
|
package/dist/src/index.d.ts
CHANGED