openproject-primer_view_components 0.61.1 → 0.63.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/components/primer/alpha/action_menu.html.erb +2 -2
- data/app/components/primer/alpha/include_fragment.rb +26 -0
- data/app/components/primer/alpha/select_panel.html.erb +1 -1
- data/app/components/primer/conditional_wrapper.rb +8 -6
- data/lib/primer/view_components/linters/argument_mappers/include_fragment.rb +21 -0
- data/lib/primer/view_components/linters/include_fragment_component_migration_counter.rb +20 -0
- data/lib/primer/view_components/version.rb +2 -2
- data/previews/primer/alpha/include_fragment_preview.rb +22 -0
- data/previews/primer/open_project/page_header_preview/playground.html.erb +1 -1
- data/previews/primer/open_project/page_header_preview.rb +1 -1
- data/static/arguments.json +36 -2
- data/static/audited_at.json +1 -0
- data/static/constants.json +3 -0
- data/static/info_arch.json +80 -3
- data/static/previews.json +34 -0
- data/static/statuses.json +1 -0
- metadata +11 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1a157780e81b4a84c0814e2b933b4f2e2fcf6ad74d549353b058fc8012b57fea
|
4
|
+
data.tar.gz: 3ab915e6a83249d059e8a95b6a21e3739c8ac6b73bf22486ae2601020e2971e3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a0b70e6823a3bc2d69de91864ccde36d0d8063fda209c829f041e8ba63105c1f3d97acfbed26bba8b8fd53c4e6ddf3f4486199a245653988d308bdceaca5f742
|
7
|
+
data.tar.gz: 026dbfd7490dfa3e53e43802e45947089ee1c5776d9db4e6eda22e20d914ae979cc7af3b0afb4a0a2266f5d2594d370265c1052072f997642c6a300672e8579a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,23 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
+
## 0.63.0
|
4
|
+
|
5
|
+
### Minor Changes
|
6
|
+
|
7
|
+
- [#3428](https://github.com/primer/view_components/pull/3428) [`1ab1b06`](https://github.com/opf/primer_view_components/commit/1ab1b06509763ea60fc89770754edf06229b4f63) Thanks [@manuelpuyol](https://github.com/manuelpuyol)! - Create IncludeFragment component. Allow ConditionalWrapper to render components other than BaseComponent
|
8
|
+
|
9
|
+
### Patch Changes
|
10
|
+
|
11
|
+
- [#3429](https://github.com/primer/view_components/pull/3429) [`6ea9fd5`](https://github.com/opf/primer_view_components/commit/6ea9fd5dc90c1964ab3882faf1733c6b49c80e21) Thanks [@manuelpuyol](https://github.com/manuelpuyol)! - Create IncludeFragment linter to migrate <include-fragment> uses
|
12
|
+
|
13
|
+
## 0.62.0
|
14
|
+
|
15
|
+
### Minor Changes
|
16
|
+
|
17
|
+
- [#3433](https://github.com/primer/view_components/pull/3433) [`1b583f4`](https://github.com/opf/primer_view_components/commit/1b583f449b5d433e9db006d43b6ac680f9a07b3b) Thanks [@joelhawksley](https://github.com/joelhawksley)! - Clean up warnings when running tests, limit Ruby support to >= 3.2 and Rails support to >= 7.1.
|
18
|
+
|
19
|
+
- [#3406](https://github.com/primer/view_components/pull/3406) [`5176617`](https://github.com/opf/primer_view_components/commit/5176617e71cee7fcd14bfaddd6fa18910d4fbc79) Thanks [@joelhawksley](https://github.com/joelhawksley)! - Use auto-check-element v6, which only validates on blur vs. every keystroke.
|
20
|
+
|
3
21
|
## 0.61.1
|
4
22
|
|
5
23
|
### Patch Changes
|