@hufe921/canvas-editor 0.9.74 → 0.9.76

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 (31) hide show
  1. package/CHANGELOG.md +46 -0
  2. package/dist/canvas-editor.es.js +438 -80
  3. package/dist/canvas-editor.es.js.map +1 -1
  4. package/dist/canvas-editor.umd.js +32 -31
  5. package/dist/canvas-editor.umd.js.map +1 -1
  6. package/dist/src/editor/core/command/Command.d.ts +1 -0
  7. package/dist/src/editor/core/command/CommandAdapt.d.ts +2 -0
  8. package/dist/src/editor/core/draw/Draw.d.ts +6 -0
  9. package/dist/src/editor/core/draw/control/checkbox/CheckboxControl.d.ts +2 -2
  10. package/dist/src/editor/core/draw/control/radio/RadioControl.d.ts +5 -0
  11. package/dist/src/editor/core/draw/particle/LineBreakParticle.d.ts +10 -0
  12. package/dist/src/editor/core/draw/particle/RadioParticle.d.ts +10 -0
  13. package/dist/src/editor/dataset/constant/LineBreak.d.ts +2 -0
  14. package/dist/src/editor/dataset/constant/Radio.d.ts +2 -0
  15. package/dist/src/editor/dataset/constant/Separator.d.ts +2 -0
  16. package/dist/src/editor/dataset/enum/Control.d.ts +4 -2
  17. package/dist/src/editor/dataset/enum/Element.d.ts +1 -0
  18. package/dist/src/editor/dataset/enum/Row.d.ts +2 -1
  19. package/dist/src/editor/interface/Checkbox.d.ts +1 -1
  20. package/dist/src/editor/interface/Control.d.ts +7 -1
  21. package/dist/src/editor/interface/Draw.d.ts +1 -0
  22. package/dist/src/editor/interface/Editor.d.ts +6 -0
  23. package/dist/src/editor/interface/Element.d.ts +7 -1
  24. package/dist/src/editor/interface/LineBreak.d.ts +5 -0
  25. package/dist/src/editor/interface/Position.d.ts +2 -0
  26. package/dist/src/editor/interface/Radio.d.ts +13 -0
  27. package/dist/src/editor/interface/Row.d.ts +1 -0
  28. package/dist/src/editor/interface/Separator.d.ts +4 -0
  29. package/dist/src/editor/interface/Title.d.ts +13 -0
  30. package/dist/src/editor/utils/clipboard.d.ts +1 -0
  31. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,49 @@
1
+ ## [0.9.76](https://github.com/Hufe921/canvas-editor/compare/v0.9.75...v0.9.76) (2024-05-04)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * checkbox custom size rendering error #529 ([5a5fd64](https://github.com/Hufe921/canvas-editor/commit/5a5fd64176de288c7d0e02ab4cbbc2607dc3df20)), closes [#529](https://github.com/Hufe921/canvas-editor/issues/529)
7
+ * copy style after title line break #531 ([2e14035](https://github.com/Hufe921/canvas-editor/commit/2e1403507f593d6c827f6be6d0cb75c5a1615e62)), closes [#531](https://github.com/Hufe921/canvas-editor/issues/531)
8
+ * paste elements boundary error ([34d59bb](https://github.com/Hufe921/canvas-editor/commit/34d59bbb589b9bb38c74f00b66b734b6342dd440))
9
+
10
+
11
+ ### Chores
12
+
13
+ * update radio menu icon ([0ae67ec](https://github.com/Hufe921/canvas-editor/commit/0ae67ec602df9c224ad134bff63b51f66d71aff7))
14
+
15
+
16
+ ### Features
17
+
18
+ * add getTitleValue api #536 ([15f52c5](https://github.com/Hufe921/canvas-editor/commit/15f52c5e43a733657e6079c7112bb9df3a8d5aa6)), closes [#536](https://github.com/Hufe921/canvas-editor/issues/536)
19
+ * add justify-all property to row flex #535 ([a1293af](https://github.com/Hufe921/canvas-editor/commit/a1293aff228595cafe2c730d9fb5dbdb1241c3d8)), closes [#535](https://github.com/Hufe921/canvas-editor/issues/535)
20
+ * add radio element #494 ([c6d9cff](https://github.com/Hufe921/canvas-editor/commit/c6d9cffc275ab4114a1c9a3ce931dc0843cb5585)), closes [#494](https://github.com/Hufe921/canvas-editor/issues/494)
21
+ * add separator option #530 ([7416a88](https://github.com/Hufe921/canvas-editor/commit/7416a881515a443a5736a673cd12732d44d65264)), closes [#530](https://github.com/Hufe921/canvas-editor/issues/530)
22
+
23
+
24
+
25
+ ## [0.9.75](https://github.com/Hufe921/canvas-editor/compare/v0.9.74...v0.9.75) (2024-04-27)
26
+
27
+
28
+ ### Bug Fixes
29
+
30
+ * control element rendering boundary error in table #527 ([f41cea2](https://github.com/Hufe921/canvas-editor/commit/f41cea244309e98ca880c74aaa4e0f3a2811ad66)), closes [#527](https://github.com/Hufe921/canvas-editor/issues/527)
31
+ * list position error when setting row flex #523 ([3fdd4de](https://github.com/Hufe921/canvas-editor/commit/3fdd4dedf434a45ded0c7114cf1cd0c8a1e94a18)), closes [#523](https://github.com/Hufe921/canvas-editor/issues/523)
32
+ * search for duplicate keyword boundary error #528 ([d4c6cd2](https://github.com/Hufe921/canvas-editor/commit/d4c6cd25f639ea5d933e2c4a2d006c96e3138219)), closes [#528](https://github.com/Hufe921/canvas-editor/issues/528)
33
+ * word break boundary error #521 ([4d1a0b6](https://github.com/Hufe921/canvas-editor/commit/4d1a0b69f876eada2d0c5d866bd25464d2587a79)), closes [#521](https://github.com/Hufe921/canvas-editor/issues/521)
34
+
35
+
36
+ ### Chores
37
+
38
+ * add editor option settings in the demo ([07956ca](https://github.com/Hufe921/canvas-editor/commit/07956caec20eea75c994e968429028ebcfb174f4))
39
+
40
+
41
+ ### Features
42
+
43
+ * draw line break marker #520 ([4c2b8fc](https://github.com/Hufe921/canvas-editor/commit/4c2b8fc20af98533796d5c4fec0d8d0c3d876116)), closes [#520](https://github.com/Hufe921/canvas-editor/issues/520)
44
+
45
+
46
+
1
47
  ## [0.9.74](https://github.com/Hufe921/canvas-editor/compare/v0.9.73...v0.9.74) (2024-04-19)
2
48
 
3
49