avo 3.1.3 → 3.1.4
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.lock +1 -1
- data/app/components/avo/button_component.rb +1 -1
- data/app/components/avo/fields/edit_component.rb +2 -0
- data/app/components/avo/fields/has_many_field/show_component.html.erb +2 -2
- data/app/components/avo/fields/has_many_field/show_component.rb +7 -0
- data/app/components/avo/fields/index_component.rb +3 -1
- data/app/components/avo/fields/show_component.rb +3 -1
- data/app/components/avo/items/switcher_component.rb +1 -1
- data/app/components/avo/tab_group_component.html.erb +10 -43
- data/app/components/avo/tab_group_component.rb +20 -2
- data/app/components/avo/tab_switcher_component.html.erb +14 -12
- data/app/components/avo/tab_switcher_component.rb +12 -10
- data/app/controllers/avo/base_controller.rb +3 -3
- data/app/javascript/avo.base.js +4 -0
- data/app/javascript/js/controllers/filter_controller.js +22 -11
- data/app/javascript/js/controllers/tabs_controller.js +42 -46
- data/app/javascript/js/local-storage-service.js +19 -0
- data/app/views/avo/home/_actions.html.erb +1 -1
- data/app/views/avo/home/_dashboards.html.erb +1 -1
- data/app/views/avo/home/_filters.html.erb +1 -1
- data/app/views/avo/home/_resources.html.erb +1 -1
- data/lib/avo/base_resource.rb +1 -1
- data/lib/avo/concerns/has_items.rb +17 -10
- data/lib/avo/filters/base_filter.rb +3 -3
- data/lib/avo/resources/items/holder.rb +2 -2
- data/lib/avo/resources/items/tab.rb +5 -0
- data/lib/avo/resources/items/tab_group.rb +17 -3
- data/lib/avo/resources/resource_manager.rb +1 -1
- data/lib/avo/test_helpers.rb +2 -2
- data/lib/avo/version.rb +1 -1
- data/public/avo-assets/avo.base.css +8 -0
- data/public/avo-assets/avo.base.js +124 -124
- data/public/avo-assets/avo.base.js.map +3 -3
- metadata +2 -1
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.1.
|
4
|
+
version: 3.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adrian Marin
|
@@ -1675,6 +1675,7 @@ files:
|
|
1675
1675
|
- app/javascript/js/custom-stream-actions.js
|
1676
1676
|
- app/javascript/js/helpers/cast_boolean.js
|
1677
1677
|
- app/javascript/js/helpers/debounce_promise.js
|
1678
|
+
- app/javascript/js/local-storage-service.js
|
1678
1679
|
- app/views/avo/actions/show.html.erb
|
1679
1680
|
- app/views/avo/associations/new.html.erb
|
1680
1681
|
- app/views/avo/attachments/destroy.turbo_stream.erb
|