Skip to content

Commit 6698490

Browse files
Version Packages
1 parent ce45de3 commit 6698490

File tree

8 files changed

+43
-55
lines changed

8 files changed

+43
-55
lines changed

.changeset/dry-stingrays-drum.md

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

.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/rude-buckets-fold.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: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,47 @@
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+
- [#2153](https://github.com/primer/react/pull/2153) [`ce45de30`](https://github.com/primer/react/commit/ce45de308f1aaaf760a8e3f18ee39f20610f896b) Thanks [@willglas](https://github.com/willglas)! - Add AutocompleteContext to Autocomplete component exports
12+
13+
* [#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
14+
15+
- [#2149](https://github.com/primer/react/pull/2149) [`b3a98bac`](https://github.com/primer/react/commit/b3a98baccc19a77d16b8c42f7873073070f24b89) Thanks [@dgreif](https://github.com/dgreif)! - Converted commonjs `require` of `focus-visible` to an esm `import`
16+
17+
* [#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).
18+
19+
## Before
20+
21+
```jsx
22+
<SideNav aria-label="Main">
23+
<SideNav.Link href="/" selected>
24+
Home
25+
</SideNav.Link>
26+
<SideNav.Link href="/about">About</SideNav.Link>
27+
<SideNav.Link href="/contact">Contact</SideNav.Link>
28+
</SideNav>
29+
```
30+
31+
## After
32+
33+
```jsx
34+
<NavList aria-label="Main">
35+
<NavList.Item href="/" aria-current="page">
36+
Home
37+
</NavList.Item>
38+
<NavList.Item href="/about">About</NavList.Item>
39+
<NavList.Item href="/contact">Contact</NavList.Item>
40+
</NavList>
41+
```
42+
43+
- [#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
44+
345
## 35.3.0
446

547
### 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)