@turquoisehealth/pit-viper 2.212.1-dev.0 → 2.214.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/_site/assets/css/pit-viper-a11y.css +31 -1
- package/_site/assets/css/pit-viper-consumer.css +27 -0
- package/_site/assets/css/pit-viper-v2-scoped.css +26 -0
- package/_site/assets/css/pit-viper-v2.css +31 -1
- package/_site/assets/css/pit-viper.css +27 -0
- 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-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-select-button-stats.html +1 -1
- package/pv-components/dist/vue/base/components/base/PvFilterPanel/types.d.ts +2 -1
- package/pv-components/dist/vue/base/pv-components-base.mjs +10 -7
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/components/base/PvFilterPanel/types.d.ts +2 -1
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/chartTypeRegistry.d.ts +0 -2
- package/pv-components/dist/vue/visualizations/components/charts/PvMapChart/PvMapChart.vue.d.ts +6 -1
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +1971 -1958
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/web/components/pv-menu/pv-menu.js +9 -6
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +9 -6
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +9 -6
- package/pv-components/dist/web/pv-components.iife.js +1 -1
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
|
@@ -154,7 +154,8 @@ export interface PvFilterPanelColDefContext {
|
|
|
154
154
|
*/
|
|
155
155
|
filterPanelValueLabels?: Record<string, string> | null;
|
|
156
156
|
/**
|
|
157
|
-
*
|
|
157
|
+
* Shows a search box over the filter options. Unset uses the derived default,
|
|
158
|
+
* which omits it for columns that cannot benefit (currently `dataType: "boolean"`).
|
|
158
159
|
*/
|
|
159
160
|
filterSearch?: boolean;
|
|
160
161
|
/**
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { ColDef } from 'ag-grid-community';
|
|
2
2
|
/** A column charts as a geographic region when it is named `state` or has the `location` data type. */
|
|
3
3
|
export declare const isMapRegionColDef: (colDef: ColDef) => boolean;
|
|
4
|
-
/** The map chart type can be selected whenever the first x-axis is a region column. */
|
|
5
|
-
export declare const isMapChartTypeAvailable: (stateIsOnXAxis: boolean) => boolean;
|
|
6
4
|
/**
|
|
7
5
|
* Drop the row group (x-axis) fields that aren't valid under a chart type's x-axis
|
|
8
6
|
* `filterColumns`. Used when switching chart families so a still-valid x-axis (e.g.
|
package/pv-components/dist/vue/visualizations/components/charts/PvMapChart/PvMapChart.vue.d.ts
CHANGED
|
@@ -12,6 +12,8 @@ export interface RegionSelectionChangedEvent {
|
|
|
12
12
|
export interface PvMapChartProps {
|
|
13
13
|
/** The data key whose values are mapped to the color gradient on the map. Must match a key in the chart data objects. */
|
|
14
14
|
seriesKey: string;
|
|
15
|
+
/** Human-friendly label shown for the value in the default tooltip. Falls back to `seriesKey` when omitted. */
|
|
16
|
+
seriesLabel?: string;
|
|
15
17
|
/** The geographic granularity of the map. Currently only `"state"` is fully supported. */
|
|
16
18
|
mapType?: MapTopologyType;
|
|
17
19
|
/** When true, renders the color gradient legend above the map. */
|
|
@@ -26,6 +28,8 @@ export interface PvMapChartProps {
|
|
|
26
28
|
seriesValueFormatter?: (value: number) => string;
|
|
27
29
|
/** When true, displays a loading spinner overlay on the chart. */
|
|
28
30
|
isLoading?: boolean;
|
|
31
|
+
/** When true, clicking a region selects/deselects it. Set to false to render a non-interactive map. */
|
|
32
|
+
clickable?: boolean;
|
|
29
33
|
/** Custom message displayed when chart data is empty. */
|
|
30
34
|
noDataMessage?: string;
|
|
31
35
|
/** Custom tooltip renderer for map regions. Receives AG Charts tooltip params with the region datum. */
|
|
@@ -59,6 +63,7 @@ declare const _default: DefineComponent<{
|
|
|
59
63
|
gradientLegendMin: number;
|
|
60
64
|
gradientLegendMax: number;
|
|
61
65
|
seriesValueFormatter: (value: number) => string;
|
|
66
|
+
clickable: boolean;
|
|
62
67
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
63
68
|
pvChartRef: CreateComponentPublicInstanceWithMixins<Readonly< PvChartProps> & Readonly<{
|
|
64
69
|
"onSeries-visibility-change"?: ((event: AgSeriesVisibilityChange<unknown>) => any) | undefined;
|
|
@@ -123,5 +128,5 @@ declare const _default: DefineComponent<{
|
|
|
123
128
|
minHeight: number;
|
|
124
129
|
translateNullValues: boolean;
|
|
125
130
|
}> | null;
|
|
126
|
-
},
|
|
131
|
+
}, HTMLDivElement>;
|
|
127
132
|
export default _default;
|