@turquoisehealth/pit-viper 2.53.0 → 2.54.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/base/pv-components-base.d.ts +17 -9
- package/pv-components/dist/vue/base/pv-components-base.js +19 -19
- package/pv-components/dist/vue/base/pv-components-base.mjs +2243 -2151
- package/pv-components/dist/vue/base/pv-components-base.umd.js +19 -19
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +8 -0
- package/pv-components/dist/vue/charts/pv-components-charts.js +45 -45
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +12980 -12894
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +49 -49
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +6 -0
- package/pv-components/dist/vue/tables/pv-components-tables.js +36 -36
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +4826 -4776
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +36 -36
- package/pv-components/dist/web/pv-components.iife.js +24 -24
|
@@ -62,6 +62,11 @@ declare interface FilterValuesSetHandlerParams<T> {
|
|
|
62
62
|
query?: string;
|
|
63
63
|
}
|
|
64
64
|
|
|
65
|
+
declare interface FocusUpdateEvent {
|
|
66
|
+
focuses: string[];
|
|
67
|
+
filterField: string | null;
|
|
68
|
+
}
|
|
69
|
+
|
|
65
70
|
declare type MapTopologyType = "state" | "city" | "county" | "cbsa" | "zip_code";
|
|
66
71
|
|
|
67
72
|
export declare const PvChart: DefineComponent<PvChartProps, {
|
|
@@ -75,6 +80,7 @@ height?: number;
|
|
|
75
80
|
"onSeries-visibility-change"?: ((event: AgSeriesVisibilityChange) => any) | undefined;
|
|
76
81
|
}>, {
|
|
77
82
|
isLoading: boolean;
|
|
83
|
+
enableFocusView: boolean;
|
|
78
84
|
seriesFormatType: "none" | "currency" | "percent";
|
|
79
85
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
80
86
|
chartRef: CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
@@ -109,6 +115,7 @@ declare interface PvChartProps {
|
|
|
109
115
|
options: AgChartOptions;
|
|
110
116
|
seriesFormatType?: "none" | "currency" | "percent";
|
|
111
117
|
isLoading?: boolean;
|
|
118
|
+
enableFocusView?: boolean;
|
|
112
119
|
}
|
|
113
120
|
|
|
114
121
|
declare interface PvDataTableProps<T> {
|
|
@@ -274,6 +281,7 @@ export declare const PvDataTableWithChart: <T>(__VLS_props: NonNullable<Awaited<
|
|
|
274
281
|
(e: "filter-opened", event: FilterChangedEvent<T>): void;
|
|
275
282
|
(e: "first-data-rendered", event: FirstDataRenderedEvent<T>): void;
|
|
276
283
|
(e: "handle-settings-icon", value: string): void;
|
|
284
|
+
(e: "focus-update", event: FocusUpdateEvent): void;
|
|
277
285
|
};
|
|
278
286
|
}>) => VNode & {
|
|
279
287
|
__ctx?: Awaited<typeof __VLS_setup>;
|