@comicrelief/component-library 5.8.7 → 6.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,8 +1,30 @@
1
- Type: patch
1
+ ### PR Titles
2
+ #### To pass testing pipeline, these need to follow Conventional Commits spec:
3
+ https://www.conventionalcommits.org/en/v1.0.0/
4
+ e.g.
5
+ `feat: create NewForm component`
6
+ or
7
+ `fix: update broken link in NewForm component`
2
8
 
3
- Fixes #
4
9
 
5
- ## Changes proposed in this PR
10
+ ### PR description
11
+ #### What is it doing?
12
+ Tell us what it is doing from a technical perspective.
6
13
 
7
- - Briefly describe the changes in this PR
8
- - Do you have some test asserting this behavior?
14
+ #### Why is this required?
15
+ Tell us why this is required from a business/product perspective.
16
+
17
+ #### link to Jira ticket:
18
+ Add a link to the Jira ticket.
19
+
20
+
21
+ ### Quick Checklist:
22
+ - [ ] My PR title follows the Conventional Commit spec.
23
+
24
+ - [ ] I have filled out the PR description as per the template above.
25
+
26
+ - [ ] I have added tests to cover new or changed behaviour.
27
+
28
+ - [ ] I have updated any relevant documentation.
29
+
30
+ ### Important! - lastly, make sure to squash merge...
package/dist/index.js CHANGED
@@ -101,7 +101,7 @@ Object.defineProperty(exports, "Button", {
101
101
  return _Button.default;
102
102
  }
103
103
  });
104
- Object.defineProperty(exports, "Radio", {
104
+ Object.defineProperty(exports, "RadioButton", {
105
105
  enumerable: true,
106
106
  get: function get() {
107
107
  return _RadioButton.default;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@comicrelief/component-library",
3
3
  "author": "Comic Relief Engineering Team",
4
- "version": "5.8.7",
4
+ "version": "6.0.0",
5
5
  "main": "dist/index.js",
6
6
  "license": "ISC",
7
7
  "jest": {
package/src/index.js CHANGED
@@ -18,7 +18,7 @@ export { default as Logo } from './components/Atoms/Logo/Logo';
18
18
  export { default as Picture } from './components/Atoms/Picture/Picture';
19
19
  export { default as Link } from './components/Atoms/Link/Link';
20
20
  export { default as Button } from './components/Atoms/Button/Button';
21
- export { default as Radio } from './components/Atoms/RadioButton/RadioButton';
21
+ export { default as RadioButton } from './components/Atoms/RadioButton/RadioButton';
22
22
  export { default as Checkbox } from './components/Atoms/Checkbox/Checkbox';
23
23
  export { default as Input } from './components/Atoms/Input/Input';
24
24
  export { default as Select } from './components/Atoms/Select/Select';