Skip to content

Commit 9aa42e6

Browse files
Version Packages
1 parent f17446e commit 9aa42e6

11 files changed

+49
-70
lines changed

.changeset/chilled-cats-smash.md

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

.changeset/cold-bottles-attend.md

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

.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/orange-spiders-study.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: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,53 @@
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+
* [#2139](https://github.com/primer/react/pull/2139) [`f17446e0`](https://github.com/primer/react/commit/f17446e0dbfb9021291207972ece47e90a5656e0) Thanks [@owenniblock](https://github.com/owenniblock)! - Changes focus rules of TabNav to match WAI-ARIA rules for tablist
10+
11+
### Patch Changes
12+
13+
- [#2155](https://github.com/primer/react/pull/2155) [`003cbcf0`](https://github.com/primer/react/commit/003cbcf0e5530d580636e4ce09e539317a95dc73) Thanks [@mperrotti](https://github.com/mperrotti)! - Update Checkbox component to useIsomorphicLayoutEffect instead of useLayoutEffect to support SSR
14+
15+
* [#2154](https://github.com/primer/react/pull/2154) [`96ad635b`](https://github.com/primer/react/commit/96ad635b3063af03e31fcac06cfe8bdea248d0d3) Thanks [@mperrotti](https://github.com/mperrotti)! - Allow "falsely/empty" Autocomplete.Input values
16+
17+
- [#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
18+
19+
* [#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
20+
21+
- [#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`
22+
23+
* [#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).
24+
25+
## Before
26+
27+
```jsx
28+
<SideNav aria-label="Main">
29+
<SideNav.Link href="/" selected>
30+
Home
31+
</SideNav.Link>
32+
<SideNav.Link href="/about">About</SideNav.Link>
33+
<SideNav.Link href="/contact">Contact</SideNav.Link>
34+
</SideNav>
35+
```
36+
37+
## After
38+
39+
```jsx
40+
<NavList aria-label="Main">
41+
<NavList.Item href="/" aria-current="page">
42+
Home
43+
</NavList.Item>
44+
<NavList.Item href="/about">About</NavList.Item>
45+
<NavList.Item href="/contact">Contact</NavList.Item>
46+
</NavList>
47+
```
48+
49+
- [#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
50+
351
## 35.3.0
452

553
### Minor Changes

0 commit comments

Comments
 (0)