mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-21 02:19:59 +08:00
0879be78b3
* use show_label param * add changeset * add changeset * * remove empty label spacing * increase empty area --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com> Co-authored-by: Abubakar Abid <abubakar@huggingface.co> |
||
---|---|---|
.. | ||
shared | ||
CHANGELOG.md | ||
HighlightedText.stories.svelte | ||
highlightedtext.test.ts | ||
Index.svelte | ||
package.json | ||
README.md |
@gradio/highlightedtext
<script>
import { BaseStaticHighlightedText, BaseInteractiveHighlightedText } from `@gradio/highlightedtext`;
</script>
BaseStaticHighlightedText
export let value: {
token: string;
class_or_confidence: string | number | null;
}[] = [];
export let show_legend = false;
export let show_inline_category = true;
export let color_map: Record<string, string> = {};
export let selectable = false;
BaseInteractiveHighlightedText
export let value: {
token: string;
class_or_confidence: string | number | null;
}[] = [];
export let show_legend = false;
export let color_map: Record<string, string> = {};
export let selectable = false;