github上的canvas-editor按#765pr合并得到
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
会PS的小码农 0ef0cf9502 fix: IME position error #675 7 months ago
.github chore: update issue template 8 months ago
.vscode feat: add srcdoc property to IFrameBlock element #454 12 months ago
cypress test: update text test case 9 months ago
docs feat: add executeFocus api #796 7 months ago
scripts chore: update release script 2 years ago
src fix: IME position error #675 7 months ago
.editorconfig chore: update .editorConfig 2 years ago
.eslintrc chore: add eslint global variable 2 years ago
.gitignore feat:add docs 2 years ago
.prettierrc refactor: add prettier and format 2 years ago
CHANGELOG.md release: v0.9.91 7 months ago
LICENSE feat:add license 3 years ago
README.md chore: update README.md 2 years ago
cypress.config.ts chore: upgrade cypress version 1 year ago
favicon.png feat:rich text editor by canvas 3 years ago
index.html feat: add render mode #667 9 months ago
package-lock.json fix: IME position error #675 7 months ago
package.json fix: IME position error #675 7 months ago
pnpm-lock.yaml fix: the problem of unable to page across columns in the same row #41 9 months ago
tsconfig.json feat:publish npm package config 2 years ago
vite.config.ts chore: add id to style element #219 2 years ago
yarn.lock fix: IME position error #675 7 months ago

README.md

canvas-editor

Version License PRs

a rich text editor by canvas/svg

tips

  1. docs
  2. canvas-editor-plugin
  3. The render layer by svg is under development, see feature/svg
  4. The export pdf feature is available now, see feature/pdf

usage

npm i @hufe921/canvas-editor --save
<div class="canvas-editor"></div>
import Editor from '@hufe921/canvas-editor'

new Editor(document.querySelector('.canvas-editor'), {
  main: [
    {
      value: 'Hello World'
    }
  ]
})

next features

  1. table paging
  2. improve performance
  3. control rules
  4. CRDT

snapshot

image

install

yarn

dev

npm run dev

build

app

npm run build

lib

npm run lib