Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 23, 2023
1 parent 5746c74 commit a49d62d
Show file tree
Hide file tree
Showing 20 changed files with 80 additions and 125 deletions.
5 changes: 0 additions & 5 deletions .changeset/breezy-fireants-tickle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/brown-beds-cover.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/chilly-dragons-crash.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/curvy-windows-walk.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/eleven-humans-sneeze.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/empty-snakes-join.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/few-papayas-brush.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/happy-rings-arrive.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/kind-scissors-type.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/late-wombats-switch.md

This file was deleted.

39 changes: 0 additions & 39 deletions .changeset/modern-coins-destroy.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/polite-chicken-fix.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/small-pumas-relate.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/spicy-shoes-press.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/swift-cobras-visit.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/swift-cows-rest.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/twenty-tips-attend.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/two-cycles-provide.md

This file was deleted.

79 changes: 79 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,84 @@
# @primer/components

## 35.26.0

### Minor Changes

- [#3276](https://github.com/primer/react/pull/3276) [`8abf2688`](https://github.com/primer/react/commit/8abf2688952ff0e69ba843ee6ccfc5d5574abb76) Thanks [@joshblack](https://github.com/joshblack)! - Add experimental Table.ErrorDialog component

- [#3244](https://github.com/primer/react/pull/3244) [`42a78c11`](https://github.com/primer/react/commit/42a78c116fbffda44d85cbbfb93d24f0785fde83) Thanks [@Bestra](https://github.com/Bestra)! - Add pullQueued state to StateLabel

- [#3229](https://github.com/primer/react/pull/3229) [`c0cbdd08`](https://github.com/primer/react/commit/c0cbdd0806809236e681cab535b4a74ecdfcc14a) Thanks [@colebemis](https://github.com/colebemis)! - Add `minWidth prop to `PageLayout.Pane`and`SplitPageLayout.Pane`

- [#2878](https://github.com/primer/react/pull/2878) [`87883c3f`](https://github.com/primer/react/commit/87883c3fd91a5d2809268aa0dd22b87b53ba5309) Thanks [@radglob](https://github.com/radglob)! - Update PRC ActionList implementation to have similar semantics to PVC.

- Removes `ActionList.Group`.
- Adds `ActionList.Heading` to be used for labelling children in an `ActionList`.
- Adds `heading` slot to `ActionList` for adding headings that label internal lists correctly.

ActionList.Groups inside an ActionList generated inaccessible markup. Previous usage:

```
<ActionList>
<ActionList.Group title="Actions">
<ActionList.Item>Create</ActionList.Item>
<ActionList.Item>Read</ActionList.Item>
<ActionList.Item>Update</ActionList.Item>
<ActionList.Item>Delete</ActionList.Item>
</ActionList.Group>
<ActionList.Group>
...
</ActionList.Group>
</ActionList>
```

Instead, use `ActionList`s and stack them as needed.

```
<div>
<ActionList>
<ActionList.Heading title="Actions" />
<ActionList.Item>Create</ActionList.Item>
<ActionList.Item>Read</ActionList.Item>
<ActionList.Item>Update</ActionList.Item>
<ActionList.Item>Delete</ActionList.Item>
</ActionList>
<ActionList>
...
</ActionList>
</div>
```

- [#3199](https://github.com/primer/react/pull/3199) [`bfd9e0c8`](https://github.com/primer/react/commit/bfd9e0c8ee3b6b335e04c5c1d4ca82cf23760877) Thanks [@joshblack](https://github.com/joshblack)! - Add support for Pagination in DataTable

- [#3148](https://github.com/primer/react/pull/3148) [`ac437bb1`](https://github.com/primer/react/commit/ac437bb1944b88251c719ae7ae689c5906f19c3f) Thanks [@jonrohan](https://github.com/jonrohan)! - Rename component StyledOcticon to Octicon

- [#3251](https://github.com/primer/react/pull/3251) [`580f1650`](https://github.com/primer/react/commit/580f1650146f35d6af509704a0ee2b203a50812c) Thanks [@camertron](https://github.com/camertron)! - Address ToggleSwitch accessibility feedback

### Patch Changes

- [#3270](https://github.com/primer/react/pull/3270) [`6f2340cc`](https://github.com/primer/react/commit/6f2340cc7e17a90b9cb09722ec791d82f4f71329) Thanks [@langermank](https://github.com/langermank)! - Button counter contrast fixes

- [#3207](https://github.com/primer/react/pull/3207) [`6773b90d`](https://github.com/primer/react/commit/6773b90d8ced05fae4ac9024e84cc31f1da9b9a3) Thanks [@colebemis](https://github.com/colebemis)! - `MarkdownViewer` is now SSR-compatible

- [#3310](https://github.com/primer/react/pull/3310) [`5746c746`](https://github.com/primer/react/commit/5746c746d8d7eac29cfa2db702ba4a545527b588) Thanks [@colebemis](https://github.com/colebemis)! - SelectPanel: Add `role="dialog"` to overlay

- [#3154](https://github.com/primer/react/pull/3154) [`fed1c57b`](https://github.com/primer/react/commit/fed1c57b20d5c344a03d5fdeb5c5552c19eabea1) Thanks [@radglob](https://github.com/radglob)! - PageLayout.Content no longer renders as `main` by default. Instead, developers may add a `main` landmark within `Pagelayout.Content` themselves.

- [#3266](https://github.com/primer/react/pull/3266) [`95329773`](https://github.com/primer/react/commit/95329773db772b4113368cd2774025c0486bf356) Thanks [@broccolinisoup](https://github.com/broccolinisoup)! - Upgrade @primer/octicons-react dependency to `^19.1.0`

- [#3200](https://github.com/primer/react/pull/3200) [`63d8ad6d`](https://github.com/primer/react/commit/63d8ad6d16dd66b96d370ee64d34be026739816a) Thanks [@broccolinisoup](https://github.com/broccolinisoup)! - UnderlineNav2: Add a z-index to make it appear on the top of the stack

- [#3277](https://github.com/primer/react/pull/3277) [`0ac31da8`](https://github.com/primer/react/commit/0ac31da8681c769c7d508d9290d81d19c76f762d) Thanks [@adrianababakanian](https://github.com/adrianababakanian)! - `Pagination`: Use `<button>` instead of `<span>` for disabled prev/next controls to improve accessibility

- [#3262](https://github.com/primer/react/pull/3262) [`7f2ddcec`](https://github.com/primer/react/commit/7f2ddcecd867a5fc73d21ec1f5c672ef306f13ef) Thanks [@mattcosta7](https://github.com/mattcosta7)! - passthrough form control label props

- [#3293](https://github.com/primer/react/pull/3293) [`027d214a`](https://github.com/primer/react/commit/027d214ae8aed9744f31727106f609745cc3f63a) Thanks [@broccolinisoup](https://github.com/broccolinisoup)! - Octicons (previously known StyledOcticons) to use React.forwardRef()

- [#3182](https://github.com/primer/react/pull/3182) [`7827c711`](https://github.com/primer/react/commit/7827c71163e4d964e9878d624cf4cf1694c7447d) Thanks [@green6erry](https://github.com/green6erry)! - Removed default aria-live polite

- [#3291](https://github.com/primer/react/pull/3291) [`1378bc1f`](https://github.com/primer/react/commit/1378bc1f59b48f99d623f1eb5b92c513ce6cde00) Thanks [@mattcosta7](https://github.com/mattcosta7)! - Counter label forwards refs and dom props

## 35.25.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@primer/react",
"version": "35.25.1",
"version": "35.26.0",
"description": "An implementation of GitHub's Primer Design System using React",
"main": "lib/index.js",
"module": "lib-esm/index.js",
Expand Down

0 comments on commit a49d62d

Please sign in to comment.