basesite-shared-grid-lib 21.0.0-beta.7 → 21.0.0-beta.8
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/basesite-shared-grid-lib-21.0.0-beta.8.tgz +0 -0
- package/fesm2022/basesite-shared-grid-lib.mjs +16 -2
- package/fesm2022/basesite-shared-grid-lib.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/styles/styles.scss +9 -0
- package/types/basesite-shared-grid-lib.d.ts +2 -0
- package/basesite-shared-grid-lib-21.0.0-beta.7.tgz +0 -0
package/package.json
CHANGED
|
@@ -306,6 +306,15 @@ button.btn.btn-white {
|
|
|
306
306
|
overflow: unset !important;
|
|
307
307
|
}
|
|
308
308
|
|
|
309
|
+
//Fill the empty space on the right when the scrollable columns don't span the full grid width
|
|
310
|
+
.shared-grid-lib .ag-center-cols-container {
|
|
311
|
+
min-width: 100%;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.shared-grid-lib .ag-center-cols-container .ag-row {
|
|
315
|
+
min-width: 100%;
|
|
316
|
+
}
|
|
317
|
+
|
|
309
318
|
|
|
310
319
|
/*pagination css*/
|
|
311
320
|
|
|
@@ -93,6 +93,7 @@ declare class GridLibraryComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
93
93
|
private readonly _Tool_Owner;
|
|
94
94
|
private readonly _Area_Coordinator;
|
|
95
95
|
private readonly _TiPm;
|
|
96
|
+
private readonly _restrictedColumnsBySite;
|
|
96
97
|
private unsubscribe$;
|
|
97
98
|
private pageNumber;
|
|
98
99
|
currentPage: number;
|
|
@@ -119,6 +120,7 @@ declare class GridLibraryComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
119
120
|
colDefInit: boolean;
|
|
120
121
|
getColDef(): void;
|
|
121
122
|
private _getColumnVisiblityStatus;
|
|
123
|
+
private _isColumnRestricted;
|
|
122
124
|
private _mapColumnDef;
|
|
123
125
|
private _getFillFilterValues;
|
|
124
126
|
private _buildFillValueLabelMap;
|
|
Binary file
|