@turquoisehealth/pit-viper 2.181.2-dev.4 → 2.182.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 (35) hide show
  1. package/claude-plugin/skills/pit-viper/SKILL.md +25 -20
  2. package/claude-plugin/skills/pit-viper/assets/pv-html-starter.html +77 -0
  3. package/claude-plugin/skills/pit-viper/examples/pv-html-example.html +229 -0
  4. package/claude-plugin/skills/pit-viper/references/design-rules.md +14 -3
  5. package/claude-plugin/skills/pit-viper/references/html-patterns.md +35 -18
  6. package/claude-plugin/skills/pit-viper/references/layout-patterns.md +8 -0
  7. package/claude-plugin/skills/pit-viper/references/patterns-core.md +1 -1
  8. package/claude-plugin/skills/pit-viper/references/theme-guide.md +11 -0
  9. package/claude-plugin/skills/pit-viper/references/vue-guidelines.md +15 -2
  10. package/package.json +1 -1
  11. package/pv-components/dist/stats/vue/base/stats.html +1 -1
  12. package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
  13. package/pv-components/dist/stats/web/pv-menu-stats.html +1 -1
  14. package/pv-components/dist/stats/web/pv-multi-select-button-stats.html +1 -1
  15. package/pv-components/dist/stats/web/pv-query-builder-input-stats.html +1 -1
  16. package/pv-components/dist/stats/web/pv-segmented-control-stats.html +1 -1
  17. package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
  18. package/pv-components/dist/stats/web/pv-toggle-group-stats.html +1 -1
  19. package/pv-components/dist/stats/web/pv-tooltip-v2-stats.html +1 -1
  20. package/pv-components/dist/vue/base/pv-components-base.mjs +116 -116
  21. package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
  22. package/pv-components/dist/vue/visualizations/components/base/PvSortableList/PvSortableList.vue.d.ts +1 -1
  23. package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/scatterAxisUtils.d.ts +17 -0
  24. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +181 -156
  25. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
  26. package/pv-components/dist/web/components/pv-menu/pv-menu.js +1912 -6037
  27. package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +2769 -6881
  28. package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +5546 -9668
  29. package/pv-components/dist/web/components/pv-segmented-control/pv-segmented-control.js +2305 -6424
  30. package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +2675 -6787
  31. package/pv-components/dist/web/components/pv-toggle-group/pv-toggle-group.js +2339 -6458
  32. package/pv-components/dist/web/components/pv-tooltip-v2/pv-tooltip-v2.js +2267 -6382
  33. package/pv-components/dist/web/pv-components.iife.js +26 -26
  34. package/pv-components/dist/web/pv-components.iife.js.map +1 -1
  35. package/claude-plugin/examples/.gitkeep +0 -0
@@ -1,4 +1,4 @@
1
- import { MenuOption } from '..';
1
+ import { MenuOption } from '../../../types';
2
2
  import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
3
  export type PvSortableMenuListProps = {
4
4
  /** The full set of available options to choose from and reorder. */
@@ -0,0 +1,17 @@
1
+ export interface ScatterAxes {
2
+ xKey: string;
3
+ xName: string;
4
+ yKey: string;
5
+ yName: string;
6
+ }
7
+ /**
8
+ * Returns the correct axis key/name assignments for a scatter overlay series.
9
+ *
10
+ * Bar series use `direction: "horizontal"` which lets AG Charts handle the
11
+ * axis swap internally — xKey=category and yKey=metric work regardless of
12
+ * orientation. Scatter series have no `direction` property: xKey always maps
13
+ * to the physical horizontal axis and yKey to the vertical axis. On a
14
+ * horizontal bar chart the category axis is vertical and the metric axis is
15
+ * horizontal, so the keys must be explicitly swapped.
16
+ */
17
+ export declare function buildScatterAxes(categoryKey: string, categoryName: string, metricKey: string, metricName: string, isHorizontal: boolean): ScatterAxes;