openproject-primer_view_components 0.32.0 → 0.33.0
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/sub_header.css +1 -1
- data/app/components/primer/open_project/sub_header.css.map +1 -1
- data/app/components/primer/open_project/sub_header.html.erb +1 -1
- data/app/components/primer/open_project/sub_header.pcss +1 -2
- data/app/components/primer/open_project/sub_header.rb +1 -2
- 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/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: b1b5211ff3050522279c7a49c5a1fc53e42bcad32b72bb0b2b46fc27a2e6c242
|
4
|
+
data.tar.gz: dc2df13c3be9607980474657d0ebef321da6ae42ea491f9334052c5ed8af27a8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2e81d8fc9d7c15dfb1d6a53870d17064b3c7685477099ab92920c116aa0f02112aa2503dead78285b8c0120f035f6d32a142441052b247c14a0cb33d7d77b8e8
|
7
|
+
data.tar.gz: 70e46fc17d6a8092eb2b8e69bb1a9f8310ed744f89b9e943a38cadbb0ce93e3c4089e6e7859d46c5bf04dd7829d98180aaee1a64b74050a1ba4717cdda472ec2
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,23 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
+
## 0.33.0
|
4
|
+
|
5
|
+
### Minor Changes
|
6
|
+
|
7
|
+
- [#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
|
8
|
+
|
9
|
+
### Patch Changes
|
10
|
+
|
11
|
+
- [#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
|
12
|
+
|
13
|
+
- [#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.
|
14
|
+
|
15
|
+
## 0.32.1
|
16
|
+
|
17
|
+
### Patch Changes
|
18
|
+
|
19
|
+
- [#121](https://github.com/opf/primer_view_components/pull/121) [`20d031f`](https://github.com/opf/primer_view_components/commit/20d031f9ecff3802f6810939b167a5490b3c789e) Thanks [@HDinger](https://github.com/HDinger)! - Fix spacings in OpenProject::SubHeader when some elements are not present
|
20
|
+
|
3
21
|
## 0.32.0
|
4
22
|
|
5
23
|
### Minor Changes
|