@turquoisehealth/pit-viper 2.198.0 → 2.199.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 +3 -3
- 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-filter-modal-stats.html +4950 -0
- package/pv-components/dist/stats/web/pv-filter-panel-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-input-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-menu-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-modal-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-select-button-stats.html +1 -1
- package/pv-components/dist/vue/base/components/base/PvFilterModal/PvFilterModal.vue.d.ts +77 -0
- package/pv-components/dist/vue/base/components/base/PvFilterModal/PvFilterModalSelectItem.vue.d.ts +33 -0
- package/pv-components/dist/vue/base/components/base/PvFilterModal/types.d.ts +11 -0
- package/pv-components/dist/vue/base/components/base/PvFilterPanel/PvFilterPanel.vue.d.ts +14 -14
- package/pv-components/dist/vue/base/components/base/PvFilterPanel/PvFilterPanelAccordion.vue.d.ts +2 -2
- package/pv-components/dist/vue/base/components/base/PvFilterPanel/PvFilterPanelOptionRow.vue.d.ts +2 -2
- package/pv-components/dist/vue/base/components/base/PvFilterPanel/types.d.ts +35 -0
- package/pv-components/dist/vue/base/components/base/PvFilterPanel/usePvFilterPanel.d.ts +30 -0
- package/pv-components/dist/vue/base/components/base/PvInput/PvInput.vue.d.ts +6 -0
- package/pv-components/dist/vue/base/components/base/PvModal/PvModal.vue.d.ts +1 -0
- package/pv-components/dist/vue/base/components/base/index.d.ts +2 -0
- package/pv-components/dist/vue/base/pv-components-base.mjs +3137 -2714
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/components/base/PvFilterModal/PvFilterModal.vue.d.ts +77 -0
- package/pv-components/dist/vue/visualizations/components/base/PvFilterModal/PvFilterModalSelectItem.vue.d.ts +33 -0
- package/pv-components/dist/vue/visualizations/components/base/PvFilterModal/types.d.ts +11 -0
- package/pv-components/dist/vue/visualizations/components/base/PvFilterPanel/PvFilterPanel.vue.d.ts +12 -12
- package/pv-components/dist/vue/visualizations/components/base/PvFilterPanel/PvFilterPanelAccordion.vue.d.ts +2 -2
- package/pv-components/dist/vue/visualizations/components/base/PvFilterPanel/PvFilterPanelOptionRow.vue.d.ts +1 -1
- package/pv-components/dist/vue/visualizations/components/base/PvFilterPanel/types.d.ts +35 -0
- package/pv-components/dist/vue/visualizations/components/base/PvFilterPanel/usePvFilterPanel.d.ts +30 -0
- package/pv-components/dist/vue/visualizations/components/base/PvInput/PvInput.vue.d.ts +6 -0
- package/pv-components/dist/vue/visualizations/components/base/PvModal/PvModal.vue.d.ts +1 -0
- package/pv-components/dist/vue/visualizations/components/base/index.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/table-chart-components/PvChartOptionsPanel.vue.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/types.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +129 -120
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/web/components/pv-filter-modal/pv-filter-modal.js +9603 -0
- package/pv-components/dist/web/components/pv-filter-panel/pv-filter-panel.js +2425 -2391
- package/pv-components/dist/web/components/pv-input/pv-input.js +517 -470
- package/pv-components/dist/web/components/pv-menu/pv-menu.js +360 -357
- package/pv-components/dist/web/components/pv-modal/pv-modal.js +4 -2
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +438 -435
- package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +431 -428
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +732 -729
- package/pv-components/dist/web/pv-components.iife.js +19 -19
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
- package/claude-plugin/.claude-plugin/plugin.json +0 -11
- package/claude-plugin/.mcp.json +0 -8
- package/claude-plugin/CLAUDE.md +0 -107
- package/claude-plugin/README.md +0 -173
- package/claude-plugin/skills/pit-viper/SKILL.md +0 -182
- package/claude-plugin/skills/pit-viper/assets/pv-html-starter.html +0 -77
- package/claude-plugin/skills/pit-viper/examples/pv-html-example.html +0 -229
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@turquoisehealth/pit-viper",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.199.0",
|
|
4
4
|
"description": "Turquoise Health's design system.",
|
|
5
5
|
"main": "README.md",
|
|
6
6
|
"publishConfig": {
|
|
@@ -17,8 +17,7 @@
|
|
|
17
17
|
"_site/assets/js/pit-viper.js",
|
|
18
18
|
"_src/assets/sprite.svg",
|
|
19
19
|
"_src/assets/sprite-v2.svg",
|
|
20
|
-
"pv-components/dist"
|
|
21
|
-
"claude-plugin"
|
|
20
|
+
"pv-components/dist"
|
|
22
21
|
],
|
|
23
22
|
"engines": {
|
|
24
23
|
"node": ">=24.0.0"
|
|
@@ -44,6 +43,7 @@
|
|
|
44
43
|
"build:pv-components": "pnpm --filter pv-components run build",
|
|
45
44
|
"build:llm": "pnpm --filter pit-viper-llm run build",
|
|
46
45
|
"build:llm-index": "pnpm --filter pit-viper-llm run build:index",
|
|
46
|
+
"build:starter": "node scripts/build-starter.mjs",
|
|
47
47
|
"prepublishOnly": "pnpm install && pnpm run test:ci && pnpm run build",
|
|
48
48
|
"start": "npm-run-all build:sass --parallel watch:*",
|
|
49
49
|
"build": "npm-run-all build:*",
|