primer_view_components 0.37.0 → 0.39.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.
Files changed (31) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +18 -0
  3. data/app/assets/javascripts/primer_view_components.js +1 -1
  4. data/app/assets/javascripts/primer_view_components.js.map +1 -1
  5. data/app/assets/styles/primer_view_components.css +1 -1
  6. data/app/assets/styles/primer_view_components.css.map +1 -1
  7. data/app/components/primer/alpha/dialog.css +1 -1
  8. data/app/components/primer/alpha/dialog.css.json +0 -1
  9. data/app/components/primer/alpha/dialog.css.map +1 -1
  10. data/app/components/primer/alpha/dialog.pcss +1 -4
  11. data/app/components/primer/alpha/select_panel.html.erb +5 -0
  12. data/app/components/primer/alpha/select_panel.rb +23 -24
  13. data/app/components/primer/alpha/select_panel_element.js +6 -4
  14. data/app/components/primer/alpha/select_panel_element.ts +8 -4
  15. data/app/components/primer/beta/auto_complete/item.rb +2 -3
  16. data/app/components/primer/beta/auto_complete/no_result_item.rb +21 -0
  17. data/app/components/primer/dialog_helper.js +3 -0
  18. data/app/components/primer/dialog_helper.ts +3 -0
  19. data/lib/primer/view_components/version.rb +1 -1
  20. data/previews/primer/alpha/select_panel_preview/remote_fetch_form.html.erb +34 -0
  21. data/previews/primer/alpha/select_panel_preview.rb +9 -0
  22. data/previews/primer/beta/auto_complete_preview.rb +6 -0
  23. data/previews/primer/beta/nav_list_preview/truncate.html.erb +25 -0
  24. data/previews/primer/beta/nav_list_preview.rb +4 -24
  25. data/static/arguments.json +11 -0
  26. data/static/audited_at.json +1 -0
  27. data/static/constants.json +4 -0
  28. data/static/info_arch.json +79 -15
  29. data/static/previews.json +15 -15
  30. data/static/statuses.json +1 -0
  31. metadata +5 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 48d0b15134dda5d38739520d067818c81d06344965cde7ed6d10029ab9cadb81
4
- data.tar.gz: 425ae41adeda53e6d6bef3993f05482f48014755b76d819063b706bb56d8dd19
3
+ metadata.gz: 7fa634a82c39b63f7d064589439b3156882980a4927e6253b1cb54d9728b3874
4
+ data.tar.gz: f8fee444e05ab4d90f7ca3c068481694924aa652e646818f900109c5bed0e02a
5
5
  SHA512:
6
- metadata.gz: 469423a2e543d62487242aa586b64605e1fb803a7ff0891bd2b0b0a1856c4b1c55751995bc5774c90556de78f0b33f3cb63c1120c13ac32dedebe40c40b4e8c5
7
- data.tar.gz: 4ecefa48eaf484b0a3f340cfb46aa75aa26a1d9787ccedc325c98bcd45433bd4f64a235ff2ecd6b216e322858fab17cf694ecc2a099c604ec4b7801adb5292e6
6
+ metadata.gz: 0a0fc0fce7c038aa266dddae4693c035b0eba85a1bd491b7486af6ac676c4b28294c2d6331d55808951ec8666980814bd74efab9fbc03891e2f41d421ca38743
7
+ data.tar.gz: 504f6a4c842dda283cb8203a1ac767114a00ee88f9cc8b3373fc418be25f9192a435ef9280695cb5d3675208f19c77050fdab7e931a58e81d0f6f7af75f77ca2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.39.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#3396](https://github.com/primer/view_components/pull/3396) [`8e9802a`](https://github.com/primer/view_components/commit/8e9802a1fdb2831512aa357f1cfbac0dad8c4aff) Thanks [@kendallgassner](https://github.com/kendallgassner)! - [SelectPanel] Add in the ability to add form_arugments when using remote fetching
8
+
9
+ ## 0.38.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [#3321](https://github.com/primer/view_components/pull/3321) [`de2397d`](https://github.com/primer/view_components/commit/de2397d9e181a764cbedc292ac7d3487ad79f763) Thanks [@kendallgassner](https://github.com/kendallgassner)! - [Primer::Beta::Autocomplete] Added a new component to render inside the the Autocomplete dropdown: Primer::Beta::AutoComplete::NoResultItem. This new component can be used to display a message to indicate that there are no available results. This component is marked upas role='presentation' as the autocomplete component already uses aria-live to announce if there are no results.
14
+
15
+ ### Patch Changes
16
+
17
+ - [#3334](https://github.com/primer/view_components/pull/3334) [`c6996b5`](https://github.com/primer/view_components/commit/c6996b508f6fcd3dc1f445aeb1346a8bc13f1fa4) Thanks [@klaustopher](https://github.com/klaustopher)! - Do not close dialogs when clicking on the backdrop if the dialog contains a form
18
+
19
+ - [#3377](https://github.com/primer/view_components/pull/3377) [`9626afb`](https://github.com/primer/view_components/commit/9626afbd904c713bdd0037b7cc3b7f78205b7408) Thanks [@jonrohan](https://github.com/jonrohan)! - Fixing bug in the select panel that pushes the page when any `:modal` is open.
20
+
3
21
  ## 0.37.0
4
22
 
5
23
  ### Minor Changes