@primer/css 19.5.2-rc.7b52cd2f → 19.6.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.
- package/CHANGELOG.md +8 -2
- package/CONTRIBUTING.md +6 -4
- package/dist/core.css +1 -1
- package/dist/core.css.map +1 -1
- package/dist/layout.css +1 -1
- package/dist/layout.css.map +1 -1
- package/dist/links.css +1 -1
- package/dist/links.css.map +1 -1
- package/dist/meta.json +77 -77
- package/dist/primer.css +1 -1
- package/dist/primer.css.map +1 -1
- package/dist/stats/core.json +1 -1
- package/dist/stats/layout.json +1 -1
- package/dist/stats/links.json +1 -1
- package/dist/stats/primer.json +1 -1
- package/layout/page-layout.scss +15 -12
- package/links/link.scss +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
# @primer/css
|
|
2
2
|
|
|
3
|
-
## 19.
|
|
3
|
+
## 19.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1989](https://github.com/primer/css/pull/1989) [`f544ef85`](https://github.com/primer/css/commit/f544ef8574a4d6e12cccf94d534ad66df3e9249a) Thanks [@vdepizzol](https://github.com/vdepizzol)! - Make `pane` an optional region for PageLayout component
|
|
4
8
|
|
|
5
9
|
### Patch Changes
|
|
6
10
|
|
|
7
|
-
- [#
|
|
11
|
+
- [#1988](https://github.com/primer/css/pull/1988) [`e3443f1a`](https://github.com/primer/css/commit/e3443f1a69ba5a23d3e3804bf4e22d384783c443) Thanks [@simurai](https://github.com/simurai)! - Fix color-fg utilities in links
|
|
12
|
+
|
|
13
|
+
* [#1985](https://github.com/primer/css/pull/1985) [`c2bd6bc9`](https://github.com/primer/css/commit/c2bd6bc9bf90686f258af11c102097d7da000a5b) Thanks [@cheshire137](https://github.com/cheshire137)! - Adding .color-bg-transparent utility class
|
|
8
14
|
|
|
9
15
|
## 19.5.1
|
|
10
16
|
|
package/CONTRIBUTING.md
CHANGED
|
@@ -58,13 +58,15 @@ Anyone can open a pull request on Primer CSS. You do not need to work at GitHub
|
|
|
58
58
|
2. Configure and install the dependencies: `npm install`
|
|
59
59
|
3. Create a new branch from main `git checkout -b my-branch-name`
|
|
60
60
|
4. Make your changes and commit them.
|
|
61
|
-
5.
|
|
62
|
-
|
|
61
|
+
5. Create a changeset for your changes: `npx changeset`
|
|
62
|
+
- See [changesets/changesets](https://github.com/changesets/changesets) for more information.
|
|
63
|
+
6. Push your branch and open a pull request. Add a comment describing your proposed changes and request a review from `@primer/css-reviewers`.
|
|
64
|
+
7. Wait for CI tests to finish.
|
|
63
65
|
- If the tests pass, you should see a status check telling you which alpha version of `@primer/css` you can install with npm to test your work in other projects.
|
|
64
66
|
- If the tests fail, review the logs and address any issues.
|
|
65
67
|
- If the builds fail for any other reason (as they occasionally do), they may need to be manually restarted.
|
|
66
|
-
|
|
67
|
-
|
|
68
|
+
8. When CI tests pass, a new npm alpha release will be posted under the CI checks, you can use this npm version for testing in your project or with a GitHub site if you are staff.
|
|
69
|
+
9. Pat yourself on the back and wait for your pull request to be reviewed.
|
|
68
70
|
|
|
69
71
|
Here are a few things you can do that will increase the likelihood of your pull request being accepted:
|
|
70
72
|
|