@turquoisehealth/pit-viper 2.211.1 → 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.
- package/package.json +1 -1
- package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
- package/pv-components/dist/stats/web/pv-query-builder-input-stats.html +1 -1
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/table-chart-components/PvChartOptionsPanel.vue.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +1028 -1006
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +1 -1
|
@@ -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<{
|