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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<ul class="midwest-dropdown-menu w-64 relative"> <div id="confirmation-12ad0" popover="auto" class="midwest-popover anchored midwest-confirmation" style="position-anchor: --confirmation-12ad0-button; anchor-name: --confirmation-12ad0"> <article data-controller="midwest-card" class="midwest-card min-w-[20rem]"> <div class="wrap"> <header> <h4>Confirmation</h4> </header> <section> <p class="w-full text-wrap">Are you sure you want to delete this item?</p> </section> <footer> <button popovertarget="confirmation-12ad0" type="button" autofocus="autofocus" class="midwest-button variant-outline size-default theme-primary" name="button" value="false"> <span class="midwest-button-content"><span class="translation_missing" title="translation missing: en.midwest.confirmation_component.no, locale: en">No</span></span> <div class="midwest-loading-icon" role="img" aria-label="Loading" aria-hidden="true" style="display: none"> <div class="midwest-loading-icon-inner"> <!-- By Sam Herbert (@sherb), for everyone. More @ http://goo.gl/7AJzbL --> <svg viewbox="0 0 120 30" xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="Midwest-LoadingIcon__Svg" focusable="false" aria-hidden="true"> <circle cx="15" cy="15" r="15"> <animate attributename="r" from="15" to="15" begin="0s" dur="0.8s" values="15;9;15" calcmode="linear" repeatcount="indefinite"></animate> <animate attributename="fill-opacity" from="1" to="1" begin="0s" dur="0.8s" values="1;.5;1" calcmode="linear" repeatcount="indefinite"></animate> </circle> <circle cx="60" cy="15" r="9" fill-opacity="0.3"> <animate attributename="r" from="9" to="9" begin="0s" dur="0.8s" values="9;15;9" calcmode="linear" repeatcount="indefinite"></animate> <animate attributename="fill-opacity" from="0.5" to="0.5" begin="0s" dur="0.8s" values=".5;1;.5" calcmode="linear" repeatcount="indefinite"></animate> </circle> <circle cx="105" cy="15" r="15"> <animate attributename="r" from="15" to="15" begin="0s" dur="0.8s" values="15;9;15" calcmode="linear" repeatcount="indefinite"></animate> <animate attributename="fill-opacity" from="1" to="1" begin="0s" dur="0.8s" values="1;.5;1" calcmode="linear" repeatcount="indefinite"></animate> </circle> </svg> </div> </div> </button> <a type="button" path="#" class="midwest-button variant-primary size-default theme-primary" name="button" rel="nofollow" data-method="delete" href="#"> <span class="midwest-button-content"><span class="translation_missing" title="translation missing: en.midwest.confirmation_component.yes, locale: en">Yes</span></span> <div class="midwest-loading-icon" role="img" aria-label="Loading" aria-hidden="true" style="display: none"> <div class="midwest-loading-icon-inner"> <!-- By Sam Herbert (@sherb), for everyone. More @ http://goo.gl/7AJzbL --> <svg viewbox="0 0 120 30" xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="Midwest-LoadingIcon__Svg" focusable="false" aria-hidden="true"> <circle cx="15" cy="15" r="15"> <animate attributename="r" from="15" to="15" begin="0s" dur="0.8s" values="15;9;15" calcmode="linear" repeatcount="indefinite"></animate> <animate attributename="fill-opacity" from="1" to="1" begin="0s" dur="0.8s" values="1;.5;1" calcmode="linear" repeatcount="indefinite"></animate> </circle> <circle cx="60" cy="15" r="9" fill-opacity="0.3"> <animate attributename="r" from="9" to="9" begin="0s" dur="0.8s" values="9;15;9" calcmode="linear" repeatcount="indefinite"></animate> <animate attributename="fill-opacity" from="0.5" to="0.5" begin="0s" dur="0.8s" values=".5;1;.5" calcmode="linear" repeatcount="indefinite"></animate> </circle> <circle cx="105" cy="15" r="15"> <animate attributename="r" from="15" to="15" begin="0s" dur="0.8s" values="15;9;15" calcmode="linear" repeatcount="indefinite"></animate> <animate attributename="fill-opacity" from="1" to="1" begin="0s" dur="0.8s" values="1;.5;1" calcmode="linear" repeatcount="indefinite"></animate> </circle> </svg> </div> </div> </a> </footer> </div> </article> </div> <button class="midwest-dropdown-item as-button" role="menuitem" popovertarget="confirmation-12ad0" style="anchor-name: --confirmation-12ad0-button;"> Delete item </button></ul>1
2
3
4
5
6
7
8
<ul class="midwest-dropdown-menu w-64 relative"> <%= midwest_dropdown_item( label: 'Delete item', as: :button, confirm: 'Are you sure you want to delete this item?', confirm_args: { path: '#', method: :delete } ) %></ul>With Confirmation
A button dropdown item that triggers a confirmation popover before acting.
No params configured.
No assets to display.
Add a .js or .css file alongside the component to see it here.
Figma embed for Dropdown Item/with_confirmation
Annotate a preview to embed its Figma design here:
@figma "https://figma.com/..."