@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.
@@ -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>;