@turquoisehealth/pit-viper 2.197.3-dev.2 → 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/_site/assets/css/pit-viper-a11y.css +2 -0
- package/_site/assets/css/pit-viper-consumer.css +2 -0
- package/_site/assets/css/pit-viper-v2-scoped.css +2 -0
- package/_site/assets/css/pit-viper-v2.css +2 -0
- package/_site/assets/css/pit-viper.css +2 -0
- 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/PvDrawer/PvDrawer.vue.d.ts +1 -1
- package/pv-components/dist/vue/visualizations/components/base/PvDropdown/PvDropdown.vue.d.ts +5 -5
- 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 +14 -14
- 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/PvInsightCard/PvInsightCard.vue.d.ts +1 -1
- package/pv-components/dist/vue/visualizations/components/base/PvModal/PvModal.vue.d.ts +1 -0
- package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +7 -7
- package/pv-components/dist/vue/visualizations/components/base/PvPopoverV2/PvPopoverV2.vue.d.ts +2 -2
- package/pv-components/dist/vue/visualizations/components/base/PvRange/PvRange.vue.d.ts +2 -2
- package/pv-components/dist/vue/visualizations/components/base/PvSelectButton/PvSelectButton.vue.d.ts +3 -3
- package/pv-components/dist/vue/visualizations/components/base/index.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/components/charts/PvChartWidget/PvChartWidget.vue.d.ts +180 -0
- package/pv-components/dist/vue/visualizations/components/charts/PvChartWidget/constants.d.ts +4 -0
- package/pv-components/dist/vue/visualizations/components/charts/PvChartWidget/types.d.ts +31 -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/components/charts/PvDataWidget/PvDataWidget.vue.d.ts +43 -0
- package/pv-components/dist/vue/visualizations/components/charts/PvDataWidget/PvDataWidgetTable.vue.d.ts +4 -0
- package/pv-components/dist/vue/visualizations/components/charts/PvDataWidget/constants.d.ts +9 -0
- package/pv-components/dist/vue/visualizations/components/charts/PvDataWidget/helpers.d.ts +63 -0
- package/pv-components/dist/vue/visualizations/components/charts/PvDataWidget/types.d.ts +130 -0
- package/pv-components/dist/vue/visualizations/components/charts/PvDataWidget/usePvDataWidgetData.d.ts +40 -0
- package/pv-components/dist/vue/visualizations/components/charts/PvMapChart/PvMapChart.vue.d.ts +3 -8
- package/pv-components/dist/vue/visualizations/components/charts/widgetOptions.d.ts +58 -0
- package/pv-components/dist/vue/visualizations/components/visualizations/index.d.ts +6 -0
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +11534 -10746
- 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
|
@@ -1,229 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="UTF-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
-
<title>Pit Viper HTML Example</title>
|
|
7
|
-
|
|
8
|
-
<!-- v2 Platform theme (internal tools, dashboards) -->
|
|
9
|
-
<link rel="stylesheet" href="https://unpkg.com/@turquoisehealth/pit-viper@latest/_site/assets/css/pit-viper-v2.css">
|
|
10
|
-
|
|
11
|
-
<!-- v2 Marketing/Consumer theme (marketing sites, public-facing pages)
|
|
12
|
-
<link rel="stylesheet" href="https://unpkg.com/@turquoisehealth/pit-viper@latest/_site/assets/css/pit-viper-consumer.css">
|
|
13
|
-
-->
|
|
14
|
-
|
|
15
|
-
<!-- SVG sprite path for icons -->
|
|
16
|
-
<script>
|
|
17
|
-
window.__PV_GLOBAL_SPRITE_PATH__ = 'https://unpkg.com/@turquoisehealth/pit-viper@latest/_site/assets/sprite-v2.svg';
|
|
18
|
-
</script>
|
|
19
|
-
|
|
20
|
-
<!-- Web components for interactive elements -->
|
|
21
|
-
<script src="https://unpkg.com/@turquoisehealth/pit-viper@latest/pv-components/dist/web/pv-components.iife.js"></script>
|
|
22
|
-
</head>
|
|
23
|
-
<body>
|
|
24
|
-
<div class="pv-layout-primary">
|
|
25
|
-
<aside data-grid-area="sidebar">
|
|
26
|
-
<nav class="pv-popover-menu">
|
|
27
|
-
<button class="pv-org-switch" style="width: 100%;">
|
|
28
|
-
<div class="pv-company-xl"><img src="" alt=""></div>
|
|
29
|
-
<div>
|
|
30
|
-
<p class="pv-text-title-sm">Organization Name</p>
|
|
31
|
-
<p class="pv-text-title-xs pv-text-subdued">Location</p>
|
|
32
|
-
</div>
|
|
33
|
-
<svg class="pv-icon-16" aria-hidden="true" tabindex="-1">
|
|
34
|
-
<use xlink:href="#"></use>
|
|
35
|
-
</svg>
|
|
36
|
-
</button>
|
|
37
|
-
<div class="pv-popover" style="margin-left: 20px; margin-top: -20px; --width: 300px; max-height: 400px;">
|
|
38
|
-
<ul role="list" class="pv-popover-list">
|
|
39
|
-
<li>
|
|
40
|
-
<a class="pv-flex" href="#">
|
|
41
|
-
<div class="pv-avatar-xs"><span>O</span></div>
|
|
42
|
-
<span class="pv-truncate pv-flex-item">Other Organization</span>
|
|
43
|
-
</a>
|
|
44
|
-
</li>
|
|
45
|
-
</ul>
|
|
46
|
-
</div>
|
|
47
|
-
</nav>
|
|
48
|
-
<div class="pv-nav-container">
|
|
49
|
-
<ul role="list" class="pv-nav-list">
|
|
50
|
-
<li>
|
|
51
|
-
<a href="#" title="Dashboard">
|
|
52
|
-
<svg class="pv-icon" aria-hidden="true" tabindex="-1">
|
|
53
|
-
<use xlink:href="#"></use>
|
|
54
|
-
</svg>
|
|
55
|
-
<span>Dashboard</span>
|
|
56
|
-
</a>
|
|
57
|
-
</li>
|
|
58
|
-
<li>
|
|
59
|
-
<details>
|
|
60
|
-
<summary title="Search">
|
|
61
|
-
<svg class="pv-icon" aria-hidden="true" tabindex="-1">
|
|
62
|
-
<use xlink:href="#"></use>
|
|
63
|
-
</svg>
|
|
64
|
-
<span>Search</span>
|
|
65
|
-
</summary>
|
|
66
|
-
<ul role="list" class="pv-nav-list">
|
|
67
|
-
<li>
|
|
68
|
-
<a href="#"><span>Rates</span></a>
|
|
69
|
-
</li>
|
|
70
|
-
<li>
|
|
71
|
-
<a href="#"><span>Provisions</span></a>
|
|
72
|
-
</li>
|
|
73
|
-
</ul>
|
|
74
|
-
</details>
|
|
75
|
-
</li>
|
|
76
|
-
<li>
|
|
77
|
-
<a href="#" title="Analyze">
|
|
78
|
-
<svg class="pv-icon" aria-hidden="true" tabindex="-1">
|
|
79
|
-
<use xlink:href="#"></use>
|
|
80
|
-
</svg>
|
|
81
|
-
<span>Analyze</span>
|
|
82
|
-
</a>
|
|
83
|
-
</li>
|
|
84
|
-
<li>
|
|
85
|
-
<details open>
|
|
86
|
-
<summary title="Clear Contracts">
|
|
87
|
-
<svg class="pv-icon" aria-hidden="true" tabindex="-1">
|
|
88
|
-
<use xlink:href="#"></use>
|
|
89
|
-
</svg>
|
|
90
|
-
<span>Clear Contracts</span>
|
|
91
|
-
</summary>
|
|
92
|
-
<ul role="list" class="pv-nav-list nested-nav">
|
|
93
|
-
<li>
|
|
94
|
-
<a href="#" aria-current="page"><span>Manage</span></a>
|
|
95
|
-
</li>
|
|
96
|
-
<li>
|
|
97
|
-
<a href="#"><span>Matrix</span></a>
|
|
98
|
-
</li>
|
|
99
|
-
<li>
|
|
100
|
-
<a href="#"><span>Model</span></a>
|
|
101
|
-
</li>
|
|
102
|
-
</ul>
|
|
103
|
-
</details>
|
|
104
|
-
</li>
|
|
105
|
-
<li>
|
|
106
|
-
<a href="#" title="Settings">
|
|
107
|
-
<svg class="pv-icon" aria-hidden="true" tabindex="-1">
|
|
108
|
-
<use xlink:href="#"></use>
|
|
109
|
-
</svg>
|
|
110
|
-
<span>Settings</span>
|
|
111
|
-
</a>
|
|
112
|
-
</li>
|
|
113
|
-
</ul>
|
|
114
|
-
</div>
|
|
115
|
-
</aside>
|
|
116
|
-
<div data-grid-area="content">
|
|
117
|
-
<!-- Page header with filters -->
|
|
118
|
-
<div class="pv-inset-squish pv-flex-responsive pv-border-bottom">
|
|
119
|
-
<div class="pv-flex pv-flex-item pv-flow-8">
|
|
120
|
-
<div class="pv-dropdown"><button class="pv-select-multiple pv-input-small">Providers</button></div>
|
|
121
|
-
<div class="pv-dropdown"><button class="pv-select-multiple pv-input-small">Payers</button></div>
|
|
122
|
-
<div class="pv-dropdown"><button class="pv-select-multiple pv-input-small">Plans</button></div>
|
|
123
|
-
<button class="pv-button-primary-outline pv-button-small">Apply Filters</button>
|
|
124
|
-
<button class="pv-button-ghost pv-button-small">Clear</button>
|
|
125
|
-
</div>
|
|
126
|
-
<div class="pv-flex pv-flow-8">
|
|
127
|
-
<select class="pv-select pv-input-small">
|
|
128
|
-
<option selected>Default View</option>
|
|
129
|
-
<option>Custom View 1</option>
|
|
130
|
-
</select>
|
|
131
|
-
</div>
|
|
132
|
-
</div>
|
|
133
|
-
|
|
134
|
-
<!-- Content with sidebar -->
|
|
135
|
-
<div class="pv-layout-sidebar">
|
|
136
|
-
<div data-grid-area="main" class="pv-inset-square-24">
|
|
137
|
-
<h1 class="pv-heading-2 pv-stack-16">Contracts</h1>
|
|
138
|
-
|
|
139
|
-
<table class="pv-table">
|
|
140
|
-
<thead>
|
|
141
|
-
<tr>
|
|
142
|
-
<th>Contract Name</th>
|
|
143
|
-
<th>Provider</th>
|
|
144
|
-
<th>Effective Date</th>
|
|
145
|
-
<th>Status</th>
|
|
146
|
-
</tr>
|
|
147
|
-
</thead>
|
|
148
|
-
<tbody>
|
|
149
|
-
<tr>
|
|
150
|
-
<td><a href="#">UHC - California Hospital</a></td>
|
|
151
|
-
<td>California Hospital Medical Center</td>
|
|
152
|
-
<td>April 1, 2024</td>
|
|
153
|
-
<td><span class="pv-pill pv-pill-success">Active</span></td>
|
|
154
|
-
</tr>
|
|
155
|
-
<tr>
|
|
156
|
-
<td><a href="#">UHC - St. Francis</a></td>
|
|
157
|
-
<td>St. Francis Medical Center</td>
|
|
158
|
-
<td>Sept. 1, 2023</td>
|
|
159
|
-
<td><span class="pv-pill pv-pill-success">Active</span></td>
|
|
160
|
-
</tr>
|
|
161
|
-
<tr>
|
|
162
|
-
<td><a href="#">Aetna - Regional</a></td>
|
|
163
|
-
<td>Regional Health System</td>
|
|
164
|
-
<td>Jan. 1, 2024</td>
|
|
165
|
-
<td><span class="pv-pill pv-pill-warning">Pending</span></td>
|
|
166
|
-
</tr>
|
|
167
|
-
</tbody>
|
|
168
|
-
</table>
|
|
169
|
-
</div>
|
|
170
|
-
|
|
171
|
-
<div data-grid-area="sidebar">
|
|
172
|
-
<div class="pv-border-bottom pv-inset-square-16">
|
|
173
|
-
<div class="pv-flex pv-flow-8">
|
|
174
|
-
<button class="pv-button-ghost pv-button-small" aria-pressed="true">Summary</button>
|
|
175
|
-
<button class="pv-button-ghost pv-button-small">Details</button>
|
|
176
|
-
<button class="pv-button-ghost pv-button-small">History</button>
|
|
177
|
-
</div>
|
|
178
|
-
</div>
|
|
179
|
-
<div class="pv-layout-two-row">
|
|
180
|
-
<div class="pv-flex-item pv-border-bottom pv-inset-square-16">
|
|
181
|
-
<p class="pv-heading-5 pv-stack-8">Summary</p>
|
|
182
|
-
<dl class="pv-flow-4">
|
|
183
|
-
<div class="pv-flex pv-space-between">
|
|
184
|
-
<dt class="pv-text-subdued">Total Contracts</dt>
|
|
185
|
-
<dd class="pv-text-title-sm">24</dd>
|
|
186
|
-
</div>
|
|
187
|
-
<div class="pv-flex pv-space-between">
|
|
188
|
-
<dt class="pv-text-subdued">Active</dt>
|
|
189
|
-
<dd class="pv-text-title-sm">18</dd>
|
|
190
|
-
</div>
|
|
191
|
-
<div class="pv-flex pv-space-between">
|
|
192
|
-
<dt class="pv-text-subdued">Pending Review</dt>
|
|
193
|
-
<dd class="pv-text-title-sm">6</dd>
|
|
194
|
-
</div>
|
|
195
|
-
</dl>
|
|
196
|
-
</div>
|
|
197
|
-
<div class="pv-inset-square-16">
|
|
198
|
-
<p class="pv-heading-5 pv-stack-8">Actions</p>
|
|
199
|
-
<div class="pv-flex pv-flex-vertical pv-flow-8">
|
|
200
|
-
<button class="pv-button-primary">Add Contract</button>
|
|
201
|
-
<button class="pv-button-secondary">Export</button>
|
|
202
|
-
</div>
|
|
203
|
-
</div>
|
|
204
|
-
</div>
|
|
205
|
-
</div>
|
|
206
|
-
</div>
|
|
207
|
-
</div>
|
|
208
|
-
</div>
|
|
209
|
-
|
|
210
|
-
<script>
|
|
211
|
-
// Org selector toggle
|
|
212
|
-
document.querySelectorAll('.pv-popover-menu').forEach(menu => {
|
|
213
|
-
const trigger = menu.querySelector('.pv-org-switch')
|
|
214
|
-
const popover = menu.querySelector('.pv-popover')
|
|
215
|
-
if (!trigger || !popover) return
|
|
216
|
-
|
|
217
|
-
trigger.addEventListener('click', () => {
|
|
218
|
-
popover.toggleAttribute('data-visible')
|
|
219
|
-
})
|
|
220
|
-
|
|
221
|
-
document.addEventListener('click', (e) => {
|
|
222
|
-
if (!menu.contains(e.target)) {
|
|
223
|
-
popover.removeAttribute('data-visible')
|
|
224
|
-
}
|
|
225
|
-
})
|
|
226
|
-
})
|
|
227
|
-
</script>
|
|
228
|
-
</body>
|
|
229
|
-
</html>
|