@hufe921/canvas-editor 0.9.22 → 0.9.23
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 +32 -0
- package/README.md +3 -3
- package/dist/canvas-editor.es.js +401 -127
- package/dist/canvas-editor.es.js.map +1 -1
- package/dist/canvas-editor.umd.js +19 -19
- package/dist/canvas-editor.umd.js.map +1 -1
- package/dist/src/editor/core/draw/Draw.d.ts +19 -6
- package/dist/src/editor/core/draw/frame/Header.d.ts +18 -1
- package/dist/src/editor/core/event/CanvasEvent.d.ts +1 -1
- package/dist/src/editor/core/event/handlers/click.d.ts +1 -1
- package/dist/src/editor/core/position/Position.d.ts +8 -4
- package/dist/src/editor/core/range/RangeManager.d.ts +1 -0
- package/dist/src/editor/core/zone/Zone.d.ts +15 -0
- package/dist/src/editor/dataset/constant/Header.d.ts +2 -0
- package/dist/src/editor/dataset/enum/Editor.d.ts +5 -0
- package/dist/src/editor/dataset/enum/Header.d.ts +5 -0
- package/dist/src/editor/index.d.ts +5 -5
- package/dist/src/editor/interface/Draw.d.ts +10 -1
- package/dist/src/editor/interface/Editor.d.ts +7 -2
- package/dist/src/editor/interface/Header.d.ts +3 -4
- package/dist/src/editor/interface/Position.d.ts +2 -0
- package/dist/src/editor/interface/Range.d.ts +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,35 @@
|
|
|
1
|
+
## [0.9.23](https://github.com/Hufe921/canvas-editor/compare/v0.9.22...v0.9.23) (2023-03-19)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* set editor zone method ([9de29ed](https://github.com/Hufe921/canvas-editor/commit/9de29ed934ffb9556e473911fdb715524f1d2fad))
|
|
7
|
+
* table cursor position in page header ([85a2bbe](https://github.com/Hufe921/canvas-editor/commit/85a2bbea60867d4314b571586785ad03dfd716da))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Documentation
|
|
11
|
+
|
|
12
|
+
* next features road map ([debc6c1](https://github.com/Hufe921/canvas-editor/commit/debc6c128383a45791763b230d6802b6219d6d8d))
|
|
13
|
+
* add page header ([6d47ce0](https://github.com/Hufe921/canvas-editor/commit/6d47ce0a67144a891a3cb16850bfc25396ba3b55))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* add header indicator ([86707ca](https://github.com/Hufe921/canvas-editor/commit/86707cad47381e8f807aece3ffc76e34f8cffa24))
|
|
19
|
+
* zoom page header ([c0fee3e](https://github.com/Hufe921/canvas-editor/commit/c0fee3ea143412928650aa44f4954fe8209ab264))
|
|
20
|
+
* export page header type ([23b6cd2](https://github.com/Hufe921/canvas-editor/commit/23b6cd28ad80bf8dc4ecf5968e53909681307c6d))
|
|
21
|
+
* paging cursor position ([7b4b33b](https://github.com/Hufe921/canvas-editor/commit/7b4b33b5c5d4b1c27224f7ee25d78f4ba3fe9619))
|
|
22
|
+
* page header boundary value ([ed79d25](https://github.com/Hufe921/canvas-editor/commit/ed79d2587ca2932e0c6e1229c72ac24d71d953fc))
|
|
23
|
+
* edit page header ([6082ab2](https://github.com/Hufe921/canvas-editor/commit/6082ab26d110d5c90e2742ee51688cdf3e4a41fa))
|
|
24
|
+
* render header element ([da2dfd3](https://github.com/Hufe921/canvas-editor/commit/da2dfd3a16d8e87689ea92aae9907cb4f9e21d50))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Tests
|
|
28
|
+
|
|
29
|
+
* update get editor value ([436d1de](https://github.com/Hufe921/canvas-editor/commit/436d1de2845599e5767833648ffc836647d7e292))
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
1
33
|
## [0.9.22](https://github.com/Hufe921/canvas-editor/compare/v0.9.21...v0.9.22) (2023-03-15)
|
|
2
34
|
|
|
3
35
|
|
package/README.md
CHANGED
|
@@ -28,14 +28,14 @@ new Editor(document.querySelector(".canvas-editor"), [
|
|
|
28
28
|
|
|
29
29
|
## next features
|
|
30
30
|
|
|
31
|
-
1.
|
|
32
|
-
2.
|
|
31
|
+
1. page header(WIP)
|
|
32
|
+
2. improve performance
|
|
33
33
|
3. control rules
|
|
34
34
|
4. table paging
|
|
35
35
|
|
|
36
36
|
## snapshot
|
|
37
37
|
|
|
38
|
-

|
|
39
39
|
|
|
40
40
|
## install
|
|
41
41
|
|