openproject-primer_view_components 0.9.0 → 0.10.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 (35) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +37 -1
  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/action_bar/item.rb +3 -2
  8. data/app/components/primer/alpha/action_bar.rb +1 -5
  9. data/app/components/primer/alpha/overlay.css +1 -1
  10. data/app/components/primer/alpha/overlay.css.json +3 -1
  11. data/app/components/primer/alpha/overlay.css.map +1 -1
  12. data/app/components/primer/alpha/overlay.pcss +4 -0
  13. data/app/components/primer/alpha/tool_tip.js +28 -8
  14. data/app/components/primer/alpha/tool_tip.ts +27 -8
  15. data/app/components/primer/anchored_position.js +14 -5
  16. data/app/components/primer/anchored_position.ts +13 -4
  17. data/app/components/primer/beta/spinner.html.erb +1 -1
  18. data/app/components/primer/open_project/page_header.css +1 -1
  19. data/app/components/primer/open_project/page_header.css.json +1 -0
  20. data/app/components/primer/open_project/page_header.css.map +1 -1
  21. data/app/components/primer/open_project/page_header.pcss +6 -1
  22. data/app/components/primer/open_project/page_header.rb +13 -3
  23. data/lib/primer/view_components/linters/migrations/iconbutton_component.rb +36 -0
  24. data/lib/primer/view_components/version.rb +1 -1
  25. data/previews/primer/alpha/overlay_preview/in_an_action_menu.html.erb +13 -0
  26. data/previews/primer/alpha/overlay_preview.rb +5 -0
  27. data/previews/primer/open_project/page_header_preview.rb +13 -4
  28. data/static/arguments.json +11 -0
  29. data/static/audited_at.json +1 -0
  30. data/static/classes.json +3 -0
  31. data/static/constants.json +16 -0
  32. data/static/info_arch.json +129 -0
  33. data/static/previews.json +33 -7
  34. data/static/statuses.json +1 -0
  35. metadata +4 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3ccd6cbfa3adec2d1de09bceb4d3633664286e994abf83deecf8b00fd0dbb35e
4
- data.tar.gz: c6214e8f1eba6f4ace9d6ee6169326e49751eca17fd4c79cac6db9c269d325f4
3
+ metadata.gz: 72ca823337f4d723d643d53296f508372124c9edb6f822bd305bd88780954d9c
4
+ data.tar.gz: cf0658ccd772fd39061ab945717f841422e8a3f701222dcd6cb54dcfc614c6a9
5
5
  SHA512:
6
- metadata.gz: 82271dd9053241c848dce101517d7a2a5a6624377705e9ae4e70ac7476216feb60e4478b2fdf6ab524369aca3f470e6b2360b7d333855fae6abdc962cdccf57f
7
- data.tar.gz: 883769cfd690f64afbf13b1d6e279e0e3371a0007f7b2f4ffafbab930973983f72d71404677e6133e8a78da4ed53ee1839c27aaeab13410ed9851f1626f6734d
6
+ metadata.gz: 55412b39598e67c9d0708e0b09a464d4c138fedb57d26fd2596bf1caa024700b61ea0208f5f17727deaad097cb09ad9305f85310ea9758924357572545736ab3
7
+ data.tar.gz: 24dc87933bdf299ef660a6fbc72726311cd9ba05f7255d58a8a56c8db994020cb95dd296e4bfac497e85c6eed280fb7ef5f85eea4e1143da3e2e2517df2f16ef
data/CHANGELOG.md CHANGED
@@ -1,11 +1,47 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.10.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#2205](https://github.com/primer/view_components/pull/2205) [`88ac3095`](https://github.com/opf/primer_view_components/commit/88ac309577b5b735af5067ee6ab2c8c30f48aefc) Thanks [@TylerJDev](https://github.com/TylerJDev)! - Add rubocop linter for `IconButton` component
8
+
9
+ <!-- Changed components: Primer::IconButton -->
10
+
11
+ - [#2223](https://github.com/primer/view_components/pull/2223) [`00b7d5d7`](https://github.com/opf/primer_view_components/commit/00b7d5d78e2f52dc6bc6c54689e50da976289203) Thanks [@jonrohan](https://github.com/jonrohan)! - Moving the render for the ActionBar::Item from the slot initializer to the call method.
12
+
13
+ <!-- Changed components: _none_ -->
14
+
15
+ ### Patch Changes
16
+
17
+ - [#2227](https://github.com/primer/view_components/pull/2227) [`bb336bb6`](https://github.com/opf/primer_view_components/commit/bb336bb6f034e20778b4834edae3540c365b9d9f) Thanks [@jonrohan](https://github.com/jonrohan)! - [Bug] Don't fill in the spinner circle svg path
18
+
19
+ - [#2237](https://github.com/primer/view_components/pull/2237) [`70a8336f`](https://github.com/opf/primer_view_components/commit/70a8336fda45b144f81c1ece54b17a26037126e4) Thanks [@jonrohan](https://github.com/jonrohan)! - Fixing ActionBar more menu items including buttons with no type
20
+
21
+ <!-- Changed components: Primer::Alpha::ActionBar -->
22
+
23
+ - [#2204](https://github.com/primer/view_components/pull/2204) [`ed1644a2`](https://github.com/opf/primer_view_components/commit/ed1644a2fa5b701611a13513cb903774f3f74152) Thanks [@keithamus](https://github.com/keithamus)! - Fix errors in older browsers with :popover-open
24
+
25
+ <!-- Changed components: Primer::Alpha::Tooltip -->
26
+
27
+ - [#2236](https://github.com/primer/view_components/pull/2236) [`d663e450`](https://github.com/opf/primer_view_components/commit/d663e4508341f5b9ef1788b8a2231782ce3ed44d) Thanks [@keithamus](https://github.com/keithamus)! - Centre anchored-position elements when their anchor is not present
28
+
29
+ <!-- Changed components: Primer::Alpha::Overlay -->
30
+
31
+ ## 0.9.1
32
+
33
+ ### Patch Changes
34
+
35
+ - [#26](https://github.com/opf/primer_view_components/pull/26) [`8bed2897`](https://github.com/opf/primer_view_components/commit/8bed2897edc381c3d943cb724854a103b8c84fe4) Thanks [@HDinger](https://github.com/HDinger)! - Add large variant for PageHeaderComponent
36
+
37
+ <!-- Changed components: Primer::OpenProject::PageHeader -->
38
+
3
39
  ## 0.9.0
4
40
 
5
41
  ### Minor Changes
6
42
 
7
43
  - [#22](https://github.com/opf/primer_view_components/pull/22) [`ebbe8d5e`](https://github.com/opf/primer_view_components/commit/ebbe8d5e8a616799b9c8b54c0f263a2f43720d1f) Thanks [@oliverguenther](https://github.com/oliverguenther)! -
8
-
44
+
9
45
  - Add OpenProject status for custom components
10
46
  - Add PageHeader component
11
47