@primer/css 0.0.0-20220324162121 → 0.0.0-20220325080929
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 +11 -3
- package/color-modes/index.scss +2 -0
- package/color-modes/themes/dark_tritanopia.scss +6 -0
- package/color-modes/themes/light_tritanopia.scss +6 -0
- package/dist/color-modes.css +1 -1
- package/dist/color-modes.css.map +1 -1
- package/dist/meta.json +66 -66
- package/dist/primer.css +1 -1
- package/dist/primer.css.map +1 -1
- package/dist/stats/color-modes.json +1 -1
- package/dist/stats/primer.json +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
# @primer/css
|
|
2
2
|
|
|
3
|
-
## 0.0.0-
|
|
3
|
+
## 0.0.0-20220325080929
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- Fake entry to force publishing
|
|
8
|
+
|
|
9
|
+
## 19.7.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
8
12
|
|
|
9
|
-
|
|
13
|
+
- [#1994](https://github.com/primer/css/pull/1994) [`69fe8c65`](https://github.com/primer/css/commit/69fe8c6512a3f0bbdbfdf7080b916a39173c2df9) Thanks [@khiga8](https://github.com/khiga8)! - Add support for inline, stack label in autocomplete
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- [#1991](https://github.com/primer/css/pull/1991) [`5e87effa`](https://github.com/primer/css/commit/5e87effa671b194e188f699a79b246bdf61bd191) Thanks [@simurai](https://github.com/simurai)! - Fix `btn-primary` in flash alerts
|
|
10
18
|
|
|
11
19
|
## 19.6.0
|
|
12
20
|
|
package/color-modes/index.scss
CHANGED
|
@@ -3,8 +3,10 @@
|
|
|
3
3
|
@import './themes/light.scss';
|
|
4
4
|
@import './themes/light_colorblind.scss';
|
|
5
5
|
@import './themes/light_high_contrast.scss';
|
|
6
|
+
@import './themes/light_tritanopia.scss';
|
|
6
7
|
@import './themes/dark.scss';
|
|
7
8
|
@import './themes/dark_dimmed.scss';
|
|
8
9
|
@import './themes/dark_high_contrast.scss';
|
|
9
10
|
@import './themes/dark_colorblind.scss';
|
|
11
|
+
@import './themes/dark_tritanopia.scss';
|
|
10
12
|
@import './native.scss';
|