You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+43Lines changed: 43 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,48 @@
1
1
# @primer/components
2
2
3
+
## 36.0.0
4
+
5
+
### Major Changes
6
+
7
+
-[#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.
8
+
9
+
- Removes `ActionList.Group`.
10
+
- Adds `ActionList.Heading` to be used for labelling children in an `ActionList`.
11
+
- Adds `heading` slot to `ActionList` for adding headings that label internal lists correctly.
12
+
13
+
ActionList.Groups inside an ActionList generated inaccessible markup. Previous usage:
14
+
15
+
```
16
+
<ActionList>
17
+
<ActionList.Group title="Actions">
18
+
<ActionList.Item>Create</ActionList.Item>
19
+
<ActionList.Item>Read</ActionList.Item>
20
+
<ActionList.Item>Update</ActionList.Item>
21
+
<ActionList.Item>Delete</ActionList.Item>
22
+
</ActionList.Group>
23
+
<ActionList.Group>
24
+
...
25
+
</ActionList.Group>
26
+
</ActionList>
27
+
```
28
+
29
+
Instead, use `ActionList`s and stack them as needed.
0 commit comments