openproject-primer_view_components 0.13.0 → 0.14.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 (39) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +22 -0
  3. data/app/assets/javascripts/app/components/primer/primer.d.ts +0 -1
  4. data/app/assets/javascripts/primer_view_components.js +1 -1
  5. data/app/assets/javascripts/primer_view_components.js.map +1 -1
  6. data/app/assets/styles/primer_view_components.css +1 -1
  7. data/app/assets/styles/primer_view_components.css.map +1 -1
  8. data/app/components/primer/alpha/action_bar_element.js +2 -0
  9. data/app/components/primer/alpha/action_bar_element.ts +2 -0
  10. data/app/components/primer/alpha/action_menu/action_menu_element.js +20 -3
  11. data/app/components/primer/alpha/action_menu/action_menu_element.ts +27 -1
  12. data/app/components/primer/alpha/overlay.css +1 -1
  13. data/app/components/primer/alpha/overlay.css.json +0 -1
  14. data/app/components/primer/alpha/overlay.css.map +1 -1
  15. data/app/components/primer/alpha/overlay.pcss +0 -12
  16. data/app/components/primer/alpha/tool_tip.js +76 -3
  17. data/app/components/primer/alpha/tool_tip.ts +76 -3
  18. data/app/components/primer/open_project/page_header.css +1 -1
  19. data/app/components/primer/open_project/page_header.css.json +4 -1
  20. data/app/components/primer/open_project/page_header.css.map +1 -1
  21. data/app/components/primer/open_project/page_header.html.erb +6 -2
  22. data/app/components/primer/open_project/page_header.pcss +19 -6
  23. data/app/components/primer/open_project/page_header.rb +70 -0
  24. data/app/components/primer/primer.d.ts +0 -1
  25. data/app/components/primer/primer.js +0 -1
  26. data/app/components/primer/primer.pcss +0 -2
  27. data/app/components/primer/primer.ts +0 -1
  28. data/lib/primer/accessibility.rb +1 -3
  29. data/lib/primer/static/generate_info_arch.rb +6 -1
  30. data/lib/primer/view_components/version.rb +1 -1
  31. data/previews/primer/alpha/check_box_preview.rb +0 -3
  32. data/previews/primer/alpha/dialog_preview/with_text_input.html.erb +2 -1
  33. data/previews/primer/alpha/radio_button_preview.rb +0 -3
  34. data/previews/primer/open_project/page_header_preview.rb +39 -1
  35. data/static/classes.json +9 -0
  36. data/static/constants.json +12 -0
  37. data/static/info_arch.json +243 -8
  38. data/static/previews.json +198 -0
  39. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3c17581220cb9e77d3a09810a549aff8aa2cfa9e50913676dc99d29664e871f5
4
- data.tar.gz: dfa539af0aaf4e4d8fc53bad65563a7b5aa9603ef2b4bc0f48bf0147e88621ae
3
+ metadata.gz: 9e26d30ba7c7b83e5c1fdf71a92e702429e7cae4ff8a375ad78fb52d16b46613
4
+ data.tar.gz: 033de3253e17ce9e65068b9d30953c6a2fd950df08dc6d498bee8fcd9b05229a
5
5
  SHA512:
6
- metadata.gz: bd3676b9395caf3dab08f8a6495390a6dc9f9a74fd0de37b1b7e3ec032005e130f168cf3dbc82c0c3f1559517fa062568ea11ae2e04b59407229b6d674cb802f
7
- data.tar.gz: 8c35a2d098860e1f2a1c484019632c0f5b0b1489361524fd9f64275e3fc6916aa0d8b0438a0d3944221b9b83e5fad7fbe41ce313024b1c220d49ab95737d9938
6
+ metadata.gz: bad43c8bd4bf55d3b2bdb71df3118249351f2881640dde2883733cdf90931dded4ea3cbe6adb001d0c2ad0dbde32ffe12bd8029c12e14aac1c29903a10874687
7
+ data.tar.gz: a0cd040393e55133e476c4c91d23e77c0dd3d12dab8772ebabd1af39465f82c4d0268ee17a7a7fd371e7ef9a13a19a96093cb184bd0fc2e10cbb49ae48d161b3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.14.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#45](https://github.com/opf/primer_view_components/pull/45) [`ac9f7273`](https://github.com/opf/primer_view_components/commit/ac9f7273b0eea4d3c3daf5809970e3851bae58c6) Thanks [@dominic-braeunlein](https://github.com/dominic-braeunlein)! - Add back button and breadcrumbs support to PageHeader
8
+
9
+ ### Patch Changes
10
+
11
+ - [#2331](https://github.com/primer/view_components/pull/2331) [`4f8af24f`](https://github.com/opf/primer_view_components/commit/4f8af24f2bb657c09d3b371a9d2ab1e30ac3ad7c) Thanks [@camertron](https://github.com/camertron)! - Prevent scrolling when activating ActionMenu form items via space
12
+
13
+ - [#2323](https://github.com/primer/view_components/pull/2323) [`c481ed2d`](https://github.com/opf/primer_view_components/commit/c481ed2dedf9a480dca2a4ba41d2f1e3b39a2687) Thanks [@keithamus](https://github.com/keithamus)! - Fix bug in ActionMenu/Tooltip/Overlay being always visible in Firefox on ios 17
14
+
15
+ ## 0.13.1
16
+
17
+ ### Patch Changes
18
+
19
+ - [#2326](https://github.com/primer/view_components/pull/2326) [`4e05b7ec`](https://github.com/opf/primer_view_components/commit/4e05b7ecb764b104a0afa35c478eff5c79f9270e) Thanks [@camertron](https://github.com/camertron)! - Prevent scrolling when activating ActionMenu items via space
20
+
21
+ - [#2324](https://github.com/primer/view_components/pull/2324) [`cc44952c`](https://github.com/opf/primer_view_components/commit/cc44952c1c84e4fcd3ad6dc786db7211cdb82d36) Thanks [@langermank](https://github.com/langermank)! - Revert Tooltip caret removal
22
+
23
+ <!-- Changed components: Tooltip -->
24
+
3
25
  ## 0.13.0
4
26
 
5
27
  ### Minor Changes
@@ -1,5 +1,4 @@
1
1
  import '@github/include-fragment-element';
2
- import '@oddbird/popover-polyfill';
3
2
  import './alpha/action_bar_element';
4
3
  import './alpha/dropdown';
5
4
  import './anchored_position';