avo 3.0.1.beta19 → 3.0.1.beta20
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 +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/app/assets/builds/avo.base.css +8 -31
- data/app/components/avo/fields/common/badge_viewer_component.rb +1 -1
- data/app/components/avo/fields/common/files/list_viewer_component.rb +3 -3
- data/app/components/avo/fields/common/files/view_type/{grid_component.html.erb → grid_item_component.html.erb} +2 -2
- data/app/components/avo/fields/common/files/view_type/{grid_component.rb → grid_item_component.rb} +3 -2
- data/app/components/avo/fields/common/files/view_type/{list_component.rb → list_item_component.rb} +1 -1
- data/app/components/avo/fields/file_field/edit_component.html.erb +1 -1
- data/app/components/avo/fields/file_field/show_component.html.erb +1 -1
- data/app/components/avo/index/resource_table_component.rb +1 -4
- data/app/components/avo/modal_component.html.erb +2 -2
- data/app/components/avo/views/resource_index_component.rb +2 -1
- data/app/controllers/avo/actions_controller.rb +1 -1
- data/app/controllers/avo/application_controller.rb +6 -2
- data/app/controllers/avo/base_controller.rb +1 -0
- data/app/controllers/avo/search_controller.rb +12 -2
- data/app/javascript/js/controllers/search_controller.js +2 -0
- data/app/views/avo/actions/show.html.erb +1 -1
- data/app/views/avo/partials/_resource_search.html.erb +1 -0
- data/lib/avo/base_resource.rb +19 -3
- data/lib/avo/fields/has_base_field.rb +8 -1
- data/lib/avo/fields/has_one_field.rb +1 -1
- data/lib/avo/services/encryption_service.rb +8 -12
- data/lib/avo/version.rb +1 -1
- data/lib/avo/view_inquirer.rb +2 -5
- data/lib/avo.rb +1 -1
- data/public/avo-assets/avo.base.js +1 -1
- data/public/avo-assets/avo.base.js.map +2 -2
- metadata +6 -6
- /data/app/components/avo/fields/common/files/view_type/{list_component.html.erb → list_item_component.html.erb} +0 -0
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: 3.0.1.
|
|
4
|
+
version: 3.0.1.beta20
|
|
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: 2023-10-
|
|
12
|
+
date: 2023-10-10 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: activerecord
|
|
@@ -1400,10 +1400,10 @@ files:
|
|
|
1400
1400
|
- app/components/avo/fields/common/files/controls_component.rb
|
|
1401
1401
|
- app/components/avo/fields/common/files/list_viewer_component.html.erb
|
|
1402
1402
|
- app/components/avo/fields/common/files/list_viewer_component.rb
|
|
1403
|
-
- app/components/avo/fields/common/files/view_type/
|
|
1404
|
-
- app/components/avo/fields/common/files/view_type/
|
|
1405
|
-
- app/components/avo/fields/common/files/view_type/
|
|
1406
|
-
- app/components/avo/fields/common/files/view_type/
|
|
1403
|
+
- app/components/avo/fields/common/files/view_type/grid_item_component.html.erb
|
|
1404
|
+
- app/components/avo/fields/common/files/view_type/grid_item_component.rb
|
|
1405
|
+
- app/components/avo/fields/common/files/view_type/list_item_component.html.erb
|
|
1406
|
+
- app/components/avo/fields/common/files/view_type/list_item_component.rb
|
|
1407
1407
|
- app/components/avo/fields/common/gravatar_viewer_component.html.erb
|
|
1408
1408
|
- app/components/avo/fields/common/gravatar_viewer_component.rb
|
|
1409
1409
|
- app/components/avo/fields/common/heading_component.html.erb
|
|
File without changes
|