@ -8,6 +8,7 @@
export let height = null
export let id = null
export let fullScreenOffset = 0
export let easyMDEOptions = null
</script>
<div class:error>
@ -18,6 +19,7 @@
{id}
{fullScreenOffset}
{disabled}
{easyMDEOptions}
on:change
/>
</div>
@ -12,6 +12,7 @@
const dispatch = createEventDispatcher()
const onChange = e => {
@ -29,6 +30,7 @@
{height}
on:change={onChange}
</Field>
export let disabled = false
export let easyMDEOptions
@ -53,6 +54,7 @@
easyMDEOptions={{
initialValue: value,
placeholder,
...easyMDEOptions,
}}
{/key}
@ -22,7 +22,6 @@
unorderedListStyle: "-",
maxHeight: scroll ? height : undefined,
minHeight: scroll ? undefined : height,
// hideIcons: ["fullscreen", "side-by-side"],
})
@ -61,6 +61,9 @@
{placeholder}
fullScreenOffset={offset}
hideIcons: $context.device.mobile ? ["side-by-side", "guide"] : [],
{/if}