@mixtint/primer-view-components 0.73.0 → 0.75.1

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.
@@ -4686,6 +4686,12 @@ a.tabnav-extra:hover {
4686
4686
  animation: checkmarkIn 80ms cubic-bezier(0.65, 0, 0.35, 1) forwards 80ms;
4687
4687
  }
4688
4688
 
4689
+ /* singleselect checkmark */
4690
+
4691
+ [aria-checked='false']:is(.TreeViewRootUlStyles .TreeViewItemContent) .TreeViewItem-singleSelectCheckmark {
4692
+ visibility: hidden;
4693
+ }
4694
+
4689
4695
  [aria-checked='mixed']:is(.TreeViewRootUlStyles .TreeViewItemContent) .FormControl-checkbox {
4690
4696
  background: var(--control-checked-bgColor-rest);
4691
4697
  border-color: var(--control-checked-borderColor-rest);
@@ -4984,7 +4990,6 @@ a.tabnav-extra:hover {
4984
4990
  /* stylelint-disable-next-line primer/colors */
4985
4991
  border-right: var(--borderWidth-thin) solid var(--bgColor-default);
4986
4992
  border-radius: var(--borderRadius-small);
4987
- box-shadow: none;
4988
4993
  transition: margin 0.1s ease-in-out;
4989
4994
  }
4990
4995
 
@@ -6699,12 +6704,23 @@ select-panel dialog::backdrop {
6699
6704
 
6700
6705
  .Progress-item {
6701
6706
  outline: 2px solid transparent; /* Support Firefox custom colors */
6707
+ background: LinkText;
6702
6708
  }
6703
6709
 
6704
6710
  .Progress-item + .Progress-item {
6705
6711
  margin-left: var(--base-size-2);
6706
6712
  }
6707
6713
 
6714
+ @media (forced-colors: active) {
6715
+ :root {
6716
+ --progressBar-track-bgColor: CanvasText;
6717
+ }
6718
+
6719
+ .Progress, .Progress-item {
6720
+ forced-color-adjust: none;
6721
+ }
6722
+ }
6723
+
6708
6724
  /* State */
6709
6725
 
6710
6726
  /* Default 32px */
@@ -6728,9 +6744,10 @@ select-panel dialog::backdrop {
6728
6744
  .State,
6729
6745
  .State--draft {
6730
6746
  color: var(--fgColor-onEmphasis);
6731
- background-color: var(--bgColor-neutral-emphasis);
6747
+ /* stylelint-disable-next-line primer/colors */
6748
+ background-color: var(--bgColor-draft-emphasis, var(--bgColor-neutral-emphasis));
6732
6749
  border: var(--borderWidth-thin) solid transparent;
6733
- box-shadow: var(--boxShadow-thin) var(--borderColor-neutral-emphasis);
6750
+ box-shadow: var(--boxShadow-thin) var(--borderColor-draft-emphasis, var(--borderColor-neutral-emphasis));
6734
6751
  }
6735
6752
 
6736
6753
  .State--open {