@syncfusion/ej2-vue-documenteditor 23.1.44 → 23.2.5

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 (54) hide show
  1. package/CHANGELOG.md +37 -0
  2. package/dist/ej2-vue-documenteditor.umd.min.js +1 -1
  3. package/dist/global/ej2-vue-documenteditor.min.js +2 -2
  4. package/package.json +8 -8
  5. package/styles/bootstrap-dark.css +74 -0
  6. package/styles/bootstrap.css +74 -0
  7. package/styles/bootstrap4.css +74 -0
  8. package/styles/bootstrap5-dark.css +74 -0
  9. package/styles/bootstrap5.css +74 -0
  10. package/styles/document-editor/bootstrap-dark.css +8 -0
  11. package/styles/document-editor/bootstrap.css +8 -0
  12. package/styles/document-editor/bootstrap4.css +8 -0
  13. package/styles/document-editor/bootstrap5-dark.css +8 -0
  14. package/styles/document-editor/bootstrap5.css +8 -0
  15. package/styles/document-editor/fabric-dark.css +8 -0
  16. package/styles/document-editor/fabric.css +8 -0
  17. package/styles/document-editor/fluent-dark.css +8 -0
  18. package/styles/document-editor/fluent.css +8 -0
  19. package/styles/document-editor/highcontrast.css +8 -0
  20. package/styles/document-editor/material-dark.css +8 -0
  21. package/styles/document-editor/material.css +8 -0
  22. package/styles/document-editor/material3-dark.css +8 -0
  23. package/styles/document-editor/material3.css +8 -0
  24. package/styles/document-editor/tailwind-dark.css +8 -0
  25. package/styles/document-editor/tailwind.css +8 -0
  26. package/styles/document-editor-container/bootstrap-dark.css +66 -0
  27. package/styles/document-editor-container/bootstrap.css +66 -0
  28. package/styles/document-editor-container/bootstrap4.css +66 -0
  29. package/styles/document-editor-container/bootstrap5-dark.css +66 -0
  30. package/styles/document-editor-container/bootstrap5.css +66 -0
  31. package/styles/document-editor-container/fabric-dark.css +66 -0
  32. package/styles/document-editor-container/fabric.css +66 -0
  33. package/styles/document-editor-container/fluent-dark.css +66 -0
  34. package/styles/document-editor-container/fluent.css +66 -0
  35. package/styles/document-editor-container/highcontrast-light.css +66 -0
  36. package/styles/document-editor-container/highcontrast.css +66 -0
  37. package/styles/document-editor-container/material-dark.css +66 -0
  38. package/styles/document-editor-container/material.css +66 -0
  39. package/styles/document-editor-container/material3-dark.css +69 -0
  40. package/styles/document-editor-container/material3.css +69 -0
  41. package/styles/document-editor-container/tailwind-dark.css +66 -0
  42. package/styles/document-editor-container/tailwind.css +66 -0
  43. package/styles/fabric-dark.css +74 -0
  44. package/styles/fabric.css +74 -0
  45. package/styles/fluent-dark.css +74 -0
  46. package/styles/fluent.css +74 -0
  47. package/styles/highcontrast-light.css +66 -0
  48. package/styles/highcontrast.css +74 -0
  49. package/styles/material-dark.css +74 -0
  50. package/styles/material.css +74 -0
  51. package/styles/material3-dark.css +77 -0
  52. package/styles/material3.css +77 -0
  53. package/styles/tailwind-dark.css +74 -0
  54. package/styles/tailwind.css +74 -0
package/CHANGELOG.md CHANGED
@@ -6,6 +6,43 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
+ - `#I512661` - Resolved the TOC updating issue in the attached document.
10
+ - `#I519561` - Resolved the track changes issues.
11
+ - `#I521082` - Resolved the script error issue while accepting tracked changes.
12
+ - `#I514000` - Resolved the script error while opening the attached document.
13
+ - `#I516382` - Resolved the page ordering issue in the exported document.
14
+ - `#I519451` - Resolved the script error issue when export as docx after accept all changes.
15
+ - `#I519571` - Resolved the issue in track changes on enter.
16
+ - `#I520505` - Resolved the issue of undo track changes with bullet numbering.
17
+
18
+ ## 23.2.4 (2023-11-20)
19
+
20
+ ### DocumentEditor
21
+
22
+ #### Bug Fixes
23
+
24
+ - `#I509814` - Resolved the bullet list character format losses issue when pasting the sfdt.
25
+ - `#I511667` - Resolved the TIFF image rendering issue with RTF file.
26
+ - `#I512264` - Resolved the section Break continuous issue.
27
+ - `#I513068` - Resolved script error issue while deleting the floating table.
28
+ - `#I513107` - Resolved the section break continuous issue when press the delete key.
29
+ - `#I504697` - Resolved the control hanging issue while opening the document.
30
+ - `#I512059` - Resolved the URL image not appear issue until interact with document.
31
+ - `#I509812` - Resolved the format losses issue when pasting the copied HTML text.
32
+
33
+ #### Features
34
+
35
+ - `#I491720` - Added support to set target element to append the Dialog and Context menu.
36
+ - `#I499751` - Added support to display the symbol field code text in client side.
37
+ - `#I501878` - Added support to preserve the carriage return character.
38
+ - `#I503197` - Added API to check whether the document is empty or not.
39
+
40
+ ## 23.1.44 (2023-11-07)
41
+
42
+ ### DocumentEditor
43
+
44
+ #### Bug Fixes
45
+
9
46
  - `#I510408` - Resolved keep para together issue with RTF file.
10
47
  - `#I509697` - Resolved script error throws while opening a document.
11
48
  - `#I511095` - Resolved the paragraph and table rendering issue on If field condition.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-vue-documenteditor.umd.min.js
3
- * version : 23.1.44
3
+ * version : 23.2.5
4
4
  * Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing