Skip to content

Commit 891ba5d

Browse files
Merge pull request #513 from bcgov/feature/react-components-v0.5.0
React Component v0.5.0
2 parents c95b2ec + 7ce4b68 commit 891ba5d

File tree

4 files changed

+48
-28
lines changed

4 files changed

+48
-28
lines changed

packages/react-components/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## 0.5.0
4+
5+
This is a milestone release that contains the following new components:
6+
7+
- Accordion and accordion group
8+
- Alert Banner
9+
- Callout
10+
11+
This release uses:
12+
13+
- `react-aria-components` v1.5.0
14+
- `@bcgov/design-tokens`v3.2.0
15+
16+
Component changes since v0.4.0:
17+
18+
- Add an alternative `chip` style to Tag and Tag group component.
19+
320
## 0.4.0
421

522
This is a milestone release that contains the following new components:

packages/react-components/README.md

Lines changed: 23 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -68,25 +68,29 @@ export default function App() {
6868

6969
## Component list
7070

71-
| Component | React Aria Components docs link |
72-
| ----------------------- | -------------------------------------------------------------- |
73-
| AlertDialog | N/A |
74-
| Button | https://react-spectrum.adobe.com/react-aria/Button.html |
75-
| ButtonGroup | N/A |
76-
| Checkbox | https://react-spectrum.adobe.com/react-aria/Checkbox.html |
77-
| CheckboxGroup | https://react-spectrum.adobe.com/react-aria/CheckboxGroup.html |
78-
| Dialog | https://react-spectrum.adobe.com/react-aria/Dialog.html |
79-
| Footer | N/A |
80-
| Form | https://react-spectrum.adobe.com/react-aria/Form.html |
81-
| Header | N/A |
82-
| InlineAlert | N/A |
83-
| Modal | https://react-spectrum.adobe.com/react-aria/Modal.html |
84-
| RadioGroup, Radio | https://react-spectrum.adobe.com/react-aria/RadioGroup.html |
85-
| Select | https://react-spectrum.adobe.com/react-aria/Select.html |
86-
| Switch | https://react-spectrum.adobe.com/react-aria/Switch.html |
87-
| TagGroup, TagList, Tag | https://react-spectrum.adobe.com/react-aria/TagGroup.html |
88-
| TextArea, TextField | https://react-spectrum.adobe.com/react-aria/TextField.html |
89-
| Tooltip, TooltipTrigger | https://react-spectrum.adobe.com/react-aria/Tooltip.html |
71+
| Component | React Aria Components docs link |
72+
| ----------------------- | ---------------------------------------------------------------- |
73+
| AlertBanner | N/A |
74+
| AlertDialog | N/A |
75+
| Accordion | https://react-spectrum.adobe.com/react-aria/Disclosure.html |
76+
| AccordionGroup | https://react-spectrum.adobe.com/react-aria/DisclosureGroup.html |
77+
| Button | https://react-spectrum.adobe.com/react-aria/Button.html |
78+
| ButtonGroup | N/A |
79+
| Callout | N/A |
80+
| Checkbox | https://react-spectrum.adobe.com/react-aria/Checkbox.html |
81+
| CheckboxGroup | https://react-spectrum.adobe.com/react-aria/CheckboxGroup.html |
82+
| Dialog | https://react-spectrum.adobe.com/react-aria/Dialog.html |
83+
| Footer | N/A |
84+
| Form | https://react-spectrum.adobe.com/react-aria/Form.html |
85+
| Header | N/A |
86+
| InlineAlert | N/A |
87+
| Modal | https://react-spectrum.adobe.com/react-aria/Modal.html |
88+
| RadioGroup, Radio | https://react-spectrum.adobe.com/react-aria/RadioGroup.html |
89+
| Select | https://react-spectrum.adobe.com/react-aria/Select.html |
90+
| Switch | https://react-spectrum.adobe.com/react-aria/Switch.html |
91+
| TagGroup, TagList, Tag | https://react-spectrum.adobe.com/react-aria/TagGroup.html |
92+
| TextArea, TextField | https://react-spectrum.adobe.com/react-aria/TextField.html |
93+
| Tooltip, TooltipTrigger | https://react-spectrum.adobe.com/react-aria/Tooltip.html |
9094

9195
## Supported React versions
9296

packages/react-components/package-lock.json

Lines changed: 6 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/react-components/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bcgov/design-system-react-components",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"type": "module",
55
"scripts": {
66
"rollup": "rm -rf dist && rollup -c --bundleConfigAsCjs",
@@ -23,7 +23,7 @@
2323
],
2424
"types": "dist/index.d.ts",
2525
"dependencies": {
26-
"@bcgov/design-tokens": "3.1.1",
26+
"@bcgov/design-tokens": "3.2.0",
2727
"react-aria-components": "1.5.0"
2828
},
2929
"peerDependencies": {

0 commit comments

Comments
 (0)