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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "basesite-shared-grid-lib",
3
- "version": "21.0.0-beta.7",
3
+ "version": "21.0.0-beta.8",
4
4
  "author": "Basesite Team",
5
5
  "description": "A shared grid library developed by Basesite for its developers and partners",
6
6
  "homepage": "https://basesite.com",
@@ -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;