primer_view_components 0.13.0 → 0.13.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (31) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +18 -0
  3. data/README.md +1 -1
  4. data/app/assets/javascripts/app/components/primer/primer.d.ts +0 -1
  5. data/app/assets/javascripts/primer_view_components.js +1 -1
  6. data/app/assets/javascripts/primer_view_components.js.map +1 -1
  7. data/app/assets/styles/primer_view_components.css +1 -1
  8. data/app/assets/styles/primer_view_components.css.map +1 -1
  9. data/app/components/primer/alpha/action_bar_element.js +2 -0
  10. data/app/components/primer/alpha/action_bar_element.ts +2 -0
  11. data/app/components/primer/alpha/action_menu/action_menu_element.js +20 -3
  12. data/app/components/primer/alpha/action_menu/action_menu_element.ts +27 -1
  13. data/app/components/primer/alpha/overlay.css +1 -1
  14. data/app/components/primer/alpha/overlay.css.json +0 -1
  15. data/app/components/primer/alpha/overlay.css.map +1 -1
  16. data/app/components/primer/alpha/overlay.pcss +0 -12
  17. data/app/components/primer/alpha/tool_tip.js +76 -3
  18. data/app/components/primer/alpha/tool_tip.ts +76 -3
  19. data/app/components/primer/primer.d.ts +0 -1
  20. data/app/components/primer/primer.js +0 -1
  21. data/app/components/primer/primer.pcss +0 -2
  22. data/app/components/primer/primer.ts +0 -1
  23. data/lib/primer/accessibility.rb +1 -3
  24. data/lib/primer/static/generate_info_arch.rb +6 -1
  25. data/lib/primer/view_components/version.rb +1 -1
  26. data/previews/primer/alpha/check_box_preview.rb +0 -3
  27. data/previews/primer/alpha/dialog_preview/with_text_input.html.erb +2 -1
  28. data/previews/primer/alpha/radio_button_preview.rb +0 -3
  29. data/static/info_arch.json +162 -8
  30. data/static/previews.json +172 -0
  31. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1e550febc90a9416549f08bf5f31423a1b096bc58dd83bd43d5488042dd71aad
4
- data.tar.gz: 8e87b86b6eda26669c2f96d1b873bab0302989a10eb03d3076867827058ca27b
3
+ metadata.gz: 6c8bbbce5be514ecedd10e2f8079db655290cd3a1e1aaf49524bb3ec20ef75e5
4
+ data.tar.gz: 5bed9dc5e9a22a03994921856af366d53efde51b11d0dae951679729d4c4c88f
5
5
  SHA512:
6
- metadata.gz: dd66394a9dba0063e1ec0e71d155c5b50c10dfd4927ee73064a00a424995d91383517856da8444f0aa7b1c6b5da6a377489d64f1c0d3274bf45ec038526d7998
7
- data.tar.gz: 3ac43c3d88604f722206cef8e23348a58fd7ea010543d7434e800e0d8252c8d3a39ad167e5c7a649dde4eb10577afdcbe78daab7a5b580115822d9eb1bf7932c
6
+ metadata.gz: 4c2ce33948d6048299ae896f5a450d95a1822c1ed8a8df633b1e9e6ce91329f47013a879100b49dd767425b1f3bcee3029265dd1e08b86a364dc8028cc685837
7
+ data.tar.gz: fc8ef42812b025d0a72f3006a22bea606eedde58f1efae6724d2a9c041a06ca7b2c3ba22df4669aafb59b6c94abbec6f460b69c249a84bef53530bba3a7faf94
data/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.13.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#2331](https://github.com/primer/view_components/pull/2331) [`4f8af24f`](https://github.com/primer/view_components/commit/4f8af24f2bb657c09d3b371a9d2ab1e30ac3ad7c) Thanks [@camertron](https://github.com/camertron)! - Prevent scrolling when activating ActionMenu form items via space
8
+
9
+ - [#2323](https://github.com/primer/view_components/pull/2323) [`c481ed2d`](https://github.com/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
10
+
11
+ ## 0.13.1
12
+
13
+ ### Patch Changes
14
+
15
+ - [#2326](https://github.com/primer/view_components/pull/2326) [`4e05b7ec`](https://github.com/primer/view_components/commit/4e05b7ecb764b104a0afa35c478eff5c79f9270e) Thanks [@camertron](https://github.com/camertron)! - Prevent scrolling when activating ActionMenu items via space
16
+
17
+ - [#2324](https://github.com/primer/view_components/pull/2324) [`cc44952c`](https://github.com/primer/view_components/commit/cc44952c1c84e4fcd3ad6dc786db7211cdb82d36) Thanks [@langermank](https://github.com/langermank)! - Revert Tooltip caret removal
18
+
19
+ <!-- Changed components: Tooltip -->
20
+
3
21
  ## 0.13.0
4
22
 
5
23
  ### Minor Changes
data/README.md CHANGED
@@ -10,7 +10,7 @@ _Note: This library is under active pre-1.0 development. Breaking changes are li
10
10
 
11
11
  ## Documentation
12
12
 
13
- Visit [https://primer.style/view_components/](https://primer.style/design/components/) to view documentation.
13
+ Visit [https://primer.style/components/](https://primer.style/components/) to view documentation.
14
14
 
15
15
  ## License
16
16
 
@@ -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';