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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bc5def5ec6debb0c7aa951c941634bbd4261c8edfa704d984c382f53cf25a6aa
4
- data.tar.gz: cce8e5f438d488f989914f66303263187e20e2239883884ab0584d14a7006bad
3
+ metadata.gz: 14b39bac9452c6f1c71de938ea6ef066dba69a0d861048f7f8c691af49b51ee6
4
+ data.tar.gz: 1a96903d410a21e147dc3fcdfa00752178c7e45ae6dd2f3b3c3215a60069f18d
5
5
  SHA512:
6
- metadata.gz: 65eca3c1a00da0d43541e9b0041ab9709c34f680c0ba78c81ab034f195cb335bdc7e6985206fb1556417a0202b2b5e62c4967ef4a2df0657672949b6401e4465
7
- data.tar.gz: 750850a13d275c7a08c5ec393cc6cca5e862297244d9853ca82e47a9c3eff9e4c3e288ef52aa7b35d5af5c701a492bb169e6200d0d5794cca59479aa3b17a2d9
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Pxs
4
4
  module Forms
5
- VERSION = "0.0.14"
5
+ VERSION = "0.0.15"
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.0.14
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-02 00:00:00.000000000 Z
11
+ date: 2024-05-05 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: