@turquoisehealth/pit-viper 2.235.1 → 2.236.1
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 +22 -1
- package/_site/assets/css/pit-viper-consumer.css +22 -1
- package/_site/assets/css/pit-viper-v2-scoped.css +20 -1
- package/_site/assets/css/pit-viper-v2.css +23 -1
- package/_site/assets/css/pit-viper.css +22 -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-suggestion-tag-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 +5 -4
- 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 +5 -4
- 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 +4 -3
- 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-suggestion-tag/pv-suggestion-tag.js +1 -1
- 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 {
|
|
@@ -3217,6 +3234,10 @@ button.pv-tag-secondary:active {
|
|
|
3217
3234
|
color: #121313;
|
|
3218
3235
|
}
|
|
3219
3236
|
|
|
3237
|
+
.pv-suggestion-tag {
|
|
3238
|
+
--tag-secondary-color: var(--suggestion-tag-color, #4B595C);
|
|
3239
|
+
}
|
|
3240
|
+
|
|
3220
3241
|
.pv-pill {
|
|
3221
3242
|
display: inline-block;
|
|
3222
3243
|
padding: 3px 6px;
|
|
@@ -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 {
|
|
@@ -3223,6 +3240,10 @@ button.pv-tag-secondary:active {
|
|
|
3223
3240
|
color: #1A3A39;
|
|
3224
3241
|
}
|
|
3225
3242
|
|
|
3243
|
+
.pv-suggestion-tag {
|
|
3244
|
+
--tag-secondary-color: var(--suggestion-tag-color, #486161);
|
|
3245
|
+
}
|
|
3246
|
+
|
|
3226
3247
|
.pv-pill {
|
|
3227
3248
|
display: inline-block;
|
|
3228
3249
|
padding: 3px 6px;
|
|
@@ -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;
|
|
@@ -2930,6 +2946,9 @@
|
|
|
2930
2946
|
background-color: #C7D8DB;
|
|
2931
2947
|
color: #121313;
|
|
2932
2948
|
}
|
|
2949
|
+
.pv-v2 .pv-suggestion-tag {
|
|
2950
|
+
--tag-secondary-color: var(--suggestion-tag-color, #4B595C);
|
|
2951
|
+
}
|
|
2933
2952
|
.pv-v2 .pv-pill {
|
|
2934
2953
|
display: inline-block;
|
|
2935
2954
|
padding: 3px 6px;
|
|
@@ -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 {
|
|
@@ -3217,6 +3234,10 @@ button.pv-tag-secondary:active {
|
|
|
3217
3234
|
color: #121313;
|
|
3218
3235
|
}
|
|
3219
3236
|
|
|
3237
|
+
.pv-suggestion-tag {
|
|
3238
|
+
--tag-secondary-color: var(--suggestion-tag-color, #4B595C);
|
|
3239
|
+
}
|
|
3240
|
+
|
|
3220
3241
|
.pv-pill {
|
|
3221
3242
|
display: inline-block;
|
|
3222
3243
|
padding: 3px 6px;
|
|
@@ -5640,6 +5661,7 @@ pv-sidebar {
|
|
|
5640
5661
|
}
|
|
5641
5662
|
.sidebar-layout-new .pv-sidebar-nav .pv-accordion > summary {
|
|
5642
5663
|
padding-inline-end: 0.75rem;
|
|
5664
|
+
background-image: none;
|
|
5643
5665
|
}
|
|
5644
5666
|
.sidebar-layout-new.is-collapsed .sidebar-header {
|
|
5645
5667
|
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 {
|
|
@@ -3222,6 +3239,10 @@ button.pv-tag-secondary:active {
|
|
|
3222
3239
|
color: #121313;
|
|
3223
3240
|
}
|
|
3224
3241
|
|
|
3242
|
+
.pv-suggestion-tag {
|
|
3243
|
+
--tag-secondary-color: var(--suggestion-tag-color, #4B595C);
|
|
3244
|
+
}
|
|
3245
|
+
|
|
3225
3246
|
.pv-pill {
|
|
3226
3247
|
display: inline-block;
|
|
3227
3248
|
padding: 3px 6px;
|