@turquoisehealth/pit-viper 2.160.0 → 2.160.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 +1 -1
- package/_site/assets/css/pit-viper-consumer.css +5 -5
- package/_site/assets/css/pit-viper-v2-scoped.css +1 -1
- package/_site/assets/css/pit-viper-v2.css +1 -1
- 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-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-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-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/charts/pv-components-charts.d.ts +491 -0
- package/pv-components/dist/vue/charts/pv-components-charts.js +259 -0
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +121834 -0
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +259 -0
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +299 -0
- package/pv-components/dist/vue/tables/pv-components-tables.js +223 -0
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +47028 -0
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +223 -0
- package/pv-components/dist/web/pv-components.iife.js +1 -1
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
|
@@ -988,8 +988,8 @@
|
|
|
988
988
|
.pv-select-multiple {
|
|
989
989
|
color: #1A3A39;
|
|
990
990
|
padding: var(--text-input-padding, calc(0.5rem - 1px) 0.75rem);
|
|
991
|
-
font-size: var(--text-input-font-size,
|
|
992
|
-
line-height: var(--text-input-line-height, 1.
|
|
991
|
+
font-size: var(--text-input-font-size, 0.875rem);
|
|
992
|
+
line-height: var(--text-input-line-height, 1.4285714286);
|
|
993
993
|
border: var(--text-input-border-width, 1px) solid var(--text-input-border-color, #E8EBEB);
|
|
994
994
|
border-radius: var(--text-input-radius, 6px);
|
|
995
995
|
appearance: none;
|
|
@@ -1412,7 +1412,7 @@ label:has(input:not(:disabled)).pv-label-hover:hover {
|
|
|
1412
1412
|
}
|
|
1413
1413
|
|
|
1414
1414
|
.pv-input-small {
|
|
1415
|
-
padding: var(--text-input-small-padding,
|
|
1415
|
+
padding: var(--text-input-small-padding, 0.3125rem 1rem);
|
|
1416
1416
|
}
|
|
1417
1417
|
.pv-input-small.pv-select-multiple, .pv-input-small.pv-select {
|
|
1418
1418
|
padding-inline-end: 2rem;
|
|
@@ -1439,8 +1439,8 @@ div:has(> .pv-input-text[data-suffix]) {
|
|
|
1439
1439
|
div:has(> .pv-input-text[data-prefix]):after,
|
|
1440
1440
|
div:has(> .pv-input-text[data-suffix]):after {
|
|
1441
1441
|
position: absolute;
|
|
1442
|
-
font-size:
|
|
1443
|
-
line-height: 1.
|
|
1442
|
+
font-size: 0.875rem;
|
|
1443
|
+
line-height: 1.4285714286;
|
|
1444
1444
|
top: 50%;
|
|
1445
1445
|
transform: translateY(-50%);
|
|
1446
1446
|
}
|