1
0
Fork 0
mirror of synced 2024-09-06 04:31:18 +12:00
budibase/packages/standard-components/src/RichText.svelte
2021-01-19 11:50:13 +00:00

29 lines
615 B
Svelte

<script>
import { getContext } from "svelte"
import { RichText } from "@budibase/bbui"
const { styleable } = getContext("sdk")
const component = getContext("component")
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:value {options} />
</div>