@primer/css 19.4.1-rc.b4e7503e → 19.5.0-rc.493c4af7

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,14 +1,22 @@
1
1
  # @primer/css
2
2
 
3
- ## 19.4.1
3
+ ## 19.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1961](https://github.com/primer/css/pull/1961) [`a35a8bdc`](https://github.com/primer/css/commit/a35a8bdcc17906848fcb486842d2345db0441c7c) Thanks [@jonrohan](https://github.com/jonrohan)! - Default .PageLayout to display block
4
8
 
5
9
  ### Patch Changes
6
10
 
7
11
  - [#1954](https://github.com/primer/css/pull/1954) [`30f29d38`](https://github.com/primer/css/commit/30f29d383256a7d4023a859fdeee44471307159d) Thanks [@simurai](https://github.com/simurai)! - Fix `input-block` in `form-group`
8
12
 
9
- * [#1931](https://github.com/primer/css/pull/1931) [`e5c5312e`](https://github.com/primer/css/commit/e5c5312ec8bf139f6c94d2f70ceecd4b3cd9fd82) Thanks [@vdepizzol](https://github.com/vdepizzol)! - Page layout api updates renaming spacing options in storybook
13
+ * [#1956](https://github.com/primer/css/pull/1956) [`39063461`](https://github.com/primer/css/commit/3906346182ed983d9725fd95da41b21424378b3e) Thanks [@jonrohan](https://github.com/jonrohan)! - Upgrading @primer/stylelint-config@12.3.2
14
+
15
+ - [#1931](https://github.com/primer/css/pull/1931) [`e5c5312e`](https://github.com/primer/css/commit/e5c5312ec8bf139f6c94d2f70ceecd4b3cd9fd82) Thanks [@vdepizzol](https://github.com/vdepizzol)! - Page layout api updates renaming spacing options in storybook
16
+
17
+ * [#1950](https://github.com/primer/css/pull/1950) [`7c85c500`](https://github.com/primer/css/commit/7c85c500569fe6e1b29665c2eed37d58625ab06f) Thanks [@hectahertz](https://github.com/hectahertz)! - Fix sequence of content in Subhead
10
18
 
11
- - [#1950](https://github.com/primer/css/pull/1950) [`7c85c500`](https://github.com/primer/css/commit/7c85c500569fe6e1b29665c2eed37d58625ab06f) Thanks [@hectahertz](https://github.com/hectahertz)! - Fix sequence of content in Subhead
19
+ - [#1942](https://github.com/primer/css/pull/1942) [`0450ccbb`](https://github.com/primer/css/commit/0450ccbb86104564c7d4038eb68989f370014fa1) Thanks [@reeceatkinson](https://github.com/reeceatkinson)! - Added line break to docs
12
20
 
13
21
  * [#1953](https://github.com/primer/css/pull/1953) [`3a91a29a`](https://github.com/primer/css/commit/3a91a29a822a28ea9679fbbb90250fc039057f23) Thanks [@hectahertz](https://github.com/hectahertz)! - Use <h2> instead of <div> on Subhead-heading docs
14
22
 
@@ -16,6 +16,7 @@
16
16
  display: block;
17
17
  height: 1px;
18
18
  padding: 0;
19
+ // stylelint-disable-next-line primer/spacing
19
20
  margin: ($spacer-2 - 1px) ($spacer-2 * -1) $spacer-2;
20
21
  list-style: none;
21
22
  background: var(--color-action-list-item-inline-divider);
@@ -129,6 +129,7 @@
129
129
 
130
130
  // --ActionList-tree-depth is defined as an inline style referencing the aria-level of each item ie: aria-level="2"
131
131
  .ActionList-content {
132
+ // stylelint-disable-next-line primer/spacing
132
133
  padding-left: calc(#{$spacer-2} * var(--ActionList-tree-depth));
133
134
  }
134
135
  }