@turquoisehealth/pit-viper 2.63.1-dev.3 → 2.63.1-dev.5
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 +6 -2
- package/pv-components/dist/vue/charts/pv-components-charts.js +2 -2
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +8 -4
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +2 -2
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +2 -2
- package/pv-components/dist/vue/tables/pv-components-tables.js +2 -2
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +3 -3
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +2 -2
package/package.json
CHANGED
|
@@ -66,8 +66,8 @@ declare interface FilterValuesSetHandlerParams<T> {
|
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
declare interface FocusUpdateEvent {
|
|
69
|
-
focuses
|
|
70
|
-
filterField
|
|
69
|
+
focuses?: string[] | null | undefined;
|
|
70
|
+
filterField?: string | null | undefined;
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
declare type MapTopologyType = "state" | "city" | "county" | "cbsa" | "zip_code";
|
|
@@ -289,6 +289,10 @@ export declare const PvDataTableWithChart: <T>(__VLS_props: NonNullable<Awaited<
|
|
|
289
289
|
getCsvData: () => Promise<string | null> | undefined;
|
|
290
290
|
refreshData: (params?: RefreshServerSideParams | null) => Promise<void> | undefined;
|
|
291
291
|
getFilterValueSelectedMetadataMap: () => Record<string, (FilterValueResponseOption | null)[]> | undefined;
|
|
292
|
+
getFocusState: () => {
|
|
293
|
+
focuses: string[];
|
|
294
|
+
focusType: string | null;
|
|
295
|
+
};
|
|
292
296
|
}>): void;
|
|
293
297
|
attrs: any;
|
|
294
298
|
slots: {};
|