@turquoisehealth/pit-viper 2.60.0 → 2.61.1-dev.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.
@@ -3,6 +3,7 @@ import { Column } from 'ag-grid-enterprise';
3
3
  import { ColumnMovedEvent } from 'ag-grid-enterprise';
4
4
  import { ColumnResizedEvent } from 'ag-grid-enterprise';
5
5
  import { ColumnRowGroupChangedEvent } from 'ag-grid-enterprise';
6
+ import { ComputedRef } from 'vue';
6
7
  import { FilterChangedEvent } from 'ag-grid-enterprise';
7
8
  import { FilterModel } from 'ag-grid-enterprise';
8
9
  import { FirstDataRenderedEvent } from 'ag-grid-community';
@@ -179,12 +180,16 @@ declare interface PvDataTableProps<T> {
179
180
  */
180
181
  debugMode?: boolean;
181
182
  /**
182
- * Enables pagination
183
+ * If true, hide all row-grouped columns from the table.
183
184
  */
184
- leftPinnedColumnName?: string;
185
+ hideAllRowGroupedColumns?: boolean;
185
186
  /**
186
187
  * Specifies the column to pin to the left of the table if at least one row grouping is enabled.
187
188
  */
189
+ leftPinnedColumnName?: string;
190
+ /**
191
+ * Enables pagination
192
+ */
188
193
  pagination?: boolean;
189
194
  /**
190
195
  * Set the pagination page size. Defaults to 50.
@@ -216,6 +221,8 @@ declare interface PvDataTablePublicInterface {
216
221
  getCsvData: () => Promise<string | null>;
217
222
  refreshData: (params?: RefreshServerSideParams | null) => Promise<void>;
218
223
  getFilterValueSelectedMetadataMap: () => Record<string, (FilterValueResponseOption | null)[]>;
224
+ availableRowGroupColumns: ComputedRef<ColDef[]>;
225
+ availableAggFuncColumns: ComputedRef<ColDef[]>;
219
226
  }
220
227
 
221
228
  export { }