@syncfusion/ej2-angular-spreadsheet 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 CHANGED
@@ -6,6 +6,17 @@
6
6
 
7
7
  #### Bug fixes
8
8
 
9
+ - `#I868784` - Issue with "image position not maintained properly during Excel file import in freeze-pane sheets" has been resolved.
10
+ - `#I859021` - Issue with "wrapped content not being aligned properly when the vertical alignment is set to middle" has been resolved.
11
+ - `#I864992` - Issue with "nested `ISNUMBER` formulas used in conjunction with `AND`, `OR`, and `NOT` formulas returning a `#VALUE!` error" has been resolved.
12
+ - `#I865273` - Issue with "spreadsheet becoming unresponsive when pasting large external Excel datasets during `Ctrl+V` operations" has been resolved.
13
+
14
+ ## 34.2.5 (2026-08-25)
15
+
16
+ ### Spreadsheet
17
+
18
+ #### Bug fixes
19
+
9
20
  - `#852961` - Issue with "script error occurring when opening an Excel file containing a scatter chart with a series name defined as a literal text value" has been resolved.
10
21
 
11
22
  ## 34.2.4 (2026-08-18)
package/README.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Angular Spreadsheet Editor Component
2
2
 
3
+ > **Using this package with an AI coding agent**
4
+ >
5
+ > Before generating Syncfusion® code, ask your AI coding agent to run the Syncfusion® setup using the following prompt:
6
+ >
7
+ > ```text
8
+ > 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.
9
+ > ```
10
+ > 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
+ >
12
+ > **Platform reference:** [https://ai.syncfusion.com/angular/llms.txt](https://ai.syncfusion.com/angular/llms.txt)
13
+
3
14
  The [Angular Spreadsheet Editor](https://www.syncfusion.com/spreadsheet-editor-sdk/angular-spreadsheet-editor?utm_source=npm&utm_medium=listing&utm_campaign=angular-spreadsheet-npm) is an user interactive component to organize and analyze data in tabular format with configuration options for customization. It will load data by importing an Excel/CSV file or from local and remote data sources such as JSON, RESTful services, OData services, and more. The populated data can be exported as Excel with xlsx, xls, CSV and PDF formats.
4
15
 
5
16
  <p align="center">
@@ -34,6 +45,7 @@ Create a new Angular application using the following Angular CLI command.
34
45
  ```bash
35
46
  ng new my-app
36
47
  cd my-app
48
+ ng serve
37
49
  ```
38
50
 
39
51
  ### Add Syncfusion<sup>®</sup> Spreadsheet package
@@ -52,6 +64,22 @@ The above command does the below configuration to your Angular app.
52
64
 
53
65
  This makes it easy to add the Syncfusion<sup>®</sup> Angular Spreadsheet module to your project and start using it in your application.
54
66
 
67
+ ## Add CSS references for Spreadsheet
68
+
69
+ Install the styles package from npm using the following command:
70
+
71
+ ```bash
72
+ npm install @syncfusion/ej2-tailwind3-theme
73
+ ```
74
+
75
+ The Tailwind 3 theme package includes an `index.css` file that automatically imports all required Spreadsheet styles. Add the required Spreadsheet theme style reference to **src/styles.css** file.
76
+
77
+ ```css
78
+ @import '../node_modules/@syncfusion/ej2-tailwind3-theme/styles/spreadsheet/index.css';
79
+ ```
80
+
81
+ For more themes, see the [themes documentation](https://ej2.syncfusion.com/angular/documentation/appearance/overview#theme-packages).
82
+
55
83
  ### Add Spreadsheet component
56
84
 
57
85
  In **src/app/app.component.ts**, use `<ejs-spreadsheet>` selector in the `template` attribute of the `@Component` directive to render the Syncfusion<sup>®</sup> Angular Spreadsheet component.
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@syncfusion/ej2-angular-spreadsheet",
3
- "version": "34.2.5",
3
+ "version": "34.2.6",
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.5",
10
- "@syncfusion/ej2-angular-base": "~34.2.4",
11
- "@syncfusion/ej2-spreadsheet": "34.2.5"
9
+ "@syncfusion/ej2-base": "~34.2.6",
10
+ "@syncfusion/ej2-angular-base": "~34.2.6",
11
+ "@syncfusion/ej2-spreadsheet": "34.2.6"
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.5';
4
+ exports.pkgVer = '^34.2.6';
5
5
  exports.moduleName = 'SpreadsheetModule';
6
- exports.themeVer = '~34.2.5';
6
+ exports.themeVer = '~34.2.6';
@@ -1,4 +1,4 @@
1
1
  export const pkgName = '@syncfusion/ej2-angular-spreadsheet';
2
- export const pkgVer = '^34.2.5';
2
+ export const pkgVer = '^34.2.6';
3
3
  export const moduleName = 'SpreadsheetModule';
4
- export const themeVer = '~34.2.5';
4
+ export const themeVer = '~34.2.6';