@syncfusion/ej2-angular-grids 20.3.60-ngcc → 20.3.61-ngcc

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,15 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
+ - `#I408271` - The reference link for the `checkBoxChange` event arguments has been updated in the documentation.
10
+ - `#I420019` - script error for focusing the content after deleting all the records has been fixed.
11
+
12
+ ## 20.3.60 (2022-12-06)
13
+
14
+ ### Grid
15
+
16
+ #### Bug Fixes
17
+
9
18
  - `#I397543` - Issue with custom toolbar template item in grid has been resolved.
10
19
  - `#I418069` - Searching issue when clicking search icon in adaptive mode has been fixed.
11
20
  - `#I417934` - Column Reordering was not working properly after hiding the column has been fixed.
package/README.md CHANGED
@@ -1,81 +1,172 @@
1
- # ej2-angular-grids
1
+ # Angular Grid Component
2
2
 
3
- The [Angular Data Grid](https://www.syncfusion.com/angular-ui-components/angular-grid?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm) component is used to display and manipulate tabular data with configuration options to control the way the data is presented and manipulated. It will pull data from a data source, such as array of JSON objects, `OData web services`, or [`DataManager`](http://ej2.syncfusion.com/angular/documentation/?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm) binding data fields to columns. Also displaying a column header to identify the field with support for grouped records.
3
+ The [Angular Data Grid](https://www.syncfusion.com/angular-ui-components/angular-grid?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm) component is used to display and manipulate tabular data with configuration options to control the way the data is presented and manipulated. It will pull data from a data source, such as array of JSON objects, `OData web services`, or DataManager binding data fields to columns. Also displaying a column header to identify the field with support for grouped records.
4
4
 
5
- ![Grid](https://ej2.syncfusion.com/products/grid/readme.gif)
5
+ <p align="center">
6
+ <a href="https://ej2.syncfusion.com/angular/documentation/grid/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm">Getting Started</a>.
7
+ <a href="https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm#/material/grid/over-view">Online demos</a>.
8
+ <a href="https://www.syncfusion.com/angular-components/angular-grid?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm">Learn more</a>.
9
+ </p>
6
10
 
7
- > This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's EULA (https://www.syncfusion.com/eula/es/). To acquire a license, you can purchase one at https://www.syncfusion.com/sales/products or start a free 30-day trial here (https://www.syncfusion.com/account/manage-trials/start-trials).
11
+ ![Angular Grid Component](https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/angular/angular-datagrid.png)
8
12
 
9
- > A free community license (https://www.syncfusion.com/products/communitylicense) is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers.
13
+ <p align="center">
14
+ Trusted by the world's leading companies
15
+ <a href="https://www.syncfusion.com">
16
+ <img src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/syncfusion/syncfusion-trusted-companies.webp" alt="Bootstrap logo">
17
+ </a>
18
+ </p>
10
19
 
11
20
  ## Setup
12
21
 
13
- To install Grid and its dependent packages, use the following command
22
+ ### Create an Angular Application
14
23
 
15
- ```sh
16
- npm install @syncfusion/ej2-angular-grids
24
+ You can use [Angular CLI](https://github.com/angular/angular-cli) to setup your Angular applications. To install Angular CLI use the following command.
25
+
26
+ ```bash
27
+ npm install -g @angular/cli
28
+ ```
29
+
30
+ Create a new Angular application using below Angular CLI command.
31
+
32
+ ```bash
33
+ ng new my-app
34
+ cd my-app
35
+ ```
36
+
37
+ ### Adding Syncfusion Grid package
38
+
39
+ All Syncfusion angular packages are published in [npmjs.com](https://www.npmjs.com/~syncfusionorg) registry. To install angular grid package, use the following command.
40
+
41
+ ```bash
42
+ npm install @syncfusion/ej2-angular-grids --save
43
+ ```
44
+
45
+ ### Registering Grid Module
46
+
47
+ Import Grid module into **src/app/app.module.ts** in Angular application from **@syncfusion/ej2-angular-grids** package.
48
+
49
+ ```typescript
50
+ import { NgModule } from '@angular/core';
51
+ import { BrowserModule } from '@angular/platform-browser';
52
+ // import the GridModule for the Grid component
53
+ import { GridModule } from '@syncfusion/ej2-angular-grids';
54
+ import { AppComponent } from './app.component';
55
+
56
+ @NgModule({
57
+ //declaration of ej2-angular-grids module into NgModule
58
+ imports: [ BrowserModule, GridModule ],
59
+ declarations: [ AppComponent ],
60
+ bootstrap: [ AppComponent ]
61
+ })
62
+ export class AppModule { }
17
63
  ```
18
64
 
19
- ## Resources
65
+ ### Adding CSS references for Grid
20
66
 
21
- * [Getting Started](https://ej2.syncfusion.com/angular/documentation/grid/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm)
22
- * [View Online Demos](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm#/material/grid/over-view)
23
- * [Product Page](https://www.syncfusion.com/angular-ui-components/angular-grid?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm)
67
+ Add CSS references needed for Grid in **src/styles.css** from **../node_modules/@syncfusion** package folder.
68
+
69
+ ```css
70
+ @import '../node_modules/@syncfusion/ej2-base/styles/material.css';
71
+ @import '../node_modules/@syncfusion/ej2-buttons/styles/material.css';
72
+ @import '../node_modules/@syncfusion/ej2-calendars/styles/material.css';
73
+ @import '../node_modules/@syncfusion/ej2-dropdowns/styles/material.css';
74
+ @import '../node_modules/@syncfusion/ej2-inputs/styles/material.css';
75
+ @import '../node_modules/@syncfusion/ej2-navigations/styles/material.css';
76
+ @import '../node_modules/@syncfusion/ej2-popups/styles/material.css';
77
+ @import '../node_modules/@syncfusion/ej2-splitbuttons/styles/material.css';
78
+ @import '../node_modules/@syncfusion/ej2-angular-grids/styles/material.css';
79
+ ```
24
80
 
25
- ## Supported Frameworks
81
+ ### Add Grid Component
82
+
83
+ In **src/app/app.component.ts**, use `<ejs-grid>` selector in `template` attribute of `@Component` directive to render the Syncfusion Angular Grid component.
84
+
85
+ ```typescript
86
+ import { Component, OnInit } from '@angular/core';
87
+
88
+ @Component({
89
+ selector: 'app-root',
90
+ template: `<ejs-grid [dataSource]='data'>
91
+ <e-columns>
92
+ <e-column field='OrderID' headerText='Order ID'></e-column>
93
+ <e-column field='CustomerID' headerText='Customer ID'></e-column>
94
+ <e-column field='ShipCountry' headerText='Ship Country'></e-column>
95
+ </e-columns>
96
+ </ejs-grid>`
97
+ })
98
+ export class AppComponent implements OnInit {
99
+
100
+ public data: object[];
101
+
102
+ ngOnInit(): void {
103
+ this.data = [
104
+ {'OrderID': 10248,'CustomerID': 'VINET', 'ShipCountry': 'France'},
105
+ {'OrderID': 10249,'CustomerID': 'TOMSP', 'ShipCountry': 'Germany'},
106
+ {'OrderID': 10250,'CustomerID': 'HANAR', 'ShipCountry': 'Brazil' },
107
+ {'OrderID': 10251,'CustomerID': 'VICTE', 'ShipCountry': 'France'}
108
+ ];
109
+ }
110
+ }
111
+ ```
112
+
113
+ ## Supported frameworks
26
114
 
27
115
  Grid component is also offered in following list of frameworks.
28
116
 
29
- 1. [React](https://www.syncfusion.com/react-ui-components/react-data-grid?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm)
30
- 2. [VueJS](https://www.syncfusion.com/vue-ui-components/vue-grid?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm)
31
- 3. [JavaScript (ES5)](https://www.syncfusion.com/javascript-ui-controls/js-data-grid?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm)
32
- 4. [ASP.NET Core](https://www.syncfusion.com/aspnet-core-ui-controls/grid?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm)
33
- 5. [ASP.NET MVC](https://www.syncfusion.com/aspnet-mvc-ui-controls/grid?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm)
117
+ | [<img src="https://ej2.syncfusion.com/github/images/js.svg" height="50" />](https://www.syncfusion.com/javascript-ui-controls?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[JavaScript](https://www.syncfusion.com/javascript-ui-controls?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/react.svg" height="50" />](https://www.syncfusion.com/react-ui-components?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[React](https://www.syncfusion.com/react-ui-components?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/vue.svg" height="50" />](https://www.syncfusion.com/vue-ui-components?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[Vue](https://www.syncfusion.com/vue-ui-components?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/netcore.svg" height="50" />](https://www.syncfusion.com/aspnet-core-ui-controls?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;[ASP.NET&nbsp;Core](https://www.syncfusion.com/aspnet-core-ui-controls?utm_medium=listing&utm_source=github)&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/netmvc.svg" height="50" />](https://www.syncfusion.com/aspnet-mvc-ui-controls?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;[ASP.NET&nbsp;MVC](https://www.syncfusion.com/aspnet-mvc-ui-controls?utm_medium=listing&utm_source=github)&nbsp;&nbsp; |
118
+ | :-----: | :-----: | :-----: | :-----: | :-----: |
34
119
 
35
120
  ## Showcase samples
36
121
 
37
- * Expanse Tracker ([Source](https://github.com/syncfusion/ej2-showcase-angular-expensetracker?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm), [Live Demo](https://ej2.syncfusion.com/showcase/angular/expensetracker/#/dashboard?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm))
38
- * Loan Calculator ([Source](https://github.com/syncfusion/ej2-sample-ng-loancalculator?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm), [Live Demo](https://ej2.syncfusion.com/showcase/angular/loancalculator/?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm))
39
-
40
- ## Key Features
41
-
42
- * [**Data sources**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm#/material/grid/local-data) - Bind the Grid component with an array of JSON objects or DataManager.
43
- * [**Async pipe**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm#/material/grid/async-pipe) - Bind the Grid component with `RxJS.Observable` using `async` pipe.
44
- * [**Sorting and grouping**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm#/material/grid/grouping) - Supports n levels of sorting and grouping.
45
- * [**Filtering**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm#/material/grid/filtering) - Offers filter UI such as filter bar, menu, excel and checkbox at each column to filter data.
46
- * [**Paging**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm#/material/grid/paging) - Provides the option to easily switch between pages using the pager bar.
47
- * [**Editing**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm#/material/grid/normal-edit) - provides the options for create, read, update, and delete operations.
48
- * **Columns** - The column definitions are used as the dataSource schema in the Grid. This plays a vital role in rendering column values in the required format.
49
- * [**Reordering**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm#/material/grid/column/reorder) - Allows you to drag any column and drop it at any position in the Grid’s column header row, allowing columns to be repositioned.
50
- * [**Column Chooser**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm#/material/grid/column/column-chooser) - The column chooser provides a list of column names paired with check boxes that allow the visibility to be toggled on the fly.
51
- * [**Resizing**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm#/material/grid/column/column-resizing) - Resizing allows changing column width on the fly by simply dragging the right corner of the column header.
52
- * [**Freeze**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm#/material/grid/frozen-rows) - Columns and rows can be frozen to allow scrolling and comparing cell values.
53
- * [**Cell Spanning**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm#/material/grid/column/column-spanning) - Grid cells can be spanned based on the preferred criteria.
54
- * [**Foreign data source**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm#/material/grid/column/foreign-key) - This provides the option to show values from external or lookup data sources in a column based on foreign key/value mapping.
55
- * [**Cell Styling**](https://ej2.syncfusion.com/angular/documentation/grid/how-to/?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm#customize-column-styles) - Grid cell styles can be customized either by using CSS or programmatically.
56
- * [**Selection**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm#/material/grid/selection) - Rows or cells can be selected in the grid. One or more rows or cells can also be selected by holding Ctrl or Command, or programmatically.
57
- * [**Templates**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm#/material/grid/column-template) - Templates can be used to create custom user experiences in the grid.
58
- * [**Aggregation**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm#/material/grid/aggregate-default) - Provides the option to easily visualized the Aggregates for column values.
59
- * [**Context menu**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm#/material/grid/context-menu) -The context menu provides a list of actions to be performed in the grid. It appears when a cell, header, or the pager is right-clicked.
60
- * [**Clipboard**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm#/material/grid/clipboard) - Selected rows and cells can be copied from the grid
61
- * [**Export**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm#/material/grid/default-exporting) - Provides the options to Export the grid data to Excel, PDF, and CSV formats.
62
- * [**RTL support**](https://ej2.syncfusion.com/angular/documentation/grid/global-local/?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm#right-to-left---rtl) - Provides a full-fledged right-to-left mode which aligns content in the Grid control from right to left.
63
- * [**Localization**](https://ej2.syncfusion.com/angular/documentation/grid/global-local/?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm#localization) - Provides inherent support to localize the UI.
122
+ * Expense Tracker - [Source](https://github.com/syncfusion/ej2-showcase-angular-expensetracker?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm), [Live Demo](https://ej2.syncfusion.com/showcase/angular/expensetracker/#/dashboard?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm)
123
+ * Loan Calculator - [Source](https://github.com/syncfusion/ej2-sample-ng-loancalculator?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm), [Live Demo](https://ej2.syncfusion.com/showcase/angular/loancalculator/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm)
124
+
125
+ ## Key features
126
+
127
+ * [Data sources](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm#/material/grid/local-data) - Bind the Grid component with an array of JSON objects or DataManager.
128
+ * [Async pipe](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm#/material/grid/async-pipe) - Bind the Grid component with `RxJS.Observable` using `async` pipe.
129
+ * [Sorting and grouping](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm#/material/grid/grouping) - Supports n levels of sorting and grouping.
130
+ * [Filtering](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm#/material/grid/filtering) - Offers filter UI such as filter bar, menu, excel and checkbox at each column to filter data.
131
+ * [Paging](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm#/material/grid/paging) - Provides the option to easily switch between pages using the pager bar.
132
+ * [Editing](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm#/material/grid/normal-edit) - provides the options for create, read, update, and delete operations.
133
+ * Columns - The column definitions are used as the dataSource schema in the Grid. This plays a vital role in rendering column values in the required format.
134
+ * [Reordering](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm#/material/grid/column/reorder) - Allows you to drag any column and drop it at any position in the Grid’s column header row, allowing columns to be repositioned.
135
+ * [Column chooser](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm#/material/grid/column/column-chooser) - The column chooser provides a list of column names paired with check boxes that allow the visibility to be toggled on the fly.
136
+ * [Resizing](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm#/material/grid/column/column-resizing) - Resizing allows changing column width on the fly by simply dragging the right corner of the column header.
137
+ * [Freeze](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm#/material/grid/frozen-rows) - Columns and rows can be frozen to allow scrolling and comparing cell values.
138
+ * [Cell spanning](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm#/material/grid/column/column-spanning) - Grid cells can be spanned based on the preferred criteria.
139
+ * [Foreign data source](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm#/material/grid/column/foreign-key) - This provides the option to show values from external or lookup data sources in a column based on foreign key/value mapping.
140
+ * [Cell styling](https://ej2.syncfusion.com/angular/documentation/grid/how-to/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm#customize-column-styles) - Grid cell styles can be customized either by using CSS or programmatically.
141
+ * [Selection](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm#/material/grid/selection) - Rows or cells can be selected in the grid. One or more rows or cells can also be selected by holding Ctrl or Command, or programmatically.
142
+ * [Templates](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm#/material/grid/column-template) - Templates can be used to create custom user experiences in the grid.
143
+ * [Aggregation](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm#/material/grid/aggregate-default) - Provides the option to easily visualized the Aggregates for column values.
144
+ * [Context menu](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm#/material/grid/context-menu) -The context menu provides a list of actions to be performed in the grid. It appears when a cell, header, or the pager is right-clicked.
145
+ * [Clipboard](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm#/material/grid/clipboard) - Selected rows and cells can be copied from the grid
146
+ * [Export](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm#/material/grid/default-exporting) - Provides the options to Export the grid data to Excel, PDF, and CSV formats.
147
+ * [RTL support](https://ej2.syncfusion.com/angular/documentation/grid/global-local/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm#right-to-left---rtl) - Provides a full-fledged right-to-left mode which aligns content in the Grid component from right to left.
148
+ * [Localization](https://ej2.syncfusion.com/angular/documentation/grid/global-local/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm#localization) - Provides inherent support to localize the UI.
64
149
 
65
150
  ## Support
66
151
 
67
- Product support is available for through following mediums.
152
+ Product support is available through following mediums.
68
153
 
69
- * Creating incident in Syncfusion [Direct-trac](https://www.syncfusion.com/support/directtrac/incidents?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm) support system or [Community forum](https://www.syncfusion.com/forums/angular-js2?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm).
70
- * New [GitHub issue](https://github.com/syncfusion/ej2-angular-ui-components/issues/new).
71
- * Ask your query in Stack Overflow with tag `syncfusion`, `ej2`.
154
+ * [Support ticket](https://support.syncfusion.com/support/tickets/create) - Guaranteed Response in 24 hours | Unlimited tickets | Holiday support
155
+ * [Community forum](https://www.syncfusion.com/forums/angular-js2?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm)
156
+ * [GitHub issues](https://github.com/syncfusion/ej2-angular-ui-components/issues/new)
157
+ * [Request feature or report bug](https://www.syncfusion.com/feedback/angular?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm)
158
+ * Live chat
72
159
 
73
- ## License
160
+ ## Changelog
74
161
 
75
- Check the license detail [here](https://github.com/syncfusion/ej2-angular-ui-components/blob/master/license?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm).
162
+ Check the changelog [here](https://github.com/syncfusion/ej2-angular-ui-components/blob/master/components/grids/CHANGELOG.md?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm). Get minor improvements and bug fixes every week to stay up to date with frequent updates.
76
163
 
77
- ## Changelog
164
+ ## License and copyright
165
+
166
+ > This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's [EULA](https://www.syncfusion.com/eula/es/). To acquire a license for 80+ [Angular UI controls](https://www.syncfusion.com/angular-components), you can [purchase](https://www.syncfusion.com/sales/products) or [start a free 30-day trial](https://www.syncfusion.com/account/manage-trials/start-trials).
167
+
168
+ > A free community [license](https://www.syncfusion.com/products/communitylicense) is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers.
78
169
 
79
- Check the changelog [here](https://github.com/syncfusion/ej2-angular-ui-components/blob/master/components/grids/CHANGELOG.md?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm)
170
+ See [LICENSE FILE](https://github.com/syncfusion/ej2-angular-ui-components/blob/master/license?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm) for more info.
80
171
 
81
- © Copyright 2022 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
172
+ © Copyright 2022 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-grids.umd.js
3
- * version : 20.3.60
3
+ * version : 20.3.61
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
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-grids.umd.min.js
3
- * version : 20.3.60
3
+ * version : 20.3.61
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
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-angular-grids@*",
3
- "_id": "@syncfusion/ej2-angular-grids@20.3.59",
3
+ "_id": "@syncfusion/ej2-angular-grids@20.3.60",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-2WD2adTdhxB44jFmwTfdMcRg+gwStv2n3LisJN+jCGjlBeVdG73GIvwjYv8tIex1pECf0Z0TANhjTA1cWgcsig==",
5
+ "_integrity": "sha512-Uo6YSqGrbZtDktjV0QrzjuRr2zoQvFORqAMy8wfdRwy/7Vn1lP9t/tcU/+r/U1sWn/nvb5ii9RMyVYAcWEyNVg==",
6
6
  "_location": "/@syncfusion/ej2-angular-grids",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,8 +19,8 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-grids/-/ej2-angular-grids-20.3.59.tgz",
23
- "_shasum": "0d68a92e101c995ac921783c939be269ccdd21ce",
22
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-grids/-/ej2-angular-grids-20.3.60.tgz",
23
+ "_shasum": "abb495929262b89ce722b0b87c282cdca202e646",
24
24
  "_spec": "@syncfusion/ej2-angular-grids@*",
25
25
  "_where": "/jenkins/workspace/ease-automation_release_19.1.0.1/packages/included",
26
26
  "author": {
@@ -33,7 +33,7 @@
33
33
  "dependencies": {
34
34
  "@syncfusion/ej2-angular-base": "~20.3.56",
35
35
  "@syncfusion/ej2-base": "~20.3.56",
36
- "@syncfusion/ej2-grids": "20.3.60"
36
+ "@syncfusion/ej2-grids": "20.3.61"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Angular",
@@ -69,5 +69,5 @@
69
69
  "schematics": "./schematics/collection.json",
70
70
  "sideEffects": false,
71
71
  "typings": "ej2-angular-grids.d.ts",
72
- "version": "20.3.60-ngcc"
72
+ "version": "20.3.61-ngcc"
73
73
  }
@@ -1,4 +1,4 @@
1
1
  export declare const pkgName = "@syncfusion/ej2-angular-grids";
2
- export declare const pkgVer = "^20.3.59";
2
+ export declare const pkgVer = "^20.3.60";
3
3
  export declare const moduleName = "GridModule, PagerModule";
4
- export declare const themeVer = "~20.3.59";
4
+ export declare const themeVer = "~20.3.60";
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.pkgName = '@syncfusion/ej2-angular-grids';
4
- exports.pkgVer = '^20.3.60';
4
+ exports.pkgVer = '^20.3.61';
5
5
  exports.moduleName = 'GridModule, PagerModule';
6
- exports.themeVer = '~20.3.60';
6
+ exports.themeVer = '~20.3.61';
@@ -1,4 +1,4 @@
1
1
  export const pkgName = '@syncfusion/ej2-angular-grids';
2
- export const pkgVer = '^20.3.60';
2
+ export const pkgVer = '^20.3.61';
3
3
  export const moduleName = 'GridModule, PagerModule';
4
- export const themeVer = '~20.3.60';
4
+ export const themeVer = '~20.3.61';
@@ -3485,7 +3485,7 @@ li.e-separator.e-menu-item.e-excel-separator {
3485
3485
  user-select: none;
3486
3486
  }
3487
3487
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3488
- margin-top: -1.5px;
3488
+ margin-top: 0.5px;
3489
3489
  }
3490
3490
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3491
3491
  margin-top: -1.5px;
@@ -3486,7 +3486,7 @@ li.e-separator.e-menu-item.e-excel-separator {
3486
3486
  user-select: none;
3487
3487
  }
3488
3488
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3489
- margin-top: -1.5px;
3489
+ margin-top: 0.5px;
3490
3490
  }
3491
3491
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3492
3492
  margin-top: -1.5px;
@@ -3545,7 +3545,7 @@ li.e-separator.e-menu-item.e-excel-separator {
3545
3545
  user-select: none;
3546
3546
  }
3547
3547
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3548
- margin-top: -1px;
3548
+ margin-top: 0;
3549
3549
  }
3550
3550
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3551
3551
  margin-top: -3px;
@@ -3552,7 +3552,7 @@ li.e-separator.e-menu-item.e-excel-separator {
3552
3552
  margin-top: 0;
3553
3553
  }
3554
3554
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3555
- margin-top: 0;
3555
+ margin-top: -2px;
3556
3556
  }
3557
3557
  .e-grid.sf-grid .e-masked-cell.e-rowcell .e-virtualcell {
3558
3558
  background-color: rgba(0, 0, 0, 0.1);
@@ -3600,7 +3600,7 @@ li.e-separator.e-menu-item.e-excel-separator {
3600
3600
  }
3601
3601
  .e-bigger .e-grid .e-gridheader .e-headercontent .e-reorderuparrow,
3602
3602
  .e-bigger.e-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3603
- margin-top: -9px;
3603
+ margin-top: -2px;
3604
3604
  }
3605
3605
  .e-bigger .e-grid .e-gridheader thead .e-icons,
3606
3606
  .e-bigger.e-grid .e-gridheader thead .e-icons {
@@ -3552,7 +3552,7 @@ li.e-separator.e-menu-item.e-excel-separator {
3552
3552
  margin-top: 0;
3553
3553
  }
3554
3554
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3555
- margin-top: 0;
3555
+ margin-top: -2px;
3556
3556
  }
3557
3557
  .e-grid.sf-grid .e-masked-cell.e-rowcell .e-virtualcell {
3558
3558
  background-color: rgba(0, 0, 0, 0.1);
@@ -3600,7 +3600,7 @@ li.e-separator.e-menu-item.e-excel-separator {
3600
3600
  }
3601
3601
  .e-bigger .e-grid .e-gridheader .e-headercontent .e-reorderuparrow,
3602
3602
  .e-bigger.e-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3603
- margin-top: -9px;
3603
+ margin-top: -2px;
3604
3604
  }
3605
3605
  .e-bigger .e-grid .e-gridheader thead .e-icons,
3606
3606
  .e-bigger.e-grid .e-gridheader thead .e-icons {
@@ -3459,10 +3459,10 @@ li.e-separator.e-menu-item.e-excel-separator {
3459
3459
  user-select: none;
3460
3460
  }
3461
3461
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3462
- margin-top: 0;
3462
+ margin-top: 1px;
3463
3463
  }
3464
3464
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3465
- margin-top: 0;
3465
+ margin-top: -1px;
3466
3466
  }
3467
3467
  .e-grid.sf-grid .e-masked-cell.e-rowcell .e-virtualcell {
3468
3468
  background-color: rgba(0, 0, 0, 0.1);
package/styles/fabric.css CHANGED
@@ -3452,10 +3452,10 @@ li.e-separator.e-menu-item.e-excel-separator {
3452
3452
  user-select: none;
3453
3453
  }
3454
3454
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3455
- margin-top: 0;
3455
+ margin-top: 1px;
3456
3456
  }
3457
3457
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3458
- margin-top: 0;
3458
+ margin-top: -1px;
3459
3459
  }
3460
3460
  .e-grid.sf-grid .e-masked-cell.e-rowcell .e-virtualcell {
3461
3461
  background-color: rgba(0, 0, 0, 0.1);
@@ -3568,7 +3568,7 @@ li.e-separator.e-menu-item.e-excel-separator {
3568
3568
  margin-top: 0;
3569
3569
  }
3570
3570
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3571
- margin-top: 0;
3571
+ margin-top: -1px;
3572
3572
  }
3573
3573
  .e-grid.sf-grid .e-masked-cell.e-rowcell .e-virtualcell {
3574
3574
  background-color: rgba(0, 0, 0, 0.1);
@@ -3616,7 +3616,7 @@ li.e-separator.e-menu-item.e-excel-separator {
3616
3616
  }
3617
3617
  .e-bigger .e-grid .e-gridheader .e-headercontent .e-reorderuparrow,
3618
3618
  .e-bigger.e-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3619
- margin-top: -9px;
3619
+ margin-top: -2px;
3620
3620
  }
3621
3621
  .e-bigger .e-grid .e-gridheader thead .e-icons,
3622
3622
  .e-bigger.e-grid .e-gridheader thead .e-icons {
package/styles/fluent.css CHANGED
@@ -3568,7 +3568,7 @@ li.e-separator.e-menu-item.e-excel-separator {
3568
3568
  margin-top: 0;
3569
3569
  }
3570
3570
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3571
- margin-top: 0;
3571
+ margin-top: -1px;
3572
3572
  }
3573
3573
  .e-grid.sf-grid .e-masked-cell.e-rowcell .e-virtualcell {
3574
3574
  background-color: rgba(0, 0, 0, 0.1);
@@ -3616,7 +3616,7 @@ li.e-separator.e-menu-item.e-excel-separator {
3616
3616
  }
3617
3617
  .e-bigger .e-grid .e-gridheader .e-headercontent .e-reorderuparrow,
3618
3618
  .e-bigger.e-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3619
- margin-top: -9px;
3619
+ margin-top: -2px;
3620
3620
  }
3621
3621
  .e-bigger .e-grid .e-gridheader thead .e-icons,
3622
3622
  .e-bigger.e-grid .e-gridheader thead .e-icons {
@@ -3073,7 +3073,7 @@
3073
3073
  user-select: none;
3074
3074
  }
3075
3075
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3076
- margin-top: -1.5px;
3076
+ margin-top: 0.5px;
3077
3077
  }
3078
3078
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3079
3079
  margin-top: -1.5px;
@@ -3074,7 +3074,7 @@
3074
3074
  user-select: none;
3075
3075
  }
3076
3076
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3077
- margin-top: -1.5px;
3077
+ margin-top: 0.5px;
3078
3078
  }
3079
3079
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3080
3080
  margin-top: -1.5px;
@@ -3122,7 +3122,7 @@
3122
3122
  user-select: none;
3123
3123
  }
3124
3124
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3125
- margin-top: -1px;
3125
+ margin-top: 0;
3126
3126
  }
3127
3127
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3128
3128
  margin-top: -3px;
@@ -3137,7 +3137,7 @@
3137
3137
  margin-top: 0;
3138
3138
  }
3139
3139
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3140
- margin-top: 0;
3140
+ margin-top: -2px;
3141
3141
  }
3142
3142
  .e-grid.sf-grid .e-masked-cell.e-rowcell .e-virtualcell {
3143
3143
  background-color: rgba(0, 0, 0, 0.1);
@@ -3185,7 +3185,7 @@
3185
3185
  }
3186
3186
  .e-bigger .e-grid .e-gridheader .e-headercontent .e-reorderuparrow,
3187
3187
  .e-bigger.e-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3188
- margin-top: -9px;
3188
+ margin-top: -2px;
3189
3189
  }
3190
3190
  .e-bigger .e-grid .e-gridheader thead .e-icons,
3191
3191
  .e-bigger.e-grid .e-gridheader thead .e-icons {
@@ -3137,7 +3137,7 @@
3137
3137
  margin-top: 0;
3138
3138
  }
3139
3139
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3140
- margin-top: 0;
3140
+ margin-top: -2px;
3141
3141
  }
3142
3142
  .e-grid.sf-grid .e-masked-cell.e-rowcell .e-virtualcell {
3143
3143
  background-color: rgba(0, 0, 0, 0.1);
@@ -3185,7 +3185,7 @@
3185
3185
  }
3186
3186
  .e-bigger .e-grid .e-gridheader .e-headercontent .e-reorderuparrow,
3187
3187
  .e-bigger.e-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3188
- margin-top: -9px;
3188
+ margin-top: -2px;
3189
3189
  }
3190
3190
  .e-bigger .e-grid .e-gridheader thead .e-icons,
3191
3191
  .e-bigger.e-grid .e-gridheader thead .e-icons {
@@ -3047,10 +3047,10 @@
3047
3047
  user-select: none;
3048
3048
  }
3049
3049
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3050
- margin-top: 0;
3050
+ margin-top: 1px;
3051
3051
  }
3052
3052
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3053
- margin-top: 0;
3053
+ margin-top: -1px;
3054
3054
  }
3055
3055
  .e-grid.sf-grid .e-masked-cell.e-rowcell .e-virtualcell {
3056
3056
  background-color: rgba(0, 0, 0, 0.1);
@@ -3040,10 +3040,10 @@
3040
3040
  user-select: none;
3041
3041
  }
3042
3042
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3043
- margin-top: 0;
3043
+ margin-top: 1px;
3044
3044
  }
3045
3045
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3046
- margin-top: 0;
3046
+ margin-top: -1px;
3047
3047
  }
3048
3048
  .e-grid.sf-grid .e-masked-cell.e-rowcell .e-virtualcell {
3049
3049
  background-color: rgba(0, 0, 0, 0.1);
@@ -3153,7 +3153,7 @@
3153
3153
  margin-top: 0;
3154
3154
  }
3155
3155
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3156
- margin-top: 0;
3156
+ margin-top: -1px;
3157
3157
  }
3158
3158
  .e-grid.sf-grid .e-masked-cell.e-rowcell .e-virtualcell {
3159
3159
  background-color: rgba(0, 0, 0, 0.1);
@@ -3201,7 +3201,7 @@
3201
3201
  }
3202
3202
  .e-bigger .e-grid .e-gridheader .e-headercontent .e-reorderuparrow,
3203
3203
  .e-bigger.e-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3204
- margin-top: -9px;
3204
+ margin-top: -2px;
3205
3205
  }
3206
3206
  .e-bigger .e-grid .e-gridheader thead .e-icons,
3207
3207
  .e-bigger.e-grid .e-gridheader thead .e-icons {
@@ -3153,7 +3153,7 @@
3153
3153
  margin-top: 0;
3154
3154
  }
3155
3155
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3156
- margin-top: 0;
3156
+ margin-top: -1px;
3157
3157
  }
3158
3158
  .e-grid.sf-grid .e-masked-cell.e-rowcell .e-virtualcell {
3159
3159
  background-color: rgba(0, 0, 0, 0.1);
@@ -3201,7 +3201,7 @@
3201
3201
  }
3202
3202
  .e-bigger .e-grid .e-gridheader .e-headercontent .e-reorderuparrow,
3203
3203
  .e-bigger.e-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3204
- margin-top: -9px;
3204
+ margin-top: -2px;
3205
3205
  }
3206
3206
  .e-bigger .e-grid .e-gridheader thead .e-icons,
3207
3207
  .e-bigger.e-grid .e-gridheader thead .e-icons {
@@ -3044,10 +3044,10 @@
3044
3044
  user-select: none;
3045
3045
  }
3046
3046
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3047
- margin-top: 0;
3047
+ margin-top: 2px;
3048
3048
  }
3049
3049
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3050
- margin-top: 0;
3050
+ margin-top: -1px;
3051
3051
  }
3052
3052
  .e-grid.sf-grid .e-masked-cell.e-rowcell .e-virtualcell {
3053
3053
  background-color: rgba(0, 0, 0, 0.1);
@@ -3088,10 +3088,10 @@
3088
3088
  user-select: none;
3089
3089
  }
3090
3090
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3091
- margin-top: 0;
3091
+ margin-top: 1px;
3092
3092
  }
3093
3093
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3094
- margin-top: 0;
3094
+ margin-top: -1px;
3095
3095
  }
3096
3096
  .e-grid.sf-grid .e-masked-cell.e-rowcell .e-virtualcell {
3097
3097
  background-color: rgba(0, 0, 0, 0.1);
@@ -3122,10 +3122,10 @@
3122
3122
  user-select: none;
3123
3123
  }
3124
3124
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3125
- margin-top: 0;
3125
+ margin-top: 1px;
3126
3126
  }
3127
3127
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3128
- margin-top: 0;
3128
+ margin-top: -1px;
3129
3129
  }
3130
3130
  .e-grid.sf-grid .e-masked-cell.e-rowcell .e-virtualcell {
3131
3131
  background-color: rgba(0, 0, 0, 0.1);
@@ -3158,10 +3158,10 @@
3158
3158
  user-select: none;
3159
3159
  }
3160
3160
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3161
- margin-top: -11px;
3161
+ margin-top: -4px;
3162
3162
  }
3163
3163
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3164
- margin-top: 1px;
3164
+ margin-top: -5px;
3165
3165
  }
3166
3166
  .e-grid.sf-grid .e-masked-cell.e-rowcell .e-virtualcell {
3167
3167
  background-color: rgba(0, 0, 0, 0.1);
@@ -3158,10 +3158,10 @@
3158
3158
  user-select: none;
3159
3159
  }
3160
3160
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3161
- margin-top: -11px;
3161
+ margin-top: -4px;
3162
3162
  }
3163
3163
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3164
- margin-top: 1px;
3164
+ margin-top: -5px;
3165
3165
  }
3166
3166
  .e-grid.sf-grid .e-masked-cell.e-rowcell .e-virtualcell {
3167
3167
  background-color: rgba(0, 0, 0, 0.1);
@@ -3456,10 +3456,10 @@ li.e-separator.e-menu-item.e-excel-separator {
3456
3456
  user-select: none;
3457
3457
  }
3458
3458
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3459
- margin-top: 0;
3459
+ margin-top: 2px;
3460
3460
  }
3461
3461
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3462
- margin-top: 0;
3462
+ margin-top: -1px;
3463
3463
  }
3464
3464
  .e-grid.sf-grid .e-masked-cell.e-rowcell .e-virtualcell {
3465
3465
  background-color: rgba(0, 0, 0, 0.1);
@@ -3506,10 +3506,10 @@ li.e-separator.e-menu-item.e-excel-separator {
3506
3506
  user-select: none;
3507
3507
  }
3508
3508
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3509
- margin-top: 0;
3509
+ margin-top: 1px;
3510
3510
  }
3511
3511
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3512
- margin-top: 0;
3512
+ margin-top: -1px;
3513
3513
  }
3514
3514
  .e-grid.sf-grid .e-masked-cell.e-rowcell .e-virtualcell {
3515
3515
  background-color: rgba(0, 0, 0, 0.1);
@@ -3548,10 +3548,10 @@ li.e-separator.e-menu-item.e-excel-separator {
3548
3548
  user-select: none;
3549
3549
  }
3550
3550
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3551
- margin-top: 0;
3551
+ margin-top: 1px;
3552
3552
  }
3553
3553
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3554
- margin-top: 0;
3554
+ margin-top: -1px;
3555
3555
  }
3556
3556
  .e-grid.sf-grid .e-masked-cell.e-rowcell .e-virtualcell {
3557
3557
  background-color: rgba(0, 0, 0, 0.1);
@@ -3574,10 +3574,10 @@ li.e-separator.e-menu-item.e-excel-separator {
3574
3574
  user-select: none;
3575
3575
  }
3576
3576
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3577
- margin-top: -11px;
3577
+ margin-top: -4px;
3578
3578
  }
3579
3579
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3580
- margin-top: 1px;
3580
+ margin-top: -5px;
3581
3581
  }
3582
3582
  .e-grid.sf-grid .e-masked-cell.e-rowcell .e-virtualcell {
3583
3583
  background-color: rgba(0, 0, 0, 0.1);
@@ -3574,10 +3574,10 @@ li.e-separator.e-menu-item.e-excel-separator {
3574
3574
  user-select: none;
3575
3575
  }
3576
3576
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderuparrow {
3577
- margin-top: -11px;
3577
+ margin-top: -4px;
3578
3578
  }
3579
3579
  .e-grid.sf-grid .e-gridheader .e-headercontent .e-reorderdownarrow {
3580
- margin-top: 1px;
3580
+ margin-top: -5px;
3581
3581
  }
3582
3582
  .e-grid.sf-grid .e-masked-cell.e-rowcell .e-virtualcell {
3583
3583
  background-color: rgba(0, 0, 0, 0.1);