Skip to content

Commit a3a155b

Browse files
Version Packages
1 parent e5be3db commit a3a155b

File tree

6 files changed

+39
-45
lines changed

6 files changed

+39
-45
lines changed

.changeset/modern-fireants-destroy.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/poor-wombats-lick.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/small-donkeys-provide.md

Lines changed: 0 additions & 29 deletions
This file was deleted.

.changeset/smooth-balloons-hope.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,43 @@
11
# @primer/components
22

3+
## 35.4.0
4+
5+
### Minor Changes
6+
7+
- [#2108](https://github.com/primer/react/pull/2108) [`e5be3db3`](https://github.com/primer/react/commit/e5be3db3112db20efef5e49ebe89ea3af17fd486) Thanks [@mperrotti](https://github.com/mperrotti)! - Adds a draft component to render a basic segmented control.
8+
9+
### Patch Changes
10+
11+
- [#2125](https://github.com/primer/react/pull/2125) [`78dc8134`](https://github.com/primer/react/commit/78dc8134b1d38c6826766f2f85ae943e8b1a8088) Thanks [@owenniblock](https://github.com/owenniblock)! - Adds roles of tablist and tab to the TabNav component, required rearranging the HTML elements to be semantically correct
12+
13+
* [#2120](https://github.com/primer/react/pull/2120) [`53713b2f`](https://github.com/primer/react/commit/53713b2f3ab7dd7084ce3e602c01c3f66ccd7579) Thanks [@colebemis](https://github.com/colebemis)! - Deprecate SideNav in favor of [NavList](https://primer.style/NavList).
14+
15+
## Before
16+
17+
```jsx
18+
<SideNav aria-label="Main">
19+
<SideNav.Link href="/" selected>
20+
Home
21+
</SideNav.Link>
22+
<SideNav.Link href="/about">About</SideNav.Link>
23+
<SideNav.Link href="/contact">Contact</SideNav.Link>
24+
</SideNav>
25+
```
26+
27+
## After
28+
29+
```jsx
30+
<NavList aria-label="Main">
31+
<NavList.Item href="/" aria-current="page">
32+
Home
33+
</NavList.Item>
34+
<NavList.Item href="/about">About</NavList.Item>
35+
<NavList.Item href="/contact">Contact</NavList.Item>
36+
</NavList>
37+
```
38+
39+
- [#2133](https://github.com/primer/react/pull/2133) [`65fcd9f2`](https://github.com/primer/react/commit/65fcd9f23de939014351f8e135f912cfa00f71a3) Thanks [@mattcosta7](https://github.com/mattcosta7)! - Passthrough ActionList.Group props from NavList.Group
40+
341
## 35.3.0
442

543
### Minor Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@primer/react",
3-
"version": "35.3.0",
3+
"version": "35.4.0",
44
"description": "An implementation of GitHub's Primer Design System using React",
55
"main": "lib/index.js",
66
"module": "lib-esm/index.js",

0 commit comments

Comments
 (0)