@primer/components 0.0.0-20211030134829 → 0.0.0-20211030141453
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/CHANGELOG.md +1 -3
- package/dist/browser.esm.js +2 -1
- package/dist/browser.esm.js.map +1 -1
- package/dist/browser.umd.js +2 -1
- package/dist/browser.umd.js.map +1 -1
- package/lib/ActionList/Item.js +3 -3
- package/lib/ActionList2/Selection.js +3 -1
- package/lib-esm/ActionList/Item.js +3 -3
- package/lib-esm/ActionList2/Selection.js +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,13 +1,11 @@
|
|
1
1
|
# @primer/components
|
2
2
|
|
3
|
-
## 0.0.0-
|
3
|
+
## 0.0.0-20211030141453
|
4
4
|
|
5
5
|
### Patch Changes
|
6
6
|
|
7
7
|
- Fake entry to force publishing
|
8
8
|
|
9
|
-
* [#1596](https://github.com/primer/react/pull/1596) [`bc0b4670`](https://github.com/primer/react/commit/bc0b4670809e4d2e7653f1d2141d268d1ea515bf) Thanks [@dmarcey](https://github.com/dmarcey)! - Fix alignment of items in ActionList (single-select) if some of the items have wrapping text.
|
10
|
-
|
11
9
|
## 32.1.0
|
12
10
|
|
13
11
|
### Minor Changes
|
package/dist/browser.esm.js
CHANGED
@@ -517,13 +517,13 @@ import e,{useState as t,useRef as r,useCallback as o,useEffect as a,useMemo as n
|
|
517
517
|
display: flex;
|
518
518
|
justify-content: center;
|
519
519
|
align-items: center;
|
520
|
-
flex-shrink: 0;
|
521
520
|
`,Ca=g(Ea)`
|
522
521
|
svg {
|
523
522
|
fill: ${({variant:e,disabled:t})=>Ba(e,t).iconColor};
|
524
523
|
font-size: ${It("fontSizes.0")};
|
525
524
|
}
|
526
525
|
`,za=g(Ca)`
|
526
|
+
flex-shrink: 0;
|
527
527
|
display: flex;
|
528
528
|
flex-direction: column;
|
529
529
|
justify-content: center;
|
@@ -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
|
552
553
|
}
|
553
554
|
path {
|
554
555
|
fill: ${It("colors.fg.onEmphasis")};
|