@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.
- package/package.json +1 -1
- package/pv-components/dist/vue/base/pv-components-base.d.ts +3 -3
- package/pv-components/dist/vue/base/pv-components-base.js +14 -14
- package/pv-components/dist/vue/base/pv-components-base.mjs +410 -405
- package/pv-components/dist/vue/base/pv-components-base.umd.js +8 -8
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +11 -2
- package/pv-components/dist/vue/charts/pv-components-charts.js +51 -51
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +20486 -20092
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +51 -51
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +9 -2
- package/pv-components/dist/vue/tables/pv-components-tables.js +41 -41
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +6581 -6522
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +40 -40
- package/pv-components/dist/web/pv-components.iife.js +17 -17
|
@@ -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
|
-
*
|
|
183
|
+
* If true, hide all row-grouped columns from the table.
|
|
183
184
|
*/
|
|
184
|
-
|
|
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 { }
|