avo 2.3.0 → 2.3.1.pre.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.
Potentially problematic release.
This version of avo might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Gemfile +2 -0
- data/Gemfile.lock +5 -1
- data/app/assets/builds/avo.css +8827 -0
- data/app/assets/builds/avo.js +423 -0
- data/app/assets/builds/avo.js.map +7 -0
- data/app/controllers/avo/base_controller.rb +14 -9
- data/app/javascript/js/controllers/filter_controller.js +11 -1
- data/app/javascript/js/controllers/multiple_select_filter_controller.js +3 -1
- data/app/javascript/js/controllers/select_filter_controller.js +1 -1
- data/app/views/avo/base/_boolean_filter.html.erb +1 -14
- data/app/views/avo/base/_multiple_select_filter.html.erb +2 -13
- data/app/views/avo/base/_select_filter.html.erb +1 -9
- data/app/views/avo/base/_text_filter.html.erb +2 -10
- data/lib/avo/filters/base_filter.rb +17 -2
- data/lib/avo/filters/boolean_filter.rb +12 -0
- data/lib/avo/filters/multiple_select_filter.rb +15 -0
- data/lib/avo/filters/text_filter.rb +4 -0
- data/lib/avo/version.rb +1 -1
- data/public/avo-assets/avo.js +3 -3
- data/public/avo-assets/avo.js.map +2 -2
- metadata +7 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '03529ca35b12aa22a17ab671e55ae44b28e724aeb2d99015f85de8a0a67891d0'
|
4
|
+
data.tar.gz: 8a5cb9ce040221f9e7789df3c36732fa01799ad2c45e5dea78c2d71c80b6d53d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9987a92d78aeed6af49ac03abb7134cd2d6209ab3fab51ac82ff01848b111c001e510650e34e5b3ad340224ba15bf912ef9dbe25f106ff0e8cd8ec495351930c
|
7
|
+
data.tar.gz: 98acf042ab3bf3a7871f66124be5f3070aeb4cf8c62424697b7d078c918e592b509e857cc91656ae09baae6d3b3846f9a9b8aa6fcb01f2346c45715373b0410c
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
avo (2.3.
|
4
|
+
avo (2.3.1.pre.1)
|
5
5
|
active_link_to
|
6
6
|
addressable
|
7
7
|
breadcrumbs_on_rails
|
@@ -90,6 +90,9 @@ GEM
|
|
90
90
|
activerecord (>= 4.2)
|
91
91
|
addressable (2.8.0)
|
92
92
|
public_suffix (>= 2.0.2, < 5.0)
|
93
|
+
annotate (3.2.0)
|
94
|
+
activerecord (>= 3.2, < 8.0)
|
95
|
+
rake (>= 10.4, < 14.0)
|
93
96
|
appraisal (2.4.1)
|
94
97
|
bundler
|
95
98
|
rake
|
@@ -418,6 +421,7 @@ DEPENDENCIES
|
|
418
421
|
active_median
|
419
422
|
acts_as_list
|
420
423
|
addressable
|
424
|
+
annotate
|
421
425
|
appraisal
|
422
426
|
avo!
|
423
427
|
awesome_print
|