pxs-forms 0.0.10 → 0.0.12

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: 91a2c544708fe08e5a017f8edee131907b84a1744000b4941e8ada68533b0142
4
+ data.tar.gz: 5f81663eb39dab1393b33716338cff2338141deef033b500d150f9b186205fc8
5
5
  SHA512:
6
- metadata.gz: f9eb444f40f1f9b869c29a2dfdb64f7206ea546f557296c880a704ce1d2f0d8ed5a3e1e2eef316dfdfafbcedf38735cf9df765d33e98cdf7ceba485ea3693b85
7
- data.tar.gz: b529cad7defd4dc231af3a7e77324a54e7fb03c9c7df3ee2bf475f85dc6ec8410ca59d9d81ceb08b1d8d70ca9a942118177e5b8b5a527c111e8a242636fc1d86
6
+ metadata.gz: 2ddd794ed368567d91bf61de7dd667d26a25bc8e4748d094a1a1903c52843cc4c14447106aa145c64c04c42727f22da6a09d1453d66fdcc893a6c83ccdd8f89c
7
+ data.tar.gz: 8bded0314c15c49015b8af98f73cc519224e3cf4f7badfabeefe04685155a90afc166f17dae9f637d6fb551ea350afd78346f28c68043e752ac017921c10d40e
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)}", precision: 2}, 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.12"
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.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Poubelle