mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-06 10:25:17 +08:00
30 lines
686 B
Markdown
30 lines
686 B
Markdown
|
# `@gradio/highlightedtext`
|
||
|
|
||
|
```html
|
||
|
<script>
|
||
|
import { BaseStaticHighlightedText, BaseInteractiveHighlightedText } from `@gradio/highlightedtext`;
|
||
|
</script>
|
||
|
```
|
||
|
|
||
|
|
||
|
BaseStaticHighlightedText
|
||
|
```javascript
|
||
|
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;
|
||
|
```
|
||
|
|
||
|
BaseInteractiveHighlightedText
|
||
|
```javascript
|
||
|
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;
|
||
|
```
|