You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+72-67Lines changed: 72 additions & 67 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,80 +3,85 @@
3
3
All notable changes for each version of this project will be documented in this file.
4
4
5
5
## 16.0.0
6
-
### Breaking Changes
7
-
-`IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`
8
-
The following grid properties, deprecated since version 12.1.0 are now removed:
9
-
- *evenRowCSS*;
10
-
- *oddRowCSS*;
11
-
- *page*;
12
-
- *paging*;
13
-
- *perPage*;
14
-
- *totalPages*;
15
-
- *isFirstPage*;
16
-
- *isLastPage*;
17
-
- *pageChange*;
18
-
Also the following deprecated grid events are removed.
19
-
- *perPageChange*;
20
-
- *pagingDone*;
21
-
Deprecated methods removed from the grid API are:
22
-
- *nextPage*;
23
-
- *previousPage*;
24
-
- *paginate*;
25
-
- *getCellByColumnVisibleIndex*;
6
+
26
7
### General
27
8
- All Ignite UI for Angular components are now exported as `standalone` components. The library still exports `NgModules`, which have been preserved for backward compatibility, but they no longer declare any of the Ignite UI for Angular components, instead they just import and export the `standalone` components. The `standalone` components are still in a preview stage. Some utility directive exports may change in the future and may be missing from the documentation in the initial release, hence the `preview` state of the feature.
28
9
29
-
Now you can do:
30
-
31
-
```typescript
32
-
// IGX_GRID_DIRECTIVES exports all grid related components and directives
// `NgModule` import of the `IgxGridModule` module, which is equivalent to IGX_GRID_DIRECTIVES in terms of exported components and directives.
44
+
import { IgxGridModule } from'igniteui-angular';
45
+
46
+
@Component({
47
+
selector: 'app-grid-sample',
48
+
styleUrls: ['grid.sample.scss'],
49
+
templateUrl: 'grid.sample.html',
50
+
standalone: true,
51
+
imports: [IgxGridModule, AsyncPipe]
52
+
})
53
+
```
73
54
-`IgxChip`
74
-
-**Behavioral Change** The `igxChip` styles have been revisited and the select container animaton has been removed when selecting/deselecting a chip.
55
+
-**Behavioral Change** The `igxChip` styles have been revisited and the select container animation has been removed when selecting/deselecting a chip.
75
56
-**Behavioral Change** The remove button behavior have been revisited, now when the chip is in `disabled` state the remove button is hidden.
76
-
- The `igxChip` have new input `variant` which can take any of the following values: `'primary'`, `'info'`, `'success'`, `'warning'`, `'danger'`
77
57
-`IgxGrid`, `IgxHierarchicalGrid`:
78
58
-**Breaking Change** The `IgxHeaderExpandIndicatorDirective` and `IgxHeaderCollapseIndicatorDirective` directives, as well as the `headerExpandIndicatorTemplate` and `headerCollapseIndicatorTemplate` properties have been renamed to `IgxHeaderExpandedIndicatorDirective`, `IgxHeaderCollapsedIndicatorDirective`, `headerExpandedIndicatorTemplate` and `headerCollapsedIndicatorTemplate` respectively to properly reflect their purpose. Automatic migrations are available and will be applied on `ng update`.
59
+
-`IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`
60
+
61
+
**Breaking Changes**: The following grid properties, deprecated since version 12.1.0 are now removed:
62
+
-*evenRowCSS*;
63
+
-*oddRowCSS*;
64
+
-*page*;
65
+
-*paging*;
66
+
-*perPage*;
67
+
-*totalPages*;
68
+
-*isFirstPage*;
69
+
-*isLastPage*;
70
+
71
+
Also the following deprecated grid events are removed.
72
+
73
+
-*pageChange*;
74
+
-*perPageChange*;
75
+
-*pagingDone*;
76
+
77
+
Deprecated methods removed from the grid API are:
78
+
-*nextPage*;
79
+
-*previousPage*;
80
+
-*paginate*;
81
+
-*getCellByColumnVisibleIndex*;
79
82
### New Features
83
+
-`IgxChip`
84
+
- New input `variant` which can take any of the following values: `'primary'`, `'info'`, `'success'`, `'warning'`, `'danger'`
80
85
-`IgxExpansionPanel`:
81
86
-`IgxExpansionPanelTitleDirective` and `IgxExpansionPanelDescriptionDirective` show tooltip of the provided text content.
82
87
-`IgxDateRangePicker`
@@ -88,7 +93,7 @@ import { IgxGridModule } from 'igniteui-angular';
88
93
- Added `pivotConfigurationChanged` event triggered any time any of `pivotConfiguration` properties is changed via the UI.
89
94
-`ISortingExpression` now accepts an optional generic type parameter for type narrowing of the `fieldName` property to keys of the data item, e.g. `ISortingExpression<MyDataItem>`
90
95
-`Util`
91
-
- Added new `CachedDataCloneStrategy` that allows for cloning object with circular references.
96
+
- Added new `CachedDataCloneStrategy` that allows for cloning object with circular references.
0 commit comments