gradio/js/markdown/Example.svelte
Abubakar Abid 8dd6f4bc19
Handle the case where examples is null for all components (#7192)
* handle null examples

* add changeset

* add changeset

* lint

* merge conflict

* fixes

* add changeset

* stories

* feedback

* examples

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
2024-01-29 16:51:22 -08:00

36 lines
662 B
Svelte

<script lang="ts">
import MarkdownCode from "./shared/MarkdownCode.svelte";
export let value: string | null;
export let type: "gallery" | "table";
export let selected = false;
export let sanitize_html: boolean;
export let line_breaks: boolean;
export let latex_delimiters: {
left: string;
right: string;
display: boolean;
}[];
</script>
<div
class:table={type === "table"}
class:gallery={type === "gallery"}
class:selected
class="prose"
>
<MarkdownCode
message={value ? value : ""}
{latex_delimiters}
{sanitize_html}
{line_breaks}
chatbot={false}
/>
</div>
<style>
.gallery {
padding: var(--size-1) var(--size-2);
}
</style>