@primer/react 38.22.0-rc.238d6453b → 38.22.0-rc.77917b416
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 +2 -0
- package/dist/Breadcrumbs/Breadcrumbs.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,8 @@
|
|
|
8
8
|
|
|
9
9
|
### Patch Changes
|
|
10
10
|
|
|
11
|
+
- [#7797](https://github.com/primer/react/pull/7797) [`3e05935`](https://github.com/primer/react/commit/3e059351a65b18e99d006facc1863feb94be0a7e) Thanks [@liuliu-dev](https://github.com/liuliu-dev)! - Breadcrumbs overflow menu no longer appears when there are only two crumb items.
|
|
12
|
+
|
|
11
13
|
- [#7511](https://github.com/primer/react/pull/7511) [`eb73dee`](https://github.com/primer/react/commit/eb73deea0c9f8fb0fdb44b28445eebc748a39443) Thanks [@RSoeborg](https://github.com/RSoeborg)! - Fix NavList parent item flicker during static-to-interactive transitions when navigating between current sub-items in a SubNav.
|
|
12
14
|
|
|
13
15
|
- [#7619](https://github.com/primer/react/pull/7619) [`68aaf61`](https://github.com/primer/react/commit/68aaf617ebbeeb36aa5a7eb4b696d0061f6c2674) Thanks [@hectahertz](https://github.com/hectahertz)! - Memoize ActionMenu context values to prevent unnecessary re-renders of menu items
|
|
@@ -255,7 +255,7 @@ function Breadcrumbs({
|
|
|
255
255
|
let MIN_VISIBLE_ITEMS = 4;
|
|
256
256
|
if (!eHideRoot) {
|
|
257
257
|
MIN_VISIBLE_ITEMS = 3;
|
|
258
|
-
} else if (isNarrow) {
|
|
258
|
+
} else if (isNarrow && childArray.length > 2) {
|
|
259
259
|
MIN_VISIBLE_ITEMS = 1;
|
|
260
260
|
}
|
|
261
261
|
const calculateVisibleItemsWidth = w => {
|
package/package.json
CHANGED