@turquoisehealth/pit-viper 2.206.0 → 2.206.2
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 +24 -0
- package/_site/assets/css/pit-viper-consumer.css +24 -0
- package/_site/assets/css/pit-viper-v2-scoped.css +21 -0
- package/_site/assets/css/pit-viper-v2.css +43 -0
- package/_site/assets/css/pit-viper.css +24 -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-avatar-group-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-dropdown-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-filter-panel-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-header-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/PvAvatarGroup/PvAvatarGroup.vue.d.ts +3 -1
- package/pv-components/dist/vue/base/components/base/PvAvatarGroup/types.d.ts +2 -0
- package/pv-components/dist/vue/base/components/base/PvDropdown/PvDropdown.vue.d.ts +2 -0
- package/pv-components/dist/vue/base/pv-components-base.mjs +977 -957
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/base/types.d.ts +1 -0
- package/pv-components/dist/vue/visualizations/components/base/PvAvatarGroup/PvAvatarGroup.vue.d.ts +3 -1
- package/pv-components/dist/vue/visualizations/components/base/PvAvatarGroup/types.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/components/base/PvDropdown/PvDropdown.vue.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +185 -168
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/types.d.ts +1 -0
- package/pv-components/dist/web/components/pv-avatar-group/pv-avatar-group.js +31 -25
- package/pv-components/dist/web/components/pv-dropdown/pv-dropdown.js +167 -163
- package/pv-components/dist/web/components/pv-filter-panel/pv-filter-panel.js +1 -1
- package/pv-components/dist/web/components/pv-header/pv-header.js +2 -2
- package/pv-components/dist/web/components/pv-menu/pv-menu.js +5 -2
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +9 -11
- package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +102 -87
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +5 -2
- package/pv-components/dist/web/pv-components.iife.js +14 -14
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
|
@@ -1932,6 +1932,30 @@ div:has(> .pv-input-text[data-suffix="%"]) .pv-input-text {
|
|
|
1932
1932
|
font-size: 3rem;
|
|
1933
1933
|
}
|
|
1934
1934
|
|
|
1935
|
+
.pv-avatar-group-md > li,
|
|
1936
|
+
.pv-avatar-group-md[data-more]:after {
|
|
1937
|
+
width: 20px;
|
|
1938
|
+
font-size: 0.4375rem;
|
|
1939
|
+
letter-spacing: 0.7px;
|
|
1940
|
+
background-size: 12px 12px;
|
|
1941
|
+
}
|
|
1942
|
+
|
|
1943
|
+
.pv-avatar-group-lg > li,
|
|
1944
|
+
.pv-avatar-group-lg[data-more]:after {
|
|
1945
|
+
width: 24px;
|
|
1946
|
+
font-size: 0.6875rem;
|
|
1947
|
+
letter-spacing: 0.11px;
|
|
1948
|
+
background-size: 16px 16px;
|
|
1949
|
+
}
|
|
1950
|
+
|
|
1951
|
+
.pv-avatar-group-xxl > li,
|
|
1952
|
+
.pv-avatar-group-xxl[data-more]:after {
|
|
1953
|
+
width: 40px;
|
|
1954
|
+
font-size: 0.875rem;
|
|
1955
|
+
letter-spacing: 0.14px;
|
|
1956
|
+
background-size: 20px 20px;
|
|
1957
|
+
}
|
|
1958
|
+
|
|
1935
1959
|
.pv-avatar-group {
|
|
1936
1960
|
display: flex;
|
|
1937
1961
|
align-items: center;
|
|
@@ -1938,6 +1938,30 @@ div:has(> .pv-input-text[data-suffix="%"]) .pv-input-text {
|
|
|
1938
1938
|
font-size: 3rem;
|
|
1939
1939
|
}
|
|
1940
1940
|
|
|
1941
|
+
.pv-avatar-group-md > li,
|
|
1942
|
+
.pv-avatar-group-md[data-more]:after {
|
|
1943
|
+
width: 20px;
|
|
1944
|
+
font-size: 0.4375rem;
|
|
1945
|
+
letter-spacing: 0.7px;
|
|
1946
|
+
background-size: 12px 12px;
|
|
1947
|
+
}
|
|
1948
|
+
|
|
1949
|
+
.pv-avatar-group-lg > li,
|
|
1950
|
+
.pv-avatar-group-lg[data-more]:after {
|
|
1951
|
+
width: 24px;
|
|
1952
|
+
font-size: 0.6875rem;
|
|
1953
|
+
letter-spacing: 0.11px;
|
|
1954
|
+
background-size: 16px 16px;
|
|
1955
|
+
}
|
|
1956
|
+
|
|
1957
|
+
.pv-avatar-group-xxl > li,
|
|
1958
|
+
.pv-avatar-group-xxl[data-more]:after {
|
|
1959
|
+
width: 40px;
|
|
1960
|
+
font-size: 0.875rem;
|
|
1961
|
+
letter-spacing: 0.14px;
|
|
1962
|
+
background-size: 20px 20px;
|
|
1963
|
+
}
|
|
1964
|
+
|
|
1941
1965
|
.pv-avatar-group {
|
|
1942
1966
|
display: flex;
|
|
1943
1967
|
align-items: center;
|
|
@@ -1776,6 +1776,27 @@
|
|
|
1776
1776
|
width: 96px;
|
|
1777
1777
|
font-size: 3rem;
|
|
1778
1778
|
}
|
|
1779
|
+
.pv-v2 .pv-avatar-group-md > li,
|
|
1780
|
+
.pv-v2 .pv-avatar-group-md[data-more]:after {
|
|
1781
|
+
width: 20px;
|
|
1782
|
+
font-size: 0.4375rem;
|
|
1783
|
+
letter-spacing: 0.7px;
|
|
1784
|
+
background-size: 12px 12px;
|
|
1785
|
+
}
|
|
1786
|
+
.pv-v2 .pv-avatar-group-lg > li,
|
|
1787
|
+
.pv-v2 .pv-avatar-group-lg[data-more]:after {
|
|
1788
|
+
width: 24px;
|
|
1789
|
+
font-size: 0.6875rem;
|
|
1790
|
+
letter-spacing: 0.11px;
|
|
1791
|
+
background-size: 16px 16px;
|
|
1792
|
+
}
|
|
1793
|
+
.pv-v2 .pv-avatar-group-xxl > li,
|
|
1794
|
+
.pv-v2 .pv-avatar-group-xxl[data-more]:after {
|
|
1795
|
+
width: 40px;
|
|
1796
|
+
font-size: 0.875rem;
|
|
1797
|
+
letter-spacing: 0.14px;
|
|
1798
|
+
background-size: 20px 20px;
|
|
1799
|
+
}
|
|
1779
1800
|
.pv-v2 .pv-avatar-group {
|
|
1780
1801
|
display: flex;
|
|
1781
1802
|
align-items: center;
|
|
@@ -1932,6 +1932,30 @@ div:has(> .pv-input-text[data-suffix="%"]) .pv-input-text {
|
|
|
1932
1932
|
font-size: 3rem;
|
|
1933
1933
|
}
|
|
1934
1934
|
|
|
1935
|
+
.pv-avatar-group-md > li,
|
|
1936
|
+
.pv-avatar-group-md[data-more]:after {
|
|
1937
|
+
width: 20px;
|
|
1938
|
+
font-size: 0.4375rem;
|
|
1939
|
+
letter-spacing: 0.7px;
|
|
1940
|
+
background-size: 12px 12px;
|
|
1941
|
+
}
|
|
1942
|
+
|
|
1943
|
+
.pv-avatar-group-lg > li,
|
|
1944
|
+
.pv-avatar-group-lg[data-more]:after {
|
|
1945
|
+
width: 24px;
|
|
1946
|
+
font-size: 0.6875rem;
|
|
1947
|
+
letter-spacing: 0.11px;
|
|
1948
|
+
background-size: 16px 16px;
|
|
1949
|
+
}
|
|
1950
|
+
|
|
1951
|
+
.pv-avatar-group-xxl > li,
|
|
1952
|
+
.pv-avatar-group-xxl[data-more]:after {
|
|
1953
|
+
width: 40px;
|
|
1954
|
+
font-size: 0.875rem;
|
|
1955
|
+
letter-spacing: 0.14px;
|
|
1956
|
+
background-size: 20px 20px;
|
|
1957
|
+
}
|
|
1958
|
+
|
|
1935
1959
|
.pv-avatar-group {
|
|
1936
1960
|
display: flex;
|
|
1937
1961
|
align-items: center;
|
|
@@ -4027,6 +4051,25 @@ pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
|
|
|
4027
4051
|
color: #121313;
|
|
4028
4052
|
}
|
|
4029
4053
|
|
|
4054
|
+
pv-header [slot=left],
|
|
4055
|
+
pv-header [slot=right],
|
|
4056
|
+
#header-title,
|
|
4057
|
+
#header-actions {
|
|
4058
|
+
--button-padding: var(--button-large-padding, calc(0.5rem - 1px) 0.75rem);
|
|
4059
|
+
--button-gap: var(--button-large-gap, 0.5rem);
|
|
4060
|
+
--button-small-padding: var(--button-large-padding, calc(0.5rem - 1px) 0.75rem);
|
|
4061
|
+
--button-small-font-size: var(--button-font-size, 0.75rem);
|
|
4062
|
+
--button-small-line-height: var(--button-line-height, 1.33333333);
|
|
4063
|
+
--button-icon-only-padding: var(--button-large-icon-only-padding, calc(0.5rem - 1px));
|
|
4064
|
+
--toggle-small-padding: var(--toggle-padding, calc(0.5rem - 1px) 0.75rem);
|
|
4065
|
+
}
|
|
4066
|
+
|
|
4067
|
+
pv-header h3[slot=left].pv-heading-3,
|
|
4068
|
+
pv-header [slot=left] h3.pv-heading-3 {
|
|
4069
|
+
font-size: var(--font-size-heading-2, 1rem);
|
|
4070
|
+
line-height: var(--line-height-heading-2, 1.5);
|
|
4071
|
+
}
|
|
4072
|
+
|
|
4030
4073
|
.pv-card {
|
|
4031
4074
|
position: relative;
|
|
4032
4075
|
border: 1px solid var(--card-border-color, #E3E7EA);
|
|
@@ -1937,6 +1937,30 @@ div:has(> .pv-input-text[data-suffix="%"]) .pv-input-text {
|
|
|
1937
1937
|
font-size: 3rem;
|
|
1938
1938
|
}
|
|
1939
1939
|
|
|
1940
|
+
.pv-avatar-group-md > li,
|
|
1941
|
+
.pv-avatar-group-md[data-more]:after {
|
|
1942
|
+
width: 20px;
|
|
1943
|
+
font-size: 0.4375rem;
|
|
1944
|
+
letter-spacing: unset;
|
|
1945
|
+
background-size: 100%;
|
|
1946
|
+
}
|
|
1947
|
+
|
|
1948
|
+
.pv-avatar-group-lg > li,
|
|
1949
|
+
.pv-avatar-group-lg[data-more]:after {
|
|
1950
|
+
width: 24px;
|
|
1951
|
+
font-size: 0.6875rem;
|
|
1952
|
+
letter-spacing: unset;
|
|
1953
|
+
background-size: 100%;
|
|
1954
|
+
}
|
|
1955
|
+
|
|
1956
|
+
.pv-avatar-group-xxl > li,
|
|
1957
|
+
.pv-avatar-group-xxl[data-more]:after {
|
|
1958
|
+
width: 44px;
|
|
1959
|
+
font-size: 0.875rem;
|
|
1960
|
+
letter-spacing: unset;
|
|
1961
|
+
background-size: 100%;
|
|
1962
|
+
}
|
|
1963
|
+
|
|
1940
1964
|
.pv-avatar-group {
|
|
1941
1965
|
display: flex;
|
|
1942
1966
|
align-items: center;
|