@turquoisehealth/pit-viper 2.161.2-dev.0 → 2.161.2-dev.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/base/stats.html +1 -1
- package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
- package/pv-components/dist/stats/web/pv-multi-select-button-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
- package/pv-components/dist/vue/base/pv-components-base.mjs +376 -373
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/types.d.ts +6 -3
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +139 -135
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +481 -478
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +1 -1
- package/pv-components/dist/web/pv-components.iife.js +29 -29
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/types.d.ts
CHANGED
|
@@ -32,9 +32,12 @@ export interface ServerSideChartDataHandlerResponse {
|
|
|
32
32
|
stackField: string;
|
|
33
33
|
}
|
|
34
34
|
export interface VerticalLineOverlay {
|
|
35
|
-
/**
|
|
36
|
-
|
|
37
|
-
|
|
35
|
+
/**
|
|
36
|
+
* The index on which to place this vertical line (can be a decimal value). It needs to be scaled down to the range
|
|
37
|
+
* [0, number_of_buckets] in order for this vertical line series to match the histogram series.
|
|
38
|
+
*/
|
|
39
|
+
scaled_index: number;
|
|
40
|
+
/** Extra details to give this overlay meaning. */
|
|
38
41
|
label: string;
|
|
39
42
|
}
|
|
40
43
|
export interface PvDataTableWithChartProps<T> extends PvDataTableProps<T> {
|