1.1.1 • Published 3 months ago

edkit v1.1.1

Weekly downloads
-
License
LGPL-3.0
Repository
github
Last release
3 months ago

Edkit

Lightweight Rich Text Editor toolkit based on TypeScript

NPM Dependency CI & CD

NPM

Demo

https://idea2app.github.io/Edkit/React/

Usage

Application developers

  1. React + Bootstrap
  2. WebCell + Bootstrap

Library developers

Example with React

Features

Editor class decorator

@editor is compatible with Web components, React & other kinds of class components.

Web components

import { EditorComponent, editor } from 'edkit';

export interface HTMLEditor extends EditorComponent {}

@editor
export class HTMLEditor extends HTMLElement implements EditorComponent {
    // your class members...
}

React

import { Component } from 'react';
import { editor, EditorComponent } from 'edkit';

export interface HTMLEditor extends EditorComponent {}

@editor
export class HTMLEditor extends Component implements EditorComponent {
    // your class members...
}

Tool base classes

Text

  1. Bold
  2. Italic
  3. Underline
  4. Strike through
  5. H1
  6. H2
  7. H3
  8. Font Size down
  9. Font Size up
  10. Subscript
  11. Superscript
  12. Link

Color

  1. Fore Color
  2. Back Color

Layout

  1. Align Left
  2. Align Center
  3. Align Right
  4. Align Full
  5. Ordered list
  6. Unordered list
  7. Horizontal rule

Media

  1. Embed Web page
  2. Image
  3. Audio
  4. Video

Control

  1. Undo
  2. Redo
  3. Reset
  4. Clear
1.1.1

3 months ago

1.1.0

3 months ago

1.1.0-rc.0

3 months ago

1.0.2

9 months ago

1.0.1

11 months ago

1.0.0

11 months ago

1.0.0-rc.6

1 year ago

1.0.0-rc.5

2 years ago

1.0.0-rc.3

2 years ago

1.0.0-rc.4

2 years ago

1.0.0-rc.1

3 years ago

1.0.0-rc.2

3 years ago

1.0.0-beta

3 years ago

1.0.0-rc

3 years ago

1.0.0-alpha

3 years ago