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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: efd3c44a4990b55513ce3a025fa5a3e763667733668cdc3ecbd16859fec1629a
4
- data.tar.gz: c3274a8654d27e4785b4ae937218dc5c48f12e283038b052ccaaf385df94c91b
3
+ metadata.gz: 8d50fc40d7619672b358b9a858d5fa475cad9c714e34b6b578e449972d092437
4
+ data.tar.gz: ddd3bcd39966224b7c2eb2803b3ca1db2bd31ce7afa20c7b4e8d90e2bdd7a887
5
5
  SHA512:
6
- metadata.gz: f9eb444f40f1f9b869c29a2dfdb64f7206ea546f557296c880a704ce1d2f0d8ed5a3e1e2eef316dfdfafbcedf38735cf9df765d33e98cdf7ceba485ea3693b85
7
- data.tar.gz: b529cad7defd4dc231af3a7e77324a54e7fb03c9c7df3ee2bf475f85dc6ec8410ca59d9d81ceb08b1d8d70ca9a942118177e5b8b5a527c111e8a242636fc1d86
6
+ metadata.gz: ce353d76d2f8363bd14a08899a8a96ccab5898bf73a1f819ea085aac5ffc7aa1f9d4be4d80d2db3fb259a90d9622917b107967d3ec7dd14545bd79c77774c369
7
+ data.tar.gz: 4ab2e5a3b321f4808715402c5ed2b2fe351a165325051c7e3dca4ec06b1d1f5ba6831b289bba57aa357343295cc9f1981492256f20b97259340020e9d26108f0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
- ## [0.1.0] - 2024-03-20
3
+ ## [0.0.1] - 2024-03-20
4
4
 
5
- - Initial release
5
+ - Initial setup
6
+
7
+ ## [0.0.11] - 2024-04-19
8
+
9
+ - Added currency field
@@ -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 [
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Pxs
4
4
  module Forms
5
- VERSION = "0.0.10"
5
+ VERSION = "0.0.13"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pxs-forms
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.10
4
+ version: 0.0.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Poubelle