@hufe921/canvas-editor 0.9.90 → 0.9.92

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 (28) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/dist/canvas-editor.es.js +312 -123
  3. package/dist/canvas-editor.es.js.map +1 -1
  4. package/dist/canvas-editor.umd.js +31 -30
  5. package/dist/canvas-editor.umd.js.map +1 -1
  6. package/dist/src/editor/core/actuator/Actuator.d.ts +7 -0
  7. package/dist/src/editor/core/actuator/handlers/positionContextChange.d.ts +3 -0
  8. package/dist/src/editor/core/command/Command.d.ts +1 -0
  9. package/dist/src/editor/core/command/CommandAdapt.d.ts +2 -1
  10. package/dist/src/editor/core/draw/Draw.d.ts +4 -0
  11. package/dist/src/editor/core/draw/control/date/DateControl.d.ts +1 -0
  12. package/dist/src/editor/core/draw/control/select/SelectControl.d.ts +1 -0
  13. package/dist/src/editor/core/draw/control/text/TextControl.d.ts +1 -0
  14. package/dist/src/editor/core/draw/frame/PageBorder.d.ts +9 -0
  15. package/dist/src/editor/core/draw/particle/date/DateParticle.d.ts +1 -0
  16. package/dist/src/editor/core/event/handlers/mousedown.d.ts +4 -0
  17. package/dist/src/editor/core/position/Position.d.ts +1 -0
  18. package/dist/src/editor/dataset/constant/PageBorder.d.ts +2 -0
  19. package/dist/src/editor/dataset/enum/Editor.d.ts +2 -1
  20. package/dist/src/editor/interface/Control.d.ts +2 -1
  21. package/dist/src/editor/interface/Editor.d.ts +6 -1
  22. package/dist/src/editor/interface/EventBus.d.ts +2 -1
  23. package/dist/src/editor/interface/Listener.d.ts +6 -0
  24. package/dist/src/editor/interface/PageBorder.d.ts +7 -0
  25. package/dist/src/editor/interface/table/Td.d.ts +4 -0
  26. package/dist/src/editor/interface/table/Tr.d.ts +2 -0
  27. package/dist/src/editor/utils/element.d.ts +3 -1
  28. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,45 @@
1
+ ## [0.9.92](https://github.com/Hufe921/canvas-editor/compare/v0.9.91...v0.9.92) (2024-09-06)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * update resizer size when scaling the page ([2351855](https://github.com/Hufe921/canvas-editor/commit/2351855e83c87da3b0999799102e6e051b456295))
7
+
8
+
9
+ ### Documentation
10
+
11
+ * update command markdown #792 ([3c598ba](https://github.com/Hufe921/canvas-editor/commit/3c598bae1a4fb10d74fd330e46f95aa386edc956)), closes [#792](https://github.com/Hufe921/canvas-editor/issues/792)
12
+ * update plugin markdown #789 ([91c68e8](https://github.com/Hufe921/canvas-editor/commit/91c68e8dcd117e3189bbb9385fca4c42b2074c23)), closes [#789](https://github.com/Hufe921/canvas-editor/issues/789)
13
+
14
+
15
+ ### Features
16
+
17
+ * add deletable and disabled attributes for table td #724 ([753510b](https://github.com/Hufe921/canvas-editor/commit/753510bac4f763ab2f034657d9efd7d9760f9d4a)), closes [#724](https://github.com/Hufe921/canvas-editor/issues/724)
18
+ * add design mode #795 ([55a58cd](https://github.com/Hufe921/canvas-editor/commit/55a58cdfb20ba7b642400314a9ea0d207e2e7dc4)), closes [#795](https://github.com/Hufe921/canvas-editor/issues/795)
19
+ * add executeFocus api #796 ([3c17631](https://github.com/Hufe921/canvas-editor/commit/3c176318e079d8f793367df552c1a3c6a6294840)), closes [#796](https://github.com/Hufe921/canvas-editor/issues/796)
20
+ * add extension property to Td and Tr element #799 ([0074781](https://github.com/Hufe921/canvas-editor/commit/0074781ef3753cdf9baf4cae77325de5d7b2e9df)), closes [#799](https://github.com/Hufe921/canvas-editor/issues/799)
21
+ * add position context change actuator #733 ([66c73e1](https://github.com/Hufe921/canvas-editor/commit/66c73e174c54106cdf35e6d40382bb4a7ceeae43)), closes [#733](https://github.com/Hufe921/canvas-editor/issues/733)
22
+ * highlight the background when the control is activated #740 ([b426b13](https://github.com/Hufe921/canvas-editor/commit/b426b13ec6ffbb5aebe6d008ddc3ccc8b5efaa05)), closes [#740](https://github.com/Hufe921/canvas-editor/issues/740)
23
+
24
+
25
+
26
+ ## [0.9.91](https://github.com/Hufe921/canvas-editor/compare/v0.9.90...v0.9.91) (2024-08-25)
27
+
28
+
29
+ ### Bug Fixes
30
+
31
+ * format different types of line breaks #769 ([f65ff87](https://github.com/Hufe921/canvas-editor/commit/f65ff87e44728322417d235d2347ceca25cc6667)), closes [#769](https://github.com/Hufe921/canvas-editor/issues/769)
32
+ * format initial data boundary error #771 #784 ([f62a315](https://github.com/Hufe921/canvas-editor/commit/f62a315a7bd04e49e9e17bc7737ccd1f0e751d69)), closes [#771](https://github.com/Hufe921/canvas-editor/issues/771) [#784](https://github.com/Hufe921/canvas-editor/issues/784)
33
+ * set row margin boundary error ([5285170](https://github.com/Hufe921/canvas-editor/commit/528517094373b5fa9ca2145bb259889db865a588))
34
+
35
+
36
+ ### Features
37
+
38
+ * add page border ([3f6bdf6](https://github.com/Hufe921/canvas-editor/commit/3f6bdf6fcb583ab370cb5abe3eafebf6100f415e))
39
+ * hit checkbox/radio control when click on label #651 ([31b76b6](https://github.com/Hufe921/canvas-editor/commit/31b76b6fb6640ea75383569cb16ad1b5a2ccf25f)), closes [#651](https://github.com/Hufe921/canvas-editor/issues/651)
40
+
41
+
42
+
1
43
  ## [0.9.90](https://github.com/Hufe921/canvas-editor/compare/v0.9.89...v0.9.90) (2024-08-18)
2
44
 
3
45