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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 981f2859bcb9b331063ac4dae5aaba3c95265e783b07b8d37b39599aaba639ed
4
- data.tar.gz: 81befc04467b8c087dc4aad8617d6008686fb812be54c4cbc1ebce7e582ce3bf
3
+ metadata.gz: e9c05787b85813a1a754f426f21bbc85177f53e19d7a5c52e9197d8ce1b07fbb
4
+ data.tar.gz: 6a786ceebe5b82975834900ddc6f8cee270a5dea06bd0b5d3aac595af4aa3938
5
5
  SHA512:
6
- metadata.gz: dcfe9e12c264106324a7f83c149783a734d2236165461e808e0885f83cb2c7de63c010240e50b064e7248adf2da1a2e12fcdc2972d67d366d7d7c23ad1a0e4c8
7
- data.tar.gz: 30aec3cb45e6393b39f96a3fe9f3bb5ea342ceb784d4a76b94ce837edbd908b3a6a6972cdc8613f8ecddb13f19205960cfa01ebf4e2a876db571d97cfa17282f
6
+ metadata.gz: 70867890491a94036e8b27d1079eb56763e5151537015e8cd4e6ee7e8d44eee8cfb90824e571c18ddc7e97e1118347feed8bb48ab04157fcdfcbf2653e7f10d4
7
+ data.tar.gz: ec788f41cb77b2586d4d8e90f3173234aa7133c449b3ff7bd9b0335a6bbd1cbb4285304552b6e1aa334481780d0584abfa5c372cc95417026ea99065f13ba430
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Unofficial Release
4
4
 
5
+ ## [0.1.3] - 2025-03-19
6
+
7
+ - Fix values not being automatically set for string, text, boolean fields
8
+
5
9
  ## [0.1.2] - 2025-03-09
6
10
 
7
11
  - Fix Multiple Selects not selecting the correct values
@@ -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: "#{"is-invalid" if has_error?(attribute)}"}, options[:input_html])),
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: "#{"is-invalid" if has_error?(attribute)}"}, options[:input_html])),
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: "#{"is-invalid" if has_error?(attribute)}", value: object[attribute]}, options[:input_html])),
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Pxs
4
4
  module Forms
5
- VERSION = "0.1.2"
5
+ VERSION = "0.1.3"
6
6
  end
7
7
  end
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.2
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-09 00:00:00.000000000 Z
11
+ date: 2025-03-19 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: