@hufe921/canvas-editor 0.9.71 → 0.9.73

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 (29) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/dist/canvas-editor.es.js +398 -241
  3. package/dist/canvas-editor.es.js.map +1 -1
  4. package/dist/canvas-editor.umd.js +33 -33
  5. package/dist/canvas-editor.umd.js.map +1 -1
  6. package/dist/src/editor/core/cursor/Cursor.d.ts +1 -1
  7. package/dist/src/editor/core/draw/Draw.d.ts +4 -3
  8. package/dist/src/editor/core/draw/control/Control.d.ts +1 -1
  9. package/dist/src/editor/core/draw/control/interactive/ControlSearch.d.ts +1 -1
  10. package/dist/src/editor/core/draw/particle/TextParticle.d.ts +1 -0
  11. package/dist/src/editor/core/range/RangeManager.d.ts +4 -2
  12. package/dist/src/editor/dataset/constant/Common.d.ts +1 -0
  13. package/dist/src/editor/dataset/constant/Regular.d.ts +1 -0
  14. package/dist/src/editor/dataset/enum/List.d.ts +4 -2
  15. package/dist/src/editor/interface/Catalog.d.ts +1 -1
  16. package/dist/src/editor/interface/Common.d.ts +5 -5
  17. package/dist/src/editor/interface/Control.d.ts +4 -4
  18. package/dist/src/editor/interface/Draw.d.ts +5 -0
  19. package/dist/src/editor/interface/Editor.d.ts +1 -1
  20. package/dist/src/editor/interface/Element.d.ts +2 -2
  21. package/dist/src/editor/interface/Listener.d.ts +10 -10
  22. package/dist/src/editor/interface/Margin.d.ts +1 -1
  23. package/dist/src/editor/interface/Plugin.d.ts +2 -2
  24. package/dist/src/editor/interface/Position.d.ts +1 -1
  25. package/dist/src/editor/interface/Range.d.ts +9 -4
  26. package/dist/src/editor/interface/Row.d.ts +1 -1
  27. package/dist/src/editor/interface/Search.d.ts +1 -1
  28. package/dist/src/editor/interface/Title.d.ts +1 -1
  29. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,3 +1,45 @@
1
+ ## [0.9.73](https://github.com/Hufe921/canvas-editor/compare/v0.9.72...v0.9.73) (2024-04-12)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add context param to the shrinkBoundary function #503 ([6f690a8](https://github.com/Hufe921/canvas-editor/commit/6f690a805ff385ce4e6ed3959285ceeb730567bf)), closes [#503](https://github.com/Hufe921/canvas-editor/issues/503)
7
+ * checkbox list cannot be selected within the table ([632f8f5](https://github.com/Hufe921/canvas-editor/commit/632f8f5af8d626d28a306c212419565bf216c997))
8
+ * disable table pagination in continuous page mode ([d0500ac](https://github.com/Hufe921/canvas-editor/commit/d0500ac58345b689bd3f331342e7c08ca1684094))
9
+ * format list elements boundary error ([21807a6](https://github.com/Hufe921/canvas-editor/commit/21807a6f7e7b73adf0696ea848fb0b7ebdbf14ea))
10
+
11
+
12
+ ### Chores
13
+
14
+ * upgrade typescript version ([7e5a1ac](https://github.com/Hufe921/canvas-editor/commit/7e5a1ac04c1866ceb6b27131d7b2cf7f5fa46fe4))
15
+
16
+
17
+ ### Features
18
+
19
+ * add checkbox list #385 ([a546262](https://github.com/Hufe921/canvas-editor/commit/a546262b9d7e94011565198e0f18e7671b5439b0)), closes [#385](https://github.com/Hufe921/canvas-editor/issues/385)
20
+ * double click the selected text through the segmenter #510 ([3f8399d](https://github.com/Hufe921/canvas-editor/commit/3f8399de6299331c07e3d7c3c8d16dee64528d4a)), closes [#510](https://github.com/Hufe921/canvas-editor/issues/510)
21
+ * the getText method add list style conversion ([f80e004](https://github.com/Hufe921/canvas-editor/commit/f80e004917d53cbb3868c940c26d94f85d0d8615))
22
+ * the getText method add tab conversion #507 ([762f10c](https://github.com/Hufe921/canvas-editor/commit/762f10c37729a2d51dd3a79e6f3b8c9e3134926b)), closes [#507](https://github.com/Hufe921/canvas-editor/issues/507)
23
+
24
+
25
+
26
+ ## [0.9.72](https://github.com/Hufe921/canvas-editor/compare/v0.9.71...v0.9.72) (2024-04-06)
27
+
28
+
29
+ ### Bug Fixes
30
+
31
+ * cannot page when merge cells across columns in the same row #41 ([5851e61](https://github.com/Hufe921/canvas-editor/commit/5851e61cfcbb14fa199b507dc429917075659161)), closes [#41](https://github.com/Hufe921/canvas-editor/issues/41)
32
+ * format text class elements boundary error ([95b337d](https://github.com/Hufe921/canvas-editor/commit/95b337de05df74a07d086dbec6c6c52ab95ba43a))
33
+ * strikeout style rendering position #498 ([46e153d](https://github.com/Hufe921/canvas-editor/commit/46e153d588e78302e26827461a06682bbccd75aa)), closes [#498](https://github.com/Hufe921/canvas-editor/issues/498)
34
+ * table range drawing boundary error ([1df98b9](https://github.com/Hufe921/canvas-editor/commit/1df98b9359f3ec4184a7045cfcea93e156ef7f9f))
35
+
36
+
37
+ ### Features
38
+
39
+ * add isTable property to the RangeContext interface ([9ad991a](https://github.com/Hufe921/canvas-editor/commit/9ad991a3934fc284bb829d2652a739cfbec80eee))
40
+
41
+
42
+
1
43
  ## [0.9.71](https://github.com/Hufe921/canvas-editor/compare/v0.9.70...v0.9.71) (2024-03-29)
2
44
 
3
45