@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.
- package/claude-plugin/skills/pit-viper/SKILL.md +25 -20
- package/claude-plugin/skills/pit-viper/assets/pv-html-starter.html +77 -0
- package/claude-plugin/skills/pit-viper/examples/pv-html-example.html +229 -0
- package/claude-plugin/skills/pit-viper/references/design-rules.md +14 -3
- package/claude-plugin/skills/pit-viper/references/html-patterns.md +35 -18
- package/claude-plugin/skills/pit-viper/references/layout-patterns.md +8 -0
- package/claude-plugin/skills/pit-viper/references/patterns-core.md +1 -1
- package/claude-plugin/skills/pit-viper/references/theme-guide.md +11 -0
- package/claude-plugin/skills/pit-viper/references/vue-guidelines.md +15 -2
- 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-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-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 +116 -116
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/components/base/PvSortableList/PvSortableList.vue.d.ts +1 -1
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/scatterAxisUtils.d.ts +17 -0
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +181 -156
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/web/components/pv-menu/pv-menu.js +1912 -6037
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +2769 -6881
- package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +5546 -9668
- package/pv-components/dist/web/components/pv-segmented-control/pv-segmented-control.js +2305 -6424
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +2675 -6787
- package/pv-components/dist/web/components/pv-toggle-group/pv-toggle-group.js +2339 -6458
- package/pv-components/dist/web/components/pv-tooltip-v2/pv-tooltip-v2.js +2267 -6382
- package/pv-components/dist/web/pv-components.iife.js +26 -26
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
- package/claude-plugin/examples/.gitkeep +0 -0
package/pv-components/dist/vue/visualizations/components/base/PvSortableList/PvSortableList.vue.d.ts
CHANGED
|
@@ -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;
|