zuora_connect_ui 0.3.0 → 0.3.1a
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4ef3e1c58be87008acbd7398c7526ee2be26b5e3
|
4
|
+
data.tar.gz: 37292158c108fe69e7426aecc87fe990b474bafb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7adafaa33eddf758088f697affc768c98c073df7619345d7c0334f9a785000f6f8b6e34bf38235e90537cdb2a11eca7a870da717fd2637df52e6c59f7fd5f5d9
|
7
|
+
data.tar.gz: 327dd3a4676bfd8201f446dfee60c2d8a04542aa47b601b2d8252f84a1f1d4270c0cdafc8e5a5376cbb9d3681ffd655588a4ed4c2cdc9a02a3f580d4357a8774
|
@@ -151,11 +151,11 @@
|
|
151
151
|
<% if defined?(table_filters) %>
|
152
152
|
<% table_filters.each do |table_filter| %>
|
153
153
|
<% if table_filter["type"] == "checkbox" %>
|
154
|
-
aoData.push({ "name": "<%= table_filter["name"].parameterize('_') %>", "value": $('#<%= table_name %>_content input[name="<%= table_filter["name"].parameterize('_') %>[]"]:checked').map(function(_, el) { return $(el).val()}).get() });
|
154
|
+
aoData.push({ "name": "<%= table_filter["name"].parameterize(separator: '_') %>", "value": $('#<%= table_name %>_content input[name="<%= table_filter["name"].parameterize(separator: '_') %>[]"]:checked').map(function(_, el) { return $(el).val()}).get() });
|
155
155
|
<% elsif table_filter["type"] == "boolean" %>
|
156
|
-
aoData.push({ "name": "<%= table_filter["name"].parameterize('_') %>", "value": $('#<%= table_name %>_content input[name="<%= table_filter["name"].parameterize('_') %>"]:checked').val() });
|
156
|
+
aoData.push({ "name": "<%= table_filter["name"].parameterize(separator: '_') %>", "value": $('#<%= table_name %>_content input[name="<%= table_filter["name"].parameterize(separator: '_') %>"]:checked').val() });
|
157
157
|
<% elsif ["select", "group-select"].include?(table_filter["type"]) %>
|
158
|
-
aoData.push({ "name": "<%= table_filter["name"].parameterize('_') %>", "value": $('#<%= table_name %>_content select[name="<%= table_filter["name"].parameterize('_') %>"]').val() });
|
158
|
+
aoData.push({ "name": "<%= table_filter["name"].parameterize(separator: '_') %>", "value": $('#<%= table_name %>_content select[name="<%= table_filter["name"].parameterize(separator: '_') %>"]').val() });
|
159
159
|
<% end %>
|
160
160
|
<% end %>
|
161
161
|
<% end %>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zuora_connect_ui
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.1a
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Connect Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-05-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bootstrap-sass
|
@@ -149,8 +149,8 @@ files:
|
|
149
149
|
- app/assets/stylesheets/zuora_connect_ui/tables.scss
|
150
150
|
- app/assets/stylesheets/zuora_connect_ui/tabs.scss
|
151
151
|
- app/helpers/datatable_helper.rb
|
152
|
-
- app/helpers/input_helper.rb
|
153
152
|
- app/helpers/zuora_connect_ui/application_helper.rb
|
153
|
+
- app/helpers/zuora_connect_ui/input_helper.rb
|
154
154
|
- app/views/partials/_admin_menu.html.erb
|
155
155
|
- app/views/partials/_filters.html.erb
|
156
156
|
- app/views/partials/_row_actions.html.erb
|
@@ -217,9 +217,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
217
217
|
version: '0'
|
218
218
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
219
219
|
requirements:
|
220
|
-
- - "
|
220
|
+
- - ">"
|
221
221
|
- !ruby/object:Gem::Version
|
222
|
-
version:
|
222
|
+
version: 1.3.1
|
223
223
|
requirements: []
|
224
224
|
rubyforge_project:
|
225
225
|
rubygems_version: 2.6.8
|