@primer/css 19.0.0-rc.dbdedf98 → 19.1.0-rc.c064d682

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.
Files changed (58) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/base/normalize.scss +1 -1
  3. package/box/box-overlay.scss +40 -0
  4. package/box/index.scss +1 -0
  5. package/color-modes/index.scss +1 -0
  6. package/color-modes/themes/dark.scss +2 -2
  7. package/color-modes/themes/dark_colorblind.scss +2 -2
  8. package/color-modes/themes/dark_dimmed.scss +2 -2
  9. package/color-modes/themes/dark_high_contrast.scss +2 -2
  10. package/color-modes/themes/light.scss +2 -2
  11. package/color-modes/themes/light_colorblind.scss +2 -2
  12. package/color-modes/themes/light_high_contrast.scss +7 -0
  13. package/dist/base.css +1 -1
  14. package/dist/base.css.map +1 -1
  15. package/dist/box.css +1 -1
  16. package/dist/box.css.map +1 -1
  17. package/dist/color-modes.css +1 -1
  18. package/dist/color-modes.css.map +1 -1
  19. package/dist/core.css +1 -1
  20. package/dist/core.css.map +1 -1
  21. package/dist/marketing-buttons.css +1 -1
  22. package/dist/marketing-buttons.css.map +1 -1
  23. package/dist/marketing-type.css.map +1 -1
  24. package/dist/marketing-utilities.css.map +1 -1
  25. package/dist/marketing.css +1 -1
  26. package/dist/marketing.css.map +1 -1
  27. package/dist/meta.json +69 -82
  28. package/dist/popover.css +1 -1
  29. package/dist/popover.css.map +1 -1
  30. package/dist/primer.css +4 -4
  31. package/dist/primer.css.map +1 -1
  32. package/dist/product.css +1 -1
  33. package/dist/product.css.map +1 -1
  34. package/dist/stats/base.json +1 -1
  35. package/dist/stats/box.json +1 -1
  36. package/dist/stats/color-modes.json +1 -1
  37. package/dist/stats/core.json +1 -1
  38. package/dist/stats/marketing-buttons.json +1 -1
  39. package/dist/stats/marketing.json +1 -1
  40. package/dist/stats/popover.json +1 -1
  41. package/dist/stats/primer.json +1 -1
  42. package/dist/stats/product.json +1 -1
  43. package/dist/variables.json +62 -62
  44. package/index.scss +4 -4
  45. package/marketing/buttons/button.scss +14 -8
  46. package/marketing/buttons/index.scss +2 -2
  47. package/marketing/support/index.scss +2 -2
  48. package/marketing/support/variables.scss +4 -5
  49. package/marketing/type/index.scss +2 -2
  50. package/marketing/type/typography.scss +23 -23
  51. package/marketing/utilities/index.scss +5 -5
  52. package/marketing/utilities/layout.scss +1 -1
  53. package/package.json +6 -6
  54. package/popover/popover.scss +42 -4
  55. package/support/mixins/layout.scss +5 -5
  56. package/support/mixins/misc.scss +1 -1
  57. package/support/variables/layout.scss +5 -5
  58. package/support/variables/typography.scss +1 -1
@@ -19,20 +19,20 @@
19
19
  $pairing-md: map-get($mktg-header-pairings, nth($sizes, 2));
20
20
  $pairing-lg: map-get($mktg-header-pairings, nth($sizes, 3));
21
21
 
22
- font-size: map-get($pairing, "size") !important;
23
- line-height: map-get($pairing, "lh") !important;
24
- @if (map-get($pairing, "size") >= $mktg-header-weight-threshold) { font-weight: $mktg-header-weight-large !important; }
22
+ font-size: map-get($pairing, 'size') !important;
23
+ line-height: map-get($pairing, 'lh') !important;
24
+ @if (map-get($pairing, 'size') >= $mktg-header-weight-threshold) { font-weight: $mktg-header-weight-large !important; }
25
25
 
26
26
  @if (nth($sizes, 1) != nth($sizes, 2)) {
27
27
  @include breakpoint(md) {
28
- font-size: map-get($pairing-md, "size") !important;
29
- line-height: map-get($pairing-md, "lh") !important;
28
+ font-size: map-get($pairing-md, 'size') !important;
29
+ line-height: map-get($pairing-md, 'lh') !important;
30
30
 
31
- @if (map-get($pairing-md, "size") >= $mktg-header-spacing-threshold and map-get($pairing, "size") < $mktg-header-spacing-threshold) {
31
+ @if (map-get($pairing-md, 'size') >= $mktg-header-spacing-threshold and map-get($pairing, 'size') < $mktg-header-spacing-threshold) {
32
32
  letter-spacing: $mktg-header-spacing-large !important;
33
33
  }
34
34
 
35
- @if (map-get($pairing-md, "size") >= $mktg-header-weight-threshold and map-get($pairing, "size") < $mktg-header-weight-threshold) {
35
+ @if (map-get($pairing-md, 'size') >= $mktg-header-weight-threshold and map-get($pairing, 'size') < $mktg-header-weight-threshold) {
36
36
  font-weight: $mktg-header-weight-large !important;
37
37
  }
38
38
  }
@@ -40,14 +40,14 @@
40
40
 
41
41
  @if (nth($sizes, 2) != nth($sizes, 3)) {
42
42
  @include breakpoint(lg) {
43
- font-size: map-get($pairing-lg, "size") !important;
44
- line-height: map-get($pairing-lg, "lh") !important;
43
+ font-size: map-get($pairing-lg, 'size') !important;
44
+ line-height: map-get($pairing-lg, 'lh') !important;
45
45
 
46
- @if (map-get($pairing-lg, "size") >= $mktg-header-spacing-threshold and map-get($pairing-md, "size") < $mktg-header-spacing-threshold) {
46
+ @if (map-get($pairing-lg, 'size') >= $mktg-header-spacing-threshold and map-get($pairing-md, 'size') < $mktg-header-spacing-threshold) {
47
47
  letter-spacing: $mktg-header-spacing-large !important;
48
48
  }
49
49
 
50
- @if (map-get($pairing-lg, "size") >= $mktg-header-weight-threshold and map-get($pairing-md, "size") < $mktg-header-weight-threshold) {
50
+ @if (map-get($pairing-lg, 'size') >= $mktg-header-weight-threshold and map-get($pairing-md, 'size') < $mktg-header-weight-threshold) {
51
51
  font-weight: $mktg-header-weight-large !important;
52
52
  }
53
53
  }
@@ -73,21 +73,21 @@
73
73
  $pairing-md: map-get($mktg-body-pairings, nth($sizes, 2));
74
74
  $pairing-lg: map-get($mktg-body-pairings, nth($sizes, 3));
75
75
 
76
- font-size: map-get($pairing, "size") !important;
77
- line-height: map-get($pairing, "lh") !important;
78
- @if (map-get($pairing, "size") >= $mktg-body-spacing-threshold) { letter-spacing: $mktg-body-spacing-large !important; }
79
- @if (map-get($pairing, "size") >= $mktg-body-weight-threshold) { font-weight: $font-weight-semibold; }
76
+ font-size: map-get($pairing, 'size') !important;
77
+ line-height: map-get($pairing, 'lh') !important;
78
+ @if (map-get($pairing, 'size') >= $mktg-body-spacing-threshold) { letter-spacing: $mktg-body-spacing-large !important; }
79
+ @if (map-get($pairing, 'size') >= $mktg-body-weight-threshold) { font-weight: $font-weight-semibold; }
80
80
 
81
81
  @if (nth($sizes, 1) != nth($sizes, 2)) {
82
82
  @include breakpoint(md) {
83
- font-size: map-get($pairing-md, "size") !important;
84
- line-height: map-get($pairing-md, "lh") !important;
83
+ font-size: map-get($pairing-md, 'size') !important;
84
+ line-height: map-get($pairing-md, 'lh') !important;
85
85
 
86
- @if (map-get($pairing-md, "size") >= $mktg-body-spacing-threshold and map-get($pairing, "size") < $mktg-body-spacing-threshold) {
86
+ @if (map-get($pairing-md, 'size') >= $mktg-body-spacing-threshold and map-get($pairing, 'size') < $mktg-body-spacing-threshold) {
87
87
  letter-spacing: $mktg-body-spacing-large !important;
88
88
  }
89
89
 
90
- @if (map-get($pairing-md, "size") >= $mktg-body-weight-threshold and map-get($pairing, "size") < $mktg-body-weight-threshold) {
90
+ @if (map-get($pairing-md, 'size') >= $mktg-body-weight-threshold and map-get($pairing, 'size') < $mktg-body-weight-threshold) {
91
91
  font-weight: $font-weight-medium;
92
92
  }
93
93
  }
@@ -95,14 +95,14 @@
95
95
 
96
96
  @if (nth($sizes, 2) != nth($sizes, 3)) {
97
97
  @include breakpoint(lg) {
98
- font-size: map-get($pairing-lg, "size") !important;
99
- line-height: map-get($pairing-lg, "lh") !important;
98
+ font-size: map-get($pairing-lg, 'size') !important;
99
+ line-height: map-get($pairing-lg, 'lh') !important;
100
100
 
101
- @if (map-get($pairing-lg, "size") >= $mktg-body-spacing-threshold and map-get($pairing-md, "size") < $mktg-body-spacing-threshold) {
101
+ @if (map-get($pairing-lg, 'size') >= $mktg-body-spacing-threshold and map-get($pairing-md, 'size') < $mktg-body-spacing-threshold) {
102
102
  letter-spacing: $mktg-body-spacing-large !important;
103
103
  }
104
104
 
105
- @if (map-get($pairing-lg, "size") >= $mktg-body-weight-threshold and map-get($pairing-md, "size") < $mktg-body-weight-threshold) {
105
+ @if (map-get($pairing-lg, 'size') >= $mktg-body-weight-threshold and map-get($pairing-md, 'size') < $mktg-body-weight-threshold) {
106
106
  font-weight: $font-weight-medium;
107
107
  }
108
108
  }
@@ -1,6 +1,6 @@
1
- @import "../support/index.scss";
1
+ @import '../support/index.scss';
2
2
  // utilities
3
- @import "./animations.scss";
4
- @import "./borders.scss";
5
- @import "./filters.scss";
6
- @import "./layout.scss";
3
+ @import './animations.scss';
4
+ @import './borders.scss';
5
+ @import './filters.scss';
6
+ @import './layout.scss';
@@ -6,7 +6,7 @@
6
6
  @each $breakpoint, $variant in $marketing-position-variants {
7
7
  @include breakpoint($breakpoint) {
8
8
  @each $scale, $size in $spacer-map-extended {
9
- @if ($size != 0 or $variant != "") {
9
+ @if ($size != 0 or $variant != '') {
10
10
  .top#{$variant}-#{$scale} { top: $size !important; }
11
11
  .right#{$variant}-#{$scale} { right: $size !important; }
12
12
  .bottom#{$variant}-#{$scale} { bottom: $size !important; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@primer/css",
3
- "version": "19.0.0-rc.dbdedf98",
3
+ "version": "19.1.0-rc.c064d682",
4
4
  "description": "The CSS implementation of GitHub's Primer Design System",
5
5
  "homepage": "https://primer.style/css",
6
6
  "author": "GitHub, Inc.",
@@ -24,7 +24,7 @@
24
24
  ],
25
25
  "scripts": {
26
26
  "dist": "script/dist.js",
27
- "stylelint": "stylelint --quiet src/**/*.scss",
27
+ "stylelint": "stylelint --quiet 'src/**/*.scss'",
28
28
  "eslint": "eslint deprecations.js __tests__ script",
29
29
  "prepublishOnly": "script/prepublish",
30
30
  "start": "yarn dev",
@@ -35,18 +35,18 @@
35
35
  "storybook": "cd docs && yarn && yarn storybook"
36
36
  },
37
37
  "dependencies": {
38
- "@primer/primitives": "^7.0.1"
38
+ "@primer/primitives": "^7.1.0"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@changesets/changelog-github": "0.4.1",
42
42
  "@changesets/cli": "2.18.0",
43
43
  "@github/prettier-config": "0.0.4",
44
44
  "@koddsson/postcss-sass": "5.0.0",
45
- "@primer/stylelint-config": "12.1.0",
45
+ "@primer/stylelint-config": "12.1.1",
46
46
  "autoprefixer": "10.4.0",
47
47
  "cssstats": "4.0.2",
48
- "eslint": "8.2.0",
49
- "eslint-plugin-github": "4.3.3",
48
+ "eslint": "8.3.0",
49
+ "eslint-plugin-github": "4.3.5",
50
50
  "eslint-plugin-jest": "25.2.4",
51
51
  "eslint-plugin-prettier": "4.0.0",
52
52
  "filesize": "8.0.6",
@@ -8,6 +8,9 @@
8
8
  width: 232px;
9
9
  margin-right: auto;
10
10
  margin-left: auto;
11
+ background-color: var(--color-canvas-overlay);
12
+ border: $border-width $border-style var(--color-border-default);
13
+ border-radius: $border-radius;
11
14
 
12
15
  // Carets
13
16
  &::before,
@@ -34,10 +37,13 @@
34
37
  border: 7px $border-style transparent;
35
38
  border-bottom-color: var(--color-canvas-overlay);
36
39
  }
40
+ }
37
41
 
38
- // TODO: Refactor so that .Popover is not dependant on .Box
39
- &.Box {
40
- background-color: var(--color-canvas-overlay);
42
+ // No caret
43
+ .Popover-message--no-caret {
44
+ &::before,
45
+ &::after {
46
+ display: none;
41
47
  }
42
48
  }
43
49
 
@@ -182,8 +188,40 @@
182
188
  }
183
189
 
184
190
  .Popover-message--large {
185
-
186
191
  @include breakpoint(sm) {
187
192
  min-width: 320px;
188
193
  }
189
194
  }
195
+
196
+ // Responsive Popover
197
+ // For < md it will show full-width anchored to the bottom
198
+
199
+ @media (max-width: ($width-md - 1px)) {
200
+ .Popover {
201
+ position: fixed;
202
+ top: auto;
203
+ right: 0;
204
+ bottom: 0;
205
+ left: 0;
206
+ }
207
+
208
+ .Popover-message {
209
+ top: auto;
210
+ right: auto;
211
+ bottom: auto;
212
+ left: auto;
213
+ width: auto;
214
+ margin: $spacer-2;
215
+ }
216
+
217
+ // Increase tap area for touch input
218
+ .Popover-message > .btn-octicon {
219
+ padding: $spacer-2 + $spacer-1 !important;
220
+ }
221
+
222
+ // Remove caret
223
+ .Popover-message::after,
224
+ .Popover-message::before {
225
+ display: none;
226
+ }
227
+ }
@@ -1,7 +1,7 @@
1
1
  // Responsive media queries
2
2
 
3
3
  @mixin breakpoint($breakpoint) {
4
- @if $breakpoint == "" {
4
+ @if $breakpoint == '' {
5
5
  @content;
6
6
  }
7
7
 
@@ -19,8 +19,8 @@
19
19
 
20
20
  // If the key doesn't exist in the map
21
21
  @else {
22
- @warn "Unfortunately, no value could be retrieved from `#{$breakpoint}`. "
23
- + "Please make sure it is defined in `$breakpoints` map.";
22
+ @warn 'Unfortunately, no value could be retrieved from `#{$breakpoint}`. '
23
+ + 'Please make sure it is defined in `$breakpoints` map.';
24
24
  }
25
25
  }
26
26
  }
@@ -47,12 +47,12 @@
47
47
  @mixin clearfix {
48
48
  &::before {
49
49
  display: table;
50
- content: "";
50
+ content: '';
51
51
  }
52
52
 
53
53
  &::after {
54
54
  display: table;
55
55
  clear: both;
56
- content: "";
56
+ content: '';
57
57
  }
58
58
  }
@@ -10,7 +10,7 @@
10
10
  width: 8px;
11
11
  height: 16px;
12
12
  pointer-events: none;
13
- content: " ";
13
+ content: ' ';
14
14
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
15
15
  }
16
16
 
@@ -150,11 +150,11 @@ $breakpoints: (
150
150
  // breakpoints and create both responsive and non-responsive classes in one
151
151
  // loop:
152
152
  $responsive-variants: (
153
- "": "",
154
- sm: "-sm",
155
- md: "-md",
156
- lg: "-lg",
157
- xl: "-xl",
153
+ '': '',
154
+ sm: '-sm',
155
+ md: '-md',
156
+ lg: '-lg',
157
+ xl: '-xl',
158
158
  ) !default;
159
159
 
160
160
  // responive utility position values
@@ -32,7 +32,7 @@ $lh-condensed: 1.25 !default;
32
32
  $lh-default: 1.5 !default;
33
33
 
34
34
  // Font stacks
35
- $body-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji" !default;
35
+ $body-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji' !default;
36
36
 
37
37
  // Monospace font stack
38
38
  // Note: SFMono-Regular needs to come before SF Mono to fix an older version of the font in Chrome