@primer/components 32.1.1-rc.92743105 → 32.1.1-rc.b4502a34

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -4,7 +4,9 @@
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - [#1596](https://github.com/primer/react/pull/1596) [`5c6dc644`](https://github.com/primer/react/commit/5c6dc644c1e68b36d309deac653aca189f1fa624) Thanks [@dmarcey](https://github.com/dmarcey)! - Fix alignment of items in ActionList (single-select) if some of the items have wrapping text.
7
+ - [#1668](https://github.com/primer/react/pull/1668) [`98dc6336`](https://github.com/primer/react/commit/98dc633674b793edfa4fbeb88fd239e6ca40544e) Thanks [@siddharthkp](https://github.com/siddharthkp)! - ActionList: Fix multiple selection svg by overriding global shape-rendering for github.com
8
+
9
+ * [#1596](https://github.com/primer/react/pull/1596) [`5c6dc644`](https://github.com/primer/react/commit/5c6dc644c1e68b36d309deac653aca189f1fa624) Thanks [@dmarcey](https://github.com/dmarcey)! - Fix alignment of items in ActionList (single-select) if some of the items have wrapping text.
8
10
 
9
11
  ## 32.1.0
10
12
 
@@ -549,6 +549,7 @@ import e,{useState as t,useRef as r,useCallback as o,useEffect as a,useMemo as n
549
549
  rect {
550
550
  fill: ${({selected:e})=>It(e?"colors.accent.fg":"colors.canvas.default")};
551
551
  stroke: ${({selected:e})=>It(e?"colors.accent.fg":"colors.border.default")};
552
+ shape-rendering: auto; // this is a workaround to override global style in github/github, see primer/react#1666
552
553
  }
553
554
  path {
554
555
  fill: ${It("colors.fg.onEmphasis")};