adf0d17497
publish / version_or_publish (push) Has been cancelled
storybook-build / changes (push) Has been cancelled
storybook-build / :storybook-build (push) Has been cancelled
Sync Gradio Skills to Hugging Face / sync-skills (push) Has been cancelled
functional / changes (push) Has been cancelled
functional / build-frontend (push) Has been cancelled
functional / functional-test-SSR=false (push) Has been cancelled
functional / functional-reload (push) Has been cancelled
js / changes (push) Has been cancelled
js / js-test (push) Has been cancelled
docs-build / changes (push) Has been cancelled
docs-build / docs-build (push) Has been cancelled
docs-build / website-build (push) Has been cancelled
functional / functional-test-SSR=true (push) Has been cancelled
hygiene / hygiene-test (push) Has been cancelled
python / changes (push) Has been cancelled
python / build (push) Has been cancelled
python / test-ubuntu-latest-flaky (push) Has been cancelled
python / test-ubuntu-latest-not-flaky (push) Has been cancelled
python / test-windows-latest-flaky (push) Has been cancelled
python / test-windows-latest-not-flaky (push) Has been cancelled
47 lines
1000 B
Svelte
47 lines
1000 B
Svelte
<script lang="ts">
|
|
let { on_click }: { on_click: (event: MouseEvent) => void } = $props();
|
|
</script>
|
|
|
|
<button
|
|
aria-label="Open cell menu"
|
|
class="cell-menu-button"
|
|
aria-haspopup="menu"
|
|
onclick={on_click}
|
|
ontouchstart={(event) => {
|
|
event.preventDefault();
|
|
const touch = event.touches[0];
|
|
const mouseEvent = new MouseEvent("click", {
|
|
clientX: touch.clientX,
|
|
clientY: touch.clientY,
|
|
bubbles: true,
|
|
cancelable: true,
|
|
view: window
|
|
});
|
|
on_click(mouseEvent);
|
|
}}
|
|
>
|
|
⋮
|
|
</button>
|
|
|
|
<style>
|
|
.cell-menu-button {
|
|
flex-shrink: 0;
|
|
display: none;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-color: var(--block-background-fill);
|
|
border: 1px solid var(--border-color-primary);
|
|
border-radius: var(--block-radius);
|
|
width: var(--size-5);
|
|
height: var(--size-5);
|
|
min-width: var(--size-5);
|
|
padding: 0;
|
|
margin-right: var(--spacing-sm);
|
|
z-index: 2;
|
|
position: absolute;
|
|
right: var(--size-1);
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
}
|
|
</style>
|