katalyst-tables 2.2.6 → 2.2.7
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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 25c7348eb8542d2810e9448b6d966a21968e5906d9f520770687fce182455042
|
|
4
|
+
data.tar.gz: 1dffc5490373097ec0f03251e941336cf4cf06a5ae9542d8beae5fa6c33c4e32
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 590ac1fd488278be25b6d6bc9cfcfa6b7d417d7390ca9a6c45fe3792f36c0c7b011662bc106b15972e100a528f36b3794704d33042f5efba89fd997e99d53386
|
|
7
|
+
data.tar.gz: 4051cacd2816958fe46b0c7d511b24f8a6d5ce3110cef45ba755953063ebdc05f3a36f99c2c514cf53f68703166e9bf0d9f6f4bae8360e7173f3044162bd9db9
|
|
@@ -35,9 +35,7 @@ module Katalyst
|
|
|
35
35
|
|
|
36
36
|
def current_path
|
|
37
37
|
params = collection.to_params
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
"#{query_string}"
|
|
38
|
+
params.empty? ? "" : "?#{Rack::Utils.build_nested_query(params)}"
|
|
41
39
|
end
|
|
42
40
|
|
|
43
41
|
def default_header_options
|
|
@@ -15,7 +15,14 @@ module Katalyst
|
|
|
15
15
|
|
|
16
16
|
class_methods do
|
|
17
17
|
def permitted_params
|
|
18
|
-
|
|
18
|
+
_default_attributes.to_h.each_with_object([]) do |(k, v), h|
|
|
19
|
+
h << case v
|
|
20
|
+
when Array
|
|
21
|
+
{ k => [] }
|
|
22
|
+
else
|
|
23
|
+
k
|
|
24
|
+
end
|
|
25
|
+
end
|
|
19
26
|
end
|
|
20
27
|
end
|
|
21
28
|
|
|
@@ -37,7 +44,7 @@ module Katalyst
|
|
|
37
44
|
end
|
|
38
45
|
|
|
39
46
|
def filtered?
|
|
40
|
-
|
|
47
|
+
self.class.new.filters != filters
|
|
41
48
|
end
|
|
42
49
|
|
|
43
50
|
def filters
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: katalyst-tables
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.2.
|
|
4
|
+
version: 2.2.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Katalyst Interactive
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-11-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: html-attributes-utils
|