@primer/css 0.0.0-20220329110403 → 0.0.0-20220403232900
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 +13 -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 +55 -55
- 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,14 +1,24 @@
|
|
|
1
1
|
# @primer/css
|
|
2
2
|
|
|
3
|
-
## 0.0.0-
|
|
3
|
+
## 0.0.0-20220403232900
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1997](https://github.com/primer/css/pull/1997) [`6a99483a`](https://github.com/primer/css/commit/6a99483a22a6887f76064edc33af1f0160484a36) Thanks [@simurai](https://github.com/simurai)! - Add Tritanopia theme
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Fake entry to force publishing
|
|
12
|
+
|
|
13
|
+
## 19.7.1
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
|
6
16
|
|
|
7
17
|
- [#2001](https://github.com/primer/css/pull/2001) [`47cec404`](https://github.com/primer/css/commit/47cec40472173b412df59e6990c0ac1b1ed43d04) Thanks [@jdanyow](https://github.com/jdanyow)! - Remove IE11 support in tooltip
|
|
8
18
|
|
|
9
|
-
*
|
|
19
|
+
* [#1995](https://github.com/primer/css/pull/1995) [`557b100a`](https://github.com/primer/css/commit/557b100a77a4befe6d07fac14cb48b08bed18356) Thanks [@vdepizzol](https://github.com/vdepizzol)! - Add narrow/regular/wide viewport range utilities
|
|
10
20
|
|
|
11
|
-
- [#
|
|
21
|
+
- [#2000](https://github.com/primer/css/pull/2000) [`264a89a5`](https://github.com/primer/css/commit/264a89a51a75eefa6a371e6ad11518519cd98b36) Thanks [@khiga8](https://github.com/khiga8)! - More CSS updates to `Autocomplete`
|
|
12
22
|
|
|
13
23
|
## 19.7.0
|
|
14
24
|
|
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';
|