@turquoisehealth/pit-viper 2.210.0 → 2.210.2-dev.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/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-action-button-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-filter-modal-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-filter-panel-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-hover-action-menu-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-menu-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-popover-v2-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-query-builder-input-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-segmented-control-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-split-button-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-toggle-group-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-tooltip-v2-stats.html +1 -1
- package/pv-components/dist/vue/base/pv-components-base.mjs +19 -18
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/constants.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/types.d.ts +6 -0
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +1504 -1486
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/web/components/pv-action-button/pv-action-button.js +434 -433
- package/pv-components/dist/web/components/pv-filter-modal/pv-filter-modal.js +131 -130
- package/pv-components/dist/web/components/pv-filter-panel/pv-filter-panel.js +214 -213
- package/pv-components/dist/web/components/pv-hover-action-menu/pv-hover-action-menu.js +115 -114
- package/pv-components/dist/web/components/pv-menu/pv-menu.js +662 -661
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +607 -606
- package/pv-components/dist/web/components/pv-popover-v2/pv-popover-v2.js +18 -17
- package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +19 -18
- package/pv-components/dist/web/components/pv-segmented-control/pv-segmented-control.js +627 -626
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +34 -33
- package/pv-components/dist/web/components/pv-split-button/pv-split-button.js +81 -80
- package/pv-components/dist/web/components/pv-toggle-group/pv-toggle-group.js +465 -464
- package/pv-components/dist/web/components/pv-tooltip-v2/pv-tooltip-v2.js +224 -223
- package/pv-components/dist/web/pv-components.iife.js +1 -1
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/constants.d.ts
CHANGED
|
@@ -7,5 +7,7 @@ export declare const histogramChartTypeConfig: MenuOption;
|
|
|
7
7
|
export declare const mapChartTypeConfig: MenuOption;
|
|
8
8
|
export declare const MAP_REGION_FIELD = "state";
|
|
9
9
|
export declare const separatorValue = "--SEPARATOR--";
|
|
10
|
+
export declare const distributionRangeMinCategory = "--DISTRIBUTION-RANGE-MIN--";
|
|
11
|
+
export declare const distributionRangeMaxCategory = "--DISTRIBUTION-RANGE-MAX--";
|
|
10
12
|
export declare const sortTotalSuffix = "_sort_total";
|
|
11
13
|
export declare const SECONDARY_AXIS_INTERVAL_COUNT = 5;
|
package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/types.d.ts
CHANGED
|
@@ -77,6 +77,12 @@ export interface PvDataTableWithChartProps<T> extends PvDataTableProps<T> {
|
|
|
77
77
|
showSeriesLabels?: boolean;
|
|
78
78
|
/** When true, truncates long category labels on the chart axis. */
|
|
79
79
|
truncateLabelValues?: boolean;
|
|
80
|
+
/**
|
|
81
|
+
* Gate for distribution/histogram chart styling changes that must ship together.
|
|
82
|
+
* When true, notates the x-axis of histogram charts with the overall lowest min
|
|
83
|
+
* (left) and highest max (right) bucket bounds.
|
|
84
|
+
*/
|
|
85
|
+
useDistributionV2Styling?: boolean;
|
|
80
86
|
/** Pre-populated chart data to render before any server-side fetch completes. */
|
|
81
87
|
initialChartData?: AgChartOptions["data"];
|
|
82
88
|
/** When true, wraps large charts in a native Pit Viper-styled scroll container. */
|