@primer/css 22.2.1 → 22.3.0-rc.bb1e1fcf
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 +10 -0
- package/dist/classnames.cjs +2505 -0
- package/dist/classnames.d.ts +2 -0
- package/dist/classnames.js +2505 -0
- package/dist/core.css +1 -1
- package/dist/core.css.map +1 -1
- package/dist/meta.json +84 -84
- package/dist/pagination.css +1 -1
- package/dist/pagination.css.map +1 -1
- package/dist/primer.css +1 -1
- package/dist/primer.css.map +1 -1
- package/dist/stats/core.json +1 -1
- package/dist/stats/pagination.json +1 -1
- package/dist/stats/primer.json +1 -1
- package/package.json +10 -1
- package/pagination/pagination.scss +8 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @primer/css
|
|
2
2
|
|
|
3
|
+
## 22.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#3080](https://github.com/primer/css/pull/3080) [`5cb880b`](https://github.com/primer/css/commit/5cb880b74ae633bf880adf45e6b80b7aa30d173c) Thanks [@jonrohan](https://github.com/jonrohan)! - Adding a classnames export that has a list of all unique CSS classes in the library
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- [#3079](https://github.com/primer/css/pull/3079) [`d735d75`](https://github.com/primer/css/commit/d735d758679dc5161435e33a3cfc254168f39b8a) Thanks [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent)! - Replace the universal `*` subject in the `.pagination` responsive rules with tag-bucketed selectors (`> a, > span, > em`). A universal subject compound (`.pagination > *`) forces Blink to test the rule against every direct child on every style recalc; bucketing by the actual child tags lets the engine fast-reject it, reducing wasted selector-matching time without changing the rendered output.
|
|
12
|
+
|
|
3
13
|
## 22.2.1
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|