@turquoisehealth/pit-viper 2.150.1-dev.0 → 2.151.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 +15 -0
- package/_site/assets/css/pit-viper-consumer.css +15 -0
- package/_site/assets/css/pit-viper-v2-scoped.css +15 -0
- package/_site/assets/css/pit-viper-v2.css +15 -0
- package/_site/assets/css/pit-viper.css +15 -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-accordion-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-menu-stats.html +4949 -0
- 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-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-toggle-group-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-tooltip-v2-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-tree-stats.html +1 -1
- package/pv-components/dist/vue/base/components/base/PvAccordion/PvAccordion.vue.d.ts +1 -0
- package/pv-components/dist/vue/base/components/base/PvMenu/PvMenu.vue.d.ts +15 -182
- package/pv-components/dist/vue/base/components/base/PvMenu/types.d.ts +10 -0
- package/pv-components/dist/vue/base/components/base/index.d.ts +2 -0
- package/pv-components/dist/vue/base/pv-components-base.mjs +2411 -2418
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/components/base/PvAccordion/PvAccordion.vue.d.ts +1 -0
- package/pv-components/dist/vue/visualizations/components/base/PvMenu/PvMenu.vue.d.ts +15 -182
- package/pv-components/dist/vue/visualizations/components/base/PvMenu/types.d.ts +10 -0
- package/pv-components/dist/vue/visualizations/components/base/index.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +2588 -2600
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/web/components/pv-accordion/pv-accordion.js +59 -50
- package/pv-components/dist/web/components/pv-menu/pv-menu.js +6607 -0
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +1520 -1489
- package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +1146 -1180
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +1986 -1941
- package/pv-components/dist/web/components/pv-tree/pv-tree.js +149 -140
- package/pv-components/dist/web/pv-components.iife.js +49 -49
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
|
@@ -1219,6 +1219,21 @@ label:has(input:not(:disabled)).pv-label-hover:hover {
|
|
|
1219
1219
|
position: relative;
|
|
1220
1220
|
border-radius: 50%;
|
|
1221
1221
|
}
|
|
1222
|
+
.pv-radio:not(:checked):not(:disabled):hover, .pv-radio:not(:checked):not(:disabled):focus-visible {
|
|
1223
|
+
background-color: transparent;
|
|
1224
|
+
}
|
|
1225
|
+
.pv-radio:not(:checked):not(:disabled):hover:after, .pv-radio:not(:checked):not(:disabled):focus-visible:after {
|
|
1226
|
+
content: "";
|
|
1227
|
+
display: block;
|
|
1228
|
+
width: var(--radio-checked-after-size, 8px);
|
|
1229
|
+
height: var(--radio-checked-after-size, 8px);
|
|
1230
|
+
background-color: var(--radio-checked-after-background-color, #13595D);
|
|
1231
|
+
position: absolute;
|
|
1232
|
+
top: 50%;
|
|
1233
|
+
left: 50%;
|
|
1234
|
+
transform: translate(-50%, -50%);
|
|
1235
|
+
border-radius: 50%;
|
|
1236
|
+
}
|
|
1222
1237
|
.pv-radio:indeterminate {
|
|
1223
1238
|
background-color: unset;
|
|
1224
1239
|
border-color: var(--color-border, #8F939E);
|
|
@@ -1225,6 +1225,21 @@ label:has(input:not(:disabled)).pv-label-hover:hover {
|
|
|
1225
1225
|
position: relative;
|
|
1226
1226
|
border-radius: 50%;
|
|
1227
1227
|
}
|
|
1228
|
+
.pv-radio:not(:checked):not(:disabled):hover, .pv-radio:not(:checked):not(:disabled):focus-visible {
|
|
1229
|
+
background-color: transparent;
|
|
1230
|
+
}
|
|
1231
|
+
.pv-radio:not(:checked):not(:disabled):hover:after, .pv-radio:not(:checked):not(:disabled):focus-visible:after {
|
|
1232
|
+
content: "";
|
|
1233
|
+
display: block;
|
|
1234
|
+
width: var(--radio-checked-after-size, 8px);
|
|
1235
|
+
height: var(--radio-checked-after-size, 8px);
|
|
1236
|
+
background-color: var(--radio-checked-after-background-color, #147F85);
|
|
1237
|
+
position: absolute;
|
|
1238
|
+
top: 50%;
|
|
1239
|
+
left: 50%;
|
|
1240
|
+
transform: translate(-50%, -50%);
|
|
1241
|
+
border-radius: 50%;
|
|
1242
|
+
}
|
|
1228
1243
|
.pv-radio:indeterminate {
|
|
1229
1244
|
background-color: unset;
|
|
1230
1245
|
border-color: var(--color-border, #E8EBEB);
|
|
@@ -1120,6 +1120,21 @@
|
|
|
1120
1120
|
position: relative;
|
|
1121
1121
|
border-radius: 50%;
|
|
1122
1122
|
}
|
|
1123
|
+
.pv-v2 .pv-radio:not(:checked):not(:disabled):hover, .pv-v2 .pv-radio:not(:checked):not(:disabled):focus-visible {
|
|
1124
|
+
background-color: transparent;
|
|
1125
|
+
}
|
|
1126
|
+
.pv-v2 .pv-radio:not(:checked):not(:disabled):hover:after, .pv-v2 .pv-radio:not(:checked):not(:disabled):focus-visible:after {
|
|
1127
|
+
content: "";
|
|
1128
|
+
display: block;
|
|
1129
|
+
width: var(--radio-checked-after-size, 8px);
|
|
1130
|
+
height: var(--radio-checked-after-size, 8px);
|
|
1131
|
+
background-color: var(--radio-checked-after-background-color, #16696D);
|
|
1132
|
+
position: absolute;
|
|
1133
|
+
top: 50%;
|
|
1134
|
+
left: 50%;
|
|
1135
|
+
transform: translate(-50%, -50%);
|
|
1136
|
+
border-radius: 50%;
|
|
1137
|
+
}
|
|
1123
1138
|
.pv-v2 .pv-radio:indeterminate {
|
|
1124
1139
|
background-color: unset;
|
|
1125
1140
|
border-color: var(--color-border, #E3E7EA);
|
|
@@ -1219,6 +1219,21 @@ label:has(input:not(:disabled)).pv-label-hover:hover {
|
|
|
1219
1219
|
position: relative;
|
|
1220
1220
|
border-radius: 50%;
|
|
1221
1221
|
}
|
|
1222
|
+
.pv-radio:not(:checked):not(:disabled):hover, .pv-radio:not(:checked):not(:disabled):focus-visible {
|
|
1223
|
+
background-color: transparent;
|
|
1224
|
+
}
|
|
1225
|
+
.pv-radio:not(:checked):not(:disabled):hover:after, .pv-radio:not(:checked):not(:disabled):focus-visible:after {
|
|
1226
|
+
content: "";
|
|
1227
|
+
display: block;
|
|
1228
|
+
width: var(--radio-checked-after-size, 8px);
|
|
1229
|
+
height: var(--radio-checked-after-size, 8px);
|
|
1230
|
+
background-color: var(--radio-checked-after-background-color, #16696D);
|
|
1231
|
+
position: absolute;
|
|
1232
|
+
top: 50%;
|
|
1233
|
+
left: 50%;
|
|
1234
|
+
transform: translate(-50%, -50%);
|
|
1235
|
+
border-radius: 50%;
|
|
1236
|
+
}
|
|
1222
1237
|
.pv-radio:indeterminate {
|
|
1223
1238
|
background-color: unset;
|
|
1224
1239
|
border-color: var(--color-border, #E3E7EA);
|
|
@@ -1224,6 +1224,21 @@ label:has(input:not(:disabled)).pv-label-hover:hover {
|
|
|
1224
1224
|
position: relative;
|
|
1225
1225
|
border-radius: 50%;
|
|
1226
1226
|
}
|
|
1227
|
+
.pv-radio:not(:checked):not(:disabled):hover, .pv-radio:not(:checked):not(:disabled):focus-visible {
|
|
1228
|
+
background-color: transparent;
|
|
1229
|
+
}
|
|
1230
|
+
.pv-radio:not(:checked):not(:disabled):hover:after, .pv-radio:not(:checked):not(:disabled):focus-visible:after {
|
|
1231
|
+
content: "";
|
|
1232
|
+
display: block;
|
|
1233
|
+
width: var(--radio-checked-after-size, 6px);
|
|
1234
|
+
height: var(--radio-checked-after-size, 6px);
|
|
1235
|
+
background-color: var(--radio-checked-after-background-color, #FFFFFF);
|
|
1236
|
+
position: absolute;
|
|
1237
|
+
top: 50%;
|
|
1238
|
+
left: 50%;
|
|
1239
|
+
transform: translate(-50%, -50%);
|
|
1240
|
+
border-radius: 50%;
|
|
1241
|
+
}
|
|
1227
1242
|
.pv-radio:indeterminate {
|
|
1228
1243
|
background-color: unset;
|
|
1229
1244
|
border-color: var(--color-border, #DCDFE4);
|