@syncfusion/ej2-vue-spreadsheet 22.2.12 → 23.1.38
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 +12 -20
- package/dist/ej2-vue-spreadsheet.umd.min.js +2 -2
- package/dist/global/ej2-vue-spreadsheet.min.js +3 -3
- package/package.json +9 -9
- package/src/spreadsheet/cells.directive.d.ts +3 -1
- package/src/spreadsheet/chart.directive.d.ts +3 -1
- package/src/spreadsheet/columns.directive.d.ts +3 -1
- package/src/spreadsheet/conditionalformats.directive.d.ts +3 -1
- package/src/spreadsheet/definednames.directive.d.ts +3 -1
- package/src/spreadsheet/image.directive.d.ts +3 -1
- package/src/spreadsheet/ranges.directive.d.ts +3 -1
- package/src/spreadsheet/rows.directive.d.ts +3 -1
- package/src/spreadsheet/sheets.directive.d.ts +3 -1
- package/src/spreadsheet/spreadsheet.component.d.ts +3 -1
- package/styles/bootstrap-dark.css +27 -11
- package/styles/bootstrap.css +27 -11
- package/styles/bootstrap4.css +33 -11
- package/styles/bootstrap5-dark.css +27 -11
- package/styles/bootstrap5.css +27 -11
- package/styles/fabric-dark.css +27 -11
- package/styles/fabric.css +27 -11
- package/styles/fluent-dark.css +27 -11
- package/styles/fluent.css +27 -11
- package/styles/highcontrast-light.css +27 -11
- package/styles/highcontrast.css +27 -11
- package/styles/material-dark.css +27 -12
- package/styles/material.css +27 -12
- package/styles/material3-dark.css +27 -13
- package/styles/material3.css +27 -12
- package/styles/spreadsheet/bootstrap-dark.css +24 -11
- package/styles/spreadsheet/bootstrap.css +24 -11
- package/styles/spreadsheet/bootstrap4.css +30 -11
- package/styles/spreadsheet/bootstrap5-dark.css +24 -11
- package/styles/spreadsheet/bootstrap5.css +24 -11
- package/styles/spreadsheet/fabric-dark.css +24 -11
- package/styles/spreadsheet/fabric.css +24 -11
- package/styles/spreadsheet/fluent-dark.css +24 -11
- package/styles/spreadsheet/fluent.css +24 -11
- package/styles/spreadsheet/highcontrast-light.css +24 -11
- package/styles/spreadsheet/highcontrast.css +24 -11
- package/styles/spreadsheet/material-dark.css +24 -12
- package/styles/spreadsheet/material.css +24 -12
- package/styles/spreadsheet/material3-dark.css +24 -12
- package/styles/spreadsheet/material3-dark.scss +1 -1
- package/styles/spreadsheet/material3.css +24 -12
- package/styles/spreadsheet/material3.scss +1 -1
- package/styles/spreadsheet/tailwind-dark.css +24 -12
- package/styles/spreadsheet/tailwind.css +24 -12
- package/styles/spreadsheet-ribbon/bootstrap-dark.css +3 -0
- package/styles/spreadsheet-ribbon/bootstrap.css +3 -0
- package/styles/spreadsheet-ribbon/bootstrap4.css +3 -0
- package/styles/spreadsheet-ribbon/bootstrap5-dark.css +3 -0
- package/styles/spreadsheet-ribbon/bootstrap5.css +3 -0
- package/styles/spreadsheet-ribbon/fabric-dark.css +3 -0
- package/styles/spreadsheet-ribbon/fabric.css +3 -0
- package/styles/spreadsheet-ribbon/fluent-dark.css +3 -0
- package/styles/spreadsheet-ribbon/fluent.css +3 -0
- package/styles/spreadsheet-ribbon/highcontrast-light.css +3 -0
- package/styles/spreadsheet-ribbon/highcontrast.css +3 -0
- package/styles/spreadsheet-ribbon/material-dark.css +3 -1
- package/styles/spreadsheet-ribbon/material.css +3 -1
- package/styles/spreadsheet-ribbon/material3-dark.css +3 -1
- package/styles/spreadsheet-ribbon/material3-dark.scss +1 -1
- package/styles/spreadsheet-ribbon/material3.css +3 -1
- package/styles/spreadsheet-ribbon/material3.scss +1 -1
- package/styles/spreadsheet-ribbon/tailwind-dark.css +3 -1
- package/styles/spreadsheet-ribbon/tailwind.css +3 -1
- package/styles/tailwind-dark.css +27 -13
- package/styles/tailwind.css +27 -13
package/CHANGELOG.md
CHANGED
|
@@ -2,17 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
-
## 22.1.37 (2023-07-04)
|
|
6
|
-
|
|
7
5
|
### Spreadsheet
|
|
8
6
|
|
|
9
7
|
#### Bug Fixes
|
|
10
8
|
|
|
11
|
-
- `#
|
|
9
|
+
- `#I499291`, `#I496936` - Issue with "`ESC` key and edit mode functionality don't work properly when rendering the spreadsheet inside the dialog" has been resolved.
|
|
10
|
+
|
|
11
|
+
## 23.1.36 (2023-09-15)
|
|
12
|
+
|
|
13
|
+
### Spreadsheet
|
|
14
|
+
|
|
15
|
+
#### Features
|
|
16
|
+
|
|
17
|
+
- `#339651` - Now, provided support for displaying the error alert dialog when an invalid formula is typed, or the wrong number of arguments is supplied to the formula.
|
|
18
|
+
- `#369492` - Now, you can experience cut and paste actions in the Spreadsheet faster compared to earlier versions.
|
|
19
|
+
- `#476502` - Now, you can experience smooth scrolling with multiple conditional formatting set in the Spreadsheet, which is faster compared to earlier versions.
|
|
12
20
|
|
|
13
21
|
#### Bug fixes
|
|
14
22
|
|
|
15
|
-
- `#
|
|
23
|
+
- `#I496230` - Issue with "row height is not updated properly when importing an excel file with rows height of 1 or 2 pixels" has been resolved.
|
|
16
24
|
|
|
17
25
|
## 22.1.34 (2023-06-21)
|
|
18
26
|
|
|
@@ -1279,22 +1287,6 @@ The Spreadsheet is an user interactive component to organize and analyze data in
|
|
|
1279
1287
|
- **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.
|
|
1280
1288
|
|
|
1281
1289
|
|
|
1282
|
-
## 22.2.9 (2023-08-15)
|
|
1283
|
-
|
|
1284
|
-
### Spreadsheet
|
|
1285
|
-
|
|
1286
|
-
#### Bug Fixes
|
|
1287
|
-
|
|
1288
|
-
- `#I489622` - Issue with "used range calculated wrongly while calling the `setColumnsWidth` method without a range argument" has been resolved.
|
|
1289
|
-
|
|
1290
|
-
## 22.2.5 (2023-07-27)
|
|
1291
|
-
|
|
1292
|
-
### Spreadsheet
|
|
1293
|
-
|
|
1294
|
-
#### Bug fixes
|
|
1295
|
-
|
|
1296
|
-
- `#I477594` - Issue with "scrolling is not working properly with hidden rows while setting the `enableVirtualization` and `isFinite` properties as true" has been resolved.
|
|
1297
|
-
|
|
1298
1290
|
## 21.2.10 (2023-06-13)
|
|
1299
1291
|
|
|
1300
1292
|
### Spreadsheet
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-vue-spreadsheet.umd.min.js
|
|
3
|
-
* version :
|
|
4
|
-
* Copyright Syncfusion Inc. 2001 -
|
|
3
|
+
* version : 23.1.38
|
|
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
|
|
7
7
|
* licensing@syncfusion.com. Any infringement will be prosecuted under
|