primer_view_components 0.51.6 → 0.52.1
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -0
- data/app/assets/styles/primer_view_components.css +1 -1
- data/app/assets/styles/primer_view_components.css.map +1 -1
- data/app/components/primer/alpha/auto_complete.css +1 -1
- data/app/components/primer/alpha/auto_complete.css.json +2 -4
- data/app/components/primer/alpha/auto_complete.css.map +1 -1
- data/app/components/primer/alpha/auto_complete.pcss +3 -10
- data/app/components/primer/alpha/text_field.css +1 -1
- data/app/components/primer/alpha/text_field.css.json +2 -1
- data/app/components/primer/alpha/text_field.css.map +1 -1
- data/app/components/primer/alpha/text_field.pcss +12 -7
- data/app/components/primer/beta/breadcrumbs.css +1 -1
- data/app/components/primer/beta/breadcrumbs.css.json +2 -1
- data/app/components/primer/beta/breadcrumbs.css.map +1 -1
- data/app/components/primer/beta/breadcrumbs.pcss +6 -5
- data/app/components/primer/beta/popover.css +1 -1
- data/app/components/primer/beta/popover.css.json +22 -16
- data/app/components/primer/beta/popover.css.map +1 -1
- data/app/components/primer/beta/popover.pcss +132 -101
- data/lib/primer/view_components/version.rb +2 -2
- data/static/classes.json +21 -0
- data/static/classnames.cjs +442 -0
- data/static/classnames.d.ts +2 -0
- data/static/classnames.js +444 -0
- metadata +5 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5d74d77e8662ae296548f94878dbb3c78bc5cabe90f39b0c366b485afe8b9a83
|
|
4
|
+
data.tar.gz: 9473b92c3f1a4308d09c14c8a0ce1b9f586b7d3ea9d0e2c99120dfa41a5931de
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 07bdcc44d45d53ec2b31ded9847e48f617e5d3cbb87a1e84cefed1ae0d85fc46dc1372d73204335effe3eee7687ecef3d41c5b06adf3311ec88bd23bbb9e5d42
|
|
7
|
+
data.tar.gz: 36e61c5ab0e40fbf4af7470bcfeb34355e0491c6e1f5255d0ac31e2a8d898429b3c60c927a79a6fa5f37a2508842172d26053bc0e73adbf278527cf9da95b8b8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## 0.52.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#4099](https://github.com/primer/view_components/pull/4099) [`91c1e26`](https://github.com/primer/view_components/commit/91c1e261ae3a279feb1b9a2dac8975cf1c595c65) Thanks [@jonrohan](https://github.com/jonrohan)! - Add path mapping for app directory in package.json
|
|
8
|
+
|
|
9
|
+
## 0.52.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [#4096](https://github.com/primer/view_components/pull/4096) [`3ba48a2`](https://github.com/primer/view_components/commit/3ba48a24494e2bb2bb4ed1aff5c612b55c237980) Thanks [@jonrohan](https://github.com/jonrohan)! - Add `static/classnames.js`, which default-exports a `Set` of every unique CSS class name in the library for consumers and tooling. It is available via the `@primer/view-components/classnames` import subpath.
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- [#4095](https://github.com/primer/view_components/pull/4095) [`6733f3c`](https://github.com/primer/view_components/commit/6733f3c0e902523dd23e5b94d3cd8fab7443aea2) Thanks [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent)! - Improve CSS style-recalc performance by removing selectors with universal subjects and expanding merged `:is()` selector lists so the browser can fast-reject them. Affects `autocomplete-item`, `Popover-message--*`, `breadcrumb-item`, and `FormControl-checkbox-wrap`/`FormControl-radio-wrap` styles.
|
|
18
|
+
|
|
3
19
|
## 0.51.6
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|