mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
* chore: update ignore rules, remove unused files * refactor(icons): use icons from carbon-icons-svelte@11 * docs(time-picker): fix default value * chore: upgrade carbon-icons-svelte to v11 * docs: update examples to use icons from carbon-icons-svelte@11 * docs: update number of icons [ci skip]
81 lines
2.3 KiB
Svelte
81 lines
2.3 KiB
Svelte
<script lang="ts">
|
|
import { OverflowMenu, OverflowMenuItem } from "../types";
|
|
import Add from "carbon-icons-svelte/lib/Add.svelte";
|
|
</script>
|
|
|
|
<OverflowMenu
|
|
on:close="{(e) => {
|
|
console.log(e.detail); // { index: number; text: string; }
|
|
}}"
|
|
>
|
|
<OverflowMenuItem text="Manage credentials" />
|
|
<OverflowMenuItem
|
|
href="https://cloud.ibm.com/docs/api-gateway/"
|
|
text="API documentation"
|
|
/>
|
|
<OverflowMenuItem danger text="Delete service" />
|
|
</OverflowMenu>
|
|
|
|
<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>
|
|
|
|
<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>
|
|
|
|
<OverflowMenu size="xl">
|
|
<OverflowMenuItem text="Manage credentials" />
|
|
<OverflowMenuItem
|
|
href="https://cloud.ibm.com/docs/api-gateway/"
|
|
text="API documentation"
|
|
/>
|
|
<OverflowMenuItem danger text="Delete service" />
|
|
</OverflowMenu>
|
|
|
|
<OverflowMenu size="sm">
|
|
<OverflowMenuItem text="Manage credentials" />
|
|
<OverflowMenuItem
|
|
href="https://cloud.ibm.com/docs/api-gateway/"
|
|
text="API documentation"
|
|
/>
|
|
<OverflowMenuItem danger text="Delete service" />
|
|
</OverflowMenu>
|
|
|
|
<OverflowMenu>
|
|
<OverflowMenuItem text="Manage credentials" />
|
|
<OverflowMenuItem
|
|
href="https://cloud.ibm.com/docs/api-gateway/"
|
|
text="API documentation"
|
|
/>
|
|
<OverflowMenuItem primaryFocus danger text="Delete service" />
|
|
</OverflowMenu>
|
|
|
|
<OverflowMenu icon="{Add}">
|
|
<OverflowMenuItem text="Manage credentials" />
|
|
<OverflowMenuItem
|
|
href="https://cloud.ibm.com/docs/api-gateway/"
|
|
text="API documentation"
|
|
/>
|
|
<OverflowMenuItem danger text="Delete service" />
|
|
</OverflowMenu>
|
|
|
|
<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>
|