@primer/css 20.4.3-rc.fcd5af82 → 20.4.4-rc.af367295
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 +16 -1
- package/RELEASING.md +1 -1
- package/core/index.scss +0 -1
- package/dist/core.css +1 -1
- package/dist/core.css.map +1 -1
- package/dist/forms.css +1 -1
- package/dist/forms.css.map +1 -1
- package/dist/meta.json +55 -66
- package/dist/primer.css +2 -2
- package/dist/primer.css.map +1 -1
- package/dist/product.css +1 -1
- package/dist/product.css.map +1 -1
- package/dist/select-menu.css +1 -1
- package/dist/select-menu.css.map +1 -1
- package/dist/stats/core.json +1 -1
- package/dist/stats/forms.json +1 -1
- package/dist/stats/primer.json +1 -1
- package/dist/stats/product.json +1 -1
- package/dist/stats/select-menu.json +1 -1
- package/forms/FormControl.scss +9 -0
- package/package.json +1 -1
- package/select-menu/select-menu.scss +0 -1
- package/dist/segmented-control.css +0 -2
- package/dist/segmented-control.css.map +0 -1
- package/dist/segmented-control.js +0 -1
- package/dist/stats/segmented-control.json +0 -1
- package/segmented-control/README.md +0 -25
- package/segmented-control/index.scss +0 -3
- package/segmented-control/segmented-control.scss +0 -167
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,25 @@
|
|
|
1
1
|
# @primer/css
|
|
2
2
|
|
|
3
|
+
## 20.4.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#2218](https://github.com/primer/css/pull/2218) [`6205337b`](https://github.com/primer/css/commit/6205337b4c871b6ce431c8b211ddb0bbd176946f) Thanks [@langermank](https://github.com/langermank)! - - Adding readonly styles
|
|
8
|
+
- Fixing focus background color for inset field
|
|
9
|
+
|
|
10
|
+
* [#2211](https://github.com/primer/css/pull/2211) [`8e5f6224`](https://github.com/primer/css/commit/8e5f62244192a8e2a191be7e7ad20d00f4b4bedb) Thanks [@imjohnbo](https://github.com/imjohnbo)! - Remove outline reset of `.SelectMenu-closeButton`
|
|
11
|
+
|
|
12
|
+
- [#2220](https://github.com/primer/css/pull/2220) [`1a8e7db5`](https://github.com/primer/css/commit/1a8e7db5f6c7b369fcfb6598df2edc42d0511da7) Thanks [@reeceatkinson](https://github.com/reeceatkinson)! - Update Marketing Typography (marketing-type.md)
|
|
13
|
+
|
|
3
14
|
## 20.4.3
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
6
17
|
|
|
7
|
-
- [#
|
|
18
|
+
- [#2208](https://github.com/primer/css/pull/2208) [`83e43486`](https://github.com/primer/css/commit/83e43486d83350b331953f3c3be450ee79eaa783) Thanks [@jonrohan](https://github.com/jonrohan)! - Moving segmented_control.css to primer_view_components
|
|
19
|
+
|
|
20
|
+
* [#2202](https://github.com/primer/css/pull/2202) [`b74e78b2`](https://github.com/primer/css/commit/b74e78b2539925956ec19aa3efbf2410dc1167e0) Thanks [@jonrohan](https://github.com/jonrohan)! - Rename SegmentedControl--iconOnly-whenNarrow to SegmentedControl-button--iconOnly-whenNarrow and place on button
|
|
21
|
+
|
|
22
|
+
- [#2191](https://github.com/primer/css/pull/2191) [`e175f69d`](https://github.com/primer/css/commit/e175f69dd87fb3b54f46130dbdae18b75e9263ad) Thanks [@josepmartins](https://github.com/josepmartins)! - Bump @primer/gatsby-theme-doctocat from 3.1.1 to 4.0.0 in /docs
|
|
8
23
|
|
|
9
24
|
## 20.4.2
|
|
10
25
|
|
package/RELEASING.md
CHANGED
|
@@ -31,7 +31,7 @@ The release process is automated by [changesets]. After you familiarize yourself
|
|
|
31
31
|
|
|
32
32
|
After tests run, the docs site will be deployed and `@primer/css` will be published with your changes to the `latest` dist-tag. You can check [npm](https://www.npmjs.com/package/@primer/css?activeTab=versions) to see if actions has finished.
|
|
33
33
|
|
|
34
|
-
2.
|
|
34
|
+
2. Done! 🎉
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
## Update github.com (in `github/github`):
|
package/core/index.scss
CHANGED
|
@@ -22,7 +22,6 @@
|
|
|
22
22
|
@import '../links/index.scss';
|
|
23
23
|
@import '../navigation/index.scss';
|
|
24
24
|
@import '../pagination/index.scss';
|
|
25
|
-
@import '../segmented-control/index.scss';
|
|
26
25
|
@import '../tooltips/index.scss';
|
|
27
26
|
@import '../truncate/index.scss';
|
|
28
27
|
@import '../overlay/index.scss';
|