svelte-quill

1.2.0 • Public • Published

svelte-quill

NPM

A package that contains a single action to be used on an element where you want to use QuillJS.

Demos

🌱 Simple demo

Installation

yarn add svelte-quill

Note: Install as a dev dependency (yarn add svelte-select --dev) if using Sapper to avoid a SSR error.

Usage

Simply use the action and listen to events using the text-change event. The event details contain the html (innerHTML, conveniently used with Sveltes @html directive) and text (a string of the contents).

<script>
  import { quill } from "svelte-quill";
 
  const options = { ... }
 
  let content;
</script> 
 
<div class="editor" use:quill={options} on:text-change={e => content =
e.detail}/>

Options

{
  modules: {
    toolbar: [
      [{ header: [1, 2, 3, false] }],
      ["bold", "italic", "underline", "strike"],
      ["link", "code-block"]
    ]
  },
  placeholder: "Type something...",
  theme: "snow"
}

To customize you can pass in any of these options like so:

{
  placeholder: "Something Custom?";
}

Styling

Styling is done using the regular Quill CSS. You can either import them using ´svelte:head´ or add the css to some global.css file.

Here is an example:

<svelte:head>
    <link href="//cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet">
</svelte:head>

Package Sidebar

Install

npm i svelte-quill

Weekly Downloads

340

Version

1.2.0

License

MIT

Unpacked Size

454 kB

Total Files

6

Last publish

Collaborators

  • kevmodrome