refine-rails 2.10.1 → 2.11.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.
- checksums.yaml +4 -4
- data/app/assets/javascripts/refine-stimulus.esm.js.map +1 -1
- data/app/assets/javascripts/refine-stimulus.js.map +1 -1
- data/app/assets/javascripts/refine-stimulus.modern.js.map +1 -1
- data/app/assets/javascripts/refine-stimulus.umd.js.map +1 -1
- data/app/assets/stylesheets/index.css +68 -9
- data/app/assets/stylesheets/index.tailwind.css +76 -16
- data/app/controllers/refine/inline/criteria_controller.rb +17 -4
- data/app/models/refine/conditions/condition.rb +1 -0
- data/app/models/refine/conditions/has_icon.rb +24 -0
- data/app/models/refine/filter.rb +4 -0
- data/app/views/refine/blueprints/_condition_select.html.erb +3 -1
- data/app/views/refine/inline/criteria/_condition_list_item.html.erb +27 -0
- data/app/views/refine/inline/criteria/index.html.erb +4 -32
- data/app/views/refine/inline/filters/_and_button.html.erb +2 -2
- data/app/views/refine/inline/filters/_clear_button.html.erb +13 -0
- data/app/views/refine/inline/filters/_criterion.html.erb +6 -1
- data/app/views/refine/inline/filters/_group.html.erb +7 -13
- data/app/views/refine/inline/filters/_show.html.erb +17 -17
- data/config/locales/en/refine.en.yml +2 -1
- data/config/routes.rb +3 -1
- data/lib/refine/rails/version.rb +1 -1
- metadata +5 -2
data/lib/refine/rails/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: refine-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.11.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Colleen Schnettler
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2024-
|
12
|
+
date: 2024-09-09 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -89,6 +89,7 @@ files:
|
|
89
89
|
- app/models/refine/conditions/errors/relationship_error.rb
|
90
90
|
- app/models/refine/conditions/filter_condition.rb
|
91
91
|
- app/models/refine/conditions/has_clauses.rb
|
92
|
+
- app/models/refine/conditions/has_icon.rb
|
92
93
|
- app/models/refine/conditions/has_meta.rb
|
93
94
|
- app/models/refine/conditions/has_refinements.rb
|
94
95
|
- app/models/refine/conditions/numeric_condition.rb
|
@@ -136,6 +137,7 @@ files:
|
|
136
137
|
- app/views/refine/blueprints/new.html.erb
|
137
138
|
- app/views/refine/blueprints/show.html.erb
|
138
139
|
- app/views/refine/blueprints/show.turbo_stream.erb
|
140
|
+
- app/views/refine/inline/criteria/_condition_list_item.html.erb
|
139
141
|
- app/views/refine/inline/criteria/_form_fields.html.erb
|
140
142
|
- app/views/refine/inline/criteria/create.turbo_stream.erb
|
141
143
|
- app/views/refine/inline/criteria/edit.turbo_stream.erb
|
@@ -143,6 +145,7 @@ files:
|
|
143
145
|
- app/views/refine/inline/criteria/new.turbo_stream.erb
|
144
146
|
- app/views/refine/inline/filters/_add_first_condition_button.html.erb
|
145
147
|
- app/views/refine/inline/filters/_and_button.html.erb
|
148
|
+
- app/views/refine/inline/filters/_clear_button.html.erb
|
146
149
|
- app/views/refine/inline/filters/_criterion.html.erb
|
147
150
|
- app/views/refine/inline/filters/_group.html.erb
|
148
151
|
- app/views/refine/inline/filters/_or_button.html.erb
|