openproject-primer_view_components 0.32.1 → 0.33.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 +18 -0
- data/app/assets/javascripts/primer_view_components.js +1 -1
- data/app/assets/javascripts/primer_view_components.js.map +1 -1
- 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/toggle_switch.js +1 -1
- data/app/components/primer/alpha/toggle_switch.rb +16 -4
- data/app/components/primer/alpha/toggle_switch.ts +1 -1
- data/app/components/primer/beta/clipboard_copy.html.erb +9 -6
- data/app/components/primer/beta/clipboard_copy.js +15 -0
- data/app/components/primer/beta/clipboard_copy.rb +2 -0
- data/app/components/primer/beta/clipboard_copy.ts +14 -0
- data/app/components/primer/beta/clipboard_copy_button.rb +2 -0
- data/app/components/primer/open_project/page_header.css +1 -1
- data/app/components/primer/open_project/page_header.css.json +3 -3
- data/app/components/primer/open_project/page_header.css.map +1 -1
- data/app/components/primer/open_project/page_header.pcss +6 -6
- data/app/components/primer/open_project/page_header.rb +1 -1
- data/app/lib/primer/attributes_helper.rb +1 -1
- data/lib/primer/forms/toggle_switch.html.erb +1 -9
- data/lib/primer/view_components/version.rb +1 -1
- data/previews/primer/alpha/toggle_switch_preview.rb +1 -1
- data/previews/primer/beta/label_preview.rb +7 -2
- data/previews/primer/forms_preview/example_toggle_switch_form.html.erb +2 -2
- data/static/classes.json +1 -4
- data/static/info_arch.json +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0c2ed7a23ea26e57400f95a9075d98f4f2f07af6f7ea85f42093040affb1ff20
|
4
|
+
data.tar.gz: f2456cd0f88acb3e232cb4627942f3cf2107756ddc75bcfc825a9543783b12c3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a15329477b1cd9ba3a128e3473f701a68302b51f7951247c177a9bcf33280aa80ecb2210ec109f47e9f879eee78a0a9a1e600d998ff89b4ca525785ee5136d60
|
7
|
+
data.tar.gz: dfcbd5470c302aca9e03b309d85924a346e1fea3f4893c936352dab668844f8bb51722f3542d38d7d800b4c2f98c92fe7514752a7b6855f3833e9cf39eea4ea9
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,23 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
+
## 0.33.1
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- [#119](https://github.com/opf/primer_view_components/pull/119) [`dfdc857`](https://github.com/opf/primer_view_components/commit/dfdc857ce0a92fb57cad72f79c22a1d9440b9138) Thanks [@dominic-braeunlein](https://github.com/dominic-braeunlein)! - Fix Tab Nav vertical spacing in Page Header
|
8
|
+
|
9
|
+
## 0.33.0
|
10
|
+
|
11
|
+
### Minor Changes
|
12
|
+
|
13
|
+
- [#2843](https://github.com/primer/view_components/pull/2843) [`3eccd4e`](https://github.com/opf/primer_view_components/commit/3eccd4e293658ea846fa97659c76861d4f3404ea) Thanks [@lindseywild](https://github.com/lindseywild)! - Adds live region to announce "Copied!" on ClipboardCopy component
|
14
|
+
|
15
|
+
### Patch Changes
|
16
|
+
|
17
|
+
- [#2840](https://github.com/primer/view_components/pull/2840) [`f9947de`](https://github.com/opf/primer_view_components/commit/f9947de93b276ec9fa6c7873e178f3c01211ebb2) Thanks [@joelhawksley](https://github.com/joelhawksley)! - Update Rails dependency versions
|
18
|
+
|
19
|
+
- [#2846](https://github.com/primer/view_components/pull/2846) [`4b8c00b`](https://github.com/opf/primer_view_components/commit/4b8c00b76d65ad321a9d9c546151d58858571cf7) Thanks [@joelhawksley](https://github.com/joelhawksley)! - Clean up Lookbook-related security alerts.
|
20
|
+
|
3
21
|
## 0.32.1
|
4
22
|
|
5
23
|
### Patch Changes
|