1.5.8 • Published 4 years ago

@cairocoder/svelte-typewriter v1.5.8

Weekly downloads
23
License
UNLICENSE
Repository
github
Last release
4 years ago

Svelte Typewriter

A rich text editor for Svelte using Typewriter. WIP.

Installing

npm install --save @cairocoder/svelte-typewriter

import { Editor } from '@cairocoder/svelte-typewriter';

<Editor
toolbar={[
  [ 'heading' ],
  [ 'bold', 'italic', 'link', 'code' ],
  [ 'image' ]
]}
on:text-change={({ detail }) => {
  console.log(detail) // change, contents, oldContents, oldSelection, selection, source
}}
on:text-changing={({ detail }) => {
  console.log(detail) // change, contents, oldContents, oldSelection, selection, source
}}
on:selection-change={({ detail }) => {
  console.log(detail) // selection, oldSelection, source
}}
/>

screenshot

Upcoming

  • Custom Toolbar Button API
  • Tests
1.5.8

4 years ago

1.5.7

4 years ago

1.5.6

4 years ago

1.5.4

5 years ago

1.5.3

5 years ago

1.5.2

5 years ago

1.5.0

5 years ago

1.4.1

5 years ago

1.4.0

5 years ago

1.3.0

5 years ago

1.2.2

5 years ago

1.2.1

5 years ago

1.2.0

5 years ago

1.1.7

5 years ago

1.1.6

5 years ago

1.1.5

5 years ago

1.1.4

5 years ago

1.1.3

5 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago