@turquoisehealth/pit-viper 2.211.0 → 2.211.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.
@@ -9,6 +9,8 @@ export interface PvChartOptionsPanelProps {
9
9
  chartConfigOptions?: ChartConfigPanelType[];
10
10
  /** When true, the panel's controls are visible but disabled (view-only). */
11
11
  readOnly?: boolean;
12
+ /** Column field used for the "% of focus" chart view; its Y-axis option is disabled on line charts. */
13
+ percentOfFocusViewYKey?: string;
12
14
  }
13
15
  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<{
14
16
  props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
@@ -159,6 +159,7 @@ export interface ChartSeriesAggFuncOption {
159
159
  aggFunc: string;
160
160
  description?: string;
161
161
  label: string;
162
+ order?: number;
162
163
  seriesValue: string;
163
164
  }
164
165
  export interface OptionWithFormatterAndDataType extends Option {
@@ -60,6 +60,10 @@ export interface ColDefContextProps<T> extends Omit<PvFilterPanelColDefContext,
60
60
  * A map of aggregation function names to display names (e.g. { "Median": "Median price", "max": "Maximum price" })
61
61
  */
62
62
  aggFuncDisplayNameMap?: Record<string, string>;
63
+ /**
64
+ * A map of aggregation function names to their nested chart category order. Lower numbers appear first.
65
+ */
66
+ aggFuncOrderMap?: Record<string, number>;
63
67
  /**
64
68
  * If true, we will plot this column on the secondary y-axis.
65
69
  */