pxs-forms 0.1.2 → 0.1.3
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 +4 -0
- data/lib/pxs/forms/model_form_builder.rb +4 -4
- 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: e9c05787b85813a1a754f426f21bbc85177f53e19d7a5c52e9197d8ce1b07fbb
|
4
|
+
data.tar.gz: 6a786ceebe5b82975834900ddc6f8cee270a5dea06bd0b5d3aac595af4aa3938
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 70867890491a94036e8b27d1079eb56763e5151537015e8cd4e6ee7e8d44eee8cfb90824e571c18ddc7e97e1118347feed8bb48ab04157fcdfcbf2653e7f10d4
|
7
|
+
data.tar.gz: ec788f41cb77b2586d4d8e90f3173234aa7133c449b3ff7bd9b0335a6bbd1cbb4285304552b6e1aa334481780d0584abfa5c372cc95417026ea99065f13ba430
|
data/CHANGELOG.md
CHANGED
@@ -188,7 +188,7 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
188
188
|
|
189
189
|
safe_join [
|
190
190
|
(field_label(attribute, options[:label]) unless options[:label] == false),
|
191
|
-
@template.text_field(base_input_name, attribute, merge_input_options({class: "
|
191
|
+
@template.text_field(base_input_name, attribute, merge_input_options({class: has_error?(attribute) ? "is-invalid" : nil}, objectify_options(options[:input_html] || {}))),
|
192
192
|
]
|
193
193
|
end
|
194
194
|
end
|
@@ -196,7 +196,7 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
196
196
|
def datetime_input(attribute, options, &block)
|
197
197
|
field_block(attribute, options) do
|
198
198
|
safe_join [
|
199
|
-
(field_label(attribute, options[:label]) unless options[:label] == false), datetime_field(attribute, merge_input_options({class: "
|
199
|
+
(field_label(attribute, options[:label]) unless options[:label] == false), datetime_field(attribute, merge_input_options({class: has_error?(attribute) ? "is-invalid" : nil}, objectify_options(options[:input_html] || {}))),
|
200
200
|
]
|
201
201
|
end
|
202
202
|
end
|
@@ -205,7 +205,7 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
205
205
|
field_block(attribute, options) do
|
206
206
|
safe_join [
|
207
207
|
(field_label(attribute, options[:label]) unless options[:label] == false),
|
208
|
-
@template.text_area(base_input_name, attribute, merge_input_options({class: "
|
208
|
+
@template.text_area(base_input_name, attribute, merge_input_options({class: has_error?(attribute) ? "is-invalid" : nil, value: object[attribute]}, objectify_options(options[:input_html] || {}))),
|
209
209
|
]
|
210
210
|
end
|
211
211
|
end
|
@@ -214,7 +214,7 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
214
214
|
field_block(attribute, options) do
|
215
215
|
tag.div(class: "checkbox-field") do
|
216
216
|
safe_join [
|
217
|
-
@template.check_box(base_input_name, attribute, merge_input_options({class: "checkbox-input"}, options[:input_html])),
|
217
|
+
@template.check_box(base_input_name, attribute, merge_input_options({class: "checkbox-input"}, objectify_options(options[:input_html] || {}))),
|
218
218
|
@template.label(base_input_name, attribute, options[:label], class: "checkbox-label"),
|
219
219
|
]
|
220
220
|
end
|
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.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Poubelle
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-19 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|