tests / browser (firefox, firefox) (push) Successful in 1m54s
tests / browser (safari, webkit) (push) Successful in 2m17s
tests / lint (push) Successful in 59s
tests / feature (8.4) (push) Successful in 1m7s
tests / feature (8.5) (push) Successful in 1m0s
tests / browser (chrome, chromium) (push) Successful in 1m49s
<x-button> (label buttons, icon buttons and toggles in five sizes, with filled, tonal, outlined, elevated and text variants in any colour role), <x-tooltip>, <x-menu> with items, groups and separators, <x-button-group>, <x-group> as a connected button group, <x-split-button>, <x-fab>, <x-fab-menu> and <x-loading>. Sizes, colours and shapes come from androidx Compose Material 3's tokens; the loading indicator ports its Morph into SVG + SMIL. Menus follow WAI-ARIA's menu button pattern on popovers placed by CSS anchor positioning. Browser tests run in Chromium, Firefox and WebKit. The showcase fetches the icon names on demand: inlined, they tripped Pest's test server into HTTP 431s under Firefox. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01V9NnLxnPp8vaaurb3Z1MFy
54 lines
2.1 KiB
PHP
54 lines
2.1 KiB
PHP
@php
|
|
$examples = [
|
|
'A menu' => <<<'BLADE'
|
|
<x-menu label="Share actions">
|
|
<x-slot:trigger>
|
|
<x-button icon="more_vert" tooltip="More" />
|
|
</x-slot:trigger>
|
|
|
|
<x-menu-item label="Copy link" icon="content_copy" shortcut="⌘C" />
|
|
<x-menu-item label="Download" icon="download" />
|
|
<x-menu-item label="Rename" icon="edit" description="Change what recipients see" />
|
|
<x-menu-separator />
|
|
<x-menu-item label="Delete" icon="delete" />
|
|
</x-menu>
|
|
|
|
<x-menu label="Sort" position="bottom-end">
|
|
<x-slot:trigger>
|
|
<x-button label="Sort" icon-right="arrow_drop_down" variant="outlined" />
|
|
</x-slot:trigger>
|
|
|
|
<x-menu-group label="Sort by">
|
|
<x-menu-item label="Newest" :selected="true" keep-open />
|
|
<x-menu-item label="Largest" :selected="false" keep-open />
|
|
<x-menu-item label="Expiring soon" :selected="false" keep-open />
|
|
</x-menu-group>
|
|
<x-menu-separator />
|
|
<x-menu-item label="Reset" icon="restart_alt" disabled />
|
|
</x-menu>
|
|
|
|
<x-menu label="Vibrant" vibrant>
|
|
<x-slot:trigger>
|
|
<x-button label="Vibrant" variant="tonal" color="tertiary" />
|
|
</x-slot:trigger>
|
|
|
|
<x-menu-item label="Upload files" icon="upload_file" />
|
|
<x-menu-item label="Upload a folder" icon="drive_folder_upload" />
|
|
</x-menu>
|
|
BLADE,
|
|
];
|
|
@endphp
|
|
|
|
<section id="menus" class="scroll-mt-24 space-y-6">
|
|
<h2 class="type-headline-md">Menus</h2>
|
|
|
|
<p class="max-w-3xl type-body-md text-on-surface-variant">
|
|
<code><x-menu></code> with <code><x-menu-item></code>, <code><x-menu-group></code> and <code><x-menu-separator></code>.
|
|
Open one with the keyboard too: arrows, Home, End, a letter, Escape.
|
|
</p>
|
|
|
|
@foreach ($examples as $title => $code)
|
|
<x-showcase::example :$title :$code />
|
|
@endforeach
|
|
</section>
|