1.5.8 • Published 6 years ago

@cairocoder/svelte-typewriter v1.5.8

Weekly downloads
23
License
UNLICENSE
Repository
github
Last release
6 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

6 years ago

1.5.7

6 years ago

1.5.6

6 years ago

1.5.4

6 years ago

1.5.3

6 years ago

1.5.2

6 years ago

1.5.0

6 years ago

1.4.1

6 years ago

1.4.0

6 years ago

1.3.0

6 years ago

1.2.2

6 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.1.7

6 years ago

1.1.6

6 years ago

1.1.5

6 years ago

1.1.4

6 years ago

1.1.3

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago