@turquoisehealth/pit-viper 2.59.0 → 2.61.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/package.json +1 -1
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +11 -2
- package/pv-components/dist/vue/charts/pv-components-charts.js +11 -11
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +445 -438
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +12 -12
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +11 -2
- package/pv-components/dist/vue/tables/pv-components-tables.js +10 -10
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +279 -277
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +10 -10
|
@@ -11,6 +11,7 @@ import { GridReadyEvent } from 'ag-grid-community';
|
|
|
11
11
|
import { GridState } from 'ag-grid-enterprise';
|
|
12
12
|
import { IServerSideGetRowsParams } from 'ag-grid-enterprise';
|
|
13
13
|
import { IsGroupOpenByDefaultParams } from 'ag-grid-community';
|
|
14
|
+
import { IsServerSideGroupOpenByDefaultParams } from 'ag-grid-community';
|
|
14
15
|
import { PublicProps } from 'vue';
|
|
15
16
|
import { RefreshServerSideParams } from 'ag-grid-community';
|
|
16
17
|
import { ShallowUnwrapRef } from 'vue';
|
|
@@ -137,6 +138,10 @@ declare interface PvDataTableProps<T> {
|
|
|
137
138
|
* A handler to determine if a group should be open by default dynamically.
|
|
138
139
|
*/
|
|
139
140
|
isClientSideGroupOpenByDefault?: (params: IsGroupOpenByDefaultParams) => boolean;
|
|
141
|
+
/**
|
|
142
|
+
* A handler to determine whether a group should be open by default.
|
|
143
|
+
*/
|
|
144
|
+
isServerSideGroupOpenByDefault?: (params: IsServerSideGroupOpenByDefaultParams) => boolean;
|
|
140
145
|
/**
|
|
141
146
|
* Display button to export table data as CSV
|
|
142
147
|
*/
|
|
@@ -174,12 +179,16 @@ declare interface PvDataTableProps<T> {
|
|
|
174
179
|
*/
|
|
175
180
|
debugMode?: boolean;
|
|
176
181
|
/**
|
|
177
|
-
*
|
|
182
|
+
* If true, hide all row-grouped columns from the table.
|
|
178
183
|
*/
|
|
179
|
-
|
|
184
|
+
hideAllRowGroupedColumns?: boolean;
|
|
180
185
|
/**
|
|
181
186
|
* Specifies the column to pin to the left of the table if at least one row grouping is enabled.
|
|
182
187
|
*/
|
|
188
|
+
leftPinnedColumnName?: string;
|
|
189
|
+
/**
|
|
190
|
+
* Enables pagination
|
|
191
|
+
*/
|
|
183
192
|
pagination?: boolean;
|
|
184
193
|
/**
|
|
185
194
|
* Set the pagination page size. Defaults to 50.
|