@turquoisehealth/pit-viper 2.71.1-dev.2 → 2.71.1-dev.4
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 +1 -1
- package/pv-components/dist/vue/base/pv-components-base.js +2 -2
- package/pv-components/dist/vue/base/pv-components-base.mjs +38 -8
- package/pv-components/dist/vue/base/pv-components-base.umd.js +2 -2
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +8 -2
- package/pv-components/dist/vue/charts/pv-components-charts.js +50 -50
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +11006 -10960
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +50 -50
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +1 -0
- package/pv-components/dist/vue/tables/pv-components-tables.js +34 -34
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +3393 -3362
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +36 -36
- package/pv-components/dist/web/pv-components.iife.js +2 -2
|
@@ -53,14 +53,19 @@ declare type ChartFilterOption = {
|
|
|
53
53
|
filterValues: string[];
|
|
54
54
|
};
|
|
55
55
|
|
|
56
|
-
declare interface
|
|
57
|
-
api: GridApi | null;
|
|
56
|
+
declare interface ChartState {
|
|
58
57
|
seriesField?: string | null;
|
|
59
58
|
chartType?: string | null;
|
|
60
59
|
chartSort?: string | null;
|
|
61
60
|
chartCategoryFields?: string[] | null;
|
|
62
61
|
}
|
|
63
62
|
|
|
63
|
+
declare interface ChartStateChangedEvent {
|
|
64
|
+
api: GridApi | null;
|
|
65
|
+
newState: ChartState | null;
|
|
66
|
+
oldState: ChartState | null;
|
|
67
|
+
}
|
|
68
|
+
|
|
64
69
|
declare interface FilterValueResponseOption {
|
|
65
70
|
value: string;
|
|
66
71
|
label?: string;
|
|
@@ -322,6 +327,7 @@ declare interface PvDataTableProps<T> {
|
|
|
322
327
|
focusableColumns?: string[];
|
|
323
328
|
tableSearchPlaceholder?: string;
|
|
324
329
|
tableSearchStyle?: TableSearchStyle;
|
|
330
|
+
maxHorizontalFilters?: number;
|
|
325
331
|
}
|
|
326
332
|
|
|
327
333
|
export declare const PvDataTableWithChart: <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<{
|