@syncfusion/ej2-angular-spreadsheet 34.2.6 → 34.2.8
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 +17 -5
- package/README.md +6 -3
- 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,10 +6,11 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug fixes
|
|
8
8
|
|
|
9
|
-
- `#
|
|
10
|
-
|
|
11
|
-
- `#
|
|
12
|
-
- `#
|
|
9
|
+
- `#867832` - Issue with "comment and reply timestamps displaying `Invalid Date` in Firefox and Safari" has been resolved.
|
|
10
|
+
|
|
11
|
+
- `#I869118` - Issue with "memory leak occurring during repeated spreadsheet mount and destroy operations due to the ribbon notes drop-down button not being destroyed properly" has been resolved.
|
|
12
|
+
- `#I867757` - Issue with "color picker popup displaying culture-based texts instead of the spreadsheet locale when language and culture are configured differently" has been resolved.
|
|
13
|
+
- `#I871835` - Issue with "Spreadsheet file menu tab remains interactive after being disabled using the `enableFileMenuItems` API" has been resolved.
|
|
13
14
|
|
|
14
15
|
## 34.2.5 (2026-08-25)
|
|
15
16
|
|
|
@@ -1469,7 +1470,18 @@ The Spreadsheet is an user interactive component to organize and analyze data in
|
|
|
1469
1470
|
- **Save:** Provides option to save spreadsheet data as excel file.
|
|
1470
1471
|
- **RTL:** Provides right-to-left mode which aligns content in the spreadsheet component from right to left.
|
|
1471
1472
|
- **Localization:** Provides inherent support to localize the UI.
|
|
1472
|
-
- **Accessibility:** Provides with built-in accessibility support which helps to access all the spreadsheet component features using the keyboard, screen readers, or other assistive technology devices.## 34.2.
|
|
1473
|
+
- **Accessibility:** Provides with built-in accessibility support which helps to access all the spreadsheet component features using the keyboard, screen readers, or other assistive technology devices.## 34.2.6 (2026-09-01)
|
|
1474
|
+
|
|
1475
|
+
### Spreadsheet
|
|
1476
|
+
|
|
1477
|
+
#### Bug fixes
|
|
1478
|
+
|
|
1479
|
+
- `#I868784` - Issue with "image position not maintained properly during Excel file import in freeze-pane sheets" has been resolved.
|
|
1480
|
+
- `#I859021` - Issue with "wrapped content not being aligned properly when the vertical alignment is set to middle" has been resolved.
|
|
1481
|
+
- `#I864992` - Issue with "nested `ISNUMBER` formulas used in conjunction with `AND`, `OR`, and `NOT` formulas returning a `#VALUE!` error" has been resolved.
|
|
1482
|
+
- `#I865273` - Issue with "spreadsheet becoming unresponsive when pasting large external Excel datasets during `Ctrl+V` operations" has been resolved.
|
|
1483
|
+
|
|
1484
|
+
## 34.2.3 (2026-08-11)
|
|
1473
1485
|
|
|
1474
1486
|
### Spreadsheet
|
|
1475
1487
|
|
package/README.md
CHANGED
|
@@ -2,12 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
> **Using this package with an AI coding agent**
|
|
4
4
|
>
|
|
5
|
-
> Before generating Syncfusion
|
|
5
|
+
> Before generating Syncfusion code, ask your AI coding agent to run the Syncfusion setup using the following prompt:
|
|
6
6
|
>
|
|
7
7
|
> ```text
|
|
8
|
-
> Set up this project for Syncfusion
|
|
8
|
+
> Set up this project for Syncfusion before generating code. Fetch
|
|
9
|
+
> and follow the official instructions at https://ai.syncfusion.com,
|
|
10
|
+
> then report the detected platform, installed skill pack, MCP
|
|
11
|
+
> status, and any required licensing action.
|
|
9
12
|
> ```
|
|
10
|
-
> The setup detects your project
|
|
13
|
+
> 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.
|
|
11
14
|
>
|
|
12
15
|
> **Platform reference:** [https://ai.syncfusion.com/angular/llms.txt](https://ai.syncfusion.com/angular/llms.txt)
|
|
13
16
|
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncfusion/ej2-angular-spreadsheet",
|
|
3
|
-
"version": "34.2.
|
|
3
|
+
"version": "34.2.8",
|
|
4
4
|
"description": "Feature-rich JavaScript Spreadsheet (Excel) control with built-in support for selection, editing, formatting, importing and exporting to Excel 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-spreadsheet": "34.2.
|
|
9
|
+
"@syncfusion/ej2-base": "~34.2.8",
|
|
10
|
+
"@syncfusion/ej2-angular-base": "~34.2.8",
|
|
11
|
+
"@syncfusion/ej2-spreadsheet": "34.2.8"
|
|
12
12
|
},
|
|
13
13
|
"keywords": [
|
|
14
14
|
"angular",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.pkgName = '@syncfusion/ej2-angular-spreadsheet';
|
|
4
|
-
exports.pkgVer = '^34.2.
|
|
4
|
+
exports.pkgVer = '^34.2.8';
|
|
5
5
|
exports.moduleName = 'SpreadsheetModule';
|
|
6
|
-
exports.themeVer = '~34.2.
|
|
6
|
+
exports.themeVer = '~34.2.8';
|