@turquoisehealth/pit-viper 2.212.0 → 2.213.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 +4 -1
- package/_site/assets/css/pit-viper-v2.css +4 -1
- package/package.json +1 -1
- package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/helpers.d.ts +5 -1
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/table-chart-components/PvBenchmarkChips.vue.d.ts +7 -0
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/types.d.ts +28 -0
- package/pv-components/dist/vue/visualizations/components/charts/widgetOptions.d.ts +1 -0
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +1607 -1508
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
|
@@ -5114,7 +5114,8 @@ body:has(> .pv-layout-primary) {
|
|
|
5114
5114
|
}
|
|
5115
5115
|
|
|
5116
5116
|
pv-sidebar {
|
|
5117
|
-
display:
|
|
5117
|
+
display: flex;
|
|
5118
|
+
min-height: 0;
|
|
5118
5119
|
}
|
|
5119
5120
|
|
|
5120
5121
|
.sidebar-layout {
|
|
@@ -5241,6 +5242,8 @@ pv-sidebar {
|
|
|
5241
5242
|
.content-panel {
|
|
5242
5243
|
grid-area: content;
|
|
5243
5244
|
z-index: 5;
|
|
5245
|
+
min-height: 0;
|
|
5246
|
+
overflow-y: auto;
|
|
5244
5247
|
}
|
|
5245
5248
|
|
|
5246
5249
|
.sidebar-header {
|
|
@@ -5134,7 +5134,8 @@ body:has(> .pv-layout-primary) {
|
|
|
5134
5134
|
}
|
|
5135
5135
|
|
|
5136
5136
|
pv-sidebar {
|
|
5137
|
-
display:
|
|
5137
|
+
display: flex;
|
|
5138
|
+
min-height: 0;
|
|
5138
5139
|
}
|
|
5139
5140
|
|
|
5140
5141
|
.sidebar-layout {
|
|
@@ -5261,6 +5262,8 @@ pv-sidebar {
|
|
|
5261
5262
|
.content-panel {
|
|
5262
5263
|
grid-area: content;
|
|
5263
5264
|
z-index: 5;
|
|
5265
|
+
min-height: 0;
|
|
5266
|
+
overflow-y: auto;
|
|
5264
5267
|
}
|
|
5265
5268
|
|
|
5266
5269
|
.sidebar-header {
|