@turquoisehealth/pit-viper 2.240.3-dev.0 → 2.241.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.
Files changed (22) hide show
  1. package/_site/assets/css/pit-viper-a11y.css +19 -0
  2. package/_site/assets/css/pit-viper-consumer.css +15 -0
  3. package/_site/assets/css/pit-viper-v2-scoped.css +13 -0
  4. package/_site/assets/css/pit-viper-v2.css +19 -0
  5. package/_site/assets/css/pit-viper.css +15 -0
  6. package/package.json +1 -1
  7. package/pv-components/dist/stats/vue/base/stats.html +1 -1
  8. package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
  9. package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
  10. package/pv-components/dist/vue/ai/components/base/PvSelectButton/PvSelectButton.vue.d.ts +3 -1
  11. package/pv-components/dist/vue/base/components/base/PvSelectButton/PvSelectButton.vue.d.ts +3 -1
  12. package/pv-components/dist/vue/base/pv-components-base.mjs +691 -687
  13. package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
  14. package/pv-components/dist/vue/visualizations/components/base/PvSelectButton/PvSelectButton.vue.d.ts +3 -1
  15. package/pv-components/dist/vue/visualizations/components/base/PvSortableList/PvSortableList.vue.d.ts +0 -7
  16. package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/table-chart-components/PvChartOptionsPanel.vue.d.ts +0 -6
  17. package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/types.d.ts +0 -14
  18. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +1170 -1190
  19. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
  20. package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +483 -479
  21. package/pv-components/dist/web/pv-components.iife.js +13 -13
  22. package/pv-components/dist/web/pv-components.iife.js.map +1 -1
@@ -73,7 +73,9 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
73
73
  } & PvSelectButtonProps<T>) & Partial<{}>> & PublicProps;
74
74
  expose(exposed: ShallowUnwrapRef<{}>): void;
75
75
  attrs: any;
76
- slots: {};
76
+ slots: {
77
+ footer?(_: {}): any;
78
+ };
77
79
  emit: {
78
80
  (e: "dropdown-open"): void;
79
81
  (e: "dropdown-closed"): void;
@@ -13,12 +13,6 @@ export type PvSortableMenuListProps = {
13
13
  * Whether to render placeholder drop zones for unfilled active slots.
14
14
  */
15
15
  showPlaceholders?: boolean;
16
- /**
17
- * Options that cannot be removed or reordered: they render with a lock icon, stay pinned
18
- * at the top of the active list, and every mutation (click, drag, placeholder drop)
19
- * re-asserts them. Ids must refer to options that are already active.
20
- */
21
- lockedOptionIds?: string[];
22
16
  };
23
17
  type __VLS_Props = PvSortableMenuListProps;
24
18
  type __VLS_PublicProps = {
@@ -32,7 +26,6 @@ declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, Compo
32
26
  options: MenuOption[];
33
27
  placeholderText: string;
34
28
  showPlaceholders: boolean;
35
- lockedOptionIds: string[];
36
29
  }, {}, {}, {}, string, ComponentProvideOptions, false, {
37
30
  containerRef: HTMLDivElement;
38
31
  sortableListRef: HTMLUListElement;
@@ -7,12 +7,6 @@ export interface PvChartOptionsPanelProps {
7
7
  useCombinedButton?: boolean;
8
8
  useNestedMenu?: boolean;
9
9
  chartConfigOptions?: ChartConfigPanelType[];
10
- /** Row-group colIds that are pinned in the sortable X Axis list: locked options can't be
11
- * removed or reordered (see PvSortableList's lockedOptionIds). */
12
- lockedRowGroupColIds?: string[];
13
- /** Keep the Metric Overlay picker enabled when a secondary row group splits a non-stacked
14
- * chart into per-group series (see PvDataTableWithChart's metricOverlayWithRowGroups). */
15
- metricOverlayWithRowGroups?: boolean;
16
10
  /** When true, the panel's controls are visible but disabled (view-only). */
17
11
  readOnly?: boolean;
18
12
  /** Column field used for the "% of focus" chart view; its Y-axis option is disabled on line charts. */
@@ -180,20 +180,6 @@ export interface PvDataTableWithChartProps<T> extends PvDataTableProps<T> {
180
180
  * when `multiSelectMetricOverlay` is true; unknown fields are ignored.
181
181
  */
182
182
  initialSecondaryYKeys?: string[];
183
- /**
184
- * Keep Metric Overlays available when a secondary row group splits a non-stacked chart into
185
- * one series per group value (they are normally disabled and cleared there). The overlay
186
- * plots the field's plain per-category value, so it is only meaningful when that value is
187
- * constant within a category — e.g. drug-level benchmarks (WAC/ASP) on a report already
188
- * filtered to a single drug.
189
- */
190
- metricOverlayWithRowGroups?: boolean;
191
- /**
192
- * Row-group colIds pinned in the sortable X Axis picker: locked options render with a lock
193
- * icon and cannot be removed or reordered (see PvSortableList's `lockedOptionIds`). Use for
194
- * charts whose first dimension is structural (e.g. a time axis on a trends template).
195
- */
196
- lockedRowGroupColIds?: string[];
197
183
  /** Filter configuration that adds a dropdown above the chart to slice data by a category column. */
198
184
  chartFilter?: ChartFilter;
199
185
  /** The initial chart type to render. */