openproject-primer_view_components 0.52.0 → 0.52.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +26 -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/action_list/divider.rb +4 -0
  8. data/app/components/primer/alpha/action_menu/action_menu_element.js +1 -0
  9. data/app/components/primer/alpha/action_menu/action_menu_element.ts +1 -0
  10. data/app/components/primer/alpha/dialog.css +1 -1
  11. data/app/components/primer/alpha/dialog.css.json +0 -1
  12. data/app/components/primer/alpha/dialog.css.map +1 -1
  13. data/app/components/primer/alpha/dialog.pcss +0 -5
  14. data/app/components/primer/alpha/text_field.css +1 -1
  15. data/app/components/primer/alpha/text_field.css.json +14 -0
  16. data/app/components/primer/alpha/text_field.css.map +1 -1
  17. data/app/components/primer/alpha/text_field.pcss +89 -2
  18. data/app/components/primer/open_project/danger_confirmation_dialog/confirmation_check_box.rb +1 -0
  19. data/app/components/primer/open_project/danger_confirmation_dialog/form_wrapper.rb +2 -0
  20. data/app/components/primer/open_project/danger_confirmation_dialog.html.erb +1 -1
  21. data/app/components/primer/open_project/danger_confirmation_dialog.rb +8 -8
  22. data/app/components/primer/open_project/feedback_dialog.rb +6 -4
  23. data/app/lib/primer/forms/acts_as_component.rb +32 -17
  24. data/app/lib/primer/forms/base_component.rb +5 -12
  25. data/app/lib/primer/forms/dsl/text_field_input.rb +10 -7
  26. data/app/lib/primer/forms/text_field.html.erb +5 -0
  27. data/app/lib/primer/forms/text_field.rb +37 -0
  28. data/lib/primer/classify/utilities.yml +1 -1
  29. data/lib/primer/view_components/version.rb +1 -1
  30. data/previews/primer/alpha/text_field_preview.rb +30 -0
  31. data/static/arguments.json +67 -0
  32. data/static/audited_at.json +3 -0
  33. data/static/constants.json +11 -0
  34. data/static/form_previews.json +5 -0
  35. data/static/info_arch.json +366 -15
  36. data/static/previews.json +177 -0
  37. data/static/statuses.json +3 -0
  38. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fd140b594a3320327597c717407335fcb2a75d74160f81635780fe093f32a6db
4
- data.tar.gz: a3d6b3886f9900157721df6a670b305360387f9969753a9f790605caa5c1faa3
3
+ metadata.gz: e6e81b9d2acaa58efdde34a9fda2525a5e82271d25a3513b5a408b94ddce9c07
4
+ data.tar.gz: 907e9b07e1f89be5b2c2ed1890d44906c51296fce4d6ee8538d28ed91418144e
5
5
  SHA512:
6
- metadata.gz: 24f9cb45a17f8e132c3eb41117a2a0300dff084738285eef44818b57b5da876472030691fcafe463e5c77a1050c21fb39a79df2e7107b5ab7a6f95872c8df0e6
7
- data.tar.gz: 3887155c4ef530bf37c7aa5c5dc30ef87dfb14002939d427a761b16c6e8e676cf52168de0f263972ba39cb71fd03105b7252cd1f2134c2980d630af4fb2a003a
6
+ metadata.gz: 89f93eac3135934f1531a1dfb35ba9f15ee415e6399db01488f4cc4f2a7d25678e9e2ff779667e73c630bedae349555788ac8532c33e9dabc8a913b7993fa9cd
7
+ data.tar.gz: 830ea1dbfb4f2f5ae90a4a0cf539f038f75056449b9687780d6ba840a430357c63315775263f753eeb2badc1c630db2873b7b1311dc77d76c20f8a3514e5cff9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.52.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#3260](https://github.com/primer/view_components/pull/3260) [`87b0ddb`](https://github.com/opf/primer_view_components/commit/87b0ddbfc7368156d04c68bd7fccbe407c9c03e4) Thanks [@joelhawksley](https://github.com/joelhawksley)! - Add more support for ruby 3.4 in tests
8
+
9
+ - [#3267](https://github.com/primer/view_components/pull/3267) [`7378b29`](https://github.com/opf/primer_view_components/commit/7378b29bc2e0341e12c6921c246667b8a3ab820c) Thanks [@camertron](https://github.com/camertron)! - Add trailing visuals to the text field
10
+
11
+ - [#3265](https://github.com/primer/view_components/pull/3265) [`3c2454a`](https://github.com/opf/primer_view_components/commit/3c2454a304baa045e4234375d19713427f467395) Thanks [@myabc](https://github.com/myabc)! - Fix incorrect classname keys when generating `lib/primer/classify/utilities.yml` with `bundle exec rake utilities:build`.
12
+
13
+ - [#3268](https://github.com/primer/view_components/pull/3268) [`43e621e`](https://github.com/opf/primer_view_components/commit/43e621eff9b48352ae5580f4864a98e18c2d2dc9) Thanks [@camertron](https://github.com/camertron)! - Ensure ActionMenu's itemActivated event bubbles
14
+
15
+ - [#3266](https://github.com/primer/view_components/pull/3266) [`73d64d9`](https://github.com/opf/primer_view_components/commit/73d64d975bff0f360e20bcc477af427cf1c7e797) Thanks [@camertron](https://github.com/camertron)! - Fix memory leak in forms framework causing form templates to be compiled on each render in development
16
+
17
+ - [#3257](https://github.com/primer/view_components/pull/3257) [`9f87ab1`](https://github.com/opf/primer_view_components/commit/9f87ab122fbe7a85552b3124c4efbcec060e9af4) Thanks [@joelhawksley](https://github.com/joelhawksley)! - add support for Ruby 3.4 in test suite
18
+
19
+ ## 0.52.1
20
+
21
+ ### Patch Changes
22
+
23
+ - [#3254](https://github.com/primer/view_components/pull/3254) [`1bb7ad7`](https://github.com/opf/primer_view_components/commit/1bb7ad71239ee6b6ef158dac7f1aad3bd76ea404) Thanks [@camertron](https://github.com/camertron)! - Fix `NoMethodError` when checking if `ActionList::Divider`s are active
24
+
25
+ - [#3253](https://github.com/primer/view_components/pull/3253) [`3a63cf0`](https://github.com/opf/primer_view_components/commit/3a63cf01377ccb71654f69e7840c5bc52fe802b2) Thanks [@joshblack](https://github.com/joshblack)! - Add top spacing to Dialog::Body to avoid it being glued to the divider
26
+
27
+ - [#225](https://github.com/opf/primer_view_components/pull/225) [`acf202b`](https://github.com/opf/primer_view_components/commit/acf202b6fd6e5805d79db7e55ac024b325aa36bd) Thanks [@myabc](https://github.com/myabc)! - Changes button text to dismiss Danger Dialog from "Close" to "Cancel"
28
+
3
29
  ## 0.52.0
4
30
 
5
31
  ### Minor Changes