activeadmin 2.8.1 → 2.10.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of activeadmin might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +118 -1
- data/CONTRIBUTING.md +6 -6
- data/README.md +3 -3
- data/app/assets/javascripts/active_admin/base.js +12 -5
- data/app/assets/stylesheets/active_admin/_base.scss +53 -37
- data/app/assets/stylesheets/active_admin/_forms.scss +3 -4
- data/app/assets/stylesheets/active_admin/_normalize.scss +25 -123
- data/app/assets/stylesheets/active_admin/{print.scss → _print.scss} +0 -0
- data/app/assets/stylesheets/active_admin/components/_date_picker.scss +1 -2
- data/app/assets/stylesheets/active_admin/components/_dropdown_menu.scss +0 -1
- data/app/assets/stylesheets/active_admin/structure/_title_bar.scss +0 -1
- data/app/views/active_admin/devise/mailer/reset_password_instructions.html.erb +1 -1
- data/app/views/active_admin/devise/mailer/unlock_instructions.html.erb +2 -2
- data/app/views/active_admin/devise/shared/_links.erb +1 -1
- data/app/views/active_admin/page/index.html.arb +1 -0
- data/app/views/active_admin/resource/edit.html.arb +1 -0
- data/app/views/active_admin/resource/index.html.arb +1 -0
- data/app/views/active_admin/resource/new.html.arb +1 -0
- data/app/views/active_admin/resource/show.html.arb +1 -0
- data/app/views/layouts/active_admin.html.arb +1 -0
- data/config/locales/ko.yml +1 -1
- data/config/locales/nl.yml +1 -1
- data/config/locales/ro.yml +3 -2
- data/docs/0-installation.md +1 -1
- data/docs/5-forms.md +6 -1
- data/docs/6-show-pages.md +12 -0
- data/docs/8-custom-actions.md +1 -1
- data/docs/Gemfile +1 -0
- data/docs/Gemfile.lock +114 -90
- data/lib/active_admin/abstract_view_factory.rb +1 -0
- data/lib/active_admin/application.rb +9 -9
- data/lib/active_admin/application_settings.rb +1 -0
- data/lib/active_admin/asset_registration.rb +1 -0
- data/lib/active_admin/authorization_adapter.rb +1 -0
- data/lib/active_admin/base_controller/authorization.rb +1 -0
- data/lib/active_admin/base_controller/menu.rb +1 -0
- data/lib/active_admin/base_controller.rb +2 -1
- data/lib/active_admin/batch_actions/controller.rb +1 -0
- data/lib/active_admin/batch_actions/resource_extension.rb +1 -0
- data/lib/active_admin/batch_actions/views/batch_action_form.rb +1 -0
- data/lib/active_admin/batch_actions/views/batch_action_selector.rb +1 -0
- data/lib/active_admin/batch_actions/views/selection_cells.rb +1 -0
- data/lib/active_admin/batch_actions.rb +1 -0
- data/lib/active_admin/callbacks.rb +1 -0
- data/lib/active_admin/cancan_adapter.rb +1 -0
- data/lib/active_admin/collection_decorator.rb +1 -0
- data/lib/active_admin/component.rb +1 -0
- data/lib/active_admin/controller_action.rb +1 -0
- data/lib/active_admin/csv_builder.rb +1 -0
- data/lib/active_admin/dependency.rb +2 -1
- data/lib/active_admin/deprecation.rb +1 -0
- data/lib/active_admin/devise.rb +11 -0
- data/lib/active_admin/dsl.rb +1 -0
- data/lib/active_admin/dynamic_setting.rb +1 -0
- data/lib/active_admin/dynamic_settings_node.rb +1 -0
- data/lib/active_admin/engine.rb +8 -5
- data/lib/active_admin/error.rb +1 -2
- data/lib/active_admin/filters/active.rb +1 -0
- data/lib/active_admin/filters/active_filter.rb +1 -2
- data/lib/active_admin/filters/active_sidebar.rb +2 -28
- data/lib/active_admin/filters/dsl.rb +1 -0
- data/lib/active_admin/filters/forms.rb +1 -0
- data/lib/active_admin/filters/formtastic_addons.rb +1 -0
- data/lib/active_admin/filters/resource_extension.rb +1 -0
- data/lib/active_admin/filters.rb +1 -0
- data/lib/active_admin/form_builder.rb +5 -2
- data/lib/active_admin/generators/boilerplate.rb +1 -0
- data/lib/active_admin/helpers/collection.rb +2 -0
- data/lib/active_admin/helpers/i18n.rb +1 -0
- data/lib/active_admin/helpers/optional_display.rb +1 -0
- data/lib/active_admin/helpers/routes/url_helpers.rb +1 -0
- data/lib/active_admin/helpers/scope_chain.rb +1 -0
- data/lib/active_admin/inputs/datepicker_input.rb +1 -0
- data/lib/active_admin/inputs/filters/base/search_method_select.rb +1 -0
- data/lib/active_admin/inputs/filters/base.rb +1 -0
- data/lib/active_admin/inputs/filters/boolean_input.rb +1 -0
- data/lib/active_admin/inputs/filters/check_boxes_input.rb +1 -0
- data/lib/active_admin/inputs/filters/date_picker_input.rb +1 -0
- data/lib/active_admin/inputs/filters/date_range_input.rb +1 -0
- data/lib/active_admin/inputs/filters/numeric_input.rb +1 -0
- data/lib/active_admin/inputs/filters/select_input.rb +1 -0
- data/lib/active_admin/inputs/filters/string_input.rb +1 -0
- data/lib/active_admin/inputs/filters/text_input.rb +1 -0
- data/lib/active_admin/inputs.rb +1 -0
- data/lib/active_admin/localizers/resource_localizer.rb +1 -0
- data/lib/active_admin/localizers.rb +1 -0
- data/lib/active_admin/menu.rb +1 -0
- data/lib/active_admin/menu_collection.rb +1 -0
- data/lib/active_admin/menu_item.rb +1 -0
- data/lib/active_admin/namespace.rb +2 -1
- data/lib/active_admin/namespace_settings.rb +1 -0
- data/lib/active_admin/order_clause.rb +1 -0
- data/lib/active_admin/orm/active_record/comments/comment.rb +1 -0
- data/lib/active_admin/orm/active_record/comments/namespace_helper.rb +1 -0
- data/lib/active_admin/orm/active_record/comments/resource_helper.rb +1 -0
- data/lib/active_admin/orm/active_record/comments/show_page_helper.rb +1 -0
- data/lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb +1 -0
- data/lib/active_admin/orm/active_record/comments/views.rb +1 -0
- data/lib/active_admin/orm/active_record/comments.rb +1 -0
- data/lib/active_admin/orm/active_record.rb +1 -0
- data/lib/active_admin/orm/mongoid.rb +1 -0
- data/lib/active_admin/page.rb +1 -0
- data/lib/active_admin/page_controller.rb +1 -0
- data/lib/active_admin/page_dsl.rb +1 -0
- data/lib/active_admin/page_presenter.rb +1 -0
- data/lib/active_admin/pundit_adapter.rb +1 -0
- data/lib/active_admin/resource/action_items.rb +1 -0
- data/lib/active_admin/resource/attributes.rb +1 -0
- data/lib/active_admin/resource/belongs_to.rb +1 -0
- data/lib/active_admin/resource/controllers.rb +1 -0
- data/lib/active_admin/resource/includes.rb +1 -0
- data/lib/active_admin/resource/menu.rb +1 -0
- data/lib/active_admin/resource/model.rb +1 -0
- data/lib/active_admin/resource/naming.rb +1 -0
- data/lib/active_admin/resource/ordering.rb +1 -0
- data/lib/active_admin/resource/page_presenters.rb +1 -0
- data/lib/active_admin/resource/pagination.rb +1 -0
- data/lib/active_admin/resource/routes.rb +1 -2
- data/lib/active_admin/resource/scope_to.rb +1 -0
- data/lib/active_admin/resource/scopes.rb +1 -0
- data/lib/active_admin/resource/sidebars.rb +1 -0
- data/lib/active_admin/resource.rb +1 -0
- data/lib/active_admin/resource_collection.rb +1 -0
- data/lib/active_admin/resource_controller/action_builder.rb +1 -0
- data/lib/active_admin/resource_controller/data_access.rb +3 -2
- data/lib/active_admin/resource_controller/decorators.rb +1 -2
- data/lib/active_admin/resource_controller/polymorphic_routes.rb +1 -0
- data/lib/active_admin/resource_controller/resource_class_methods.rb +1 -0
- data/lib/active_admin/resource_controller/scoping.rb +1 -0
- data/lib/active_admin/resource_controller/sidebars.rb +1 -0
- data/lib/active_admin/resource_controller/streaming.rb +2 -1
- data/lib/active_admin/resource_controller.rb +1 -0
- data/lib/active_admin/resource_dsl.rb +7 -21
- data/lib/active_admin/router.rb +1 -0
- data/lib/active_admin/scope.rb +1 -0
- data/lib/active_admin/settings_node.rb +1 -0
- data/lib/active_admin/sidebar_section.rb +1 -0
- data/lib/active_admin/version.rb +2 -1
- data/lib/active_admin/view_factory.rb +1 -0
- data/lib/active_admin/view_helpers/active_admin_application_helper.rb +1 -0
- data/lib/active_admin/view_helpers/auto_link_helper.rb +1 -0
- data/lib/active_admin/view_helpers/breadcrumb_helper.rb +1 -0
- data/lib/active_admin/view_helpers/display_helper.rb +11 -3
- data/lib/active_admin/view_helpers/download_format_links_helper.rb +1 -0
- data/lib/active_admin/view_helpers/fields_for.rb +1 -0
- data/lib/active_admin/view_helpers/flash_helper.rb +1 -0
- data/lib/active_admin/view_helpers/form_helper.rb +1 -0
- data/lib/active_admin/view_helpers/method_or_proc_helper.rb +1 -0
- data/lib/active_admin/view_helpers/scope_name_helper.rb +1 -0
- data/lib/active_admin/view_helpers/sidebar_helper.rb +1 -0
- data/lib/active_admin/view_helpers/title_helper.rb +1 -0
- data/lib/active_admin/view_helpers/view_factory_helper.rb +1 -0
- data/lib/active_admin/view_helpers.rb +1 -0
- data/lib/active_admin/views/action_items.rb +1 -0
- data/lib/active_admin/views/components/active_admin_form.rb +2 -1
- data/lib/active_admin/views/components/active_filters_sidebar_content.rb +59 -0
- data/lib/active_admin/views/components/attributes_table.rb +1 -0
- data/lib/active_admin/views/components/blank_slate.rb +1 -0
- data/lib/active_admin/views/components/columns.rb +1 -0
- data/lib/active_admin/views/components/dropdown_menu.rb +3 -5
- data/lib/active_admin/views/components/index_list.rb +1 -0
- data/lib/active_admin/views/components/menu.rb +1 -0
- data/lib/active_admin/views/components/menu_item.rb +1 -0
- data/lib/active_admin/views/components/paginated_collection.rb +1 -0
- data/lib/active_admin/views/components/panel.rb +1 -0
- data/lib/active_admin/views/components/scopes.rb +1 -0
- data/lib/active_admin/views/components/sidebar.rb +1 -0
- data/lib/active_admin/views/components/sidebar_section.rb +1 -0
- data/lib/active_admin/views/components/site_title.rb +1 -0
- data/lib/active_admin/views/components/status_tag.rb +1 -0
- data/lib/active_admin/views/components/table_for.rb +1 -0
- data/lib/active_admin/views/components/tabs.rb +1 -0
- data/lib/active_admin/views/components/unsupported_browser.rb +1 -0
- data/lib/active_admin/views/footer.rb +1 -0
- data/lib/active_admin/views/header.rb +1 -0
- data/lib/active_admin/views/index_as_block.rb +1 -0
- data/lib/active_admin/views/index_as_blog.rb +1 -0
- data/lib/active_admin/views/index_as_grid.rb +1 -0
- data/lib/active_admin/views/index_as_table.rb +1 -0
- data/lib/active_admin/views/pages/base.rb +4 -1
- data/lib/active_admin/views/pages/form.rb +1 -0
- data/lib/active_admin/views/pages/index.rb +1 -0
- data/lib/active_admin/views/pages/layout.rb +1 -0
- data/lib/active_admin/views/pages/page.rb +1 -0
- data/lib/active_admin/views/pages/show.rb +1 -0
- data/lib/active_admin/views/tabbed_navigation.rb +1 -0
- data/lib/active_admin/views/title_bar.rb +1 -0
- data/lib/active_admin/views.rb +1 -0
- data/lib/active_admin.rb +2 -2
- data/lib/activeadmin.rb +1 -0
- data/lib/generators/active_admin/assets/assets_generator.rb +1 -0
- data/lib/generators/active_admin/devise/devise_generator.rb +1 -0
- data/lib/generators/active_admin/install/install_generator.rb +1 -0
- data/lib/generators/active_admin/install/templates/dashboard.rb +1 -0
- data/lib/generators/active_admin/page/page_generator.rb +1 -0
- data/lib/generators/active_admin/page/templates/page.rb +1 -0
- data/lib/generators/active_admin/resource/resource_generator.rb +1 -0
- data/lib/generators/active_admin/webpacker/webpacker_generator.rb +1 -0
- data/lib/ransack_ext.rb +1 -0
- metadata +13 -46
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f9f90fc4f40fdf83992afe1d3f5993e83fd3aa23b1ac01723a86926793f60d0b
|
4
|
+
data.tar.gz: 0c774ee1d3fb5a36191edd4b4150f633762d9154af18034c7d6af36619e051f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf707e91a09e9fb5164ef5bba597047f2d6809416015554100402cf5e3ffda9e4904f3b30f8f9271861bcd047805e9b2a3a81da71967255a3c5c0a70ddf0f105
|
7
|
+
data.tar.gz: 77e6ecf7daa77217782fb1fdf37aea3f2696e9097ac77c7c60dd397ed17094ef6edb74e747c560227cbf9e994bcd4a52ef70a69f52bed35021a242d36d1be80c
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,74 @@
|
|
2
2
|
|
3
3
|
## Unreleased
|
4
4
|
|
5
|
+
## 2.10.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.10.0..v2.10.1)
|
6
|
+
|
7
|
+
### Enhancements
|
8
|
+
|
9
|
+
* Apply `box-sizing: border-box` globally. [#7349] by [@deivid-rodriguez]
|
10
|
+
* Vendor normalize 8.0.1. [#7350] by [@deivid-rodriguez]
|
11
|
+
* Remove deprecation warning using controller filters inside initializer. [#7340] by [@mgrunberg]
|
12
|
+
|
13
|
+
### Bug Fixes
|
14
|
+
|
15
|
+
* Fix frozen string error when downloading CSV and streaming disabled. [#7332] by [@deivid-rodriguez]
|
16
|
+
|
17
|
+
## 2.10.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.9.0..v2.10.0)
|
18
|
+
|
19
|
+
### Enhancements
|
20
|
+
|
21
|
+
* Load favicon from Webpacker assets when use_webpacker is set to true. [#6954] by [@Fs00]
|
22
|
+
* Don't apply sorting to collection until after scoping. [#7205] by [@agrobbin]
|
23
|
+
* Resolve dart sass deprecation warning for division. [#7095] by [@tordans]
|
24
|
+
* Use `instrument` from the Notifications API instead of low level `publish`. [#7262] by [@sprql]
|
25
|
+
* Avoid mutating string literals. [#6936] by [@tomgilligan]
|
26
|
+
* Include print styles in main stylesheet. [#6922] by [@deivid-rodriguez]
|
27
|
+
* Use `POST` for OmniAuth links. [#6916] by [@deivid-rodriguez]
|
28
|
+
* Scope new record instantiation by authorization scope. [#6884] by [@ngouy]
|
29
|
+
* Make `permit_params` and `belongs_to` order independent. [#6906] by [@deivid-rodriguez]
|
30
|
+
* Use collection length instead of running COUNTs for limited collections. [#5660] by [@MmKolodziej]
|
31
|
+
|
32
|
+
### Bug Fixes
|
33
|
+
|
34
|
+
* Show ransackable_scopes filters in search results. [#7127] by [@vlad-psh]
|
35
|
+
|
36
|
+
### Translation Improvements
|
37
|
+
|
38
|
+
* Fix Dutch translation for password reset button. [#7181] by [@mvz]
|
39
|
+
* Add few key to RO pagination.entry. [#6915] by [@lubosch]
|
40
|
+
* Change misleading Korean translation. [#6873] by [@1000ship]
|
41
|
+
|
42
|
+
### Documentation
|
43
|
+
|
44
|
+
* Replace deprecated update_attributes! with update!. [#6959] by [@sergey-alekseev]
|
45
|
+
* Clarify docs on user setup. [#6872] by [@javawizard]
|
46
|
+
|
47
|
+
### Dependency Changes
|
48
|
+
|
49
|
+
* Drop rails 5.2 support. [#7293] by [@deivid-rodriguez]
|
50
|
+
* Drop support for Ruby 2.5. [#7236] by [@alejandroperea]
|
51
|
+
|
52
|
+
## 2.9.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.8.1..v2.9.0)
|
53
|
+
|
54
|
+
### Enhancements
|
55
|
+
|
56
|
+
* Support for Rails 6.1. [#6548] by [@deivid-rodriguez]
|
57
|
+
* Add ability to override "Remove" button text on has_many forms. [#6523] by [@littleforest]
|
58
|
+
* Drop git in gemspec. [#6462] by [@utkarsh2102]
|
59
|
+
|
60
|
+
### Bug Fixes
|
61
|
+
|
62
|
+
* Pick up upstream fixes in devise templates. [#6536] by [@munen]
|
63
|
+
|
64
|
+
### Documentation
|
65
|
+
|
66
|
+
* Fix `has_many` syntax in forms documentation. [#6583] by [@krzcho]
|
67
|
+
* Add example of using `default_main_content` in show pages. [#6487] by [@sjieg]
|
68
|
+
|
69
|
+
### Dependency Changes
|
70
|
+
|
71
|
+
* Remove sassc and sprockets runtime dependencies. [#6584] by [@deivid-rodriguez]
|
72
|
+
|
5
73
|
## 2.8.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.8.0..v2.8.1)
|
6
74
|
|
7
75
|
### Bug Fixes
|
@@ -566,6 +634,7 @@ Please check [0-6-stable] for previous changes.
|
|
566
634
|
[#5631]: https://github.com/activeadmin/activeadmin/pull/5631
|
567
635
|
[#5632]: https://github.com/activeadmin/activeadmin/pull/5632
|
568
636
|
[#5650]: https://github.com/activeadmin/activeadmin/pull/5650
|
637
|
+
[#5660]: https://github.com/activeadmin/activeadmin/pull/5660
|
569
638
|
[#5662]: https://github.com/activeadmin/activeadmin/pull/5662
|
570
639
|
[#5710]: https://github.com/activeadmin/activeadmin/pull/5710
|
571
640
|
[#5726]: https://github.com/activeadmin/activeadmin/pull/5726
|
@@ -622,11 +691,42 @@ Please check [0-6-stable] for previous changes.
|
|
622
691
|
[#6422]: https://github.com/activeadmin/activeadmin/pull/6422
|
623
692
|
[#6451]: https://github.com/activeadmin/activeadmin/pull/6451
|
624
693
|
[#6460]: https://github.com/activeadmin/activeadmin/pull/6460
|
625
|
-
|
694
|
+
[#6462]: https://github.com/activeadmin/activeadmin/pull/6462
|
695
|
+
[#6487]: https://github.com/activeadmin/activeadmin/pull/6487
|
696
|
+
[#6523]: https://github.com/activeadmin/activeadmin/pull/6523
|
697
|
+
[#6536]: https://github.com/activeadmin/activeadmin/pull/6536
|
698
|
+
[#6548]: https://github.com/activeadmin/activeadmin/pull/6548
|
699
|
+
[#6583]: https://github.com/activeadmin/activeadmin/pull/6583
|
700
|
+
[#6584]: https://github.com/activeadmin/activeadmin/pull/6584
|
701
|
+
[#6872]: https://github.com/activeadmin/activeadmin/pull/6872
|
702
|
+
[#6873]: https://github.com/activeadmin/activeadmin/pull/6873
|
703
|
+
[#6884]: https://github.com/activeadmin/activeadmin/pull/6884
|
704
|
+
[#6906]: https://github.com/activeadmin/activeadmin/pull/6906
|
705
|
+
[#6915]: https://github.com/activeadmin/activeadmin/pull/6915
|
706
|
+
[#6916]: https://github.com/activeadmin/activeadmin/pull/6916
|
707
|
+
[#6922]: https://github.com/activeadmin/activeadmin/pull/6922
|
708
|
+
[#6936]: https://github.com/activeadmin/activeadmin/pull/6936
|
709
|
+
[#6954]: https://github.com/activeadmin/activeadmin/pull/6954
|
710
|
+
[#6959]: https://github.com/activeadmin/activeadmin/pull/6959
|
711
|
+
[#7095]: https://github.com/activeadmin/activeadmin/pull/7095
|
712
|
+
[#7127]: https://github.com/activeadmin/activeadmin/pull/7127
|
713
|
+
[#7181]: https://github.com/activeadmin/activeadmin/pull/7181
|
714
|
+
[#7205]: https://github.com/activeadmin/activeadmin/pull/7205
|
715
|
+
[#7236]: https://github.com/activeadmin/activeadmin/pull/7236
|
716
|
+
[#7262]: https://github.com/activeadmin/activeadmin/pull/7262
|
717
|
+
[#7293]: https://github.com/activeadmin/activeadmin/pull/7293
|
718
|
+
[#7332]: https://github.com/activeadmin/activeadmin/pull/7332
|
719
|
+
[#7340]: https://github.com/activeadmin/activeadmin/pull/7340
|
720
|
+
[#7349]: https://github.com/activeadmin/activeadmin/pull/7349
|
721
|
+
[#7350]: https://github.com/activeadmin/activeadmin/pull/7350
|
722
|
+
|
723
|
+
[@1000ship]: https://github.com/1000ship
|
626
724
|
[@5t111111]: https://github.com/5t111111
|
627
725
|
[@aarek]: https://github.com/aarek
|
628
726
|
[@adler99]: https://github.com/adler99
|
727
|
+
[@agrobbin]: https://github.com/agrobbin
|
629
728
|
[@ajw725]: https://github.com/ajw725
|
729
|
+
[@alejandroperea]: https://github.com/alejandroperea
|
630
730
|
[@alex-bogomolov]: https://github.com/alex-bogomolov
|
631
731
|
[@amiel]: https://github.com/amiel
|
632
732
|
[@amiuhle]: https://github.com/amiuhle
|
@@ -653,6 +753,7 @@ Please check [0-6-stable] for previous changes.
|
|
653
753
|
[@FabioRos]: https://github.com/FabioRos
|
654
754
|
[@faucct]: https://github.com/faucct
|
655
755
|
[@Fivell]: https://github.com/Fivell
|
756
|
+
[@Fs00]: https://github.com/Fs00
|
656
757
|
[@fuzziness]: https://github.com/fuzziness
|
657
758
|
[@giapnhdev]: https://github.com/giapnhdev
|
658
759
|
[@glebtv]: https://github.com/glebtv
|
@@ -665,6 +766,7 @@ Please check [0-6-stable] for previous changes.
|
|
665
766
|
[@irmela]: https://github.com/irmela
|
666
767
|
[@Ivanov-Anton]: https://github.com/Ivanov-Anton
|
667
768
|
[@jasl]: https://github.com/jasl
|
769
|
+
[@javawizard]: https://github.com/javawizard
|
668
770
|
[@javierjulio]: https://github.com/javierjulio
|
669
771
|
[@jawa]: https://github.com/jawa
|
670
772
|
[@JiiHu]: https://github.com/JiiHu
|
@@ -677,16 +779,24 @@ Please check [0-6-stable] for previous changes.
|
|
677
779
|
[@ko-lem]: https://github.com/ko-lem
|
678
780
|
[@kobeumut]: https://github.com/kobeumut
|
679
781
|
[@Kris-LIBIS]: https://github.com/Kris-LIBIS
|
782
|
+
[@krzcho]: https://github.com/krzcho
|
680
783
|
[@kwent]: https://github.com/kwent
|
681
784
|
[@leio10]: https://github.com/leio10
|
785
|
+
[@littleforest]: https://github.com/littleforest
|
682
786
|
[@Looooong]: https://github.com/Looooong
|
787
|
+
[@lubosch]: https://github.com/lubosch
|
683
788
|
[@markstory]: https://github.com/markstory
|
684
789
|
[@mauriciopasquier]: https://github.com/mauriciopasquier
|
685
790
|
[@mconiglio]: https://github.com/mconiglio
|
791
|
+
[@mgrunberg]: https://github.com/mgrunberg
|
686
792
|
[@micred]: https://github.com/micred
|
687
793
|
[@mirelon]: https://github.com/mirelon
|
794
|
+
[@MmKolodziej]: https://github.com/MmKolodziej
|
688
795
|
[@mshalaby]: https://github.com/mshalaby
|
796
|
+
[@munen]: https://github.com/munen
|
797
|
+
[@mvz]: https://github.com/mvz
|
689
798
|
[@ndbroadbent]: https://github.com/ndbroadbent
|
799
|
+
[@ngouy]: https://github.com/ngouy
|
690
800
|
[@Nguyenanh]: https://github.com/Nguyenanh
|
691
801
|
[@orkhan]: https://github.com/orkhan
|
692
802
|
[@panasyuk]: https://github.com/panasyuk
|
@@ -699,20 +809,27 @@ Please check [0-6-stable] for previous changes.
|
|
699
809
|
[@rogerkk]: https://github.com/rogerkk
|
700
810
|
[@roramirez]: https://github.com/roramirez
|
701
811
|
[@seanlinsley]: https://github.com/seanlinsley
|
812
|
+
[@sergey-alekseev]: https://github.com/sergey-alekseev
|
702
813
|
[@sgara]: https://github.com/sgara
|
703
814
|
[@ShallmentMo]: https://github.com/ShallmentMo
|
704
815
|
[@shekibobo]: https://github.com/shekibobo
|
705
816
|
[@shouya]: https://github.com/shouya
|
817
|
+
[@sjieg]: https://github.com/sjieg
|
818
|
+
[@sprql]: https://github.com/sprql
|
706
819
|
[@stefsava]: https://github.com/stefsava
|
707
820
|
[@stereoscott]: https://github.com/stereoscott
|
708
821
|
[@taralbass]: https://github.com/taralbass
|
709
822
|
[@tiagotex]: https://github.com/tiagotex
|
710
823
|
[@timoschilling]: https://github.com/timoschilling
|
711
824
|
[@TimPetricola]: https://github.com/TimPetricola
|
825
|
+
[@tomgilligan]: https://github.com/tomgilligan
|
826
|
+
[@tordans]: https://github.com/tordans
|
827
|
+
[@utkarsh2102]: https://github.com/utkarsh2102
|
712
828
|
[@varyonic]: https://github.com/varyonic
|
713
829
|
[@vcsjones]: https://github.com/vcsjones
|
714
830
|
[@vfonic]: https://github.com/vfonic
|
715
831
|
[@violeta-p]: https://github.com/violeta-p
|
832
|
+
[@vlad-psh]: https://github.com/vlad-psh
|
716
833
|
[@WaKeMaTTa]: https://github.com/WaKeMaTTa
|
717
834
|
[@wasifhossain]: https://github.com/wasifhossain
|
718
835
|
[@westonganger]: https://github.com/westonganger
|
data/CONTRIBUTING.md
CHANGED
@@ -136,12 +136,12 @@ git push --set-upstream origin 325-add-japanese-translations
|
|
136
136
|
|
137
137
|
Finally, go to GitHub and [make a Pull Request][] :D
|
138
138
|
|
139
|
-
|
140
|
-
about quality, so your PR won't be merged until all tests pass. It's
|
141
|
-
but it's possible that your changes pass tests in one Rails version
|
142
|
-
another. In that case, you'll have to setup your development
|
143
|
-
explained in step 3) to use the problematic Rails version, and
|
144
|
-
what's going on!
|
139
|
+
Github Actions will run our test suite against all supported Rails versions. We
|
140
|
+
care about quality, so your PR won't be merged until all tests pass. It's
|
141
|
+
unlikely, but it's possible that your changes pass tests in one Rails version
|
142
|
+
but fail in another. In that case, you'll have to setup your development
|
143
|
+
environment (as explained in step 3) to use the problematic Rails version, and
|
144
|
+
investigate what's going on!
|
145
145
|
|
146
146
|
### Keeping your Pull Request updated
|
147
147
|
|
data/README.md
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
creating elegant backends for website administration.
|
5
5
|
|
6
6
|
[![Version ][rubygems_badge]][rubygems]
|
7
|
-
[![
|
7
|
+
[![Github Actions ][actions_badge]][actions]
|
8
8
|
[![Coverage ][coverage_badge]][coverage]
|
9
9
|
[![Tidelift ][tidelift_badge]][tidelift]
|
10
10
|
[![Inch CI ][inch_badge]][inch]
|
@@ -93,8 +93,8 @@ Thanks to [Open Collective][opencollective contributors] and all our Open Collec
|
|
93
93
|
|
94
94
|
[rubygems_badge]: http://img.shields.io/gem/v/activeadmin.svg
|
95
95
|
[rubygems]: https://rubygems.org/gems/activeadmin
|
96
|
-
[
|
97
|
-
[
|
96
|
+
[actions_badge]: https://github.com/activeadmin/activeadmin/workflows/ci/badge.svg
|
97
|
+
[actions]: https://github.com/activeadmin/activeadmin/actions
|
98
98
|
[coverage_badge]: https://api.codeclimate.com/v1/badges/779e407d22bacff19733/test_coverage
|
99
99
|
[coverage]: https://codeclimate.com/github/activeadmin/activeadmin/test_coverage
|
100
100
|
[inch_badge]: http://inch-ci.org/github/activeadmin/activeadmin.svg?branch=master
|
@@ -81,7 +81,7 @@
|
|
81
81
|
}
|
82
82
|
});
|
83
83
|
}
|
84
|
-
var onDOMReady = function onDOMReady() {
|
84
|
+
var onDOMReady$2 = function onDOMReady() {
|
85
85
|
$(".batch_actions_selector li a").off("click confirm:complete");
|
86
86
|
$(".batch_actions_selector li a").on("click", function(event) {
|
87
87
|
var _this = this;
|
@@ -125,7 +125,7 @@
|
|
125
125
|
});
|
126
126
|
}
|
127
127
|
};
|
128
|
-
$(document).ready(onDOMReady).on("page:load turbolinks:load", onDOMReady);
|
128
|
+
$(document).ready(onDOMReady$2).on("page:load turbolinks:load", onDOMReady$2);
|
129
129
|
var CheckboxToggler = function() {
|
130
130
|
function CheckboxToggler(options, container) {
|
131
131
|
this.options = options;
|
@@ -471,7 +471,14 @@
|
|
471
471
|
function _inheritsLoose(subClass, superClass) {
|
472
472
|
subClass.prototype = Object.create(superClass.prototype);
|
473
473
|
subClass.prototype.constructor = subClass;
|
474
|
-
subClass
|
474
|
+
_setPrototypeOf(subClass, superClass);
|
475
|
+
}
|
476
|
+
function _setPrototypeOf(o, p) {
|
477
|
+
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
478
|
+
o.__proto__ = p;
|
479
|
+
return o;
|
480
|
+
};
|
481
|
+
return _setPrototypeOf(o, p);
|
475
482
|
}
|
476
483
|
var TableCheckboxToggler = function(_CheckboxToggler) {
|
477
484
|
_inheritsLoose(TableCheckboxToggler, _CheckboxToggler);
|
@@ -501,10 +508,10 @@
|
|
501
508
|
return TableCheckboxToggler;
|
502
509
|
}(CheckboxToggler);
|
503
510
|
$.widget.bridge("tableCheckboxToggler", TableCheckboxToggler);
|
504
|
-
var onDOMReady
|
511
|
+
var onDOMReady = function onDOMReady() {
|
505
512
|
return $("#active_admin_content .tabs").tabs();
|
506
513
|
};
|
507
|
-
$(document).ready(onDOMReady
|
514
|
+
$(document).ready(onDOMReady).on("page:load turbolinks:load", onDOMReady);
|
508
515
|
function modal_dialog(message, inputs, callback) {
|
509
516
|
console.warn("ActiveAdmin.modal_dialog is deprecated in favor of ActiveAdmin.ModalDialog, please update usage.");
|
510
517
|
return ModalDialog(message, inputs, callback);
|
@@ -1,41 +1,57 @@
|
|
1
1
|
/* Active Admin CSS */
|
2
|
-
|
3
|
-
|
2
|
+
@media screen {
|
3
|
+
// Normalize
|
4
|
+
@import "./normalize";
|
4
5
|
|
5
|
-
// Partials
|
6
|
-
@import "./typography";
|
7
|
-
@import "./header";
|
8
|
-
@import "./forms";
|
9
|
-
@import "./components/comments";
|
10
|
-
@import "./components/flash_messages";
|
11
|
-
@import "./components/date_picker";
|
12
|
-
@import "./components/tables";
|
13
|
-
@import "./components/batch_actions";
|
14
|
-
@import "./components/modal_dialog";
|
15
|
-
@import "./components/blank_slates";
|
16
|
-
@import "./components/breadcrumbs";
|
17
|
-
@import "./components/dropdown_menu";
|
18
|
-
@import "./components/buttons";
|
19
|
-
@import "./components/grid";
|
20
|
-
@import "./components/links";
|
21
|
-
@import "./components/pagination";
|
22
|
-
@import "./components/panels";
|
23
|
-
@import "./components/columns";
|
24
|
-
@import "./components/scopes";
|
25
|
-
@import "./components/status_tags";
|
26
|
-
@import "./components/table_tools";
|
27
|
-
@import "./components/index_list";
|
28
|
-
@import "./components/unsupported_browser";
|
29
|
-
@import "./components/tabs";
|
30
|
-
@import "./pages/logged_out";
|
31
|
-
@import "./structure/footer";
|
32
|
-
@import "./structure/main_structure";
|
33
|
-
@import "./structure/title_bar";
|
6
|
+
// Partials
|
7
|
+
@import "./typography";
|
8
|
+
@import "./header";
|
9
|
+
@import "./forms";
|
10
|
+
@import "./components/comments";
|
11
|
+
@import "./components/flash_messages";
|
12
|
+
@import "./components/date_picker";
|
13
|
+
@import "./components/tables";
|
14
|
+
@import "./components/batch_actions";
|
15
|
+
@import "./components/modal_dialog";
|
16
|
+
@import "./components/blank_slates";
|
17
|
+
@import "./components/breadcrumbs";
|
18
|
+
@import "./components/dropdown_menu";
|
19
|
+
@import "./components/buttons";
|
20
|
+
@import "./components/grid";
|
21
|
+
@import "./components/links";
|
22
|
+
@import "./components/pagination";
|
23
|
+
@import "./components/panels";
|
24
|
+
@import "./components/columns";
|
25
|
+
@import "./components/scopes";
|
26
|
+
@import "./components/status_tags";
|
27
|
+
@import "./components/table_tools";
|
28
|
+
@import "./components/index_list";
|
29
|
+
@import "./components/unsupported_browser";
|
30
|
+
@import "./components/tabs";
|
31
|
+
@import "./pages/logged_out";
|
32
|
+
@import "./structure/footer";
|
33
|
+
@import "./structure/main_structure";
|
34
|
+
@import "./structure/title_bar";
|
34
35
|
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
36
|
+
html {
|
37
|
+
box-sizing: border-box;
|
38
|
+
}
|
39
|
+
|
40
|
+
*,
|
41
|
+
*:before,
|
42
|
+
*:after {
|
43
|
+
box-sizing: inherit;
|
44
|
+
}
|
45
|
+
|
46
|
+
body {
|
47
|
+
@include sans-family;
|
48
|
+
line-height: 1.5;
|
49
|
+
font-size: 72%;
|
50
|
+
background: $body-background-color;
|
51
|
+
color: $text-color;
|
52
|
+
}
|
53
|
+
}
|
54
|
+
|
55
|
+
@media print {
|
56
|
+
@import "./print";
|
41
57
|
}
|
@@ -276,10 +276,10 @@ $sidebar-inner-content-width: $sidebar-width - ($section-padding * 2);
|
|
276
276
|
|
277
277
|
$filter-field-seperator-width: 12px;
|
278
278
|
|
279
|
-
$side-by-side-filter-input-width: ($sidebar-inner-content-width
|
280
|
-
$side-by-side-filter-select-width: ($sidebar-inner-content-width
|
279
|
+
$side-by-side-filter-input-width: ($sidebar-inner-content-width * 0.5) - ($text-input-horizontal-padding * 2) - $filter-field-seperator-width;
|
280
|
+
$side-by-side-filter-select-width: ($sidebar-inner-content-width * 0.5) - $filter-field-seperator-width;
|
281
281
|
|
282
|
-
$date-range-filter-input-width: ($sidebar-inner-content-width
|
282
|
+
$date-range-filter-input-width: ($sidebar-inner-content-width * 0.5) - ($filter-field-seperator-width * 0.5);
|
283
283
|
|
284
284
|
form.filter_form {
|
285
285
|
.filter_form_field {
|
@@ -313,7 +313,6 @@ form.filter_form {
|
|
313
313
|
|
314
314
|
&.filter_date_range {
|
315
315
|
input[type=text] {
|
316
|
-
box-sizing: border-box;
|
317
316
|
width: $date-range-filter-input-width;
|
318
317
|
|
319
318
|
+ input {
|