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

30 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>