pxs-forms 0.0.14 → 0.0.15
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/lib/pxs/forms/model_form_builder.rb +10 -0
- data/lib/pxs/forms/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 14b39bac9452c6f1c71de938ea6ef066dba69a0d861048f7f8c691af49b51ee6
|
4
|
+
data.tar.gz: 1a96903d410a21e147dc3fcdfa00752178c7e45ae6dd2f3b3c3215a60069f18d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 638a4ed2810a3e316043aad98a4720cde8317645171694ef026081e0fabe93588541236a35dd3f6854013bb79a9a45df29f060ed907ee821c9629c0906253553
|
7
|
+
data.tar.gz: ba16db0647f94210668ccf504bfa0c763ff62225be35cf431710f6466629ecd89d16fee5fe99387a8bacf188fa373c01fd88fe6792d5cdecd8a1dc0992f07eaf
|
@@ -54,6 +54,14 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
54
54
|
end
|
55
55
|
end
|
56
56
|
|
57
|
+
def datetime_input(attribute, options, &block)
|
58
|
+
field_block(attribute, options) do
|
59
|
+
safe_join [
|
60
|
+
(field_label(attribute, options[:label]) unless options[:label] == false), datetime_field(attribute, merge_input_options({class: "#{"is-invalid" if has_error?(attribute)}"}, options[:input_html])),
|
61
|
+
]
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
57
65
|
def text_input(attribute, options = {})
|
58
66
|
field_block(attribute, options) do
|
59
67
|
safe_join [
|
@@ -150,6 +158,8 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
150
158
|
}, {data: {date_select: true}})
|
151
159
|
},
|
152
160
|
]
|
161
|
+
when :datetime then
|
162
|
+
datetime_field(attribute, options)
|
153
163
|
when :integer then number_field(attribute, options)
|
154
164
|
when :string
|
155
165
|
case attribute.to_s
|
data/lib/pxs/forms/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pxs-forms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Poubelle
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-05-
|
11
|
+
date: 2024-05-05 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|