pxs-forms 0.1.4.4 → 0.1.4.6
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 +3 -1
- data/lib/pxs/forms/model_form_builder.rb +5 -5
- 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: 05eaa7e84b007826b2bdbf1515f85c09d53070d4dbebda132d09763587898678
|
4
|
+
data.tar.gz: b66d19184d9700a3cbba2a409a3ab89e8c7887873d160328d16b2f41ba212cc8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a2316e33ee6747df85654ffe40a469fd51d4f547833e247482bb3e4854d35a9bb54c1f7fb39686b47b8aa126137f5eb6dfa8ad4506b9f03d9248d66be5daaf2
|
7
|
+
data.tar.gz: 24cb58961e069d8039fa5f33e2ff75a72875d878029fd5a726e376a543ac7ae1a182fa822284b3a2c02094259b4fca4c9a454fa9829f3110db5b1001d9a1e577
|
data/CHANGELOG.md
CHANGED
@@ -2,10 +2,12 @@
|
|
2
2
|
|
3
3
|
## Unofficial Release
|
4
4
|
|
5
|
-
## [0.1.4.3-
|
5
|
+
## [0.1.4.3-6] - 2025-04-03
|
6
6
|
|
7
7
|
- Fix I18n missing from a I18n.t function call
|
8
8
|
- Fix incorrect field name for association subform
|
9
|
+
- Fix explicit label not displayed in select fields
|
10
|
+
- Add :title option for select_or_create association subform
|
9
11
|
|
10
12
|
## [0.1.4] - 2025-04-01
|
11
13
|
|
@@ -58,7 +58,7 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
58
58
|
def association_select_or_create_subform(association, options = {})
|
59
59
|
|
60
60
|
# assert that the options hash passed contains only valid keys
|
61
|
-
options.assert_valid_keys(:add, :select, :collection)
|
61
|
+
options.assert_valid_keys(:add, :select, :collection, :title)
|
62
62
|
# merge with the default options
|
63
63
|
options = association_select_or_create_subform_options(association).merge(options)
|
64
64
|
|
@@ -78,13 +78,13 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
78
78
|
|
79
79
|
safe_join [
|
80
80
|
# subform title, acting as the field label
|
81
|
-
@template.tag.h3(association.to_s.humanize, id: model_html_id(association, :title)),
|
81
|
+
@template.tag.h3(options[:title] || association.to_s.humanize, id: model_html_id(association, :title)),
|
82
82
|
# a select input, to choose an existing model
|
83
|
-
field("#{association.to_s}_id", collection: collection, text_method: options[:select][:text_method], value_method: options[:select][:value_method]),
|
83
|
+
field("#{association.to_s}_id", collection: collection, text_method: options[:select][:text_method], value_method: options[:select][:value_method], label: options[:select][:label]),
|
84
84
|
# an empty "client-form" ID div, to be filled with the subform fields once expanded
|
85
85
|
@template.tag.div(id: model_html_id(association, :form)),
|
86
86
|
# an "Add Client" button, to expand the subform when clicked in order to allow the user to create a new submodel alongside the original model
|
87
|
-
@template.link_to(options[:add][:label], options[:add][:path], class: "button", id: model_button_id(association, :new), data: { turbo_stream: true }),
|
87
|
+
@template.link_to(options[:add][:label], options[:add][:path], class: "button#{options[:add][:class] ? " #{options[:add][:class]}" : ""}", id: model_button_id(association, :new), data: { turbo_stream: true }),
|
88
88
|
# A `cancel` button to close the subform, initially hidden
|
89
89
|
cancel_form_button(association)
|
90
90
|
]
|
@@ -224,7 +224,7 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
224
224
|
def collection_input(attribute, options, &block)
|
225
225
|
field_block(attribute, options) do
|
226
226
|
safe_join [
|
227
|
-
|
227
|
+
@template.label(object.class.to_s.underscore.downcase.to_sym, attribute, options[:label] || object.class.human_attribute_name(attribute)),
|
228
228
|
block.call,
|
229
229
|
]
|
230
230
|
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.
|
4
|
+
version: 0.1.4.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Poubelle
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-04-
|
11
|
+
date: 2025-04-04 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|