@syncfusion/ej2-vue-grids 20.2.36 → 20.2.40
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 +38 -0
- package/dist/ej2-vue-grids.umd.min.js +1 -1
- package/dist/global/ej2-vue-grids.min.js +2 -2
- package/package.json +8 -8
- package/styles/bootstrap-dark.css +18 -8
- package/styles/bootstrap.css +17 -7
- package/styles/bootstrap4.css +39 -20
- package/styles/bootstrap5-dark.css +19 -5
- package/styles/bootstrap5.css +19 -5
- package/styles/excel-filter/bootstrap-dark.css +4 -0
- package/styles/excel-filter/bootstrap.css +4 -0
- package/styles/excel-filter/bootstrap4.css +4 -0
- package/styles/excel-filter/bootstrap5-dark.css +4 -0
- package/styles/excel-filter/bootstrap5.css +4 -0
- package/styles/excel-filter/fabric-dark.css +4 -0
- package/styles/excel-filter/fabric.css +4 -0
- package/styles/excel-filter/fluent-dark.css +4 -0
- package/styles/excel-filter/fluent.css +4 -0
- package/styles/excel-filter/highcontrast-light.css +4 -0
- package/styles/excel-filter/highcontrast.css +4 -0
- package/styles/excel-filter/material-dark.css +4 -0
- package/styles/excel-filter/material.css +4 -0
- package/styles/excel-filter/tailwind-dark.css +4 -0
- package/styles/excel-filter/tailwind.css +4 -0
- package/styles/fabric-dark.css +17 -7
- package/styles/fabric.css +19 -9
- package/styles/fluent-dark.css +21 -7
- package/styles/fluent.css +21 -7
- package/styles/grid/bootstrap-dark.css +14 -8
- package/styles/grid/bootstrap.css +13 -7
- package/styles/grid/bootstrap4.css +35 -20
- package/styles/grid/bootstrap5-dark.css +15 -5
- package/styles/grid/bootstrap5.css +15 -5
- package/styles/grid/fabric-dark.css +13 -7
- package/styles/grid/fabric.css +15 -9
- package/styles/grid/fluent-dark.css +17 -7
- package/styles/grid/fluent.css +17 -7
- package/styles/grid/highcontrast-light.css +9 -3
- package/styles/grid/highcontrast.css +13 -7
- package/styles/grid/material-dark.css +14 -8
- package/styles/grid/material.css +13 -7
- package/styles/grid/tailwind-dark.css +13 -6
- package/styles/grid/tailwind.css +13 -6
- package/styles/highcontrast-light.css +13 -3
- package/styles/highcontrast.css +17 -7
- package/styles/material-dark.css +18 -8
- package/styles/material.css +17 -7
- package/styles/tailwind-dark.css +17 -6
- package/styles/tailwind.css +17 -6
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,44 @@
|
|
|
4
4
|
|
|
5
5
|
### Grid
|
|
6
6
|
|
|
7
|
+
#### Breaking Changes
|
|
8
|
+
|
|
9
|
+
- The Expand and Collapse icon element change from div to anchor tag due to improvement in web accessibility.
|
|
10
|
+
- `WAI-ARIA` `aria-rowindex` validation error has been resolved. Now the `aria-rowindex` and `aria-colindex` starting from 1.
|
|
11
|
+
|
|
12
|
+
## 20.2.39 (2022-07-19)
|
|
13
|
+
|
|
14
|
+
### Grid
|
|
15
|
+
|
|
16
|
+
#### Bug Fixes
|
|
17
|
+
|
|
18
|
+
- `#I377182` - DOM leak with Group Caption Template issue has been fixed.
|
|
19
|
+
- `#I388087` - Grid navigation with TAB stops working when the `isFrozen` is enabled issue has been fixed.
|
|
20
|
+
- `#F173914` - Inside template function state value is not updated issue has been fixed.
|
|
21
|
+
- `#I387341` - Increase in Row Height when editing enabled has been fixed.
|
|
22
|
+
- `#F175548` - The `dataStateChange` event triggering at initial grid rendering has been fixed.
|
|
23
|
+
- `#I389565` - `cssClass` property is not updated dynamically is fixed.
|
|
24
|
+
- `#I385208` - Wrong row drop index when dropped in external grid has been fixed.
|
|
25
|
+
- `#I386683` - `disableHtmlEncode` property is not working in Excel Filter is fixed.
|
|
26
|
+
- `#I376845` - Memory leak issue on command column has been fixed.
|
|
27
|
+
- `#F175044` - Image is not rendered in Multiple Grid Excel Export issue has been fixed.
|
|
28
|
+
|
|
29
|
+
## 20.2.38 (2022-07-12)
|
|
30
|
+
|
|
31
|
+
### Grid
|
|
32
|
+
|
|
33
|
+
#### Bug Fixes
|
|
34
|
+
|
|
35
|
+
- `#I376131` - when cell containing the checkbox is double clicked the next cell content gets highlighted issue has been fixed.
|
|
36
|
+
- `#I385933` - Custom format on number column is not working properly in Grid pdf export issue has been fixed.
|
|
37
|
+
- `#FB35672` - Empty grid in batch edit mode throws script error has been fixed.
|
|
38
|
+
- `#I382789` - Tab key Navigation not working When `allowEditing` set to false with `RowDragandDrop` is fixed.
|
|
39
|
+
- `#FB34522` - Column reorder not working properly in column freeze enabled is fixed.
|
|
40
|
+
|
|
41
|
+
## 20.2.36 (2022-06-30)
|
|
42
|
+
|
|
43
|
+
### Grid
|
|
44
|
+
|
|
7
45
|
#### New Features
|
|
8
46
|
|
|
9
47
|
- `#I359178` - Provided support to show clear icon in the Grid search text box. It helps to clear the text in search text box and also clear the searching in Grid control too. Please find the demo link [here](https://ej2.syncfusion.com/demos/#/bootstrap5/grid/searching)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-vue-grids.umd.min.js
|
|
3
|
-
* version : 20.2.
|
|
3
|
+
* version : 20.2.40
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. 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
|