@primer/css 18.1.0-rc.6e91560b → 18.1.0-rc.bedde7be
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/color-modes/themes/dark_colorblind.scss +2 -2
- package/color-modes/themes/light_colorblind.scss +2 -2
- 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 +83 -83
- 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/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/subhead.json +1 -1
- package/dist/subhead.css +1 -1
- package/dist/subhead.css.map +1 -1
- package/forms/form-control.scss +15 -7
- package/package.json +2 -2
- package/subhead/subhead.scss +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -8,9 +8,15 @@
|
|
|
8
8
|
|
|
9
9
|
### Patch Changes
|
|
10
10
|
|
|
11
|
-
- [#
|
|
11
|
+
- [#1710](https://github.com/primer/css/pull/1710) [`6a058ecb`](https://github.com/primer/css/commit/6a058ecbaf7edac6fce4a0d56b4aca46ac6cd4fa) Thanks [@jonrohan](https://github.com/jonrohan)! - Updating [@primer/primitives@6.0.0](https://github.com/primer/primitives/releases/tag/v6.0.0)
|
|
12
12
|
|
|
13
|
-
* [#
|
|
13
|
+
* [#1690](https://github.com/primer/css/pull/1690) [`af5a3ae8`](https://github.com/primer/css/commit/af5a3ae82668d6d04af8c3465302980dcf062cc4) Thanks [@simurai](https://github.com/simurai)! - Update `Subhead` actions
|
|
14
|
+
|
|
15
|
+
- [#1707](https://github.com/primer/css/pull/1707) [`a997790b`](https://github.com/primer/css/commit/a997790b69f0f3bb5c7a2dfc97c5d5c743bb6a38) Thanks [@maximedegreve](https://github.com/maximedegreve)! - Fix for disabled Safari inputs
|
|
16
|
+
|
|
17
|
+
* [#1693](https://github.com/primer/css/pull/1693) [`c1ca19d4`](https://github.com/primer/css/commit/c1ca19d4f071a9b12172e4a13bdb96c52a200d47) Thanks [@jasonmacgowan](https://github.com/jasonmacgowan)! - Fix light-theme attr reference in theme docs
|
|
18
|
+
|
|
19
|
+
- [#1689](https://github.com/primer/css/pull/1689) [`257f68f6`](https://github.com/primer/css/commit/257f68f6539539ab809fbdb4351aefa57173e044) Thanks [@adityatheoctocatdev](https://github.com/adityatheoctocatdev)! - Update all Toast variant icons to use `var(--color-fg-on-emphasis)`
|
|
14
20
|
|
|
15
21
|
The only visible change is in the `warning` variant, previously using `var(--color-fg-default)`
|
|
16
22
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@import "../../support/index.scss";
|
|
2
2
|
|
|
3
|
-
@import "@primer/primitives/dist/scss/colors/
|
|
3
|
+
@import "@primer/primitives/dist/scss/colors/_dark_colorblind.scss";
|
|
4
4
|
|
|
5
5
|
@include color-mode-theme(dark_colorblind) {
|
|
6
|
-
@include primer-colors-
|
|
6
|
+
@include primer-colors-dark_colorblind;
|
|
7
7
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@import "../../support/index.scss";
|
|
2
2
|
|
|
3
|
-
@import "@primer/primitives/dist/scss/colors/
|
|
3
|
+
@import "@primer/primitives/dist/scss/colors/_light_colorblind.scss";
|
|
4
4
|
|
|
5
5
|
@include color-mode-theme(light_colorblind) {
|
|
6
|
-
@include primer-colors-
|
|
6
|
+
@include primer-colors-light_colorblind;
|
|
7
7
|
}
|