@turquoisehealth/pit-viper 2.203.1-dev.2 → 2.205.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.
@@ -6555,7 +6555,7 @@ input.select2-search__field::placeholder {
6555
6555
  :root {
6556
6556
  --p-datepicker-today-background: #F0F2F2;
6557
6557
  --p-datepicker-date-border-radius: 4px;
6558
- --p-datepicker-date-padding: 1px;
6558
+ --p-datepicker-date-padding: 0.125rem;
6559
6559
  --p-datepicker-date-selected-background: #13595D;
6560
6560
  --p-datepicker-date-range-selected-background: #E4F8F6;
6561
6561
  --p-datepicker-date-range-selected-color: #121313;
@@ -6612,23 +6612,25 @@ input.select2-search__field::placeholder {
6612
6612
 
6613
6613
  .p-datepicker-month-view {
6614
6614
  display: grid;
6615
- grid-template-columns: repeat(3, max-content);
6615
+ grid-template-columns: repeat(3, 1fr);
6616
6616
  }
6617
6617
 
6618
6618
  .p-datepicker-year-view {
6619
6619
  display: grid;
6620
- grid-template-columns: repeat(2, max-content);
6620
+ grid-template-columns: repeat(2, 1fr);
6621
6621
  }
6622
6622
 
6623
6623
  .p-datepicker-month-view .p-datepicker-month,
6624
6624
  .p-datepicker-year-view .p-datepicker-month {
6625
6625
  margin: 2px;
6626
- width: 48px;
6626
+ min-width: 48px;
6627
+ width: auto;
6627
6628
  }
6628
6629
  .p-datepicker-month-view .p-datepicker-year,
6629
6630
  .p-datepicker-year-view .p-datepicker-year {
6630
6631
  margin: 2px;
6631
- width: 56px;
6632
+ min-width: 56px;
6633
+ width: auto;
6632
6634
  }
6633
6635
  .p-datepicker-month-view .p-datepicker-month-selected,
6634
6636
  .p-datepicker-month-view .p-datepicker-year-selected,
@@ -6374,7 +6374,7 @@ input.select2-search__field::placeholder {
6374
6374
  :root {
6375
6375
  --p-datepicker-today-background: #F7F8F8;
6376
6376
  --p-datepicker-date-border-radius: 6px;
6377
- --p-datepicker-date-padding: 1px;
6377
+ --p-datepicker-date-padding: 0.125rem;
6378
6378
  --p-datepicker-date-selected-background: #147F85;
6379
6379
  --p-datepicker-date-range-selected-background: #E4F8F6;
6380
6380
  --p-datepicker-date-range-selected-color: #1A3A39;
@@ -6431,23 +6431,25 @@ input.select2-search__field::placeholder {
6431
6431
 
6432
6432
  .p-datepicker-month-view {
6433
6433
  display: grid;
6434
- grid-template-columns: repeat(3, max-content);
6434
+ grid-template-columns: repeat(3, 1fr);
6435
6435
  }
6436
6436
 
6437
6437
  .p-datepicker-year-view {
6438
6438
  display: grid;
6439
- grid-template-columns: repeat(2, max-content);
6439
+ grid-template-columns: repeat(2, 1fr);
6440
6440
  }
6441
6441
 
6442
6442
  .p-datepicker-month-view .p-datepicker-month,
6443
6443
  .p-datepicker-year-view .p-datepicker-month {
6444
6444
  margin: 2px;
6445
- width: 48px;
6445
+ min-width: 48px;
6446
+ width: auto;
6446
6447
  }
6447
6448
  .p-datepicker-month-view .p-datepicker-year,
6448
6449
  .p-datepicker-year-view .p-datepicker-year {
6449
6450
  margin: 2px;
6450
- width: 56px;
6451
+ min-width: 56px;
6452
+ width: auto;
6451
6453
  }
6452
6454
  .p-datepicker-month-view .p-datepicker-month-selected,
6453
6455
  .p-datepicker-month-view .p-datepicker-year-selected,
@@ -5745,7 +5745,7 @@
5745
5745
  .pv-v2 :root {
5746
5746
  --p-datepicker-today-background: #F7F8F8;
5747
5747
  --p-datepicker-date-border-radius: 4px;
5748
- --p-datepicker-date-padding: 1px;
5748
+ --p-datepicker-date-padding: 0.125rem;
5749
5749
  --p-datepicker-date-selected-background: #16696D;
5750
5750
  --p-datepicker-date-range-selected-background: #E4F8F6;
5751
5751
  --p-datepicker-date-range-selected-color: #121313;
@@ -5795,21 +5795,23 @@
5795
5795
  }
5796
5796
  .pv-v2 .p-datepicker-month-view {
5797
5797
  display: grid;
5798
- grid-template-columns: repeat(3, max-content);
5798
+ grid-template-columns: repeat(3, 1fr);
5799
5799
  }
5800
5800
  .pv-v2 .p-datepicker-year-view {
5801
5801
  display: grid;
5802
- grid-template-columns: repeat(2, max-content);
5802
+ grid-template-columns: repeat(2, 1fr);
5803
5803
  }
5804
5804
  .pv-v2 .p-datepicker-month-view .p-datepicker-month,
5805
5805
  .pv-v2 .p-datepicker-year-view .p-datepicker-month {
5806
5806
  margin: 2px;
5807
- width: 48px;
5807
+ min-width: 48px;
5808
+ width: auto;
5808
5809
  }
5809
5810
  .pv-v2 .p-datepicker-month-view .p-datepicker-year,
5810
5811
  .pv-v2 .p-datepicker-year-view .p-datepicker-year {
5811
5812
  margin: 2px;
5812
- width: 56px;
5813
+ min-width: 56px;
5814
+ width: auto;
5813
5815
  }
5814
5816
  .pv-v2 .p-datepicker-month-view .p-datepicker-month-selected,
5815
5817
  .pv-v2 .p-datepicker-month-view .p-datepicker-year-selected,
@@ -6702,7 +6702,7 @@ input.select2-search__field::placeholder {
6702
6702
  :root {
6703
6703
  --p-datepicker-today-background: #F7F8F8;
6704
6704
  --p-datepicker-date-border-radius: 4px;
6705
- --p-datepicker-date-padding: 1px;
6705
+ --p-datepicker-date-padding: 0.125rem;
6706
6706
  --p-datepicker-date-selected-background: #16696D;
6707
6707
  --p-datepicker-date-range-selected-background: #E4F8F6;
6708
6708
  --p-datepicker-date-range-selected-color: #121313;
@@ -6759,23 +6759,25 @@ input.select2-search__field::placeholder {
6759
6759
 
6760
6760
  .p-datepicker-month-view {
6761
6761
  display: grid;
6762
- grid-template-columns: repeat(3, max-content);
6762
+ grid-template-columns: repeat(3, 1fr);
6763
6763
  }
6764
6764
 
6765
6765
  .p-datepicker-year-view {
6766
6766
  display: grid;
6767
- grid-template-columns: repeat(2, max-content);
6767
+ grid-template-columns: repeat(2, 1fr);
6768
6768
  }
6769
6769
 
6770
6770
  .p-datepicker-month-view .p-datepicker-month,
6771
6771
  .p-datepicker-year-view .p-datepicker-month {
6772
6772
  margin: 2px;
6773
- width: 48px;
6773
+ min-width: 48px;
6774
+ width: auto;
6774
6775
  }
6775
6776
  .p-datepicker-month-view .p-datepicker-year,
6776
6777
  .p-datepicker-year-view .p-datepicker-year {
6777
6778
  margin: 2px;
6778
- width: 56px;
6779
+ min-width: 56px;
6780
+ width: auto;
6779
6781
  }
6780
6782
  .p-datepicker-month-view .p-datepicker-month-selected,
6781
6783
  .p-datepicker-month-view .p-datepicker-year-selected,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turquoisehealth/pit-viper",
3
- "version": "2.203.1-dev.2",
3
+ "version": "2.205.0",
4
4
  "description": "Turquoise Health's design system.",
5
5
  "main": "README.md",
6
6
  "publishConfig": {