1
0
Fork 0
mirror of synced 2024-09-18 18:28:33 +12:00
budibase/packages/standard-components/src/RichText.svelte

28 lines
581 B
Svelte

<script>
import { getContext } from "svelte"
import { RichText } from "@budibase/bbui"
const { styleable } = getContext("sdk")
export let value = ""
// Need to determine what options we want to expose.
let options = {
modules: {
toolbar: [
[
{
header: [1, 2, 3, false],
},
],
["bold", "italic", "underline", "strike"],
],
},
placeholder: "Type something...",
theme: "snow",
}
</script>
<div use:styleable={$component.styles}>
<RichText bind:content={value} {options} />
</div>