@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 CHANGED
@@ -1,12 +1,20 @@
1
1
  # @primer/css
2
2
 
3
- ## 0.0.0-20220324162121
3
+ ## 0.0.0-20220325080929
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - [#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
7
+ - Fake entry to force publishing
8
+
9
+ ## 19.7.0
10
+
11
+ ### Minor Changes
8
12
 
9
- * Fake entry to force publishing
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
 
@@ -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';
@@ -0,0 +1,6 @@
1
+ @import '../../support/index.scss';
2
+ @import '@primer/primitives/dist/scss/colors/_dark_tritanopia.scss';
3
+
4
+ @include color-mode-theme(dark_tritanopia) {
5
+ @include primer-colors-dark_tritanopia;
6
+ }
@@ -0,0 +1,6 @@
1
+ @import '../../support/index.scss';
2
+ @import '@primer/primitives/dist/scss/colors/_light_tritanopia.scss';
3
+
4
+ @include color-mode-theme(light_tritanopia) {
5
+ @include primer-colors-light_tritanopia;
6
+ }