@turquoisehealth/pit-viper 2.129.1-dev.1 → 2.130.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-v2.css +11 -11
- package/_src/assets/sprite-v2.svg +1 -1
- package/_src/assets/sprite.svg +1 -1
- 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-multi-select-button-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/vue/base/components/base/PvMenu/items/PvMenuBaseItem.spec.d.ts +1 -0
- package/pv-components/dist/vue/base/components/base/PvMenu/items/PvMenuBaseItem.vue.d.ts +5 -1
- package/pv-components/dist/vue/base/components/base/PvMenu/items/PvMenuItem.vue.d.ts +2 -0
- package/pv-components/dist/vue/base/components/base/PvMenu/items/PvMenuItemVariant.vue.d.ts +2 -0
- package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +19 -10
- package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/types.d.ts +11 -3
- package/pv-components/dist/vue/base/components/base/PvSelectButton/PvSelectButton.vue.d.ts +2 -0
- package/pv-components/dist/vue/base/pv-components-base.mjs +994 -956
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +2618 -2575
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +945 -909
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +657 -622
- package/pv-components/dist/web/pv-components.iife.js +21 -21
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
[class*=pv-button-link] {
|
|
73
73
|
font-weight: var(--link-font-weight, 500);
|
|
74
74
|
text-decoration: none;
|
|
75
|
-
color: var(--color-text-interactive,
|
|
75
|
+
color: var(--color-text-interactive, #16696D);
|
|
76
76
|
}
|
|
77
77
|
:where(a):hover,
|
|
78
78
|
[class*=pv-button-link]:hover {
|
|
@@ -747,7 +747,7 @@
|
|
|
747
747
|
|
|
748
748
|
[class*=pv-button-link] {
|
|
749
749
|
display: inline-flex;
|
|
750
|
-
color: var(--color-text-interactive,
|
|
750
|
+
color: var(--color-text-interactive, #16696D);
|
|
751
751
|
font-size: inherit;
|
|
752
752
|
line-height: inherit;
|
|
753
753
|
padding: 0;
|
|
@@ -756,7 +756,7 @@
|
|
|
756
756
|
}
|
|
757
757
|
[class*=pv-button-link]:hover, [class*=pv-button-link]:focus-visible {
|
|
758
758
|
text-decoration: underline;
|
|
759
|
-
color: var(--color-text-interactive,
|
|
759
|
+
color: var(--color-text-interactive, #16696D);
|
|
760
760
|
}
|
|
761
761
|
[class*=pv-button-link].pv-button-inverse {
|
|
762
762
|
color: var(--button-link-inverse-color, #FFFFFF);
|
|
@@ -884,7 +884,7 @@
|
|
|
884
884
|
box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.05), 0px 4px 6px -2px rgba(0, 0, 0, 0.04), 0px 0px 0px 0 rgba(0, 0, 0, 0.15);
|
|
885
885
|
}
|
|
886
886
|
[class*=pv-button-floating]:hover:not(:disabled), [class*=pv-button-floating]:focus-visible:not(:disabled) {
|
|
887
|
-
background-color: #
|
|
887
|
+
background-color: #16696D;
|
|
888
888
|
}
|
|
889
889
|
[class*=pv-button-floating]:active:not(:disabled) {
|
|
890
890
|
background-color: #02363D;
|
|
@@ -1913,7 +1913,7 @@ div:has(> .pv-input-text[data-suffix="%"]) .pv-input-text {
|
|
|
1913
1913
|
}
|
|
1914
1914
|
.pv-nav-list-inverse [aria-current=page],
|
|
1915
1915
|
[data-collapsed] .pv-nav-list-inverse [aria-current=page] {
|
|
1916
|
-
background-color: #
|
|
1916
|
+
background-color: #16696D;
|
|
1917
1917
|
color: #FFFFFF;
|
|
1918
1918
|
}
|
|
1919
1919
|
.pv-nav-list-inverse li:not(:last-child),
|
|
@@ -2245,7 +2245,7 @@ div:has(> .pv-input-text[data-suffix="%"]) .pv-input-text {
|
|
|
2245
2245
|
.pv-table :where(a:not[class*=pv-text]):hover, .pv-table :where(a:not[class*=pv-text]):focus,
|
|
2246
2246
|
.pv-table-compressed :where(a:not[class*=pv-text]):hover,
|
|
2247
2247
|
.pv-table-compressed :where(a:not[class*=pv-text]):focus {
|
|
2248
|
-
color:
|
|
2248
|
+
color: #16696D;
|
|
2249
2249
|
text-decoration: none;
|
|
2250
2250
|
}
|
|
2251
2251
|
|
|
@@ -2869,7 +2869,7 @@ button.pv-tag-secondary:active {
|
|
|
2869
2869
|
color: var(--tab-list-text-color, #6E8081);
|
|
2870
2870
|
font-weight: var(--tab-list-font-weight, 500);
|
|
2871
2871
|
font-size: var(--tab-list-font-size, 0.75rem);
|
|
2872
|
-
line-height: var(--tab-list-line-height,
|
|
2872
|
+
line-height: var(--tab-list-line-height, 1.33333333);
|
|
2873
2873
|
padding: var(--tab-list-item-padding, 0.4375rem 0.5rem);
|
|
2874
2874
|
border-radius: var(--tab-list-item-radius, 4px) var(--tab-list-item-radius, 4px) 0 0;
|
|
2875
2875
|
border: 0;
|
|
@@ -3467,7 +3467,7 @@ pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
|
|
|
3467
3467
|
|
|
3468
3468
|
.pv-accordion-dark > summary {
|
|
3469
3469
|
color: var(--color-text-inverse, #FFFFFF);
|
|
3470
|
-
background-color: var(--color-background-brand, #
|
|
3470
|
+
background-color: var(--color-background-brand, #16696D);
|
|
3471
3471
|
}
|
|
3472
3472
|
.pv-accordion-dark > summary:hover, .pv-accordion-dark > summary:focus-within {
|
|
3473
3473
|
color: var(--color-text-brand-inverse, #E4F8F6);
|
|
@@ -3557,8 +3557,8 @@ pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
|
|
|
3557
3557
|
--max-width: 360px;
|
|
3558
3558
|
--text-color: #FFFFFF;
|
|
3559
3559
|
--hover-color: #FFFFFF;
|
|
3560
|
-
background-color: #
|
|
3561
|
-
box-shadow: 0 8px 32px rgba(
|
|
3560
|
+
background-color: #16696D;
|
|
3561
|
+
box-shadow: 0 8px 32px rgba(22, 105, 109, 0.24);
|
|
3562
3562
|
color: var(--text-color);
|
|
3563
3563
|
display: flex;
|
|
3564
3564
|
align-items: center;
|
|
@@ -4796,7 +4796,7 @@ body:has(.pv-layout-primary) {
|
|
|
4796
4796
|
}
|
|
4797
4797
|
|
|
4798
4798
|
.pv-surface-brand {
|
|
4799
|
-
background-color: var(--color-background-brand, #
|
|
4799
|
+
background-color: var(--color-background-brand, #16696D);
|
|
4800
4800
|
}
|
|
4801
4801
|
|
|
4802
4802
|
.pv-surface-accent, .ag-theme-pv .ag-header-cell {
|