@hufe921/canvas-editor 0.9.48 → 0.9.50

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/CHANGELOG.md CHANGED
@@ -1,3 +1,53 @@
1
+ ## [0.9.50](https://github.com/Hufe921/canvas-editor/compare/v0.9.49...v0.9.50) (2023-09-28)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * remove block element last line break #287 ([0e67395](https://github.com/Hufe921/canvas-editor/commit/0e6739522d022775e39520a3cb9396531a57bf17)), closes [#287](https://github.com/Hufe921/canvas-editor/issues/287)
7
+
8
+
9
+ ### Chores
10
+
11
+ * update README.md ([5ad1414](https://github.com/Hufe921/canvas-editor/commit/5ad1414d82b88bccdb1779c550b75db28dfc18e7))
12
+
13
+
14
+ ### Documentation
15
+
16
+ * add plugin tips ([acdd107](https://github.com/Hufe921/canvas-editor/commit/acdd1075449a38270e3fe6fd0c9eb75f21c433cb))
17
+ * move the cursor shortcut ([33ebc59](https://github.com/Hufe921/canvas-editor/commit/33ebc59c721cffd54c14c51ed5d6174226c8a33b))
18
+
19
+
20
+ ### Features
21
+
22
+ * move the cursor the entire word #281 ([b38e4ed](https://github.com/Hufe921/canvas-editor/commit/b38e4ed0ddaa020c0dcbb0336efa32cc605e281c)), closes [#281](https://github.com/Hufe921/canvas-editor/issues/281)
23
+ * paper background color option ([46be700](https://github.com/Hufe921/canvas-editor/commit/46be70072852e6cb2c827d960734b54880fc0681))
24
+ * support for table cell slash #290 ([4269628](https://github.com/Hufe921/canvas-editor/commit/4269628cc46e7f9fdf0a9832601b2cf07e429aec)), closes [#290](https://github.com/Hufe921/canvas-editor/issues/290)
25
+ * typing on ios devices #286 ([8cf2b19](https://github.com/Hufe921/canvas-editor/commit/8cf2b19d3db2b48b840641c05156d1b3a0297b2b)), closes [#286](https://github.com/Hufe921/canvas-editor/issues/286)
26
+
27
+
28
+
29
+ ## [0.9.49](https://github.com/Hufe921/canvas-editor/compare/v0.9.48...v0.9.49) (2023-09-16)
30
+
31
+
32
+ ### Bug Fixes
33
+
34
+ * control minimum width when scaling ([05ddc2d](https://github.com/Hufe921/canvas-editor/commit/05ddc2db290e58a4ec0fb1b00ad5d64ce7f4cf3a))
35
+ * draw text element letter space error #282 ([c35f8ab](https://github.com/Hufe921/canvas-editor/commit/c35f8ab82c57849269a09fbad9d54d5085065d22)), closes [#282](https://github.com/Hufe921/canvas-editor/issues/282)
36
+ * omitObject function missing reference ([c45317e](https://github.com/Hufe921/canvas-editor/commit/c45317eced93e3d79129aea24776a8629d058050))
37
+
38
+
39
+ ### Features
40
+
41
+ * add set and get control value api #278 ([f754741](https://github.com/Hufe921/canvas-editor/commit/f754741f32de6c5d5c27d15dfc9fc31e284d29dc)), closes [#278](https://github.com/Hufe921/canvas-editor/issues/278)
42
+ * text element width #277 ([bb64626](https://github.com/Hufe921/canvas-editor/commit/bb646266b10897c3097ada5932f9b7cef317aebe)), closes [#277](https://github.com/Hufe921/canvas-editor/issues/277)
43
+
44
+
45
+ ### Performance Improvements
46
+
47
+ * adjusted the tab draw in the list style #283 ([fc0fdb2](https://github.com/Hufe921/canvas-editor/commit/fc0fdb2fe36966e3b8a51107d9929ca137e5681c)), closes [#283](https://github.com/Hufe921/canvas-editor/issues/283)
48
+
49
+
50
+
1
51
  ## [0.9.48](https://github.com/Hufe921/canvas-editor/compare/v0.9.47...v0.9.48) (2023-09-09)
2
52
 
3
53
 
package/README.md CHANGED
@@ -1,5 +1,11 @@
1
1
  <h1 align="center">canvas-editor</h1>
2
2
 
3
+ <p align="center">
4
+ <a href="https://www.npmjs.com/package/@hufe921/canvas-editor"><img src="https://img.shields.io/npm/v/@hufe921/canvas-editor.svg?sanitize=true" alt="Version"></a>
5
+ <a href="https://www.npmjs.com/package/@hufe921/canvas-editor"><img src="https://img.shields.io/npm/l/@hufe921/canvas-editor.svg?sanitize=true" alt="License"></a>
6
+ <a href="https://github.com/Hufe921/canvas-editor/issues/new/choose"><img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PRs"></a>
7
+ </p>
8
+
3
9
  <p align="center"> a rich text editor by canvas/svg</p>
4
10
 
5
11
  ## tips
@@ -14,24 +20,28 @@
14
20
  ```bash
15
21
  npm i @hufe921/canvas-editor --save
16
22
  ```
23
+
17
24
  ```html
18
25
  <div class="canvas-editor"></div>
19
26
  ```
27
+
20
28
  ```javascript
21
- import Editor from "@hufe921/canvas-editor"
29
+ import Editor from '@hufe921/canvas-editor'
22
30
 
23
- new Editor(document.querySelector(".canvas-editor"), [
31
+ new Editor(document.querySelector('.canvas-editor'), {
32
+ main: [
24
33
  {
25
- value: "Hello World"
34
+ value: 'Hello World'
26
35
  }
27
- ])
36
+ ]
37
+ })
28
38
  ```
29
39
 
30
40
  ## next features
31
41
 
32
- 1. improve performance
33
- 2. control rules
34
- 3. table paging
42
+ 1. table paging
43
+ 2. improve performance
44
+ 3. control rules
35
45
  4. [CRDT](https://github.com/Hufe921/canvas-editor/tree/feature/CRDT)
36
46
 
37
47
  ## snapshot
@@ -49,7 +59,9 @@ new Editor(document.querySelector(".canvas-editor"), [
49
59
  ## build
50
60
 
51
61
  #### app
62
+
52
63
  `npm run build`
53
64
 
54
65
  #### lib
55
- `npm run lib`
66
+
67
+ `npm run lib`