@turquoisehealth/pit-viper 2.197.3-dev.1 → 2.197.3-dev.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/stats/vue/visualizations/stats.html +1 -1
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/PvDataTableWithChart.vue.d.ts +7 -4
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +4 -1
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AdvancedFilterModel, ColumnMovedEvent, ColumnResizedEvent, ColumnRowGroupChangedEvent, FilterChangedEvent, FilterModel } from 'ag-grid-enterprise';
|
|
2
2
|
import { FirstDataRenderedEvent, GridReadyEvent, RefreshServerSideParams, SortChangedEvent } from 'ag-grid-community';
|
|
3
|
-
import { ChartStateChangedEvent,
|
|
3
|
+
import { ChartStateChangedEvent, FilterValueResponseOption, FocusUpdateEvent } from '../../tables/PvDataTable/types';
|
|
4
4
|
import { PvDataTableWithChartProps } from './types';
|
|
5
5
|
import { VNodeProps, AllowedComponentProps, ComponentCustomProps, PublicProps, ShallowUnwrapRef, VNode } from 'vue';
|
|
6
6
|
declare const _default: <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<{
|
|
@@ -26,9 +26,12 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
26
26
|
}) => Promise<string> | undefined;
|
|
27
27
|
getCsvData: () => Promise<string | null> | undefined;
|
|
28
28
|
refreshData: (params?: RefreshServerSideParams | null) => Promise<void> | undefined;
|
|
29
|
-
getFilterValueSelectedMetadataMap:
|
|
30
|
-
|
|
31
|
-
|
|
29
|
+
getFilterValueSelectedMetadataMap: {
|
|
30
|
+
(): Record<string, (FilterValueResponseOption | null)[]> | undefined;
|
|
31
|
+
(options: {
|
|
32
|
+
hydrate: true;
|
|
33
|
+
}): Promise<Record<string, (FilterValueResponseOption | null)[]>> | undefined;
|
|
34
|
+
};
|
|
32
35
|
getPvFilterModel: () => AdvancedFilterModel | FilterModel | null | undefined;
|
|
33
36
|
setPvFilterModel: (model: FilterModel | AdvancedFilterModel | null) => boolean | undefined;
|
|
34
37
|
}>): void;
|
|
@@ -9162,11 +9162,14 @@ var td = (e, t) => {
|
|
|
9162
9162
|
}, ut = (e) => {
|
|
9163
9163
|
p.value && (p.value.setRowGroupColumns(e ? j.value : []), re.value = e);
|
|
9164
9164
|
};
|
|
9165
|
+
function ft(e) {
|
|
9166
|
+
return e?.hydrate ? m.value?.getFilterValueSelectedMetadataMap({ hydrate: !0 }) : m.value?.getFilterValueSelectedMetadataMap();
|
|
9167
|
+
}
|
|
9165
9168
|
return n({
|
|
9166
9169
|
getChartImageDataURL: (e) => h.value?.getChartImageDataURL(e),
|
|
9167
9170
|
getCsvData: () => m.value?.getCsvData(),
|
|
9168
9171
|
refreshData: (e) => (p.value && Ve(p.value), m.value?.refreshData(e)),
|
|
9169
|
-
getFilterValueSelectedMetadataMap:
|
|
9172
|
+
getFilterValueSelectedMetadataMap: ft,
|
|
9170
9173
|
getPvFilterModel: () => m.value?.getPvFilterModel(),
|
|
9171
9174
|
setPvFilterModel: (e) => m.value?.setPvFilterModel(e)
|
|
9172
9175
|
}), S(() => {
|