From 7a8a014c2347594633e6f53878e82dc16695abcc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 26 Apr 2023 15:32:12 +0000 Subject: [PATCH] Version Packages --- .changeset/modern-coins-destroy.md | 39 --------------------------- CHANGELOG.md | 43 ++++++++++++++++++++++++++++++ package.json | 2 +- 3 files changed, 44 insertions(+), 40 deletions(-) delete mode 100644 .changeset/modern-coins-destroy.md diff --git a/.changeset/modern-coins-destroy.md b/.changeset/modern-coins-destroy.md deleted file mode 100644 index 6e9e045723f..00000000000 --- a/.changeset/modern-coins-destroy.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -"@primer/react": major ---- - -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: -``` - - - Create - Read - Update - Delete - - - ... - - -``` - -Instead, use `ActionList`s and stack them as needed. -``` -
- - - Create - Read - Update - Delete - - - ... - -
-``` diff --git a/CHANGELOG.md b/CHANGELOG.md index 76ef9e5091d..76183ff50a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,48 @@ # @primer/components +## 36.0.0 + +### Major Changes + +- [#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: + + ``` + + + Create + Read + Update + Delete + + + ... + + + ``` + + Instead, use `ActionList`s and stack them as needed. + + ``` +
+ + + Create + Read + Update + Delete + + + ... + +
+ ``` + ## 35.25.1 ### Patch Changes diff --git a/package.json b/package.json index d6b3e001ef3..343b118382b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@primer/react", - "version": "35.25.1", + "version": "36.0.0", "description": "An implementation of GitHub's Primer Design System using React", "main": "lib/index.js", "module": "lib-esm/index.js",