mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 18:31:06 +00:00
47 lines
No EOL
1.6 KiB
Text
47 lines
No EOL
1.6 KiB
Text
<script>
|
|
import { OverflowMenu, OverflowMenuItem } from "carbon-components-svelte";
|
|
import Preview from "../../components/Preview.svelte";
|
|
</script>
|
|
|
|
### Default
|
|
|
|
<OverflowMenu>
|
|
<OverflowMenuItem text="Manage credentials" />
|
|
<OverflowMenuItem href="https://cloud.ibm.com/docs/api-gateway/" text="API documentation" />
|
|
<OverflowMenuItem danger text="Delete service" />
|
|
</OverflowMenu>
|
|
|
|
### Flipped
|
|
|
|
<OverflowMenu open flipped>
|
|
<OverflowMenuItem text="Manage credentials" />
|
|
<OverflowMenuItem href="https://cloud.ibm.com/docs/api-gateway/" text="API documentation" />
|
|
<OverflowMenuItem danger text="Delete service" />
|
|
</OverflowMenu>
|
|
|
|
### Menu direction top
|
|
|
|
<OverflowMenu flipped direction="top">
|
|
<OverflowMenuItem text="Manage credentials" />
|
|
<OverflowMenuItem href="https://cloud.ibm.com/docs/api-gateway/" text="API documentation" />
|
|
<OverflowMenuItem danger text="Delete service" />
|
|
</OverflowMenu>
|
|
|
|
### Custom primary focus
|
|
|
|
By default, the first overflow menu item is focused when opening the dropdown.
|
|
|
|
<OverflowMenu>
|
|
<OverflowMenuItem text="Manage credentials" />
|
|
<OverflowMenuItem href="https://cloud.ibm.com/docs/api-gateway/" text="API documentation" />
|
|
<OverflowMenuItem primaryFocus danger text="Delete service" />
|
|
</OverflowMenu>
|
|
|
|
### Custom trigger slot
|
|
|
|
<OverflowMenu style="width: auto;">
|
|
<div slot="menu" style="padding: 1rem; color: red;">Custom trigger</div>
|
|
<OverflowMenuItem text="Manage credentials" />
|
|
<OverflowMenuItem href="https://cloud.ibm.com/docs/api-gateway/" text="API documentation" />
|
|
<OverflowMenuItem danger text="Delete service" />
|
|
</OverflowMenu> |