avo 4.0.9 → 4.0.10
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/app/assets/builds/avo/application.css +3 -0
- data/app/assets/builds/avo/application.js +1 -1
- data/app/assets/builds/avo/application.js.map +2 -2
- data/app/assets/stylesheets/css/components/filters.css +1 -1
- data/app/components/avo/filters_component.html.erb +14 -1
- data/app/components/avo/resource_component.rb +20 -5
- data/app/controllers/avo/actions_controller.rb +2 -1
- data/app/controllers/avo/base_controller.rb +1 -1
- data/app/helpers/avo/resources_helper.rb +0 -9
- data/app/javascript/js/controllers/fields/date_field_controller.js +7 -1
- data/app/views/avo/base/_boolean_filter.html.erb +21 -24
- data/app/views/avo/base/_date_time_filter.html.erb +34 -35
- data/app/views/avo/base/_multiple_select_filter.html.erb +15 -17
- data/app/views/avo/base/_select_filter.html.erb +10 -13
- data/app/views/avo/base/_text_filter.html.erb +16 -17
- data/lib/avo/base_action.rb +2 -1
- data/lib/avo/version.rb +1 -1
- metadata +2 -3
- data/app/views/layouts/avo/_filter_wrapper.html.erb +0 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 61cead693d033e84c3b7f5367a88777d36c821fcb0a9e8ed442015e0021fe40e
|
|
4
|
+
data.tar.gz: 6750abe0c4bc739c3f7b7ec74e0fe049294791745056dd5481cc0aefd811bf10
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8fb84c2558c46f4d0cc47a662c3391b4be5d812c9c806dcbb15ea01e00ae05323ed237b55ea3fb588d986745134e5ea928e5b8a510d336eef1a702e528c32627
|
|
7
|
+
data.tar.gz: f71ac2393b9cc53223c218e11671b9b47a55ccbe092907e449dbeadebdba19729fb6573e6ddf6520fb1f3aa40822014df068291febe84f19df7150af52bc5512
|
data/Gemfile.lock
CHANGED
|
@@ -10948,6 +10948,9 @@ tag.tagify__tag {
|
|
|
10948
10948
|
padding-block: calc(var(--spacing) * 2.5);
|
|
10949
10949
|
}
|
|
10950
10950
|
.filters-section__title {
|
|
10951
|
+
display: flex;
|
|
10952
|
+
align-items: center;
|
|
10953
|
+
gap: calc(var(--spacing) * 1);
|
|
10951
10954
|
font-size: var(--text-sm);
|
|
10952
10955
|
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
10953
10956
|
--tw-font-weight: var(--font-weight-medium);
|