pxs-forms 0.0.10 → 0.0.13
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/CHANGELOG.md +6 -2
- data/lib/pxs/forms/model_form_builder.rb +10 -0
- data/lib/pxs/forms/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8d50fc40d7619672b358b9a858d5fa475cad9c714e34b6b578e449972d092437
|
4
|
+
data.tar.gz: ddd3bcd39966224b7c2eb2803b3ca1db2bd31ce7afa20c7b4e8d90e2bdd7a887
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ce353d76d2f8363bd14a08899a8a96ccab5898bf73a1f819ea085aac5ffc7aa1f9d4be4d80d2db3fb259a90d9622917b107967d3ec7dd14545bd79c77774c369
|
7
|
+
data.tar.gz: 4ab2e5a3b321f4808715402c5ed2b2fe351a165325051c7e3dca4ec06b1d1f5ba6831b289bba57aa357343295cc9f1981492256f20b97259340020e9d26108f0
|
data/CHANGELOG.md
CHANGED
@@ -37,9 +37,11 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
37
37
|
@object.type_for_attribute(attribute.to_s).try(:type)
|
38
38
|
# else if @object matches a column
|
39
39
|
elsif @object.respond_to?(:column_for_attribute) && @object.has_attribute?(attribute)
|
40
|
+
# return column type
|
40
41
|
@object.column_for_attribute(attribute).try(:type)
|
41
42
|
end
|
42
43
|
|
44
|
+
# default to string
|
43
45
|
result || :string
|
44
46
|
end
|
45
47
|
|
@@ -74,6 +76,14 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
74
76
|
end
|
75
77
|
end
|
76
78
|
|
79
|
+
def currency_input(attribute, options = {})
|
80
|
+
field_block(attribute, options) do
|
81
|
+
safe_join [
|
82
|
+
(field_label(attribute, options[:label]) unless options[:label] == false), number_field(attribute, merge_input_options({class: "#{"is-invalid" if has_error?(attribute)}", step: "0.01", placeholder: "0.00"}, options))
|
83
|
+
]
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
77
87
|
def collection_input(attribute, options, &block)
|
78
88
|
field_block(attribute, options) do
|
79
89
|
safe_join [
|
data/lib/pxs/forms/version.rb
CHANGED