activeadmin 3.5.0 → 3.5.1
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 11f17bd91f5f20e866dc189cbf0f191e5fbdf2ad192c00db190ca3538f852dd1
|
|
4
|
+
data.tar.gz: 816caf26faae1c3b204266d2b8ec6e4b80ee23efffe75657baa52ccadb60c383
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 45b21c4efe22df18b7a6a937973bc80280147311cd6ef8b4eed2e2ead031505bbe5418933952c8ca1d72c1d6f6cb99ad0012447cd08c8a86ff8f86680b136904
|
|
7
|
+
data.tar.gz: d516429f775372f7e55be58d9dcd6093b6be85a79f9c0de3819b3a5b41acb3adce80f788687655b05dd69f44d35ce695d06496a8a7b2a1f708e6dec3261649b3
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 3.5.1 [☰](https://github.com/activeadmin/activeadmin/compare/v3.5.0..v3.5.1)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* Fix UI issue in modal dialog [#8978] by @tagliala
|
|
10
|
+
|
|
5
11
|
## 3.5.0 [☰](https://github.com/activeadmin/activeadmin/compare/v3.4.0..v3.5.0)
|
|
6
12
|
|
|
7
13
|
### Enhancements
|
|
@@ -1003,6 +1009,7 @@ Please check [0-6-stable] for previous changes.
|
|
|
1003
1009
|
[#8837]: https://github.com/activeadmin/activeadmin/pull/8837
|
|
1004
1010
|
[#8964]: https://github.com/activeadmin/activeadmin/pull/8964
|
|
1005
1011
|
[#8965]: https://github.com/activeadmin/activeadmin/pull/8965
|
|
1012
|
+
[#8978]: https://github.com/activeadmin/activeadmin/pull/8978
|
|
1006
1013
|
|
|
1007
1014
|
[@1000ship]: https://github.com/1000ship
|
|
1008
1015
|
[@5t111111]: https://github.com/5t111111
|
|
@@ -69,7 +69,9 @@
|
|
|
69
69
|
open: function open(_event, _ui) {
|
|
70
70
|
$("body").trigger("modal_dialog:after_open", [ form ]);
|
|
71
71
|
},
|
|
72
|
-
|
|
72
|
+
classes: {
|
|
73
|
+
"ui-dialog": "active_admin_dialog"
|
|
74
|
+
},
|
|
73
75
|
buttons: {
|
|
74
76
|
OK: function OK() {
|
|
75
77
|
callback($(this).serializeObject());
|
|
@@ -47,7 +47,7 @@ function ModalDialog(message, inputs, callback){
|
|
|
47
47
|
open(_event, _ui) {
|
|
48
48
|
$('body').trigger('modal_dialog:after_open', [form]);
|
|
49
49
|
},
|
|
50
|
-
|
|
50
|
+
classes: { 'ui-dialog': 'active_admin_dialog' },
|
|
51
51
|
buttons: {
|
|
52
52
|
OK() {
|
|
53
53
|
callback($(this).serializeObject());
|
data/lib/active_admin/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: activeadmin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.5.
|
|
4
|
+
version: 3.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Charles Maresh
|
|
@@ -527,7 +527,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
527
527
|
- !ruby/object:Gem::Version
|
|
528
528
|
version: '0'
|
|
529
529
|
requirements: []
|
|
530
|
-
rubygems_version:
|
|
530
|
+
rubygems_version: 4.0.6
|
|
531
531
|
specification_version: 4
|
|
532
532
|
summary: Active Admin is a Ruby on Rails plugin for generating administration style
|
|
533
533
|
interfaces. It abstracts common business application patterns to make it simple
|