ht-emr 0.4.7 → 0.4.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.
Files changed (238) hide show
  1. package/dist/canvas-editor.js +25975 -0
  2. package/dist/canvas-editor.js.map +1 -0
  3. package/dist/canvas-editor.umd.cjs +549 -0
  4. package/dist/canvas-editor.umd.cjs.map +1 -0
  5. package/dist/src/editor/core/actuator/Actuator.d.ts +7 -0
  6. package/dist/src/editor/core/actuator/handlers/positionContextChange.d.ts +3 -0
  7. package/dist/src/editor/core/command/Command.d.ts +156 -0
  8. package/dist/src/editor/core/command/CommandAdapt.d.ts +222 -0
  9. package/dist/src/editor/core/contextmenu/ContextMenu.d.ts +31 -0
  10. package/dist/src/editor/core/contextmenu/menus/controlMenus.d.ts +2 -0
  11. package/dist/src/editor/core/contextmenu/menus/globalMenus.d.ts +2 -0
  12. package/dist/src/editor/core/contextmenu/menus/hyperlinkMenus.d.ts +2 -0
  13. package/dist/src/editor/core/contextmenu/menus/imageMenus.d.ts +2 -0
  14. package/dist/src/editor/core/contextmenu/menus/tableMenus.d.ts +2 -0
  15. package/dist/src/editor/core/cursor/Cursor.d.ts +41 -0
  16. package/dist/src/editor/core/cursor/CursorAgent.d.ts +18 -0
  17. package/dist/src/editor/core/draw/Draw.d.ts +309 -0
  18. package/dist/src/editor/core/draw/control/Control.d.ts +113 -0
  19. package/dist/src/editor/core/draw/control/button/ButtonControl.d.ts +29 -0
  20. package/dist/src/editor/core/draw/control/checkbox/CheckboxControl.d.ts +16 -0
  21. package/dist/src/editor/core/draw/control/date/DateControl.d.ts +24 -0
  22. package/dist/src/editor/core/draw/control/interactive/ControlSearch.d.ts +20 -0
  23. package/dist/src/editor/core/draw/control/menstrualHistory/MenstrualHistoryControl.d.ts +32 -0
  24. package/dist/src/editor/core/draw/control/number/Calculator.d.ts +16 -0
  25. package/dist/src/editor/core/draw/control/number/NumberControl.d.ts +22 -0
  26. package/dist/src/editor/core/draw/control/radio/RadioControl.d.ts +5 -0
  27. package/dist/src/editor/core/draw/control/richtext/Border.d.ts +10 -0
  28. package/dist/src/editor/core/draw/control/select/SelectControl.d.ts +28 -0
  29. package/dist/src/editor/core/draw/control/text/TextControl.d.ts +25 -0
  30. package/dist/src/editor/core/draw/control/textField/TextFieldControl.d.ts +25 -0
  31. package/dist/src/editor/core/draw/frame/Background.d.ts +11 -0
  32. package/dist/src/editor/core/draw/frame/Badge.d.ts +14 -0
  33. package/dist/src/editor/core/draw/frame/Footer.d.ts +27 -0
  34. package/dist/src/editor/core/draw/frame/Header.d.ts +27 -0
  35. package/dist/src/editor/core/draw/frame/LineNumber.d.ts +7 -0
  36. package/dist/src/editor/core/draw/frame/Margin.d.ts +7 -0
  37. package/dist/src/editor/core/draw/frame/PageBorder.d.ts +9 -0
  38. package/dist/src/editor/core/draw/frame/PageNumber.d.ts +9 -0
  39. package/dist/src/editor/core/draw/frame/Placeholder.d.ts +20 -0
  40. package/dist/src/editor/core/draw/frame/Watermark.d.ts +10 -0
  41. package/dist/src/editor/core/draw/graffiti/Graffiti.d.ts +19 -0
  42. package/dist/src/editor/core/draw/interactive/Area.d.ts +27 -0
  43. package/dist/src/editor/core/draw/interactive/Group.d.ts +18 -0
  44. package/dist/src/editor/core/draw/interactive/Search.d.ts +30 -0
  45. package/dist/src/editor/core/draw/particle/CheckboxParticle.d.ts +18 -0
  46. package/dist/src/editor/core/draw/particle/FetalHeartPositionParticle.d.ts +63 -0
  47. package/dist/src/editor/core/draw/particle/HyperlinkParticle.d.ts +17 -0
  48. package/dist/src/editor/core/draw/particle/ImageParticle.d.ts +23 -0
  49. package/dist/src/editor/core/draw/particle/LabelParticle.d.ts +8 -0
  50. package/dist/src/editor/core/draw/particle/LineBreakParticle.d.ts +10 -0
  51. package/dist/src/editor/core/draw/particle/ListParticle.d.ts +20 -0
  52. package/dist/src/editor/core/draw/particle/MacroParticle.d.ts +47 -0
  53. package/dist/src/editor/core/draw/particle/MenstrualHistoryParticle.d.ts +54 -0
  54. package/dist/src/editor/core/draw/particle/PageBreakParticle.d.ts +9 -0
  55. package/dist/src/editor/core/draw/particle/RadioParticle.d.ts +18 -0
  56. package/dist/src/editor/core/draw/particle/SeparatorParticle.d.ts +7 -0
  57. package/dist/src/editor/core/draw/particle/SubscriptParticle.d.ts +5 -0
  58. package/dist/src/editor/core/draw/particle/SuperscriptParticle.d.ts +5 -0
  59. package/dist/src/editor/core/draw/particle/TextParticle.d.ts +30 -0
  60. package/dist/src/editor/core/draw/particle/ToothPositionParticle.d.ts +89 -0
  61. package/dist/src/editor/core/draw/particle/WhiteSpaceParticle.d.ts +7 -0
  62. package/dist/src/editor/core/draw/particle/block/BlockParticle.d.ts +14 -0
  63. package/dist/src/editor/core/draw/particle/block/modules/BaseBlock.d.ts +33 -0
  64. package/dist/src/editor/core/draw/particle/block/modules/IFrameBlock.d.ts +9 -0
  65. package/dist/src/editor/core/draw/particle/block/modules/VideoBlock.d.ts +8 -0
  66. package/dist/src/editor/core/draw/particle/date/DateParticle.d.ts +13 -0
  67. package/dist/src/editor/core/draw/particle/date/DatePicker.d.ts +64 -0
  68. package/dist/src/editor/core/draw/particle/latex/LaTexParticle.d.ts +7 -0
  69. package/dist/src/editor/core/draw/particle/latex/utils/LaTexUtils.d.ts +47 -0
  70. package/dist/src/editor/core/draw/particle/latex/utils/hershey.d.ts +10 -0
  71. package/dist/src/editor/core/draw/particle/latex/utils/symbols.d.ts +8 -0
  72. package/dist/src/editor/core/draw/particle/previewer/Previewer.d.ts +47 -0
  73. package/dist/src/editor/core/draw/particle/table/TableOperate.d.ts +33 -0
  74. package/dist/src/editor/core/draw/particle/table/TableParticle.d.ts +29 -0
  75. package/dist/src/editor/core/draw/particle/table/TableTool.d.ts +31 -0
  76. package/dist/src/editor/core/draw/richtext/AbstractRichText.d.ts +11 -0
  77. package/dist/src/editor/core/draw/richtext/Highlight.d.ts +7 -0
  78. package/dist/src/editor/core/draw/richtext/Strikeout.d.ts +7 -0
  79. package/dist/src/editor/core/draw/richtext/Underline.d.ts +10 -0
  80. package/dist/src/editor/core/event/CanvasEvent.d.ts +56 -0
  81. package/dist/src/editor/core/event/GlobalEvent.d.ts +26 -0
  82. package/dist/src/editor/core/event/eventbus/EventBus.d.ts +9 -0
  83. package/dist/src/editor/core/event/handlers/click.d.ts +11 -0
  84. package/dist/src/editor/core/event/handlers/composition.d.ts +10 -0
  85. package/dist/src/editor/core/event/handlers/copy.d.ts +3 -0
  86. package/dist/src/editor/core/event/handlers/cut.d.ts +2 -0
  87. package/dist/src/editor/core/event/handlers/drag.d.ts +6 -0
  88. package/dist/src/editor/core/event/handlers/drop.d.ts +2 -0
  89. package/dist/src/editor/core/event/handlers/input.d.ts +5 -0
  90. package/dist/src/editor/core/event/handlers/keydown/backspace.d.ts +2 -0
  91. package/dist/src/editor/core/event/handlers/keydown/delete.d.ts +2 -0
  92. package/dist/src/editor/core/event/handlers/keydown/enter.d.ts +2 -0
  93. package/dist/src/editor/core/event/handlers/keydown/index.d.ts +2 -0
  94. package/dist/src/editor/core/event/handlers/keydown/left.d.ts +2 -0
  95. package/dist/src/editor/core/event/handlers/keydown/right.d.ts +2 -0
  96. package/dist/src/editor/core/event/handlers/keydown/tab.d.ts +2 -0
  97. package/dist/src/editor/core/event/handlers/keydown/updown.d.ts +2 -0
  98. package/dist/src/editor/core/event/handlers/mousedown.d.ts +7 -0
  99. package/dist/src/editor/core/event/handlers/mouseleave.d.ts +2 -0
  100. package/dist/src/editor/core/event/handlers/mousemove.d.ts +2 -0
  101. package/dist/src/editor/core/event/handlers/mouseup.d.ts +2 -0
  102. package/dist/src/editor/core/event/handlers/paste.d.ts +8 -0
  103. package/dist/src/editor/core/history/HistoryManager.d.ts +15 -0
  104. package/dist/src/editor/core/i18n/I18n.d.ts +12 -0
  105. package/dist/src/editor/core/listener/Listener.d.ts +15 -0
  106. package/dist/src/editor/core/observer/ImageObserver.d.ts +7 -0
  107. package/dist/src/editor/core/observer/MouseObserver.d.ts +13 -0
  108. package/dist/src/editor/core/observer/ScrollObserver.d.ts +20 -0
  109. package/dist/src/editor/core/observer/SelectionObserver.d.ts +22 -0
  110. package/dist/src/editor/core/override/Override.d.ts +8 -0
  111. package/dist/src/editor/core/plugin/Plugin.d.ts +7 -0
  112. package/dist/src/editor/core/position/Position.d.ts +37 -0
  113. package/dist/src/editor/core/range/RangeManager.d.ts +52 -0
  114. package/dist/src/editor/core/register/Register.d.ts +22 -0
  115. package/dist/src/editor/core/shortcut/Shortcut.d.ts +16 -0
  116. package/dist/src/editor/core/shortcut/keys/listKeys.d.ts +2 -0
  117. package/dist/src/editor/core/shortcut/keys/richtextKeys.d.ts +2 -0
  118. package/dist/src/editor/core/shortcut/keys/titleKeys.d.ts +2 -0
  119. package/dist/src/editor/core/worker/WorkerManager.d.ts +16 -0
  120. package/dist/src/editor/core/worker/works/catalog.d.ts +1 -0
  121. package/dist/src/editor/core/worker/works/group.d.ts +1 -0
  122. package/dist/src/editor/core/worker/works/value.d.ts +1 -0
  123. package/dist/src/editor/core/worker/works/wordCount.d.ts +1 -0
  124. package/dist/src/editor/core/zone/Zone.d.ts +21 -0
  125. package/dist/src/editor/core/zone/ZoneTip.d.ts +17 -0
  126. package/dist/src/editor/dataset/constant/Background.d.ts +2 -0
  127. package/dist/src/editor/dataset/constant/Badge.d.ts +2 -0
  128. package/dist/src/editor/dataset/constant/Checkbox.d.ts +2 -0
  129. package/dist/src/editor/dataset/constant/Common.d.ts +22 -0
  130. package/dist/src/editor/dataset/constant/ContextMenu.d.ts +64 -0
  131. package/dist/src/editor/dataset/constant/Control.d.ts +18 -0
  132. package/dist/src/editor/dataset/constant/Cursor.d.ts +3 -0
  133. package/dist/src/editor/dataset/constant/Editor.d.ts +6 -0
  134. package/dist/src/editor/dataset/constant/Element.d.ts +21 -0
  135. package/dist/src/editor/dataset/constant/Footer.d.ts +2 -0
  136. package/dist/src/editor/dataset/constant/Graffiti.d.ts +2 -0
  137. package/dist/src/editor/dataset/constant/Group.d.ts +2 -0
  138. package/dist/src/editor/dataset/constant/Header.d.ts +2 -0
  139. package/dist/src/editor/dataset/constant/ImgCaption.d.ts +2 -0
  140. package/dist/src/editor/dataset/constant/Label.d.ts +2 -0
  141. package/dist/src/editor/dataset/constant/LineBreak.d.ts +2 -0
  142. package/dist/src/editor/dataset/constant/LineNumber.d.ts +2 -0
  143. package/dist/src/editor/dataset/constant/List.d.ts +6 -0
  144. package/dist/src/editor/dataset/constant/PageBorder.d.ts +2 -0
  145. package/dist/src/editor/dataset/constant/PageBreak.d.ts +2 -0
  146. package/dist/src/editor/dataset/constant/PageNumber.d.ts +6 -0
  147. package/dist/src/editor/dataset/constant/Placeholder.d.ts +2 -0
  148. package/dist/src/editor/dataset/constant/Radio.d.ts +2 -0
  149. package/dist/src/editor/dataset/constant/Regular.d.ts +10 -0
  150. package/dist/src/editor/dataset/constant/Separator.d.ts +2 -0
  151. package/dist/src/editor/dataset/constant/Shortcut.d.ts +3 -0
  152. package/dist/src/editor/dataset/constant/Table.d.ts +2 -0
  153. package/dist/src/editor/dataset/constant/Title.d.ts +6 -0
  154. package/dist/src/editor/dataset/constant/Watermark.d.ts +2 -0
  155. package/dist/src/editor/dataset/constant/WhiteSpace.d.ts +2 -0
  156. package/dist/src/editor/dataset/constant/Zone.d.ts +2 -0
  157. package/dist/src/editor/dataset/enum/Area.d.ts +5 -0
  158. package/dist/src/editor/dataset/enum/Background.d.ts +10 -0
  159. package/dist/src/editor/dataset/enum/Block.d.ts +4 -0
  160. package/dist/src/editor/dataset/enum/Common.d.ts +26 -0
  161. package/dist/src/editor/dataset/enum/Control.d.ts +42 -0
  162. package/dist/src/editor/dataset/enum/Editor.d.ts +44 -0
  163. package/dist/src/editor/dataset/enum/Element.d.ts +47 -0
  164. package/dist/src/editor/dataset/enum/ElementStyle.d.ts +12 -0
  165. package/dist/src/editor/dataset/enum/Event.d.ts +5 -0
  166. package/dist/src/editor/dataset/enum/KeyMap.d.ts +83 -0
  167. package/dist/src/editor/dataset/enum/LineNumber.d.ts +4 -0
  168. package/dist/src/editor/dataset/enum/List.d.ts +20 -0
  169. package/dist/src/editor/dataset/enum/Observer.d.ts +6 -0
  170. package/dist/src/editor/dataset/enum/Row.d.ts +7 -0
  171. package/dist/src/editor/dataset/enum/Text.d.ts +12 -0
  172. package/dist/src/editor/dataset/enum/Title.d.ts +8 -0
  173. package/dist/src/editor/dataset/enum/VerticalAlign.d.ts +5 -0
  174. package/dist/src/editor/dataset/enum/Watermark.d.ts +4 -0
  175. package/dist/src/editor/dataset/enum/table/Table.d.ts +17 -0
  176. package/dist/src/editor/dataset/enum/table/TableTool.d.ts +4 -0
  177. package/dist/src/editor/index.d.ts +57 -0
  178. package/dist/src/editor/interface/Area.d.ts +55 -0
  179. package/dist/src/editor/interface/Background.d.ts +8 -0
  180. package/dist/src/editor/interface/Badge.d.ts +15 -0
  181. package/dist/src/editor/interface/Block.d.ts +15 -0
  182. package/dist/src/editor/interface/Catalog.d.ts +9 -0
  183. package/dist/src/editor/interface/Checkbox.d.ts +15 -0
  184. package/dist/src/editor/interface/Command.d.ts +3 -0
  185. package/dist/src/editor/interface/Common.d.ts +14 -0
  186. package/dist/src/editor/interface/Control.d.ts +245 -0
  187. package/dist/src/editor/interface/Cursor.d.ts +7 -0
  188. package/dist/src/editor/interface/Draw.d.ts +77 -0
  189. package/dist/src/editor/interface/Editor.d.ts +143 -0
  190. package/dist/src/editor/interface/Element.d.ts +316 -0
  191. package/dist/src/editor/interface/Event.d.ts +22 -0
  192. package/dist/src/editor/interface/EventBus.d.ts +40 -0
  193. package/dist/src/editor/interface/Footer.d.ts +8 -0
  194. package/dist/src/editor/interface/Graffiti.d.ts +13 -0
  195. package/dist/src/editor/interface/Group.d.ts +8 -0
  196. package/dist/src/editor/interface/Header.d.ts +8 -0
  197. package/dist/src/editor/interface/Label.d.ts +7 -0
  198. package/dist/src/editor/interface/LineBreak.d.ts +5 -0
  199. package/dist/src/editor/interface/LineNumber.d.ts +9 -0
  200. package/dist/src/editor/interface/Listener.d.ts +101 -0
  201. package/dist/src/editor/interface/Margin.d.ts +1 -0
  202. package/dist/src/editor/interface/PageBorder.d.ts +7 -0
  203. package/dist/src/editor/interface/PageBreak.d.ts +5 -0
  204. package/dist/src/editor/interface/PageNumber.d.ts +15 -0
  205. package/dist/src/editor/interface/Placeholder.d.ts +7 -0
  206. package/dist/src/editor/interface/Plugin.d.ts +3 -0
  207. package/dist/src/editor/interface/Position.d.ts +105 -0
  208. package/dist/src/editor/interface/Previewer.d.ts +13 -0
  209. package/dist/src/editor/interface/Radio.d.ts +15 -0
  210. package/dist/src/editor/interface/Range.d.ts +48 -0
  211. package/dist/src/editor/interface/Row.d.ts +23 -0
  212. package/dist/src/editor/interface/Search.d.ts +30 -0
  213. package/dist/src/editor/interface/Separator.d.ts +4 -0
  214. package/dist/src/editor/interface/Text.d.ts +13 -0
  215. package/dist/src/editor/interface/Title.d.ts +26 -0
  216. package/dist/src/editor/interface/Watermark.d.ts +15 -0
  217. package/dist/src/editor/interface/WhiteSpace.d.ts +5 -0
  218. package/dist/src/editor/interface/Zone.d.ts +3 -0
  219. package/dist/src/editor/interface/contextmenu/ContextMenu.d.ts +73 -0
  220. package/dist/src/editor/interface/i18n/I18n.d.ts +6 -0
  221. package/dist/src/editor/interface/shortcut/Shortcut.d.ts +13 -0
  222. package/dist/src/editor/interface/table/Colgroup.d.ts +4 -0
  223. package/dist/src/editor/interface/table/Table.d.ts +8 -0
  224. package/dist/src/editor/interface/table/Td.d.ts +43 -0
  225. package/dist/src/editor/interface/table/Tr.d.ts +12 -0
  226. package/dist/src/editor/utils/clipboard.d.ts +20 -0
  227. package/dist/src/editor/utils/element.d.ts +73 -0
  228. package/dist/src/editor/utils/hotkey.d.ts +1 -0
  229. package/dist/src/editor/utils/index.d.ts +34 -0
  230. package/dist/src/editor/utils/option.d.ts +3 -0
  231. package/dist/src/editor/utils/print.d.ts +7 -0
  232. package/dist/src/editor/utils/ua.d.ts +4 -0
  233. package/package.json +2 -8
  234. package/dist/assets/favicon-B2ZRofZp.png +0 -0
  235. package/dist/assets/index-B-zeM_hY.css +0 -1
  236. package/dist/assets/index-DDitMIYV.js +0 -977
  237. package/dist/assets/option-CG02tIgh.svg +0 -1
  238. package/dist/index.html +0 -537

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.