@turquoisehealth/pit-viper 2.71.1-dev.3 → 2.72.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/_site/assets/css/pit-viper-v2-scoped.css +24 -0
- package/_site/assets/css/pit-viper-v2.css +27 -0
- package/_site/assets/css/pit-viper.css +27 -0
- package/package.json +1 -1
- package/pv-components/dist/vue/base/pv-components-base.d.ts +1 -1
- package/pv-components/dist/vue/base/pv-components-base.js +3 -3
- package/pv-components/dist/vue/base/pv-components-base.mjs +40 -10
- package/pv-components/dist/vue/base/pv-components-base.umd.js +3 -3
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +7 -94
- package/pv-components/dist/vue/charts/pv-components-charts.js +56 -57
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +24683 -26636
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +57 -58
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +1 -59
- package/pv-components/dist/vue/tables/pv-components-tables.js +48 -49
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +6813 -8659
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +48 -49
- package/pv-components/dist/web/pv-components.iife.js +2 -2
|
@@ -3,7 +3,6 @@ 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 { Component } from 'vue';
|
|
7
6
|
import { ComputedRef } from 'vue';
|
|
8
7
|
import { FilterChangedEvent } from 'ag-grid-enterprise';
|
|
9
8
|
import { FilterModel } from 'ag-grid-enterprise';
|
|
@@ -15,7 +14,6 @@ import { IServerSideGetRowsParams } from 'ag-grid-enterprise';
|
|
|
15
14
|
import { IsGroupOpenByDefaultParams } from 'ag-grid-community';
|
|
16
15
|
import { IsServerSideGroupOpenByDefaultParams } from 'ag-grid-community';
|
|
17
16
|
import { PublicProps } from 'vue';
|
|
18
|
-
import { Ref } from 'vue';
|
|
19
17
|
import { RefreshServerSideParams } from 'ag-grid-community';
|
|
20
18
|
import { ShallowUnwrapRef } from 'vue';
|
|
21
19
|
import { SortChangedEvent } from 'ag-grid-community';
|
|
@@ -47,33 +45,11 @@ export declare interface FocusUpdateEvent {
|
|
|
47
45
|
filterField?: string | null | undefined;
|
|
48
46
|
}
|
|
49
47
|
|
|
50
|
-
declare interface MenuOption {
|
|
51
|
-
id: string;
|
|
52
|
-
text: string;
|
|
53
|
-
subText?: string;
|
|
54
|
-
secondaryText?: string | number;
|
|
55
|
-
icon?: string;
|
|
56
|
-
companyName?: string;
|
|
57
|
-
avatar?: {
|
|
58
|
-
initials?: string;
|
|
59
|
-
image?: string;
|
|
60
|
-
icon?: boolean;
|
|
61
|
-
};
|
|
62
|
-
groupingLabel?: string;
|
|
63
|
-
disabled?: boolean;
|
|
64
|
-
renderer?: Component;
|
|
65
|
-
rendererProps?: any;
|
|
66
|
-
classList?: string[];
|
|
67
|
-
searchText?: string;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
48
|
export declare const PvDataTable: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
71
49
|
props: __VLS_PrettifyLocal<any & PvDataTableProps<T> & Partial<{}>> & PublicProps;
|
|
72
50
|
expose(exposed: ShallowUnwrapRef<PvDataTablePublicInterface>): void;
|
|
73
51
|
attrs: any;
|
|
74
|
-
slots: {
|
|
75
|
-
'top-slot'?(_: {}): any;
|
|
76
|
-
};
|
|
52
|
+
slots: {};
|
|
77
53
|
emit: {
|
|
78
54
|
(e: "column-moved", event: ColumnMovedEvent<T>): void;
|
|
79
55
|
(e: "column-resized", event: ColumnResizedEvent<T>): void;
|
|
@@ -107,10 +83,6 @@ declare interface PvDataTableProps<T> {
|
|
|
107
83
|
* Handler to fetch filter values for server-side filtering. Only used for server-side row model.
|
|
108
84
|
*/
|
|
109
85
|
filterValuesSetHandler?: (params: FilterValuesSetHandlerParams<T>) => Promise<(FilterValueResponseOption | null)[]>;
|
|
110
|
-
/**
|
|
111
|
-
* Handler to return suggestions for applying search terms to the table.
|
|
112
|
-
*/
|
|
113
|
-
tableSearchHandler?: (params: TableSearchHandlerParams<T>) => Promise<(QueryBuilderSuggestionMenuOption | null)[]>;
|
|
114
86
|
/**
|
|
115
87
|
* Specifies an initial set of filters/groups/sort/etc. to be applied to the table.
|
|
116
88
|
*/
|
|
@@ -151,14 +123,6 @@ declare interface PvDataTableProps<T> {
|
|
|
151
123
|
* Display button to group by columns
|
|
152
124
|
*/
|
|
153
125
|
enableGroupBySelector?: boolean;
|
|
154
|
-
/**
|
|
155
|
-
* Display input to search within the table
|
|
156
|
-
*/
|
|
157
|
-
enableTableSearch?: boolean;
|
|
158
|
-
/**
|
|
159
|
-
* Allows for slot content to be placed above the chart
|
|
160
|
-
*/
|
|
161
|
-
enableTopSlot?: boolean;
|
|
162
126
|
/**
|
|
163
127
|
* Display button to open the vertical filter drawer
|
|
164
128
|
*/
|
|
@@ -255,8 +219,6 @@ declare interface PvDataTableProps<T> {
|
|
|
255
219
|
* List of column fields that can be focused
|
|
256
220
|
*/
|
|
257
221
|
focusableColumns?: string[];
|
|
258
|
-
tableSearchPlaceholder?: string;
|
|
259
|
-
tableSearchStyle?: TableSearchStyle;
|
|
260
222
|
}
|
|
261
223
|
|
|
262
224
|
declare interface PvDataTablePublicInterface {
|
|
@@ -265,26 +227,6 @@ declare interface PvDataTablePublicInterface {
|
|
|
265
227
|
getFilterValueSelectedMetadataMap: () => Record<string, (FilterValueResponseOption | null)[]>;
|
|
266
228
|
availableRowGroupColumns: ComputedRef<ColDef[]>;
|
|
267
229
|
availableAggFuncColumns: ComputedRef<ColDef[]>;
|
|
268
|
-
rowGroupColumnFields: Ref<string[]>;
|
|
269
230
|
}
|
|
270
231
|
|
|
271
|
-
declare interface QueryBuilderSuggestionMenuOption extends MenuOption {
|
|
272
|
-
queryTerm?: QueryTerm;
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
declare interface QueryTerm {
|
|
276
|
-
queryField?: string;
|
|
277
|
-
queryDisplayField?: string;
|
|
278
|
-
exactMatch?: boolean;
|
|
279
|
-
queryText?: string;
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
declare interface TableSearchHandlerParams<T> {
|
|
283
|
-
api: GridApi<T>;
|
|
284
|
-
filterModel?: FilterModel | null;
|
|
285
|
-
query?: string;
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
declare type TableSearchStyle = "query-builder" | "text";
|
|
289
|
-
|
|
290
232
|
export { }
|