x
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<fieldset class="midwest-form-field-group theme-primary"> <legend class="field-group-legend"> <span class="midwest-badge size-default theme-primary"> <span class="value">Shipping Address</span> </span> </legend> <div class="field-group-fields"> <div class="midwest-input midwest-form-group type-text" data-controller="midwest-input"> <div class="midwest-form-group__top"> <label class="midwest-label " for="street-edc8"> Street </label> </div> <input type="text" name="street" id="street-edc8" placeholder="123 Main St" data-midwest-input-target="input" /> </div> <div class="midwest-grid" style="--grid-width: 200px; --grid-gap: 1rem"> <div class="midwest-input midwest-form-group type-text" data-controller="midwest-input"> <div class="midwest-form-group__top"> <label class="midwest-label " for="city-edd0"> City </label> </div> <input type="text" name="city" id="city-edd0" placeholder="Springfield" data-midwest-input-target="input" /> </div> <div class="midwest-input midwest-form-group type-text" data-controller="midwest-input"> <div class="midwest-form-group__top"> <label class="midwest-label " for="state-edd8"> State </label> </div> <input type="text" name="state" id="state-edd8" placeholder="IL" data-midwest-input-target="input" /> </div> <div class="midwest-input midwest-form-group type-postal_code" data-controller="midwest-input"> <div class="midwest-form-group__top"> <label class="midwest-label " for="zip-ede0"> ZIP </label> </div> <input type="text" name="zip" id="zip-ede0" placeholder="62701" pattern="^(?(^00000(|-0000))|(d{5}(|-d{4})))$" inputmode="numeric" data-midwest-input-target="input" /> </div> </div> </div></fieldset>1
2
3
4
5
6
7
8
<%= midwest_form_field_group(label: "Shipping Address") do %> <%= midwest_form_input(name: "street", label: "Street", placeholder: "123 Main St") %> <%= midwest_grid(gap: 1) do %> <%= midwest_form_input(name: "city", label: "City", placeholder: "Springfield") %> <%= midwest_form_input(name: "state", label: "State", placeholder: "IL") %> <%= midwest_form_input(name: "zip", label: "ZIP", type: :postal_code, placeholder: "62701") %> <% end %><% end %>Default
This is the minimum code needed to make a field group.
No params configured.
No assets to display.
Add a .js or .css file alongside the component to see it here.
Figma embed for Field Group/default
Annotate a preview to embed its Figma design here:
@figma "https://figma.com/..."