@turquoisehealth/pit-viper 2.147.1-dev.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/visualizations/stats.html +1 -1
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/constants.d.ts +2 -3
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/types.d.ts +1 -1
- package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/helpers.d.ts +0 -1
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +3300 -3522
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/chartTypeRegistry.d.ts +0 -27
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
.pv-v2 [class*=pv-button-link] {
|
|
74
74
|
font-weight: var(--link-font-weight, 500);
|
|
75
75
|
text-decoration: none;
|
|
76
|
-
color: var(--color-text-interactive,
|
|
76
|
+
color: var(--color-text-interactive, #16696D);
|
|
77
77
|
}
|
|
78
78
|
.pv-v2 :where(a):hover,
|
|
79
79
|
.pv-v2 [class*=pv-button-link]:hover {
|
|
@@ -139,7 +139,7 @@
|
|
|
139
139
|
letter-spacing: 0.01em;
|
|
140
140
|
}
|
|
141
141
|
.pv-v2 [class*=pv-heading] {
|
|
142
|
-
font-family: var(--font-family-body,
|
|
142
|
+
font-family: var(--font-family-body, HK Grotesk, sans-serif);
|
|
143
143
|
font-weight: 600;
|
|
144
144
|
letter-spacing: 0.2px;
|
|
145
145
|
}
|
|
@@ -387,6 +387,7 @@
|
|
|
387
387
|
.pv-v2 :where([class*=pv-button]),
|
|
388
388
|
.pv-v2 :where([class*=pv-segmented-control] button) {
|
|
389
389
|
background-color: transparent;
|
|
390
|
+
background-image: none;
|
|
390
391
|
border: 1px solid transparent;
|
|
391
392
|
cursor: pointer;
|
|
392
393
|
display: flex;
|
|
@@ -453,13 +454,16 @@
|
|
|
453
454
|
.pv-v2 .pv-button-primary {
|
|
454
455
|
color: var(--button-primary-color, #FFFFFF);
|
|
455
456
|
background-color: var(--button-primary-background-color, #16696D);
|
|
457
|
+
background-image: var(--button-primary-background-image, none);
|
|
456
458
|
}
|
|
457
459
|
.pv-v2 .pv-button-primary:not(:disabled):hover, .pv-v2 .pv-button-primary:not(:disabled):focus-visible {
|
|
458
460
|
color: var(--button-primary-hover-color, #FFFFFF);
|
|
459
461
|
background-color: var(--button-primary-hover-background-color, #0D5256);
|
|
462
|
+
background-image: var(--button-primary-hover-background-image, none);
|
|
460
463
|
}
|
|
461
464
|
.pv-v2 .pv-button-primary:not(:disabled):active {
|
|
462
465
|
background-color: var(--button-primary-pressed-background-color, #02363D);
|
|
466
|
+
background-image: var(--button-primary-pressed-background-image, none);
|
|
463
467
|
}
|
|
464
468
|
.pv-v2 .pv-button-primary.pv-button-inverse {
|
|
465
469
|
color: #121313;
|
|
@@ -669,7 +673,7 @@
|
|
|
669
673
|
}
|
|
670
674
|
.pv-v2 [class*=pv-button-link] {
|
|
671
675
|
display: inline-flex;
|
|
672
|
-
color: var(--color-text-interactive,
|
|
676
|
+
color: var(--color-text-interactive, #16696D);
|
|
673
677
|
font-size: inherit;
|
|
674
678
|
line-height: inherit;
|
|
675
679
|
padding: 0;
|
|
@@ -678,7 +682,7 @@
|
|
|
678
682
|
}
|
|
679
683
|
.pv-v2 [class*=pv-button-link]:hover, .pv-v2 [class*=pv-button-link]:focus-visible {
|
|
680
684
|
text-decoration: underline;
|
|
681
|
-
color: var(--color-text-interactive,
|
|
685
|
+
color: var(--color-text-interactive, #16696D);
|
|
682
686
|
}
|
|
683
687
|
.pv-v2 [class*=pv-button-link].pv-button-inverse {
|
|
684
688
|
color: var(--button-link-inverse-color, #FFFFFF);
|
|
@@ -799,7 +803,7 @@
|
|
|
799
803
|
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);
|
|
800
804
|
}
|
|
801
805
|
.pv-v2 [class*=pv-button-floating]:hover:not(:disabled), .pv-v2 [class*=pv-button-floating]:focus-visible:not(:disabled) {
|
|
802
|
-
background-color: #
|
|
806
|
+
background-color: #16696D;
|
|
803
807
|
}
|
|
804
808
|
.pv-v2 [class*=pv-button-floating]:active:not(:disabled) {
|
|
805
809
|
background-color: #02363D;
|
|
@@ -1800,7 +1804,7 @@
|
|
|
1800
1804
|
}
|
|
1801
1805
|
.pv-v2 .pv-nav-list-inverse [aria-current=page],
|
|
1802
1806
|
.pv-v2 [data-collapsed] .pv-nav-list-inverse [aria-current=page] {
|
|
1803
|
-
background-color: #
|
|
1807
|
+
background-color: #16696D;
|
|
1804
1808
|
color: #FFFFFF;
|
|
1805
1809
|
}
|
|
1806
1810
|
.pv-v2 .pv-nav-list-inverse li:not(:last-child),
|
|
@@ -2099,7 +2103,7 @@
|
|
|
2099
2103
|
.pv-v2 .pv-table :where(a:not[class*=pv-text]):hover, .pv-v2 .pv-table :where(a:not[class*=pv-text]):focus,
|
|
2100
2104
|
.pv-v2 .pv-table-compressed :where(a:not[class*=pv-text]):hover,
|
|
2101
2105
|
.pv-v2 .pv-table-compressed :where(a:not[class*=pv-text]):focus {
|
|
2102
|
-
color:
|
|
2106
|
+
color: #16696D;
|
|
2103
2107
|
text-decoration: none;
|
|
2104
2108
|
}
|
|
2105
2109
|
.pv-v2 .pv-table th {
|
|
@@ -2660,7 +2664,7 @@
|
|
|
2660
2664
|
color: var(--tab-list-text-color, #6E8081);
|
|
2661
2665
|
font-weight: var(--tab-list-font-weight, 500);
|
|
2662
2666
|
font-size: var(--tab-list-font-size, 0.75rem);
|
|
2663
|
-
line-height: var(--tab-list-line-height,
|
|
2667
|
+
line-height: var(--tab-list-line-height, 1.33333333);
|
|
2664
2668
|
padding: var(--tab-list-item-padding, 0.4375rem 0.5rem);
|
|
2665
2669
|
border-radius: var(--tab-list-item-radius, 4px) var(--tab-list-item-radius, 4px) 0 0;
|
|
2666
2670
|
border: 0;
|
|
@@ -3228,7 +3232,7 @@
|
|
|
3228
3232
|
}
|
|
3229
3233
|
.pv-v2 .pv-accordion-dark > summary {
|
|
3230
3234
|
color: var(--color-text-inverse, #FFFFFF);
|
|
3231
|
-
background-color: var(--color-background-brand, #
|
|
3235
|
+
background-color: var(--color-background-brand, #16696D);
|
|
3232
3236
|
}
|
|
3233
3237
|
.pv-v2 .pv-accordion-dark > summary:hover, .pv-v2 .pv-accordion-dark > summary:focus-within {
|
|
3234
3238
|
color: var(--color-text-brand-inverse, #E4F8F6);
|
|
@@ -3315,8 +3319,8 @@
|
|
|
3315
3319
|
--max-width: 360px;
|
|
3316
3320
|
--text-color: #FFFFFF;
|
|
3317
3321
|
--hover-color: #FFFFFF;
|
|
3318
|
-
background-color: #
|
|
3319
|
-
box-shadow: 0 8px 32px rgba(
|
|
3322
|
+
background-color: #16696D;
|
|
3323
|
+
box-shadow: 0 8px 32px rgba(22, 105, 109, 0.24);
|
|
3320
3324
|
color: var(--text-color);
|
|
3321
3325
|
display: flex;
|
|
3322
3326
|
align-items: center;
|
|
@@ -4445,7 +4449,7 @@
|
|
|
4445
4449
|
display: none;
|
|
4446
4450
|
}
|
|
4447
4451
|
.pv-v2 .pv-surface-brand {
|
|
4448
|
-
background-color: var(--color-background-brand, #
|
|
4452
|
+
background-color: var(--color-background-brand, #16696D);
|
|
4449
4453
|
}
|
|
4450
4454
|
.pv-v2 .pv-surface-accent, .pv-v2 .ag-theme-pv .ag-header-cell {
|
|
4451
4455
|
background-color: var(--color-background-accent, #F7F8F8);
|
|
@@ -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, #16696D);
|
|
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 {
|
|
@@ -450,6 +450,7 @@
|
|
|
450
450
|
:where([class*=pv-button]),
|
|
451
451
|
:where([class*=pv-segmented-control] button) {
|
|
452
452
|
background-color: transparent;
|
|
453
|
+
background-image: none;
|
|
453
454
|
border: 1px solid transparent;
|
|
454
455
|
cursor: pointer;
|
|
455
456
|
display: flex;
|
|
@@ -518,13 +519,16 @@
|
|
|
518
519
|
.pv-button-primary {
|
|
519
520
|
color: var(--button-primary-color, #FFFFFF);
|
|
520
521
|
background-color: var(--button-primary-background-color, #176F6F);
|
|
522
|
+
background-image: var(--button-primary-background-image, none);
|
|
521
523
|
}
|
|
522
524
|
.pv-button-primary:not(:disabled):hover, .pv-button-primary:not(:disabled):focus-visible {
|
|
523
525
|
color: var(--button-primary-hover-color, #FFFFFF);
|
|
524
526
|
background-color: var(--button-primary-hover-background-color, #0D5256);
|
|
527
|
+
background-image: var(--button-primary-hover-background-image, none);
|
|
525
528
|
}
|
|
526
529
|
.pv-button-primary:not(:disabled):active {
|
|
527
530
|
background-color: var(--button-primary-pressed-background-color, #0D5256);
|
|
531
|
+
background-image: var(--button-primary-pressed-background-image, none);
|
|
528
532
|
}
|
|
529
533
|
|
|
530
534
|
.pv-button-primary.pv-button-inverse {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@turquoisehealth/pit-viper",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.148.1-dev.0",
|
|
4
4
|
"description": "Turquoise Health's design system.",
|
|
5
5
|
"main": "README.md",
|
|
6
6
|
"publishConfig": {
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"_site/assets/css/pit-viper-v2.css",
|
|
18
18
|
"_site/assets/css/pit-viper-v2-scoped.css",
|
|
19
19
|
"_site/assets/css/pit-viper-a11y.css",
|
|
20
|
+
"_site/assets/css/pit-viper-consumer.css",
|
|
20
21
|
"_site/assets/js/pit-viper.js",
|
|
21
22
|
"_src/assets/sprite.svg",
|
|
22
23
|
"_src/assets/sprite-v2.svg",
|