@hufe921/canvas-editor 0.9.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +53 -0
- package/dist/canvas-editor.es.js +11339 -0
- package/dist/canvas-editor.es.js.map +1 -0
- package/dist/canvas-editor.umd.js +59 -0
- package/dist/canvas-editor.umd.js.map +1 -0
- package/dist/src/editor/core/command/Command.d.ts +148 -0
- package/dist/src/editor/core/command/CommandAdapt.d.ts +91 -0
- package/dist/src/editor/core/contextmenu/ContextMenu.d.ts +25 -0
- package/dist/src/editor/core/contextmenu/menus/controlMenus.d.ts +2 -0
- package/dist/src/editor/core/contextmenu/menus/globalMenus.d.ts +2 -0
- package/dist/src/editor/core/contextmenu/menus/hyperlinkMenus.d.ts +2 -0
- package/dist/src/editor/core/contextmenu/menus/imageMenus.d.ts +2 -0
- package/dist/src/editor/core/contextmenu/menus/tableMenus.d.ts +2 -0
- package/dist/src/editor/core/cursor/Cursor.d.ts +15 -0
- package/dist/src/editor/core/cursor/CursorAgent.d.ts +15 -0
- package/dist/src/editor/core/draw/Draw.d.ts +134 -0
- package/dist/src/editor/core/draw/control/Control.d.ts +35 -0
- package/dist/src/editor/core/draw/control/checkbox/CheckboxControl.d.ts +15 -0
- package/dist/src/editor/core/draw/control/select/SelectControl.d.ts +21 -0
- package/dist/src/editor/core/draw/control/text/TextControl.d.ts +13 -0
- package/dist/src/editor/core/draw/frame/Background.d.ts +6 -0
- package/dist/src/editor/core/draw/frame/Header.d.ts +7 -0
- package/dist/src/editor/core/draw/frame/Margin.d.ts +7 -0
- package/dist/src/editor/core/draw/frame/PageNumber.d.ts +7 -0
- package/dist/src/editor/core/draw/frame/Watermark.d.ts +7 -0
- package/dist/src/editor/core/draw/interactive/Search.d.ts +26 -0
- package/dist/src/editor/core/draw/particle/CheckboxParticle.d.ts +7 -0
- package/dist/src/editor/core/draw/particle/HyperlinkParticle.d.ts +16 -0
- package/dist/src/editor/core/draw/particle/ImageParticle.d.ts +9 -0
- package/dist/src/editor/core/draw/particle/PageBreak.d.ts +12 -0
- package/dist/src/editor/core/draw/particle/Separator.d.ts +4 -0
- package/dist/src/editor/core/draw/particle/Subscript.d.ts +4 -0
- package/dist/src/editor/core/draw/particle/Superscript.d.ts +4 -0
- package/dist/src/editor/core/draw/particle/TextParticle.d.ts +18 -0
- package/dist/src/editor/core/draw/particle/block/BlockParticle.d.ts +14 -0
- package/dist/src/editor/core/draw/particle/block/modules/BaseBlock.d.ts +15 -0
- package/dist/src/editor/core/draw/particle/block/modules/IFrameBlock.d.ts +7 -0
- package/dist/src/editor/core/draw/particle/block/modules/VideoBlock.d.ts +6 -0
- package/dist/src/editor/core/draw/particle/date/DateParticle.d.ts +14 -0
- package/dist/src/editor/core/draw/particle/date/DatePicker.d.ts +41 -0
- package/dist/src/editor/core/draw/particle/latex/LaTexParticle.d.ts +7 -0
- package/dist/src/editor/core/draw/particle/latex/utils/LaTexUtils.d.ts +47 -0
- package/dist/src/editor/core/draw/particle/latex/utils/hershey.d.ts +10 -0
- package/dist/src/editor/core/draw/particle/latex/utils/symbols.d.ts +8 -0
- package/dist/src/editor/core/draw/particle/previewer/Previewer.d.ts +34 -0
- package/dist/src/editor/core/draw/particle/table/TableParticle.d.ts +11 -0
- package/dist/src/editor/core/draw/particle/table/TableTool.d.ts +22 -0
- package/dist/src/editor/core/draw/richtext/AbstractRichText.d.ts +14 -0
- package/dist/src/editor/core/draw/richtext/Highlight.d.ts +7 -0
- package/dist/src/editor/core/draw/richtext/Strikeout.d.ts +7 -0
- package/dist/src/editor/core/draw/richtext/Underline.d.ts +7 -0
- package/dist/src/editor/core/event/CanvasEvent.d.ts +37 -0
- package/dist/src/editor/core/event/GlobalEvent.d.ts +20 -0
- package/dist/src/editor/core/history/HistoryManager.d.ts +10 -0
- package/dist/src/editor/core/listener/Listener.d.ts +13 -0
- package/dist/src/editor/core/observer/ScrollObserver.d.ts +9 -0
- package/dist/src/editor/core/observer/SelectionObserver.d.ts +16 -0
- package/dist/src/editor/core/position/Position.d.ts +19 -0
- package/dist/src/editor/core/range/RangeManager.d.ts +21 -0
- package/dist/src/editor/core/register/Register.d.ts +14 -0
- package/dist/src/editor/core/shortcut/Shortcut.d.ts +14 -0
- package/dist/src/editor/core/shortcut/keys/richtextKeys.d.ts +2 -0
- package/dist/src/editor/core/worker/WorkerManager.d.ts +7 -0
- package/dist/src/editor/core/worker/works/wordCount.d.ts +1 -0
- package/dist/src/editor/dataset/constant/Checkbox.d.ts +2 -0
- package/dist/src/editor/dataset/constant/Common.d.ts +4 -0
- package/dist/src/editor/dataset/constant/ContextMenu.d.ts +3 -0
- package/dist/src/editor/dataset/constant/Control.d.ts +2 -0
- package/dist/src/editor/dataset/constant/Cursor.d.ts +1 -0
- package/dist/src/editor/dataset/constant/Editor.d.ts +1 -0
- package/dist/src/editor/dataset/constant/Element.d.ts +6 -0
- package/dist/src/editor/dataset/constant/Header.d.ts +2 -0
- package/dist/src/editor/dataset/constant/Regular.d.ts +4 -0
- package/dist/src/editor/dataset/constant/Watermark.d.ts +2 -0
- package/dist/src/editor/dataset/enum/Block.d.ts +4 -0
- package/dist/src/editor/dataset/enum/Control.d.ts +16 -0
- package/dist/src/editor/dataset/enum/Editor.d.ts +21 -0
- package/dist/src/editor/dataset/enum/Element.d.ts +16 -0
- package/dist/src/editor/dataset/enum/ElementStyle.d.ts +12 -0
- package/dist/src/editor/dataset/enum/Event.d.ts +5 -0
- package/dist/src/editor/dataset/enum/KeyMap.d.ts +82 -0
- package/dist/src/editor/dataset/enum/Observer.d.ts +6 -0
- package/dist/src/editor/dataset/enum/Row.d.ts +6 -0
- package/dist/src/editor/dataset/enum/table/TableTool.d.ts +4 -0
- package/dist/src/editor/index.d.ts +25 -0
- package/dist/src/editor/interface/Block.d.ts +12 -0
- package/dist/src/editor/interface/Checkbox.d.ts +13 -0
- package/dist/src/editor/interface/Common.d.ts +5 -0
- package/dist/src/editor/interface/Control.d.ts +50 -0
- package/dist/src/editor/interface/Draw.d.ts +30 -0
- package/dist/src/editor/interface/Editor.d.ts +55 -0
- package/dist/src/editor/interface/Element.d.ts +99 -0
- package/dist/src/editor/interface/Header.d.ts +6 -0
- package/dist/src/editor/interface/Listener.d.ts +29 -0
- package/dist/src/editor/interface/Margin.d.ts +1 -0
- package/dist/src/editor/interface/Position.d.ts +37 -0
- package/dist/src/editor/interface/Previewer.d.ts +11 -0
- package/dist/src/editor/interface/Range.d.ts +11 -0
- package/dist/src/editor/interface/Row.d.ts +14 -0
- package/dist/src/editor/interface/Search.d.ts +14 -0
- package/dist/src/editor/interface/Watermark.d.ts +7 -0
- package/dist/src/editor/interface/contextmenu/ContextMenu.d.ts +20 -0
- package/dist/src/editor/interface/shortcut/Shortcut.d.ts +10 -0
- package/dist/src/editor/interface/table/Colgroup.d.ts +4 -0
- package/dist/src/editor/interface/table/Td.d.ts +19 -0
- package/dist/src/editor/interface/table/Tr.d.ts +6 -0
- package/dist/src/editor/utils/clipboard.d.ts +5 -0
- package/dist/src/editor/utils/element.d.ts +10 -0
- package/dist/src/editor/utils/index.d.ts +8 -0
- package/dist/src/editor/utils/print.d.ts +1 -0
- package/package.json +60 -0
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.