openproject-primer_view_components 0.51.0 → 0.52.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -0
- data/app/assets/javascripts/primer_view_components.js +1 -1
- data/app/assets/javascripts/primer_view_components.js.map +1 -1
- data/app/assets/styles/primer_view_components.css +1 -1
- data/app/assets/styles/primer_view_components.css.map +1 -1
- data/app/components/primer/alpha/action_list/divider.rb +4 -0
- data/app/components/primer/alpha/dialog.css +1 -1
- data/app/components/primer/alpha/dialog.css.json +0 -1
- data/app/components/primer/alpha/dialog.css.map +1 -1
- data/app/components/primer/alpha/dialog.pcss +0 -5
- data/app/components/primer/open_project/danger_confirmation_dialog/confirmation_check_box.rb +1 -0
- data/app/components/primer/open_project/danger_confirmation_dialog/form_wrapper.rb +2 -0
- data/app/components/primer/open_project/danger_confirmation_dialog.html.erb +1 -1
- data/app/components/primer/open_project/danger_confirmation_dialog.rb +8 -8
- data/app/components/primer/open_project/feedback_dialog.html.erb +2 -2
- data/app/components/primer/open_project/feedback_dialog.rb +8 -6
- data/lib/primer/view_components/version.rb +2 -2
- data/previews/primer/open_project/danger_confirmation_dialog_preview/playground.html.erb +1 -1
- data/previews/primer/open_project/feedback_dialog_preview/playground.html.erb +3 -3
- data/previews/primer/open_project/feedback_dialog_preview/{additional_content.html.erb → with_additional_details.html.erb} +1 -1
- data/previews/primer/open_project/feedback_dialog_preview.rb +6 -6
- data/static/arguments.json +67 -0
- data/static/audited_at.json +3 -0
- data/static/constants.json +11 -0
- data/static/form_previews.json +5 -0
- data/static/info_arch.json +306 -20
- data/static/previews.json +116 -4
- data/static/statuses.json +3 -0
- metadata +4 -4
- /data/previews/primer/open_project/feedback_dialog_preview/{custom_footer.html.erb → with_custom_footer.html.erb} +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8dda91a2377fb5ad052c3be211a0718e045bab9709bba2fbdee44fadeb32882a
|
4
|
+
data.tar.gz: 941b38d21161e9f82e893293ae339704581f43dc9e35994e33d129ed692c1f4f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 27957fd3b25cf97d101001a79374cecf915a86a7956449e8d424b802a44eff17149ca772edf365bf341981f93fe84ff62ea0c244a1839d9666570e8715a5facb
|
7
|
+
data.tar.gz: 29bda097af96feacf1d4d1985646e89992a74017cb41610c8f50d919036f7926ad87d6d54524da993dfbdbf3c036bfb109fe35ef3592ccdc9b86dc8e865726a5
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
+
## 0.52.1
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- [#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
|
8
|
+
|
9
|
+
- [#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
|
10
|
+
|
11
|
+
- [#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"
|
12
|
+
|
13
|
+
## 0.52.0
|
14
|
+
|
15
|
+
### Minor Changes
|
16
|
+
|
17
|
+
- [#219](https://github.com/opf/primer_view_components/pull/219) [`e3a93b7`](https://github.com/opf/primer_view_components/commit/e3a93b72299395d039758b1fda8ec78d51687127) Thanks [@myabc](https://github.com/myabc)! - [#60359] Harmonise FeedbackDialog slot naming: renames the `additional_content` slot to `additional_details` to make Feedback Dialog consistent with the newly introduced Danger Confirmation Dialog.
|
18
|
+
|
3
19
|
## 0.51.0
|
4
20
|
|
5
21
|
### Minor Changes
|