@turquoisehealth/pit-viper 2.77.1-dev.1 → 2.77.2
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 +13 -0
- package/pv-components/dist/vue/charts/pv-components-charts.js +1 -1
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +5 -3
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +9 -9
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +7 -0
- package/pv-components/dist/vue/tables/pv-components-tables.js +1 -1
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +4 -3
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +1 -1
|
@@ -5,6 +5,7 @@ import { ColumnResizedEvent } from 'ag-grid-enterprise';
|
|
|
5
5
|
import { ColumnRowGroupChangedEvent } from 'ag-grid-enterprise';
|
|
6
6
|
import { Component } from 'vue';
|
|
7
7
|
import { ComputedRef } from 'vue';
|
|
8
|
+
import { CSSProperties } from 'vue';
|
|
8
9
|
import { FilterChangedEvent } from 'ag-grid-enterprise';
|
|
9
10
|
import { FilterModel } from 'ag-grid-enterprise';
|
|
10
11
|
import { FirstDataRenderedEvent } from 'ag-grid-community';
|
|
@@ -259,6 +260,12 @@ declare interface PvDataTableProps<T> {
|
|
|
259
260
|
tableSearchStyle?: TableSearchStyle;
|
|
260
261
|
maxHorizontalFilters?: number;
|
|
261
262
|
maintainColumnOrder?: boolean;
|
|
263
|
+
/**
|
|
264
|
+
* Custom CSS Properties
|
|
265
|
+
*/
|
|
266
|
+
customCssProperties?: {
|
|
267
|
+
agGridWrapper: CSSProperties;
|
|
268
|
+
};
|
|
262
269
|
}
|
|
263
270
|
|
|
264
271
|
declare interface PvDataTablePublicInterface {
|