File size: 1,102 Bytes
2b06d1d | 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 | <script lang="ts">
import { IconButton } from "@gradio/atoms";
import { Edit, Clear, Undo } from "@gradio/icons";
import { createEventDispatcher } from "svelte";
import { _ } from "svelte-i18n";
export let editable = false;
export let undoable = false;
export let absolute = true;
const dispatch = createEventDispatcher<{
edit: never;
clear: never;
undo: never;
}>();
</script>
<div
class:not-absolute={!absolute}
style:position={absolute ? "absolute" : "static"}
>
{#if editable}
<IconButton
Icon={Edit}
label={$_("common.edit")}
on:click={() => dispatch("edit")}
/>
{/if}
{#if undoable}
<IconButton
Icon={Undo}
label={$_("common.undo")}
on:click={() => dispatch("undo")}
/>
{/if}
<IconButton
Icon={Clear}
label={$_("common.clear")}
on:click={(event) => {
dispatch("clear");
event.stopPropagation();
}}
/>
</div>
<style>
div {
display: flex;
top: var(--size-2);
right: var(--size-2);
justify-content: flex-end;
gap: var(--spacing-sm);
z-index: var(--layer-1);
}
.not-absolute {
margin: var(--size-1);
}
</style>
|