bulma_form_rails 0.9.3 → 0.9.4
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/Gemfile.lock +1 -1
- data/README.md +2 -0
- data/doc/BulmaFormRails/FieldHelpers.html +10 -8
- data/doc/BulmaFormRails/FormPageHelpers.html +4 -2
- data/doc/BulmaFormRails/HeaderAndFooterHelpers.html +4 -2
- data/doc/BulmaFormRails/MessageBoxHelpers.html +4 -2
- data/doc/BulmaFormRails/SubformHelpers.html +3 -1
- data/doc/BulmaFormRails.html +2 -0
- data/doc/created.rid +6 -6
- data/doc/js/search_index.js +1 -1
- data/doc/js/search_index.js.gz +0 -0
- data/lib/bulma_form_rails/field_helpers.rb +5 -0
- data/lib/bulma_form_rails/form_page_helpers.rb +2 -0
- data/lib/bulma_form_rails/header_and_footer_helpers.rb +2 -0
- data/lib/bulma_form_rails/message_box_helpers.rb +2 -1
- data/lib/bulma_form_rails/subform_helpers.rb +2 -0
- data/lib/bulma_form_rails/version.rb +1 -1
- data/package.json +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e342535404707ecefeee46908295f6a06e31c6adefc865b211964525ac1190eb
|
4
|
+
data.tar.gz: 3cbdfe9be4a70262bd46ac8e09b69508ab7b2f5fe63999c64b72c38be68b7482
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d0cf4dd9cd34cd25ef4f3427863d8e512514eaba9b45ccfb0199624404a8ac6b88224cb109a27a7ba62d5d0767768af33dcfc7bf0299fbf59de9adc976baabb2
|
7
|
+
data.tar.gz: 3a78e7a49b4df1406ee2278c0ab60daf47c99613c64d5eeb1eebac6f4e9187339f504194680f67ba1953055fa2e80aa162a9cdc2a3daae9cd835530562a1fe32
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,6 @@
|
|
1
1
|

|
2
|
+
|
3
|
+
https://moderngeosystems.com
|
2
4
|
# bulma_form_rails
|
3
5
|
`bulma_form_rails` provides Rails helpers for efficiently building forms using the Bulma CSS library.
|
4
6
|
|
@@ -89,6 +89,8 @@
|
|
89
89
|
|
90
90
|
<p><img src="../images/moderngeosystems_logo.png"></p>
|
91
91
|
|
92
|
+
<p><a href="https://moderngeosystems.com">moderngeosystems.com</a></p>
|
93
|
+
|
92
94
|
<p>This Ruby on Rails Helper module allows easy and efficient web form construction with labeled fields of different types.</p>
|
93
95
|
|
94
96
|
</section>
|
@@ -136,7 +138,7 @@
|
|
136
138
|
</li></ul>
|
137
139
|
|
138
140
|
<div class="method-source-code" id="bulma_check_box-source">
|
139
|
-
<pre><span class="ruby-comment"># File lib/bulma_form_rails/field_helpers.rb, line
|
141
|
+
<pre><span class="ruby-comment"># File lib/bulma_form_rails/field_helpers.rb, line 84</span>
|
140
142
|
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">bulma_check_box</span>(<span class="ruby-identifier">form_or_object</span>, <span class="ruby-identifier">field_name</span>, <span class="ruby-identifier">options</span> = {})
|
141
143
|
<span class="ruby-comment"># Prepare parameters.</span>
|
142
144
|
<span class="ruby-identifier">prepare_value_class!</span>(<span class="ruby-identifier">options</span>, <span class="ruby-value">base_class:</span> <span class="ruby-string">'checkbox'</span>)
|
@@ -176,7 +178,7 @@
|
|
176
178
|
</li></ul>
|
177
179
|
|
178
180
|
<div class="method-source-code" id="bulma_custom_field-source">
|
179
|
-
<pre><span class="ruby-comment"># File lib/bulma_form_rails/field_helpers.rb, line
|
181
|
+
<pre><span class="ruby-comment"># File lib/bulma_form_rails/field_helpers.rb, line 21</span>
|
180
182
|
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">bulma_custom_field</span>(<span class="ruby-identifier">form_or_object</span>, <span class="ruby-identifier">field_name</span>, <span class="ruby-identifier">options</span> = {}, <span class="ruby-operator">&</span><span class="ruby-identifier">block</span>)
|
181
183
|
<span class="ruby-comment"># Prepare parameters.</span>
|
182
184
|
<span class="ruby-identifier">raise</span> <span class="ruby-constant">ArgumentError</span>.<span class="ruby-identifier">new</span>(<span class="ruby-string">'No block given for custom field'</span>) <span class="ruby-keyword">if</span> <span class="ruby-operator">!</span><span class="ruby-identifier">block_given?</span>
|
@@ -217,7 +219,7 @@
|
|
217
219
|
</li></ul>
|
218
220
|
|
219
221
|
<div class="method-source-code" id="bulma_datetime_select-source">
|
220
|
-
<pre><span class="ruby-comment"># File lib/bulma_form_rails/field_helpers.rb, line
|
222
|
+
<pre><span class="ruby-comment"># File lib/bulma_form_rails/field_helpers.rb, line 139</span>
|
221
223
|
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">bulma_datetime_select</span>(<span class="ruby-identifier">form_or_object</span>, <span class="ruby-identifier">field_name</span>, <span class="ruby-identifier">options</span> = {}, <span class="ruby-identifier">html_options</span> = {})
|
222
224
|
<span class="ruby-comment"># Prepare parameters.</span>
|
223
225
|
<span class="ruby-identifier">prepare_value_class!</span>(<span class="ruby-identifier">options</span>, <span class="ruby-value">base_class:</span> <span class="ruby-string">'select is-fullwidth'</span>)
|
@@ -259,7 +261,7 @@
|
|
259
261
|
</li></ul>
|
260
262
|
|
261
263
|
<div class="method-source-code" id="bulma_input-source">
|
262
|
-
<pre><span class="ruby-comment"># File lib/bulma_form_rails/field_helpers.rb, line
|
264
|
+
<pre><span class="ruby-comment"># File lib/bulma_form_rails/field_helpers.rb, line 41</span>
|
263
265
|
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">bulma_input</span>(<span class="ruby-identifier">form_or_object</span>, <span class="ruby-identifier">field_name</span>, <span class="ruby-identifier">type</span> = <span class="ruby-value">:text</span>, <span class="ruby-identifier">options</span> = {})
|
264
266
|
<span class="ruby-comment"># Convert type to form method.</span>
|
265
267
|
<span class="ruby-identifier">type</span> = <span class="ruby-identifier">type</span>.<span class="ruby-identifier">to_s</span>
|
@@ -308,7 +310,7 @@
|
|
308
310
|
</li></ul>
|
309
311
|
|
310
312
|
<div class="method-source-code" id="bulma_radio_group-source">
|
311
|
-
<pre><span class="ruby-comment"># File lib/bulma_form_rails/field_helpers.rb, line
|
313
|
+
<pre><span class="ruby-comment"># File lib/bulma_form_rails/field_helpers.rb, line 102</span>
|
312
314
|
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">bulma_radio_group</span>(<span class="ruby-identifier">form_or_object</span>, <span class="ruby-identifier">field_name</span>, <span class="ruby-identifier">choices</span>, <span class="ruby-identifier">options</span> = {})
|
313
315
|
<span class="ruby-comment"># Prepare parameters.</span>
|
314
316
|
<span class="ruby-identifier">prepare_value_class!</span>(<span class="ruby-identifier">options</span>, <span class="ruby-value">base_class:</span> <span class="ruby-string">'radio'</span>)
|
@@ -352,7 +354,7 @@
|
|
352
354
|
</li></ul>
|
353
355
|
|
354
356
|
<div class="method-source-code" id="bulma_select-source">
|
355
|
-
<pre><span class="ruby-comment"># File lib/bulma_form_rails/field_helpers.rb, line
|
357
|
+
<pre><span class="ruby-comment"># File lib/bulma_form_rails/field_helpers.rb, line 121</span>
|
356
358
|
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">bulma_select</span>(<span class="ruby-identifier">form_or_object</span>, <span class="ruby-identifier">field_name</span>, <span class="ruby-identifier">choices</span>, <span class="ruby-identifier">options</span> = {}, <span class="ruby-identifier">html_options</span> = {})
|
357
359
|
<span class="ruby-comment"># Prepare parameters.</span>
|
358
360
|
<span class="ruby-identifier">prepare_value_class!</span>(<span class="ruby-identifier">options</span>, <span class="ruby-value">base_class:</span> <span class="ruby-string">'select is-fullwidth'</span>)
|
@@ -396,7 +398,7 @@
|
|
396
398
|
</li></ul>
|
397
399
|
|
398
400
|
<div class="method-source-code" id="bulma_text_area-source">
|
399
|
-
<pre><span class="ruby-comment"># File lib/bulma_form_rails/field_helpers.rb, line
|
401
|
+
<pre><span class="ruby-comment"># File lib/bulma_form_rails/field_helpers.rb, line 67</span>
|
400
402
|
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">bulma_text_area</span>(<span class="ruby-identifier">form_or_object</span>, <span class="ruby-identifier">field_name</span>, <span class="ruby-identifier">options</span> = {})
|
401
403
|
<span class="ruby-comment"># Prepare parameters.</span>
|
402
404
|
<span class="ruby-identifier">prepare_value_class!</span>(<span class="ruby-identifier">options</span>, <span class="ruby-value">base_class:</span> <span class="ruby-string">'textarea'</span>)
|
@@ -438,7 +440,7 @@
|
|
438
440
|
</li></ul>
|
439
441
|
|
440
442
|
<div class="method-source-code" id="bulma_time_select-source">
|
441
|
-
<pre><span class="ruby-comment"># File lib/bulma_form_rails/field_helpers.rb, line
|
443
|
+
<pre><span class="ruby-comment"># File lib/bulma_form_rails/field_helpers.rb, line 157</span>
|
442
444
|
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">bulma_time_select</span>(<span class="ruby-identifier">form_or_object</span>, <span class="ruby-identifier">field_name</span>, <span class="ruby-identifier">options</span> = {}, <span class="ruby-identifier">html_options</span> = {})
|
443
445
|
<span class="ruby-comment"># Prepare parameters.</span>
|
444
446
|
<span class="ruby-identifier">prepare_value_class!</span>(<span class="ruby-identifier">options</span>, <span class="ruby-value">base_class:</span> <span class="ruby-string">'select is-fullwidth'</span>)
|
@@ -83,6 +83,8 @@
|
|
83
83
|
|
84
84
|
<p><img src="../images/moderngeosystems_logo.png"></p>
|
85
85
|
|
86
|
+
<p><a href="https://moderngeosystems.com">moderngeosystems.com</a></p>
|
87
|
+
|
86
88
|
<p>This Ruby on Rails Helper module allows easy and efficient web form page rendering.</p>
|
87
89
|
|
88
90
|
</section>
|
@@ -118,7 +120,7 @@
|
|
118
120
|
</li></ul>
|
119
121
|
|
120
122
|
<div class="method-source-code" id="bulma_edit_form_page-source">
|
121
|
-
<pre><span class="ruby-comment"># File lib/bulma_form_rails/form_page_helpers.rb, line
|
123
|
+
<pre><span class="ruby-comment"># File lib/bulma_form_rails/form_page_helpers.rb, line 25</span>
|
122
124
|
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">bulma_edit_form_page</span>(<span class="ruby-identifier">name</span>, <span class="ruby-identifier">model</span>, <span class="ruby-identifier">models_path</span>, <span class="ruby-identifier">model_path</span>)
|
123
125
|
<span class="ruby-identifier">render</span> <span class="ruby-value">partial:</span> <span class="ruby-string">'bulma_form_rails/edit_form_page'</span>, <span class="ruby-value">locals:</span> {<span class="ruby-value">name:</span> <span class="ruby-identifier">name</span>, <span class="ruby-value">model:</span> <span class="ruby-identifier">model</span>, <span class="ruby-value">models_path:</span> <span class="ruby-identifier">models_path</span>, <span class="ruby-value">model_path:</span> <span class="ruby-identifier">model_path</span>}
|
124
126
|
<span class="ruby-keyword">end</span></pre>
|
@@ -146,7 +148,7 @@
|
|
146
148
|
</li></ul>
|
147
149
|
|
148
150
|
<div class="method-source-code" id="bulma_new_form_page-source">
|
149
|
-
<pre><span class="ruby-comment"># File lib/bulma_form_rails/form_page_helpers.rb, line
|
151
|
+
<pre><span class="ruby-comment"># File lib/bulma_form_rails/form_page_helpers.rb, line 16</span>
|
150
152
|
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">bulma_new_form_page</span>(<span class="ruby-identifier">name</span>, <span class="ruby-identifier">model</span>, <span class="ruby-identifier">models_path</span>)
|
151
153
|
<span class="ruby-identifier">render</span> <span class="ruby-value">partial:</span> <span class="ruby-string">'bulma_form_rails/new_form_page'</span>, <span class="ruby-value">locals:</span> {<span class="ruby-value">name:</span> <span class="ruby-identifier">name</span>, <span class="ruby-value">model:</span> <span class="ruby-identifier">model</span>, <span class="ruby-value">models_path:</span> <span class="ruby-identifier">models_path</span>}
|
152
154
|
<span class="ruby-keyword">end</span></pre>
|
@@ -83,6 +83,8 @@
|
|
83
83
|
|
84
84
|
<p><img src="../images/moderngeosystems_logo.png"></p>
|
85
85
|
|
86
|
+
<p><a href="https://moderngeosystems.com">moderngeosystems.com</a></p>
|
87
|
+
|
86
88
|
<p>This Ruby on Rails Helper module allows easy and efficient index and form page header and footer rendering.</p>
|
87
89
|
|
88
90
|
</section>
|
@@ -121,7 +123,7 @@
|
|
121
123
|
</li></ul>
|
122
124
|
|
123
125
|
<div class="method-source-code" id="bulma_form_footer-source">
|
124
|
-
<pre><span class="ruby-comment"># File lib/bulma_form_rails/header_and_footer_helpers.rb, line
|
126
|
+
<pre><span class="ruby-comment"># File lib/bulma_form_rails/header_and_footer_helpers.rb, line 25</span>
|
125
127
|
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">bulma_form_footer</span>(<span class="ruby-identifier">form</span>, <span class="ruby-identifier">models_path</span>, <span class="ruby-identifier">options</span> = {}, <span class="ruby-operator">&</span><span class="ruby-identifier">block</span>)
|
126
128
|
<span class="ruby-keyword">if</span> <span class="ruby-identifier">block_given?</span>
|
127
129
|
<span class="ruby-identifier">render</span> <span class="ruby-value">layout:</span> <span class="ruby-string">'bulma_form_rails/form_footer'</span>, <span class="ruby-value">locals:</span> {<span class="ruby-value">form:</span> <span class="ruby-identifier">form</span>, <span class="ruby-value">url:</span> <span class="ruby-identifier">models_path</span>, <span class="ruby-value">options:</span> <span class="ruby-identifier">options</span>}, <span class="ruby-operator">&</span><span class="ruby-identifier">block</span>
|
@@ -152,7 +154,7 @@
|
|
152
154
|
</li></ul>
|
153
155
|
|
154
156
|
<div class="method-source-code" id="bulma_index_header-source">
|
155
|
-
<pre><span class="ruby-comment"># File lib/bulma_form_rails/header_and_footer_helpers.rb, line
|
157
|
+
<pre><span class="ruby-comment"># File lib/bulma_form_rails/header_and_footer_helpers.rb, line 15</span>
|
156
158
|
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">bulma_index_header</span>(<span class="ruby-identifier">name</span>, <span class="ruby-identifier">models_path</span>)
|
157
159
|
<span class="ruby-identifier">render</span> <span class="ruby-value">partial:</span> <span class="ruby-string">'bulma_form_rails/index_header'</span>, <span class="ruby-value">locals:</span> {<span class="ruby-value">name:</span> <span class="ruby-identifier">name</span>, <span class="ruby-value">models_path:</span> <span class="ruby-identifier">models_path</span>}
|
158
160
|
<span class="ruby-keyword">end</span></pre>
|
@@ -83,6 +83,8 @@
|
|
83
83
|
|
84
84
|
<p><img src="../images/moderngeosystems_logo.png"></p>
|
85
85
|
|
86
|
+
<p><a href="https://moderngeosystems.com">moderngeosystems.com</a></p>
|
87
|
+
|
86
88
|
<p>This Ruby on Rails Helper module allows easy and efficient flash and validation error box rendering.</p>
|
87
89
|
|
88
90
|
</section>
|
@@ -109,7 +111,7 @@
|
|
109
111
|
<p>Render a standard flash messages box. Automatically included with <code>bulma_validation_box</code> and <code>bulma_index_header</code> output.</p>
|
110
112
|
|
111
113
|
<div class="method-source-code" id="bulma_message_box-source">
|
112
|
-
<pre><span class="ruby-comment"># File lib/bulma_form_rails/message_box_helpers.rb, line
|
114
|
+
<pre><span class="ruby-comment"># File lib/bulma_form_rails/message_box_helpers.rb, line 13</span>
|
113
115
|
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">bulma_message_box</span>
|
114
116
|
<span class="ruby-identifier">render</span> <span class="ruby-value">partial:</span> <span class="ruby-string">'bulma_form_rails/message_box'</span>
|
115
117
|
<span class="ruby-keyword">end</span></pre>
|
@@ -133,7 +135,7 @@
|
|
133
135
|
</li></ul>
|
134
136
|
|
135
137
|
<div class="method-source-code" id="bulma_validation_box-source">
|
136
|
-
<pre><span class="ruby-comment"># File lib/bulma_form_rails/message_box_helpers.rb, line
|
138
|
+
<pre><span class="ruby-comment"># File lib/bulma_form_rails/message_box_helpers.rb, line 19</span>
|
137
139
|
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">bulma_validation_box</span>(<span class="ruby-identifier">model</span>)
|
138
140
|
<span class="ruby-identifier">render</span> <span class="ruby-value">partial:</span> <span class="ruby-string">'bulma_form_rails/validation_box'</span>, <span class="ruby-value">locals:</span> {<span class="ruby-value">model:</span> <span class="ruby-identifier">model</span>}
|
139
141
|
<span class="ruby-keyword">end</span></pre>
|
@@ -82,6 +82,8 @@
|
|
82
82
|
|
83
83
|
<p><img src="../images/moderngeosystems_logo.png"></p>
|
84
84
|
|
85
|
+
<p><a href="https://moderngeosystems.com">moderngeosystems.com</a></p>
|
86
|
+
|
85
87
|
<p>This Ruby on Rails Helper module supports tabular editable multi-object subforms.</p>
|
86
88
|
|
87
89
|
</section>
|
@@ -142,7 +144,7 @@
|
|
142
144
|
</li></ol>
|
143
145
|
|
144
146
|
<div class="method-source-code" id="bulma_child_objects-source">
|
145
|
-
<pre><span class="ruby-comment"># File lib/bulma_form_rails/subform_helpers.rb, line
|
147
|
+
<pre><span class="ruby-comment"># File lib/bulma_form_rails/subform_helpers.rb, line 27</span>
|
146
148
|
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">bulma_child_objects</span>(<span class="ruby-identifier">collection</span>, <span class="ruby-identifier">name</span>, <span class="ruby-identifier">attributes_key</span>, <span class="ruby-identifier">add_child_path</span>, <span class="ruby-identifier">options</span> = {})
|
147
149
|
<span class="ruby-identifier">render</span> <span class="ruby-value">partial:</span> <span class="ruby-string">'bulma_form_rails/children'</span>, <span class="ruby-value">object:</span> <span class="ruby-identifier">collection</span>, <span class="ruby-value">locals:</span> {<span class="ruby-value">url:</span> <span class="ruby-identifier">add_child_path</span>, <span class="ruby-value">name:</span> <span class="ruby-identifier">name</span>, <span class="ruby-value">attributes_key:</span> <span class="ruby-identifier">attributes_key</span>}.<span class="ruby-identifier">merge</span>(<span class="ruby-identifier">options</span>)
|
148
150
|
<span class="ruby-keyword">end</span></pre>
|
data/doc/BulmaFormRails.html
CHANGED
data/doc/created.rid
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
Sun, 25 Sep 2022
|
2
|
-
lib/bulma_form_rails/field_helpers.rb Sun, 25 Sep 2022
|
3
|
-
lib/bulma_form_rails/form_page_helpers.rb Sun, 25 Sep 2022 09:
|
4
|
-
lib/bulma_form_rails/header_and_footer_helpers.rb Sun, 25 Sep 2022 09:
|
5
|
-
lib/bulma_form_rails/message_box_helpers.rb Sun, 25 Sep 2022
|
6
|
-
lib/bulma_form_rails/subform_helpers.rb Sun, 25 Sep 2022 09:
|
1
|
+
Sun, 25 Sep 2022 10:00:33 -0600
|
2
|
+
lib/bulma_form_rails/field_helpers.rb Sun, 25 Sep 2022 10:00:29 -0600
|
3
|
+
lib/bulma_form_rails/form_page_helpers.rb Sun, 25 Sep 2022 09:57:19 -0600
|
4
|
+
lib/bulma_form_rails/header_and_footer_helpers.rb Sun, 25 Sep 2022 09:56:55 -0600
|
5
|
+
lib/bulma_form_rails/message_box_helpers.rb Sun, 25 Sep 2022 10:00:19 -0600
|
6
|
+
lib/bulma_form_rails/subform_helpers.rb Sun, 25 Sep 2022 09:57:11 -0600
|
data/doc/js/search_index.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
var search_data = {"index":{"searchIndex":["bulmaformrails","fieldhelpers","formpagehelpers","headerandfooterhelpers","messageboxhelpers","subformhelpers","bulma_check_box()","bulma_child_objects()","bulma_custom_field()","bulma_datetime_select()","bulma_edit_form_page()","bulma_form_footer()","bulma_index_header()","bulma_input()","bulma_message_box()","bulma_new_form_page()","bulma_radio_group()","bulma_select()","bulma_text_area()","bulma_time_select()","bulma_validation_box()"],"longSearchIndex":["bulmaformrails","bulmaformrails::fieldhelpers","bulmaformrails::formpagehelpers","bulmaformrails::headerandfooterhelpers","bulmaformrails::messageboxhelpers","bulmaformrails::subformhelpers","bulmaformrails::fieldhelpers#bulma_check_box()","bulmaformrails::subformhelpers#bulma_child_objects()","bulmaformrails::fieldhelpers#bulma_custom_field()","bulmaformrails::fieldhelpers#bulma_datetime_select()","bulmaformrails::formpagehelpers#bulma_edit_form_page()","bulmaformrails::headerandfooterhelpers#bulma_form_footer()","bulmaformrails::headerandfooterhelpers#bulma_index_header()","bulmaformrails::fieldhelpers#bulma_input()","bulmaformrails::messageboxhelpers#bulma_message_box()","bulmaformrails::formpagehelpers#bulma_new_form_page()","bulmaformrails::fieldhelpers#bulma_radio_group()","bulmaformrails::fieldhelpers#bulma_select()","bulmaformrails::fieldhelpers#bulma_text_area()","bulmaformrails::fieldhelpers#bulma_time_select()","bulmaformrails::messageboxhelpers#bulma_validation_box()"],"info":[["BulmaFormRails","","BulmaFormRails.html","","<p><img src=\"images/moderngeosystems_logo.png\">\n"],["BulmaFormRails::FieldHelpers","","BulmaFormRails/FieldHelpers.html","","<p><img src=\"../images/moderngeosystems_logo.png\">\n<p>This Ruby on Rails Helper module allows
|
1
|
+
var search_data = {"index":{"searchIndex":["bulmaformrails","fieldhelpers","formpagehelpers","headerandfooterhelpers","messageboxhelpers","subformhelpers","bulma_check_box()","bulma_child_objects()","bulma_custom_field()","bulma_datetime_select()","bulma_edit_form_page()","bulma_form_footer()","bulma_index_header()","bulma_input()","bulma_message_box()","bulma_new_form_page()","bulma_radio_group()","bulma_select()","bulma_text_area()","bulma_time_select()","bulma_validation_box()"],"longSearchIndex":["bulmaformrails","bulmaformrails::fieldhelpers","bulmaformrails::formpagehelpers","bulmaformrails::headerandfooterhelpers","bulmaformrails::messageboxhelpers","bulmaformrails::subformhelpers","bulmaformrails::fieldhelpers#bulma_check_box()","bulmaformrails::subformhelpers#bulma_child_objects()","bulmaformrails::fieldhelpers#bulma_custom_field()","bulmaformrails::fieldhelpers#bulma_datetime_select()","bulmaformrails::formpagehelpers#bulma_edit_form_page()","bulmaformrails::headerandfooterhelpers#bulma_form_footer()","bulmaformrails::headerandfooterhelpers#bulma_index_header()","bulmaformrails::fieldhelpers#bulma_input()","bulmaformrails::messageboxhelpers#bulma_message_box()","bulmaformrails::formpagehelpers#bulma_new_form_page()","bulmaformrails::fieldhelpers#bulma_radio_group()","bulmaformrails::fieldhelpers#bulma_select()","bulmaformrails::fieldhelpers#bulma_text_area()","bulmaformrails::fieldhelpers#bulma_time_select()","bulmaformrails::messageboxhelpers#bulma_validation_box()"],"info":[["BulmaFormRails","","BulmaFormRails.html","","<p><img src=\"images/moderngeosystems_logo.png\">\n<p>moderngeosystems.com\n"],["BulmaFormRails::FieldHelpers","","BulmaFormRails/FieldHelpers.html","","<p><img src=\"../images/moderngeosystems_logo.png\">\n<p>moderngeosystems.com\n<p>This Ruby on Rails Helper module allows …\n"],["BulmaFormRails::FormPageHelpers","","BulmaFormRails/FormPageHelpers.html","","<p><img src=\"../images/moderngeosystems_logo.png\">\n<p>moderngeosystems.com\n<p>This Ruby on Rails Helper module allows …\n"],["BulmaFormRails::HeaderAndFooterHelpers","","BulmaFormRails/HeaderAndFooterHelpers.html","","<p><img src=\"../images/moderngeosystems_logo.png\">\n<p>moderngeosystems.com\n<p>This Ruby on Rails Helper module allows …\n"],["BulmaFormRails::MessageBoxHelpers","","BulmaFormRails/MessageBoxHelpers.html","","<p><img src=\"../images/moderngeosystems_logo.png\">\n<p>moderngeosystems.com\n<p>This Ruby on Rails Helper module allows …\n"],["BulmaFormRails::SubformHelpers","","BulmaFormRails/SubformHelpers.html","","<p><img src=\"../images/moderngeosystems_logo.png\">\n<p>moderngeosystems.com\n<p>This Ruby on Rails Helper module supports …\n"],["bulma_check_box","BulmaFormRails::FieldHelpers","BulmaFormRails/FieldHelpers.html#method-i-bulma_check_box","(form_or_object, field_name, options = {})","<p>Render a labeled checkbox field.\n<p><code>form_or_object</code> - the form or object\n<p><code>field_name</code> - a symbol representing …\n"],["bulma_child_objects","BulmaFormRails::SubformHelpers","BulmaFormRails/SubformHelpers.html#method-i-bulma_child_objects","(collection, name, attributes_key, add_child_path, options = {})","<p>Renders a child objects collection management UI subform, including row addition and deletion buttons …\n"],["bulma_custom_field","BulmaFormRails::FieldHelpers","BulmaFormRails/FieldHelpers.html#method-i-bulma_custom_field","(form_or_object, field_name, options = {}, &block)","<p>Render a labeled field with custom content.\n<p><code>form_or_object</code> - the form or object\n<p><code>field_name</code> - a symbol representing …\n"],["bulma_datetime_select","BulmaFormRails::FieldHelpers","BulmaFormRails/FieldHelpers.html#method-i-bulma_datetime_select","(form_or_object, field_name, options = {}, html_options = {})","<p>Render a labeled date+time selection field.\n<p><code>form_or_object</code> - the form or object\n<p><code>field_name</code> - a symbol representing …\n"],["bulma_edit_form_page","BulmaFormRails::FormPageHelpers","BulmaFormRails/FormPageHelpers.html#method-i-bulma_edit_form_page","(name, model, models_path, model_path)","<p>Render a standard model edit form page.\n<p><code>name</code> - a symbol representing the model name\n<p><code>model</code> - the model object …\n"],["bulma_form_footer","BulmaFormRails::HeaderAndFooterHelpers","BulmaFormRails/HeaderAndFooterHelpers.html#method-i-bulma_form_footer","(form, models_path, options = {}, &block)","<p>Render a standard model form page footer.\n<p><code>form</code> - the form object\n<p><code>models_path</code> - the controller URL path …\n"],["bulma_index_header","BulmaFormRails::HeaderAndFooterHelpers","BulmaFormRails/HeaderAndFooterHelpers.html#method-i-bulma_index_header","(name, models_path)","<p>Render the header for a standard index page. Automatically calls <code>bulma_message_box</code>.\n<p><code>name</code> - a symbol representing …\n"],["bulma_input","BulmaFormRails::FieldHelpers","BulmaFormRails/FieldHelpers.html#method-i-bulma_input","(form_or_object, field_name, type = :text, options = {})","<p>Render a labeled input field. Mandatory parameters:\n<p><code>form_or_object</code> - the form or object\n<p><code>field_name</code> - a …\n"],["bulma_message_box","BulmaFormRails::MessageBoxHelpers","BulmaFormRails/MessageBoxHelpers.html#method-i-bulma_message_box","()","<p>Render a standard flash messages box. Automatically included with <code>bulma_validation_box</code> and <code>bulma_index_header</code> …\n"],["bulma_new_form_page","BulmaFormRails::FormPageHelpers","BulmaFormRails/FormPageHelpers.html#method-i-bulma_new_form_page","(name, model, models_path)","<p>Render a standard model creation form page.\n<p><code>name</code> - a symbol representing the model name\n<p><code>model</code> - the model …\n"],["bulma_radio_group","BulmaFormRails::FieldHelpers","BulmaFormRails/FieldHelpers.html#method-i-bulma_radio_group","(form_or_object, field_name, choices, options = {})","<p>Render a labeled radio group field.\n<p><code>form_or_object</code> - the form or object\n<p><code>field_name</code> - a symbol representing …\n"],["bulma_select","BulmaFormRails::FieldHelpers","BulmaFormRails/FieldHelpers.html#method-i-bulma_select","(form_or_object, field_name, choices, options = {}, html_options = {})","<p>Render a labeled selection field.\n<p><code>form_or_object</code> - the form or object\n<p><code>field_name</code> - a symbol representing …\n"],["bulma_text_area","BulmaFormRails::FieldHelpers","BulmaFormRails/FieldHelpers.html#method-i-bulma_text_area","(form_or_object, field_name, options = {})","<p>Render a labeled text area field.\n<p><code>form_or_object</code> - the form or object\n<p><code>field_name</code> - a symbol representing …\n"],["bulma_time_select","BulmaFormRails::FieldHelpers","BulmaFormRails/FieldHelpers.html#method-i-bulma_time_select","(form_or_object, field_name, options = {}, html_options = {})","<p>Render a labeled time selection field.\n<p><code>form_or_object</code> - the form or object\n<p><code>field_name</code> - a symbol representing …\n"],["bulma_validation_box","BulmaFormRails::MessageBoxHelpers","BulmaFormRails/MessageBoxHelpers.html#method-i-bulma_validation_box","(model)","<p>Render a standard model validation messages box. Automatically calls <code>bulma_message_box</code>.\n<p><code>model</code> - the model …\n\n"]]}}
|
data/doc/js/search_index.js.gz
CHANGED
Binary file
|
@@ -1,9 +1,14 @@
|
|
1
1
|
require 'rexml/document'
|
2
2
|
|
3
|
+
# rdoc-image:images/moderngeosystems_logo.png
|
4
|
+
#
|
5
|
+
# https://moderngeosystems.com
|
3
6
|
module BulmaFormRails
|
4
7
|
|
5
8
|
# rdoc-image:../images/moderngeosystems_logo.png
|
6
9
|
#
|
10
|
+
# https://moderngeosystems.com
|
11
|
+
#
|
7
12
|
# This Ruby on Rails Helper module allows easy and efficient web form construction with labeled fields of different types.
|
8
13
|
module FieldHelpers
|
9
14
|
|
@@ -1,10 +1,11 @@
|
|
1
1
|
require 'rexml/document'
|
2
2
|
|
3
|
-
# rdoc-image:images/moderngeosystems_logo.png
|
4
3
|
module BulmaFormRails
|
5
4
|
|
6
5
|
# rdoc-image:../images/moderngeosystems_logo.png
|
7
6
|
#
|
7
|
+
# https://moderngeosystems.com
|
8
|
+
#
|
8
9
|
# This Ruby on Rails Helper module allows easy and efficient flash and validation error box rendering.
|
9
10
|
module MessageBoxHelpers
|
10
11
|
|
data/package.json
CHANGED