@syncfusion/ej2-angular-grids 20.1.52 → 20.1.57

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.
Files changed (74) hide show
  1. package/@syncfusion/ej2-angular-grids.es5.js +2 -2
  2. package/@syncfusion/ej2-angular-grids.es5.js.map +1 -1
  3. package/@syncfusion/ej2-angular-grids.js +2 -2
  4. package/@syncfusion/ej2-angular-grids.js.map +1 -1
  5. package/CHANGELOG.md +22 -0
  6. package/dist/ej2-angular-grids.umd.js +3 -3
  7. package/dist/ej2-angular-grids.umd.js.map +1 -1
  8. package/dist/ej2-angular-grids.umd.min.js +2 -2
  9. package/dist/ej2-angular-grids.umd.min.js.map +1 -1
  10. package/ej2-angular-grids.metadata.json +1 -1
  11. package/package.json +8 -8
  12. package/schematics/utils/lib-details.d.ts +2 -2
  13. package/schematics/utils/lib-details.js +2 -2
  14. package/schematics/utils/lib-details.ts +2 -2
  15. package/styles/bootstrap-dark.css +283 -1601
  16. package/styles/bootstrap.css +283 -1601
  17. package/styles/bootstrap4.css +282 -1599
  18. package/styles/bootstrap5-dark.css +287 -1619
  19. package/styles/bootstrap5.css +287 -1619
  20. package/styles/excel-filter/bootstrap-dark.css +14 -102
  21. package/styles/excel-filter/bootstrap.css +14 -102
  22. package/styles/excel-filter/bootstrap4.css +14 -101
  23. package/styles/excel-filter/bootstrap5-dark.css +15 -103
  24. package/styles/excel-filter/bootstrap5.css +15 -103
  25. package/styles/excel-filter/fabric-dark.css +14 -100
  26. package/styles/excel-filter/fabric.css +14 -100
  27. package/styles/excel-filter/fluent-dark.css +14 -101
  28. package/styles/excel-filter/fluent.css +14 -101
  29. package/styles/excel-filter/highcontrast-light.css +12 -111
  30. package/styles/excel-filter/highcontrast.css +12 -111
  31. package/styles/excel-filter/material-dark.css +10 -90
  32. package/styles/excel-filter/material.css +10 -91
  33. package/styles/excel-filter/tailwind-dark.css +11 -91
  34. package/styles/excel-filter/tailwind.css +11 -91
  35. package/styles/fabric-dark.css +282 -1598
  36. package/styles/fabric.css +282 -1598
  37. package/styles/fluent-dark.css +286 -1617
  38. package/styles/fluent.css +286 -1617
  39. package/styles/grid/bootstrap-dark.css +230 -1303
  40. package/styles/grid/bootstrap.css +230 -1303
  41. package/styles/grid/bootstrap4.css +230 -1302
  42. package/styles/grid/bootstrap5-dark.css +234 -1312
  43. package/styles/grid/bootstrap5.css +234 -1312
  44. package/styles/grid/fabric-dark.css +230 -1301
  45. package/styles/grid/fabric.css +230 -1301
  46. package/styles/grid/fluent-dark.css +233 -1318
  47. package/styles/grid/fluent.css +233 -1318
  48. package/styles/grid/highcontrast-light.css +228 -1312
  49. package/styles/grid/highcontrast.css +228 -1312
  50. package/styles/grid/material-dark.css +226 -1292
  51. package/styles/grid/material.css +225 -1292
  52. package/styles/grid/tailwind-dark.css +233 -1319
  53. package/styles/grid/tailwind.css +233 -1319
  54. package/styles/highcontrast-light.css +280 -1609
  55. package/styles/highcontrast.css +280 -1609
  56. package/styles/material-dark.css +278 -1590
  57. package/styles/material.css +277 -1591
  58. package/styles/pager/bootstrap-dark.css +45 -211
  59. package/styles/pager/bootstrap.css +45 -211
  60. package/styles/pager/bootstrap4.css +44 -210
  61. package/styles/pager/bootstrap5-dark.css +44 -218
  62. package/styles/pager/bootstrap5.css +44 -218
  63. package/styles/pager/fabric-dark.css +44 -210
  64. package/styles/pager/fabric.css +44 -210
  65. package/styles/pager/fluent-dark.css +44 -210
  66. package/styles/pager/fluent.css +44 -210
  67. package/styles/pager/highcontrast-light.css +44 -210
  68. package/styles/pager/highcontrast.css +44 -210
  69. package/styles/pager/material-dark.css +44 -210
  70. package/styles/pager/material.css +44 -210
  71. package/styles/pager/tailwind-dark.css +46 -241
  72. package/styles/pager/tailwind.css +46 -241
  73. package/styles/tailwind-dark.css +288 -1649
  74. package/styles/tailwind.css +288 -1649
package/CHANGELOG.md CHANGED
@@ -6,6 +6,28 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
+ - `#I359884` - Accessibility of Grid component has been improved.
10
+ - `#I376539` - Sorting issue on URL Adaptor `DataManagerRequest` has been fixed.
11
+ - `#I365726` - Image and Text overlap issue in excel image has been fixed.
12
+
13
+ ## 20.1.56 (2022-05-17)
14
+
15
+ ### Grid
16
+
17
+ #### Bug Fixes
18
+
19
+ - `#F174681` - Provided support for Column dragging when dynamically enabling the Group drop area.
20
+ - `#I375458` - Column read as draggable after disabling column reorder for Particular column has been fixed.
21
+ - `#I376011` - Styling issue on grouping all the columns in grid is fixed.
22
+ - `#I352445` - Changed the title and read message of three dot icon in Page container.
23
+ - `#I366376` - column template does not destroyed while using `setRowData` method has been fixed.
24
+
25
+ ## 20.1.52 (2022-05-04)
26
+
27
+ ### Grid
28
+
29
+ #### Bug Fixes
30
+
9
31
  - `#I366094` - Need to consider validation when multiple records are added in batch edit mode has been fixed.
10
32
  - `#I374850` - When `allowKeyboard` was set to false the selection was not prevented correctly has been fixed.
11
33
  - `#F141605` - Provide support get distinct value from server when open the Excel/Checkbox filter has been fixed.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-grids.umd.js
3
- * version : 20.1.52
3
+ * version : 20.1.57
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
@@ -443,7 +443,7 @@ var __metadata$3 = (this && this.__metadata) || function (k, v) {
443
443
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
444
444
  return Reflect.metadata(k, v);
445
445
  };
446
- var inputs = ['aggregates', 'allowExcelExport', 'allowFiltering', 'allowGrouping', 'allowKeyboard', 'allowMultiSorting', 'allowPaging', 'allowPdfExport', 'allowReordering', 'allowResizing', 'allowRowDragAndDrop', 'allowSelection', 'allowSorting', 'allowTextWrap', 'childGrid', 'clipMode', 'columnChooserSettings', 'columnMenuItems', 'columnQueryMode', 'columns', 'contextMenuItems', 'currencyCode', 'currentAction', 'dataSource', 'detailTemplate', 'editSettings', 'ej2StatePersistenceVersion', 'enableAdaptiveUI', 'enableAltRow', 'enableAutoFill', 'enableColumnVirtualization', 'enableHeaderFocus', 'enableHover', 'enableImmutableMode', 'enableInfiniteScrolling', 'enablePersistence', 'enableRtl', 'enableStickyHeader', 'enableVirtualization', 'filterSettings', 'frozenColumns', 'frozenRows', 'gridLines', 'groupSettings', 'height', 'hierarchyPrintMode', 'infiniteScrollSettings', 'locale', 'pageSettings', 'pagerTemplate', 'parentDetails', 'printMode', 'query', 'queryString', 'resizeSettings', 'rowDropSettings', 'rowHeight', 'rowRenderingMode', 'rowTemplate', 'searchSettings', 'selectedRowIndex', 'selectionSettings', 'showColumnChooser', 'showColumnMenu', 'sortSettings', 'textWrapSettings', 'toolbar', 'toolbarTemplate', 'width'];
446
+ var inputs = ['aggregates', 'allowExcelExport', 'allowFiltering', 'allowGrouping', 'allowKeyboard', 'allowMultiSorting', 'allowPaging', 'allowPdfExport', 'allowReordering', 'allowResizing', 'allowRowDragAndDrop', 'allowSelection', 'allowSorting', 'allowTextWrap', 'childGrid', 'clipMode', 'columnChooserSettings', 'columnMenuItems', 'columnQueryMode', 'columns', 'contextMenuItems', 'cssClass', 'currencyCode', 'currentAction', 'dataSource', 'detailTemplate', 'editSettings', 'ej2StatePersistenceVersion', 'enableAdaptiveUI', 'enableAltRow', 'enableAutoFill', 'enableColumnVirtualization', 'enableHeaderFocus', 'enableHover', 'enableImmutableMode', 'enableInfiniteScrolling', 'enablePersistence', 'enableRtl', 'enableStickyHeader', 'enableVirtualization', 'filterSettings', 'frozenColumns', 'frozenRows', 'gridLines', 'groupSettings', 'height', 'hierarchyPrintMode', 'infiniteScrollSettings', 'locale', 'pageSettings', 'pagerTemplate', 'parentDetails', 'printMode', 'query', 'queryString', 'resizeSettings', 'rowDropSettings', 'rowHeight', 'rowRenderingMode', 'rowTemplate', 'searchSettings', 'selectedRowIndex', 'selectionSettings', 'showColumnChooser', 'showColumnMenu', 'sortSettings', 'textWrapSettings', 'toolbar', 'toolbarTemplate', 'width'];
447
447
  var outputs$4 = ['actionBegin', 'actionComplete', 'actionFailure', 'batchAdd', 'batchCancel', 'batchDelete', 'beforeAutoFill', 'beforeBatchAdd', 'beforeBatchDelete', 'beforeBatchSave', 'beforeCopy', 'beforeDataBound', 'beforeExcelExport', 'beforeOpenAdaptiveDialog', 'beforeOpenColumnChooser', 'beforePaste', 'beforePdfExport', 'beforePrint', 'beginEdit', 'cellDeselected', 'cellDeselecting', 'cellEdit', 'cellSave', 'cellSaved', 'cellSelected', 'cellSelecting', 'checkBoxChange', 'columnDataStateChange', 'columnDeselected', 'columnDeselecting', 'columnDrag', 'columnDragStart', 'columnDrop', 'columnMenuClick', 'columnMenuOpen', 'columnSelected', 'columnSelecting', 'commandClick', 'contextMenuClick', 'contextMenuOpen', 'created', 'dataBound', 'dataSourceChanged', 'dataStateChange', 'destroyed', 'detailDataBound', 'excelAggregateQueryCellInfo', 'excelExportComplete', 'excelHeaderQueryCellInfo', 'excelQueryCellInfo', 'exportDetailDataBound', 'exportGroupCaption', 'headerCellInfo', 'keyPressed', 'lazyLoadGroupCollapse', 'lazyLoadGroupExpand', 'load', 'pdfAggregateQueryCellInfo', 'pdfExportComplete', 'pdfHeaderQueryCellInfo', 'pdfQueryCellInfo', 'printComplete', 'queryCellInfo', 'recordClick', 'recordDoubleClick', 'resizeStart', 'resizeStop', 'resizing', 'rowDataBound', 'rowDeselected', 'rowDeselecting', 'rowDrag', 'rowDragStart', 'rowDragStartHelper', 'rowDrop', 'rowSelected', 'rowSelecting', 'toolbarClick', 'dataSourceChange'];
448
448
  var twoWays = ['dataSource'];
449
449
  /**
@@ -857,7 +857,7 @@ var __metadata$4 = (this && this.__metadata) || function (k, v) {
857
857
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
858
858
  return Reflect.metadata(k, v);
859
859
  };
860
- var inputs$1 = ['currentPage', 'customText', 'enableExternalMessage', 'enablePagerMessage', 'enablePersistence', 'enableQueryString', 'enableRtl', 'externalMessage', 'locale', 'pageCount', 'pageSize', 'pageSizes', 'template', 'totalRecordsCount'];
860
+ var inputs$1 = ['cssClass', 'currentPage', 'customText', 'enableExternalMessage', 'enablePagerMessage', 'enablePersistence', 'enableQueryString', 'enableRtl', 'externalMessage', 'locale', 'pageCount', 'pageSize', 'pageSizes', 'template', 'totalRecordsCount'];
861
861
  var outputs$5 = ['click', 'created', 'dropDownChanged'];
862
862
  var twoWays$1 = [];
863
863
  /**