@turquoisehealth/pit-viper 2.213.0 → 2.214.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 +27 -0
- package/_site/assets/css/pit-viper-consumer.css +27 -0
- package/_site/assets/css/pit-viper-v2-scoped.css +26 -0
- package/_site/assets/css/pit-viper-v2.css +27 -0
- package/_site/assets/css/pit-viper.css +27 -0
- 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-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-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/PvFilterPanel/types.d.ts +2 -1
- package/pv-components/dist/vue/base/pv-components-base.mjs +10 -7
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/components/base/PvFilterPanel/types.d.ts +2 -1
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/chartTypeRegistry.d.ts +0 -2
- package/pv-components/dist/vue/visualizations/components/charts/PvMapChart/PvMapChart.vue.d.ts +6 -1
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +1971 -1958
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/web/components/pv-menu/pv-menu.js +9 -6
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +9 -6
- package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +1 -1
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +9 -6
- package/pv-components/dist/web/pv-components.iife.js +1 -1
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
|
@@ -6091,6 +6091,33 @@ svg.pv-text-inherit {
|
|
|
6091
6091
|
display: none;
|
|
6092
6092
|
}
|
|
6093
6093
|
}
|
|
6094
|
+
.pv-scrollbar-visible {
|
|
6095
|
+
scrollbar-color: var(--color-border, #c1c1c1) transparent;
|
|
6096
|
+
scrollbar-gutter: stable;
|
|
6097
|
+
scrollbar-width: thin;
|
|
6098
|
+
}
|
|
6099
|
+
@supports selector(::-webkit-scrollbar) {
|
|
6100
|
+
.pv-scrollbar-visible {
|
|
6101
|
+
scrollbar-color: auto;
|
|
6102
|
+
scrollbar-width: auto;
|
|
6103
|
+
}
|
|
6104
|
+
}
|
|
6105
|
+
.pv-scrollbar-visible::-webkit-scrollbar {
|
|
6106
|
+
-webkit-appearance: none;
|
|
6107
|
+
width: 8px;
|
|
6108
|
+
height: 8px;
|
|
6109
|
+
}
|
|
6110
|
+
.pv-scrollbar-visible::-webkit-scrollbar-thumb {
|
|
6111
|
+
border-radius: 8px;
|
|
6112
|
+
background-color: var(--color-border, #c1c1c1);
|
|
6113
|
+
}
|
|
6114
|
+
.pv-scrollbar-visible::-webkit-scrollbar-thumb:hover {
|
|
6115
|
+
background-color: var(--color-text-subdued, #7c7c7c);
|
|
6116
|
+
}
|
|
6117
|
+
.pv-scrollbar-visible::-webkit-scrollbar-track {
|
|
6118
|
+
background-color: transparent;
|
|
6119
|
+
}
|
|
6120
|
+
|
|
6094
6121
|
.pv-scroll {
|
|
6095
6122
|
overflow-x: auto;
|
|
6096
6123
|
scrollbar-color: #C1C1C1 #FAFAFA;
|
|
@@ -5912,6 +5912,33 @@ svg.pv-text-inherit {
|
|
|
5912
5912
|
display: none;
|
|
5913
5913
|
}
|
|
5914
5914
|
}
|
|
5915
|
+
.pv-scrollbar-visible {
|
|
5916
|
+
scrollbar-color: var(--color-border, #c1c1c1) transparent;
|
|
5917
|
+
scrollbar-gutter: stable;
|
|
5918
|
+
scrollbar-width: thin;
|
|
5919
|
+
}
|
|
5920
|
+
@supports selector(::-webkit-scrollbar) {
|
|
5921
|
+
.pv-scrollbar-visible {
|
|
5922
|
+
scrollbar-color: auto;
|
|
5923
|
+
scrollbar-width: auto;
|
|
5924
|
+
}
|
|
5925
|
+
}
|
|
5926
|
+
.pv-scrollbar-visible::-webkit-scrollbar {
|
|
5927
|
+
-webkit-appearance: none;
|
|
5928
|
+
width: 8px;
|
|
5929
|
+
height: 8px;
|
|
5930
|
+
}
|
|
5931
|
+
.pv-scrollbar-visible::-webkit-scrollbar-thumb {
|
|
5932
|
+
border-radius: 8px;
|
|
5933
|
+
background-color: var(--color-border, #c1c1c1);
|
|
5934
|
+
}
|
|
5935
|
+
.pv-scrollbar-visible::-webkit-scrollbar-thumb:hover {
|
|
5936
|
+
background-color: var(--color-text-subdued, #7c7c7c);
|
|
5937
|
+
}
|
|
5938
|
+
.pv-scrollbar-visible::-webkit-scrollbar-track {
|
|
5939
|
+
background-color: transparent;
|
|
5940
|
+
}
|
|
5941
|
+
|
|
5915
5942
|
.pv-scroll {
|
|
5916
5943
|
overflow-x: auto;
|
|
5917
5944
|
scrollbar-color: #C1C1C1 #FAFAFA;
|
|
@@ -5342,6 +5342,32 @@
|
|
|
5342
5342
|
display: none;
|
|
5343
5343
|
}
|
|
5344
5344
|
}
|
|
5345
|
+
.pv-v2 .pv-scrollbar-visible {
|
|
5346
|
+
scrollbar-color: var(--color-border, #c1c1c1) transparent;
|
|
5347
|
+
scrollbar-gutter: stable;
|
|
5348
|
+
scrollbar-width: thin;
|
|
5349
|
+
}
|
|
5350
|
+
@supports selector(::-webkit-scrollbar) {
|
|
5351
|
+
.pv-v2 .pv-scrollbar-visible {
|
|
5352
|
+
scrollbar-color: auto;
|
|
5353
|
+
scrollbar-width: auto;
|
|
5354
|
+
}
|
|
5355
|
+
}
|
|
5356
|
+
.pv-v2 .pv-scrollbar-visible::-webkit-scrollbar {
|
|
5357
|
+
-webkit-appearance: none;
|
|
5358
|
+
width: 8px;
|
|
5359
|
+
height: 8px;
|
|
5360
|
+
}
|
|
5361
|
+
.pv-v2 .pv-scrollbar-visible::-webkit-scrollbar-thumb {
|
|
5362
|
+
border-radius: 8px;
|
|
5363
|
+
background-color: var(--color-border, #c1c1c1);
|
|
5364
|
+
}
|
|
5365
|
+
.pv-v2 .pv-scrollbar-visible::-webkit-scrollbar-thumb:hover {
|
|
5366
|
+
background-color: var(--color-text-subdued, #7c7c7c);
|
|
5367
|
+
}
|
|
5368
|
+
.pv-v2 .pv-scrollbar-visible::-webkit-scrollbar-track {
|
|
5369
|
+
background-color: transparent;
|
|
5370
|
+
}
|
|
5345
5371
|
.pv-v2 .pv-scroll {
|
|
5346
5372
|
overflow-x: auto;
|
|
5347
5373
|
scrollbar-color: #C1C1C1 #FAFAFA;
|
|
@@ -6262,6 +6262,33 @@ svg.pv-text-inherit {
|
|
|
6262
6262
|
display: none;
|
|
6263
6263
|
}
|
|
6264
6264
|
}
|
|
6265
|
+
.pv-scrollbar-visible {
|
|
6266
|
+
scrollbar-color: var(--color-border, #c1c1c1) transparent;
|
|
6267
|
+
scrollbar-gutter: stable;
|
|
6268
|
+
scrollbar-width: thin;
|
|
6269
|
+
}
|
|
6270
|
+
@supports selector(::-webkit-scrollbar) {
|
|
6271
|
+
.pv-scrollbar-visible {
|
|
6272
|
+
scrollbar-color: auto;
|
|
6273
|
+
scrollbar-width: auto;
|
|
6274
|
+
}
|
|
6275
|
+
}
|
|
6276
|
+
.pv-scrollbar-visible::-webkit-scrollbar {
|
|
6277
|
+
-webkit-appearance: none;
|
|
6278
|
+
width: 8px;
|
|
6279
|
+
height: 8px;
|
|
6280
|
+
}
|
|
6281
|
+
.pv-scrollbar-visible::-webkit-scrollbar-thumb {
|
|
6282
|
+
border-radius: 8px;
|
|
6283
|
+
background-color: var(--color-border, #c1c1c1);
|
|
6284
|
+
}
|
|
6285
|
+
.pv-scrollbar-visible::-webkit-scrollbar-thumb:hover {
|
|
6286
|
+
background-color: var(--color-text-subdued, #7c7c7c);
|
|
6287
|
+
}
|
|
6288
|
+
.pv-scrollbar-visible::-webkit-scrollbar-track {
|
|
6289
|
+
background-color: transparent;
|
|
6290
|
+
}
|
|
6291
|
+
|
|
6265
6292
|
.pv-scroll {
|
|
6266
6293
|
overflow-x: auto;
|
|
6267
6294
|
scrollbar-color: #C1C1C1 #FAFAFA;
|
|
@@ -5911,6 +5911,33 @@ svg.pv-text-inherit {
|
|
|
5911
5911
|
display: none;
|
|
5912
5912
|
}
|
|
5913
5913
|
}
|
|
5914
|
+
.pv-scrollbar-visible {
|
|
5915
|
+
scrollbar-color: var(--color-border, #c1c1c1) transparent;
|
|
5916
|
+
scrollbar-gutter: stable;
|
|
5917
|
+
scrollbar-width: thin;
|
|
5918
|
+
}
|
|
5919
|
+
@supports selector(::-webkit-scrollbar) {
|
|
5920
|
+
.pv-scrollbar-visible {
|
|
5921
|
+
scrollbar-color: auto;
|
|
5922
|
+
scrollbar-width: auto;
|
|
5923
|
+
}
|
|
5924
|
+
}
|
|
5925
|
+
.pv-scrollbar-visible::-webkit-scrollbar {
|
|
5926
|
+
-webkit-appearance: none;
|
|
5927
|
+
width: 8px;
|
|
5928
|
+
height: 8px;
|
|
5929
|
+
}
|
|
5930
|
+
.pv-scrollbar-visible::-webkit-scrollbar-thumb {
|
|
5931
|
+
border-radius: 8px;
|
|
5932
|
+
background-color: var(--color-border, #c1c1c1);
|
|
5933
|
+
}
|
|
5934
|
+
.pv-scrollbar-visible::-webkit-scrollbar-thumb:hover {
|
|
5935
|
+
background-color: var(--color-text-subdued, #7c7c7c);
|
|
5936
|
+
}
|
|
5937
|
+
.pv-scrollbar-visible::-webkit-scrollbar-track {
|
|
5938
|
+
background-color: transparent;
|
|
5939
|
+
}
|
|
5940
|
+
|
|
5914
5941
|
.pv-scroll {
|
|
5915
5942
|
overflow-x: auto;
|
|
5916
5943
|
scrollbar-color: #C1C1C1 #FAFAFA;
|