@turquoisehealth/pit-viper 2.147.0 → 2.148.1-dev.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 +5 -1
- package/_site/assets/css/pit-viper-consumer.css +5990 -0
- package/_site/assets/css/pit-viper-v2-scoped.css +16 -12
- package/_site/assets/css/pit-viper-v2.css +5 -1
- package/_site/assets/css/pit-viper.css +4 -0
- package/package.json +2 -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-company-label-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-company-logo-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-company-tag-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-date-picker-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-date-time-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-drawer-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-dropdown-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-menu-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-popover-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-search-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-skeleton-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/visualizations/components/charts/PvDataTableWithChart/constants.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +2621 -2623
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +0 -491
- package/pv-components/dist/vue/charts/pv-components-charts.js +0 -259
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +0 -121834
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +0 -259
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +0 -299
- package/pv-components/dist/vue/tables/pv-components-tables.js +0 -223
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +0 -47028
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +0 -223
|
@@ -155,7 +155,7 @@
|
|
|
155
155
|
}
|
|
156
156
|
|
|
157
157
|
[class*=pv-heading] {
|
|
158
|
-
font-family: var(--font-family-body,
|
|
158
|
+
font-family: var(--font-family-body, HK Grotesk, sans-serif);
|
|
159
159
|
font-weight: 600;
|
|
160
160
|
letter-spacing: 0.2px;
|
|
161
161
|
}
|
|
@@ -445,6 +445,7 @@
|
|
|
445
445
|
:where([class*=pv-button]),
|
|
446
446
|
:where([class*=pv-segmented-control] button) {
|
|
447
447
|
background-color: transparent;
|
|
448
|
+
background-image: none;
|
|
448
449
|
border: 1px solid transparent;
|
|
449
450
|
cursor: pointer;
|
|
450
451
|
display: flex;
|
|
@@ -513,13 +514,16 @@
|
|
|
513
514
|
.pv-button-primary {
|
|
514
515
|
color: var(--button-primary-color, #FFFFFF);
|
|
515
516
|
background-color: var(--button-primary-background-color, #13595D);
|
|
517
|
+
background-image: var(--button-primary-background-image, none);
|
|
516
518
|
}
|
|
517
519
|
.pv-button-primary:not(:disabled):hover, .pv-button-primary:not(:disabled):focus-visible {
|
|
518
520
|
color: var(--button-primary-hover-color, #FFFFFF);
|
|
519
521
|
background-color: var(--button-primary-hover-background-color, #0D5256);
|
|
522
|
+
background-image: var(--button-primary-hover-background-image, none);
|
|
520
523
|
}
|
|
521
524
|
.pv-button-primary:not(:disabled):active {
|
|
522
525
|
background-color: var(--button-primary-pressed-background-color, #02363D);
|
|
526
|
+
background-image: var(--button-primary-pressed-background-image, none);
|
|
523
527
|
}
|
|
524
528
|
|
|
525
529
|
.pv-button-primary.pv-button-inverse {
|