@turquoisehealth/pit-viper 2.189.2-dev.0 → 2.191.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 +14 -0
- package/_site/assets/css/pit-viper-consumer.css +14 -0
- package/_site/assets/css/pit-viper-v2-scoped.css +11 -0
- package/_site/assets/css/pit-viper-v2.css +14 -0
- package/_site/assets/css/pit-viper.css +14 -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-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-menu-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-modal-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/PvAvatar/PvAvatar.vue.d.ts +2 -15
- package/pv-components/dist/vue/base/components/base/PvAvatar/types.d.ts +17 -0
- package/pv-components/dist/vue/base/components/base/PvMenu/cascadeUtils.d.ts +7 -0
- package/pv-components/dist/vue/base/components/base/PvMenu/types.d.ts +2 -0
- package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +6 -0
- package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/types.d.ts +7 -0
- package/pv-components/dist/vue/base/components/base/PvSelectButton/PvSelectButtonTrigger/PvSelectButtonTrigger.vue.d.ts +5 -21
- package/pv-components/dist/vue/base/components/base/PvSelectButton/PvSelectButtonTrigger/types.d.ts +27 -0
- package/pv-components/dist/vue/base/pv-components-base.mjs +459 -386
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/base/types.d.ts +3 -0
- package/pv-components/dist/vue/visualizations/components/base/PvAvatar/PvAvatar.vue.d.ts +2 -15
- package/pv-components/dist/vue/visualizations/components/base/PvAvatar/types.d.ts +17 -0
- package/pv-components/dist/vue/visualizations/components/base/PvMenu/cascadeUtils.d.ts +7 -0
- package/pv-components/dist/vue/visualizations/components/base/PvMenu/types.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +6 -0
- package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/types.d.ts +7 -0
- package/pv-components/dist/vue/visualizations/components/base/PvSelectButton/PvSelectButtonTrigger/PvSelectButtonTrigger.vue.d.ts +5 -21
- package/pv-components/dist/vue/visualizations/components/base/PvSelectButton/PvSelectButtonTrigger/types.d.ts +27 -0
- package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/useSetFilter.d.ts +9 -2
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +1933 -1823
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/types.d.ts +3 -0
- package/pv-components/dist/web/components/pv-avatar/pv-avatar.js +8 -3
- package/pv-components/dist/web/components/pv-menu/pv-menu.js +835 -817
- package/pv-components/dist/web/components/pv-modal/pv-modal.js +2 -3
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +1186 -1111
- package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +814 -799
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +923 -853
- package/pv-components/dist/web/pv-components.iife.js +31 -31
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
|
@@ -1810,6 +1810,20 @@ div:has(> .pv-input-text[data-suffix="%"]) .pv-input-text {
|
|
|
1810
1810
|
border-radius: 2px;
|
|
1811
1811
|
}
|
|
1812
1812
|
|
|
1813
|
+
.pv-avatar-16[data-shape=square] {
|
|
1814
|
+
border-radius: 2px;
|
|
1815
|
+
}
|
|
1816
|
+
|
|
1817
|
+
.pv-avatar-20[data-shape=square],
|
|
1818
|
+
.pv-avatar-xs[data-shape=square],
|
|
1819
|
+
.pv-avatar-sm[data-shape=square] {
|
|
1820
|
+
border-radius: 4px;
|
|
1821
|
+
}
|
|
1822
|
+
|
|
1823
|
+
.pv-avatar-md[data-shape=square] {
|
|
1824
|
+
border-radius: 8px;
|
|
1825
|
+
}
|
|
1826
|
+
|
|
1813
1827
|
[class*=pv-avatar][data-style="2"] {
|
|
1814
1828
|
background-color: #16696D;
|
|
1815
1829
|
}
|
|
@@ -1816,6 +1816,20 @@ div:has(> .pv-input-text[data-suffix="%"]) .pv-input-text {
|
|
|
1816
1816
|
border-radius: 2px;
|
|
1817
1817
|
}
|
|
1818
1818
|
|
|
1819
|
+
.pv-avatar-16[data-shape=square] {
|
|
1820
|
+
border-radius: 2px;
|
|
1821
|
+
}
|
|
1822
|
+
|
|
1823
|
+
.pv-avatar-20[data-shape=square],
|
|
1824
|
+
.pv-avatar-xs[data-shape=square],
|
|
1825
|
+
.pv-avatar-sm[data-shape=square] {
|
|
1826
|
+
border-radius: 4px;
|
|
1827
|
+
}
|
|
1828
|
+
|
|
1829
|
+
.pv-avatar-md[data-shape=square] {
|
|
1830
|
+
border-radius: 8px;
|
|
1831
|
+
}
|
|
1832
|
+
|
|
1819
1833
|
[class*=pv-avatar][data-style="2"] {
|
|
1820
1834
|
background-color: #16696D;
|
|
1821
1835
|
}
|
|
@@ -1669,6 +1669,17 @@
|
|
|
1669
1669
|
width: 12px;
|
|
1670
1670
|
border-radius: 2px;
|
|
1671
1671
|
}
|
|
1672
|
+
.pv-v2 .pv-avatar-16[data-shape=square] {
|
|
1673
|
+
border-radius: 2px;
|
|
1674
|
+
}
|
|
1675
|
+
.pv-v2 .pv-avatar-20[data-shape=square],
|
|
1676
|
+
.pv-v2 .pv-avatar-xs[data-shape=square],
|
|
1677
|
+
.pv-v2 .pv-avatar-sm[data-shape=square] {
|
|
1678
|
+
border-radius: 4px;
|
|
1679
|
+
}
|
|
1680
|
+
.pv-v2 .pv-avatar-md[data-shape=square] {
|
|
1681
|
+
border-radius: 8px;
|
|
1682
|
+
}
|
|
1672
1683
|
.pv-v2 [class*=pv-avatar][data-style="2"] {
|
|
1673
1684
|
background-color: #16696D;
|
|
1674
1685
|
}
|
|
@@ -1810,6 +1810,20 @@ div:has(> .pv-input-text[data-suffix="%"]) .pv-input-text {
|
|
|
1810
1810
|
border-radius: 2px;
|
|
1811
1811
|
}
|
|
1812
1812
|
|
|
1813
|
+
.pv-avatar-16[data-shape=square] {
|
|
1814
|
+
border-radius: 2px;
|
|
1815
|
+
}
|
|
1816
|
+
|
|
1817
|
+
.pv-avatar-20[data-shape=square],
|
|
1818
|
+
.pv-avatar-xs[data-shape=square],
|
|
1819
|
+
.pv-avatar-sm[data-shape=square] {
|
|
1820
|
+
border-radius: 4px;
|
|
1821
|
+
}
|
|
1822
|
+
|
|
1823
|
+
.pv-avatar-md[data-shape=square] {
|
|
1824
|
+
border-radius: 8px;
|
|
1825
|
+
}
|
|
1826
|
+
|
|
1813
1827
|
[class*=pv-avatar][data-style="2"] {
|
|
1814
1828
|
background-color: #16696D;
|
|
1815
1829
|
}
|
|
@@ -1815,6 +1815,20 @@ div:has(> .pv-input-text[data-suffix="%"]) .pv-input-text {
|
|
|
1815
1815
|
border-radius: 2px;
|
|
1816
1816
|
}
|
|
1817
1817
|
|
|
1818
|
+
.pv-avatar-16[data-shape=square] {
|
|
1819
|
+
border-radius: 2px;
|
|
1820
|
+
}
|
|
1821
|
+
|
|
1822
|
+
.pv-avatar-20[data-shape=square],
|
|
1823
|
+
.pv-avatar-xs[data-shape=square],
|
|
1824
|
+
.pv-avatar-sm[data-shape=square] {
|
|
1825
|
+
border-radius: 4px;
|
|
1826
|
+
}
|
|
1827
|
+
|
|
1828
|
+
.pv-avatar-md[data-shape=square] {
|
|
1829
|
+
border-radius: 8px;
|
|
1830
|
+
}
|
|
1831
|
+
|
|
1818
1832
|
[class*=pv-avatar][data-style="2"] {
|
|
1819
1833
|
background-color: #16696D;
|
|
1820
1834
|
}
|