@turquoisehealth/pit-viper 2.235.1 → 2.236.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 +18 -1
- package/_site/assets/css/pit-viper-consumer.css +18 -1
- package/_site/assets/css/pit-viper-v2-scoped.css +17 -1
- package/_site/assets/css/pit-viper-v2.css +19 -1
- package/_site/assets/css/pit-viper.css +18 -1
- 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-action-button-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-filter-modal-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-filter-panel-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-hover-action-menu-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-popover-v2-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-sidebar-v2-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-split-button-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-tag-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/ai/components/base/PvTag/types.d.ts +1 -1
- package/pv-components/dist/vue/base/components/base/PvTag/types.d.ts +1 -1
- package/pv-components/dist/vue/base/pv-components-base.mjs +4 -3
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/components/base/PvTag/types.d.ts +1 -1
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +4 -3
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/web/components/pv-action-button/pv-action-button.js +2 -6
- package/pv-components/dist/web/components/pv-filter-modal/pv-filter-modal.js +2 -2
- package/pv-components/dist/web/components/pv-filter-panel/pv-filter-panel.js +3 -2
- package/pv-components/dist/web/components/pv-hover-action-menu/pv-hover-action-menu.js +191 -191
- package/pv-components/dist/web/components/pv-menu/pv-menu.js +2 -2
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +2 -2
- package/pv-components/dist/web/components/pv-popover-v2/pv-popover-v2.js +2 -6
- package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +3 -2
- package/pv-components/dist/web/components/pv-segmented-control/pv-segmented-control.js +755 -755
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +2 -2
- package/pv-components/dist/web/components/pv-sidebar-v2/pv-sidebar-v2.js +2 -2
- package/pv-components/dist/web/components/pv-split-button/pv-split-button.js +2 -2
- package/pv-components/dist/web/components/pv-tag/pv-tag.js +1 -0
- package/pv-components/dist/web/components/pv-toggle-group/pv-toggle-group.js +2 -6
- package/pv-components/dist/web/components/pv-tooltip-v2/pv-tooltip-v2.js +2 -6
- package/pv-components/dist/web/pv-components.iife.js +1 -1
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
|
@@ -2942,6 +2942,23 @@ td:not([rowspan]) > .pv-responsive-cell {
|
|
|
2942
2942
|
background-color: #F0F2F2;
|
|
2943
2943
|
}
|
|
2944
2944
|
|
|
2945
|
+
.pv-floating-native {
|
|
2946
|
+
position: fixed;
|
|
2947
|
+
inset: auto;
|
|
2948
|
+
margin: 0;
|
|
2949
|
+
border: 0;
|
|
2950
|
+
padding: 0;
|
|
2951
|
+
width: max-content;
|
|
2952
|
+
overflow: visible;
|
|
2953
|
+
color: inherit;
|
|
2954
|
+
background: none;
|
|
2955
|
+
position-visibility: anchors-visible;
|
|
2956
|
+
}
|
|
2957
|
+
.pv-floating-native > .pv-popover,
|
|
2958
|
+
.pv-floating-native > slot[name=content]::slotted(.pv-popover) {
|
|
2959
|
+
position: static !important;
|
|
2960
|
+
}
|
|
2961
|
+
|
|
2945
2962
|
.pv-popover {
|
|
2946
2963
|
--width: 220px;
|
|
2947
2964
|
--height: 266px;
|
|
@@ -3205,7 +3222,7 @@ button.pv-tag-primary:active {
|
|
|
3205
3222
|
.pv-tag-secondary {
|
|
3206
3223
|
background-color: var(--tag-secondary-background-color, #FFFFFF);
|
|
3207
3224
|
border-color: var(--tag-secondary-border-color, #8F939E);
|
|
3208
|
-
color: var(--tag-secondary-color, #
|
|
3225
|
+
color: var(--tag-secondary-color, #121313);
|
|
3209
3226
|
}
|
|
3210
3227
|
|
|
3211
3228
|
button.pv-tag-secondary:hover, button.pv-tag-secondary:focus-visible {
|
|
@@ -2948,6 +2948,23 @@ td:not([rowspan]) > .pv-responsive-cell {
|
|
|
2948
2948
|
background-color: #F7F8F8;
|
|
2949
2949
|
}
|
|
2950
2950
|
|
|
2951
|
+
.pv-floating-native {
|
|
2952
|
+
position: fixed;
|
|
2953
|
+
inset: auto;
|
|
2954
|
+
margin: 0;
|
|
2955
|
+
border: 0;
|
|
2956
|
+
padding: 0;
|
|
2957
|
+
width: max-content;
|
|
2958
|
+
overflow: visible;
|
|
2959
|
+
color: inherit;
|
|
2960
|
+
background: none;
|
|
2961
|
+
position-visibility: anchors-visible;
|
|
2962
|
+
}
|
|
2963
|
+
.pv-floating-native > .pv-popover,
|
|
2964
|
+
.pv-floating-native > slot[name=content]::slotted(.pv-popover) {
|
|
2965
|
+
position: static !important;
|
|
2966
|
+
}
|
|
2967
|
+
|
|
2951
2968
|
.pv-popover {
|
|
2952
2969
|
--width: 220px;
|
|
2953
2970
|
--height: 266px;
|
|
@@ -3211,7 +3228,7 @@ button.pv-tag-primary:active {
|
|
|
3211
3228
|
.pv-tag-secondary {
|
|
3212
3229
|
background-color: var(--tag-secondary-background-color, #FFFFFF);
|
|
3213
3230
|
border-color: var(--tag-secondary-border-color, #D1D8D7);
|
|
3214
|
-
color: var(--tag-secondary-color, #
|
|
3231
|
+
color: var(--tag-secondary-color, #1A3A39);
|
|
3215
3232
|
}
|
|
3216
3233
|
|
|
3217
3234
|
button.pv-tag-secondary:hover, button.pv-tag-secondary:focus-visible {
|
|
@@ -2686,6 +2686,22 @@
|
|
|
2686
2686
|
.pv-v2 .pv-cell-hover:focus-within {
|
|
2687
2687
|
background-color: #F7F8F8;
|
|
2688
2688
|
}
|
|
2689
|
+
.pv-v2 .pv-floating-native {
|
|
2690
|
+
position: fixed;
|
|
2691
|
+
inset: auto;
|
|
2692
|
+
margin: 0;
|
|
2693
|
+
border: 0;
|
|
2694
|
+
padding: 0;
|
|
2695
|
+
width: max-content;
|
|
2696
|
+
overflow: visible;
|
|
2697
|
+
color: inherit;
|
|
2698
|
+
background: none;
|
|
2699
|
+
position-visibility: anchors-visible;
|
|
2700
|
+
}
|
|
2701
|
+
.pv-v2 .pv-floating-native > .pv-popover,
|
|
2702
|
+
.pv-v2 .pv-floating-native > slot[name=content]::slotted(.pv-popover) {
|
|
2703
|
+
position: static !important;
|
|
2704
|
+
}
|
|
2689
2705
|
.pv-v2 .pv-popover {
|
|
2690
2706
|
--width: 220px;
|
|
2691
2707
|
--height: 266px;
|
|
@@ -2920,7 +2936,7 @@
|
|
|
2920
2936
|
.pv-v2 .pv-tag-secondary {
|
|
2921
2937
|
background-color: var(--tag-secondary-background-color, #FFFFFF);
|
|
2922
2938
|
border-color: var(--tag-secondary-border-color, #D2D8DC);
|
|
2923
|
-
color: var(--tag-secondary-color, #
|
|
2939
|
+
color: var(--tag-secondary-color, #121313);
|
|
2924
2940
|
}
|
|
2925
2941
|
.pv-v2 button.pv-tag-secondary:hover, .pv-v2 button.pv-tag-secondary:focus-visible {
|
|
2926
2942
|
background-color: #E8F2F4;
|
|
@@ -2942,6 +2942,23 @@ td:not([rowspan]) > .pv-responsive-cell {
|
|
|
2942
2942
|
background-color: #F7F8F8;
|
|
2943
2943
|
}
|
|
2944
2944
|
|
|
2945
|
+
.pv-floating-native {
|
|
2946
|
+
position: fixed;
|
|
2947
|
+
inset: auto;
|
|
2948
|
+
margin: 0;
|
|
2949
|
+
border: 0;
|
|
2950
|
+
padding: 0;
|
|
2951
|
+
width: max-content;
|
|
2952
|
+
overflow: visible;
|
|
2953
|
+
color: inherit;
|
|
2954
|
+
background: none;
|
|
2955
|
+
position-visibility: anchors-visible;
|
|
2956
|
+
}
|
|
2957
|
+
.pv-floating-native > .pv-popover,
|
|
2958
|
+
.pv-floating-native > slot[name=content]::slotted(.pv-popover) {
|
|
2959
|
+
position: static !important;
|
|
2960
|
+
}
|
|
2961
|
+
|
|
2945
2962
|
.pv-popover {
|
|
2946
2963
|
--width: 220px;
|
|
2947
2964
|
--height: 266px;
|
|
@@ -3205,7 +3222,7 @@ button.pv-tag-primary:active {
|
|
|
3205
3222
|
.pv-tag-secondary {
|
|
3206
3223
|
background-color: var(--tag-secondary-background-color, #FFFFFF);
|
|
3207
3224
|
border-color: var(--tag-secondary-border-color, #D2D8DC);
|
|
3208
|
-
color: var(--tag-secondary-color, #
|
|
3225
|
+
color: var(--tag-secondary-color, #121313);
|
|
3209
3226
|
}
|
|
3210
3227
|
|
|
3211
3228
|
button.pv-tag-secondary:hover, button.pv-tag-secondary:focus-visible {
|
|
@@ -5640,6 +5657,7 @@ pv-sidebar {
|
|
|
5640
5657
|
}
|
|
5641
5658
|
.sidebar-layout-new .pv-sidebar-nav .pv-accordion > summary {
|
|
5642
5659
|
padding-inline-end: 0.75rem;
|
|
5660
|
+
background-image: none;
|
|
5643
5661
|
}
|
|
5644
5662
|
.sidebar-layout-new.is-collapsed .sidebar-header {
|
|
5645
5663
|
flex-direction: column;
|
|
@@ -2947,6 +2947,23 @@ td:not([rowspan]) > .pv-responsive-cell {
|
|
|
2947
2947
|
background-color: #F8F8FA;
|
|
2948
2948
|
}
|
|
2949
2949
|
|
|
2950
|
+
.pv-floating-native {
|
|
2951
|
+
position: fixed;
|
|
2952
|
+
inset: auto;
|
|
2953
|
+
margin: 0;
|
|
2954
|
+
border: 0;
|
|
2955
|
+
padding: 0;
|
|
2956
|
+
width: max-content;
|
|
2957
|
+
overflow: visible;
|
|
2958
|
+
color: inherit;
|
|
2959
|
+
background: none;
|
|
2960
|
+
position-visibility: anchors-visible;
|
|
2961
|
+
}
|
|
2962
|
+
.pv-floating-native > .pv-popover,
|
|
2963
|
+
.pv-floating-native > slot[name=content]::slotted(.pv-popover) {
|
|
2964
|
+
position: static !important;
|
|
2965
|
+
}
|
|
2966
|
+
|
|
2950
2967
|
.pv-popover {
|
|
2951
2968
|
--width: 220px;
|
|
2952
2969
|
--height: 266px;
|
|
@@ -3210,7 +3227,7 @@ button.pv-tag-primary:active {
|
|
|
3210
3227
|
.pv-tag-secondary {
|
|
3211
3228
|
background-color: var(--tag-secondary-background-color, #FFFFFF);
|
|
3212
3229
|
border-color: var(--tag-secondary-border-color, #D2D8DC);
|
|
3213
|
-
color: var(--tag-secondary-color, #
|
|
3230
|
+
color: var(--tag-secondary-color, #121313);
|
|
3214
3231
|
}
|
|
3215
3232
|
|
|
3216
3233
|
button.pv-tag-secondary:hover, button.pv-tag-secondary:focus-visible {
|