@turquoisehealth/pit-viper 2.64.0 → 2.64.2-dev.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/package.json +1 -1
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +9 -5
- package/pv-components/dist/vue/charts/pv-components-charts.js +59 -54
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +67812 -57116
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +60 -55
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +2 -2
- package/pv-components/dist/vue/tables/pv-components-tables.js +41 -41
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +6345 -6339
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +41 -41
|
@@ -41,8 +41,8 @@ declare interface FilterValuesSetHandlerParams<T> {
|
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
export declare interface FocusUpdateEvent {
|
|
44
|
-
focuses
|
|
45
|
-
filterField
|
|
44
|
+
focuses?: string[] | null | undefined;
|
|
45
|
+
filterField?: string | null | undefined;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
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<{
|