@syncfusion/ej2-angular-documenteditor 34.2.5 → 34.2.6
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 +13 -0
- package/README.md +11 -0
- package/package.json +4 -4
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,19 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug Fixes
|
|
8
8
|
|
|
9
|
+
`#I857112` - Fixed an issue where paragraph borders were rendered incorrectly, causing text to overlap in the document.
|
|
10
|
+
`#I861033` - Fixed an issue where the Document Editor became unresponsive when resizing a table column.
|
|
11
|
+
`#I864175` - Fixed an issue where the document layout changed after modifying header table border properties.
|
|
12
|
+
`#I857044` - Fixed an issue where heading style changes were not retained when using the `applyStyle()` API.
|
|
13
|
+
`#I866483` - Fixed a script error that occurred in Java when importing a document.
|
|
14
|
+
`#I865409` - Fixed an issue where extra spacing appeared between headings in the document.
|
|
15
|
+
|
|
16
|
+
## 34.2.5 (2026-08-25)
|
|
17
|
+
|
|
18
|
+
### DocumentEditor
|
|
19
|
+
|
|
20
|
+
#### Bug Fixes
|
|
21
|
+
|
|
9
22
|
`#I858339` - Fixed an issue where checkboxes were missing when opening a document in the Document Editor.
|
|
10
23
|
`#I860738` - Resolved an issue where partial text deletion removed the entire cell content.
|
|
11
24
|
`#I859436` - Fixed an issue where picture content controls did not resize properly in the header.
|
package/README.md
CHANGED
|
@@ -23,6 +23,17 @@ Trusted by the world's leading companies
|
|
|
23
23
|
</a>
|
|
24
24
|
</p>
|
|
25
25
|
|
|
26
|
+
> **Using this package with an AI coding agent**
|
|
27
|
+
>
|
|
28
|
+
> Before generating Syncfusion® code, ask your AI coding agent to run the Syncfusion® setup using the following prompt:
|
|
29
|
+
>
|
|
30
|
+
> ```text
|
|
31
|
+
> Set up this project for Syncfusion® before generating code. Fetch and follow the official instructions at https://ai.syncfusion.com/agent-setup/prompt.md, then report the detected platform, installed skill pack, MCP status, and any required licensing action.
|
|
32
|
+
> ```
|
|
33
|
+
> The setup detects your project’s platform and loads the appropriate Syncfusion® skill pack. No Syncfusion® account or MCP key is required to install or read Syncfusion® agent skills.
|
|
34
|
+
>
|
|
35
|
+
> **Platform reference:** [https://ai.syncfusion.com/angular/llms.txt](https://ai.syncfusion.com/angular/llms.txt)
|
|
36
|
+
|
|
26
37
|
## Setup
|
|
27
38
|
|
|
28
39
|
### Create an Angular Application
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncfusion/ej2-angular-documenteditor",
|
|
3
|
-
"version": "34.2.
|
|
3
|
+
"version": "34.2.6",
|
|
4
4
|
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Angular",
|
|
5
5
|
"author": "Syncfusion Inc.",
|
|
6
6
|
"license": "SEE LICENSE IN license",
|
|
7
7
|
"schematics": "./schematics/collection.json",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@syncfusion/ej2-base": "~34.2.
|
|
10
|
-
"@syncfusion/ej2-angular-base": "~34.2.
|
|
11
|
-
"@syncfusion/ej2-documenteditor": "34.2.
|
|
9
|
+
"@syncfusion/ej2-base": "~34.2.6",
|
|
10
|
+
"@syncfusion/ej2-angular-base": "~34.2.6",
|
|
11
|
+
"@syncfusion/ej2-documenteditor": "34.2.6"
|
|
12
12
|
},
|
|
13
13
|
"keywords": [
|
|
14
14
|
"ej2-angular-documenteditor",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.pkgName = '@syncfusion/ej2-angular-documenteditor';
|
|
4
|
-
exports.pkgVer = '^34.2.
|
|
4
|
+
exports.pkgVer = '^34.2.6';
|
|
5
5
|
exports.moduleName = 'DocumentEditorModule, DocumentEditorContainerModule';
|
|
6
|
-
exports.themeVer = '~34.2.
|
|
6
|
+
exports.themeVer = '~34.2.6';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export const pkgName = '@syncfusion/ej2-angular-documenteditor';
|
|
2
|
-
export const pkgVer = '^34.2.
|
|
2
|
+
export const pkgVer = '^34.2.6';
|
|
3
3
|
export const moduleName = 'DocumentEditorModule, DocumentEditorContainerModule';
|
|
4
|
-
export const themeVer = '~34.2.
|
|
4
|
+
export const themeVer = '~34.2.6';
|