@turquoisehealth/pit-viper 2.66.1-dev.1 → 2.66.1-dev.3
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 +39 -7
- package/pv-components/dist/vue/charts/pv-components-charts.js +54 -54
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +20742 -20656
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +57 -57
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +9 -1
- package/pv-components/dist/vue/tables/pv-components-tables.js +33 -33
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +4245 -4225
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +32 -32
|
@@ -15,6 +15,7 @@ import { IServerSideGetRowsParams } from 'ag-grid-enterprise';
|
|
|
15
15
|
import { IsGroupOpenByDefaultParams } from 'ag-grid-community';
|
|
16
16
|
import { IsServerSideGroupOpenByDefaultParams } from 'ag-grid-community';
|
|
17
17
|
import { PublicProps } from 'vue';
|
|
18
|
+
import { Ref } from 'vue';
|
|
18
19
|
import { RefreshServerSideParams } from 'ag-grid-community';
|
|
19
20
|
import { ShallowUnwrapRef } from 'vue';
|
|
20
21
|
import { SortChangedEvent } from 'ag-grid-community';
|
|
@@ -70,7 +71,9 @@ export declare const PvDataTable: <T>(__VLS_props: NonNullable<Awaited<typeof __
|
|
|
70
71
|
props: __VLS_PrettifyLocal<any & PvDataTableProps<T> & Partial<{}>> & PublicProps;
|
|
71
72
|
expose(exposed: ShallowUnwrapRef<PvDataTablePublicInterface>): void;
|
|
72
73
|
attrs: any;
|
|
73
|
-
slots: {
|
|
74
|
+
slots: {
|
|
75
|
+
'top-slot'?(_: {}): any;
|
|
76
|
+
};
|
|
74
77
|
emit: {
|
|
75
78
|
(e: "column-moved", event: ColumnMovedEvent<T>): void;
|
|
76
79
|
(e: "column-resized", event: ColumnResizedEvent<T>): void;
|
|
@@ -152,6 +155,10 @@ declare interface PvDataTableProps<T> {
|
|
|
152
155
|
* Display input to search within the table
|
|
153
156
|
*/
|
|
154
157
|
enableTableSearch?: boolean;
|
|
158
|
+
/**
|
|
159
|
+
* Allows for slot content to be placed above the chart
|
|
160
|
+
*/
|
|
161
|
+
enableTopSlot?: boolean;
|
|
155
162
|
/**
|
|
156
163
|
* Display button to open the vertical filter drawer
|
|
157
164
|
*/
|
|
@@ -258,6 +265,7 @@ declare interface PvDataTablePublicInterface {
|
|
|
258
265
|
getFilterValueSelectedMetadataMap: () => Record<string, (FilterValueResponseOption | null)[]>;
|
|
259
266
|
availableRowGroupColumns: ComputedRef<ColDef[]>;
|
|
260
267
|
availableAggFuncColumns: ComputedRef<ColDef[]>;
|
|
268
|
+
rowGroupColumnFields: Ref<string[]>;
|
|
261
269
|
}
|
|
262
270
|
|
|
263
271
|
declare interface QueryBuilderSuggestionMenuOption extends MenuOption {
|