avo 1.24.0 → 1.25.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.
Potentially problematic release.
This version of avo might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/Gemfile.lock +6 -4
- data/app/components/avo/base_component.rb +28 -0
- data/app/components/avo/fields/belongs_to_field/autocomplete_component.html.erb +1 -1
- data/app/components/avo/fields/belongs_to_field/autocomplete_component.rb +10 -2
- data/app/components/avo/index/ordering/base_component.rb +1 -1
- data/app/components/avo/index/ordering/button_component.html.erb +1 -0
- data/app/components/avo/index/ordering/button_component.rb +11 -5
- data/app/components/avo/index/ordering/buttons_component.html.erb +14 -12
- data/app/components/avo/index/ordering/buttons_component.rb +30 -4
- data/app/components/avo/index/resource_controls_component.html.erb +1 -3
- data/app/components/avo/index/resource_controls_component.rb +0 -4
- data/app/components/avo/resource_component.rb +0 -21
- data/app/controllers/avo/base_controller.rb +5 -3
- data/app/controllers/avo/relations_controller.rb +29 -12
- data/app/views/avo/relations/new.html.erb +15 -12
- data/avo.gemspec +1 -0
- data/config/routes.rb +1 -0
- data/lib/avo/base_resource.rb +10 -5
- data/lib/avo/fields/base_field.rb +1 -1
- data/lib/avo/fields/belongs_to_field.rb +1 -1
- data/lib/avo/fields/has_base_field.rb +24 -1
- data/lib/avo/hosts/ordering.rb +22 -0
- data/lib/avo/licensing/pro_license.rb +2 -2
- data/lib/avo/version.rb +1 -1
- data/lib/generators/avo/templates/locales/avo.en.yml +6 -0
- data/public/avo-assets/avo.js +7 -5
- data/public/avo-assets/avo.js.map +2 -2
- metadata +17 -2
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: avo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.25.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adrian Marin
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2022-03-
|
12
|
+
date: 2022-03-14 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -193,6 +193,20 @@ dependencies:
|
|
193
193
|
- - ">="
|
194
194
|
- !ruby/object:Gem::Version
|
195
195
|
version: '0'
|
196
|
+
- !ruby/object:Gem::Dependency
|
197
|
+
name: dry-initializer
|
198
|
+
requirement: !ruby/object:Gem::Requirement
|
199
|
+
requirements:
|
200
|
+
- - ">="
|
201
|
+
- !ruby/object:Gem::Version
|
202
|
+
version: '0'
|
203
|
+
type: :runtime
|
204
|
+
prerelease: false
|
205
|
+
version_requirements: !ruby/object:Gem::Requirement
|
206
|
+
requirements:
|
207
|
+
- - ">="
|
208
|
+
- !ruby/object:Gem::Version
|
209
|
+
version: '0'
|
196
210
|
description: Avo is a beautiful next-generation framework that empowers you, the developer,
|
197
211
|
to create fantastic admin panels for your Ruby on Rails apps with the flexibility
|
198
212
|
to fit your needs as you grow.
|
@@ -644,6 +658,7 @@ files:
|
|
644
658
|
- lib/avo/grid_fields/preview_field.rb
|
645
659
|
- lib/avo/grid_fields/title_field.rb
|
646
660
|
- lib/avo/has_context.rb
|
661
|
+
- lib/avo/hosts/ordering.rb
|
647
662
|
- lib/avo/licensing/community_license.rb
|
648
663
|
- lib/avo/licensing/h_q.rb
|
649
664
|
- lib/avo/licensing/license.rb
|