Skip to content

Commit 7e10e83

Browse files
authored
chore(changelog): move sections, formatting, typo (#13005)
1 parent b340e00 commit 7e10e83

File tree

1 file changed

+72
-67
lines changed

1 file changed

+72
-67
lines changed

CHANGELOG.md

Lines changed: 72 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -3,80 +3,85 @@
33
All notable changes for each version of this project will be documented in this file.
44

55
## 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+
267
### General
278
- 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.
289

29-
Now you can do:
30-
31-
```typescript
32-
// IGX_GRID_DIRECTIVES exports all grid related components and directives
33-
import { IGX_GRID_DIRECTIVES } from 'igniteui-angular';
34-
35-
@Component({
36-
selector: 'app-grid-sample',
37-
styleUrls: ['grid.sample.scss'],
38-
templateUrl: 'grid.sample.html',
39-
standalone: true,
40-
imports: [IGX_GRID_DIRECTIVES, AsyncPipe]
41-
})
42-
```
43-
44-
or
45-
46-
```typescript
47-
// Single import of only the <igx-grid> component.
48-
import { IgxGridComponent } from 'igniteui-angular';
49-
50-
@Component({
51-
selector: 'app-grid-sample',
52-
styleUrls: ['grid.sample.scss'],
53-
templateUrl: 'grid.sample.html',
54-
standalone: true,
55-
imports: [IgxGridComponent, AsyncPipe]
56-
})
57-
```
58-
59-
or still
60-
61-
```typescript
62-
// `NgModule` import of the `IgxGridModule` module, which is equivalent to IGX_GRID_DIRECTIVES in terms of exported components and directives.
63-
import { IgxGridModule } from 'igniteui-angular';
64-
65-
@Component({
66-
selector: 'app-grid-sample',
67-
styleUrls: ['grid.sample.scss'],
68-
templateUrl: 'grid.sample.html',
69-
standalone: true,
70-
imports: [IgxGridModule, AsyncPipe]
71-
})
72-
```
10+
Now you can do:
11+
12+
```typescript
13+
// IGX_GRID_DIRECTIVES exports all grid related components and directives
14+
import { IGX_GRID_DIRECTIVES } from 'igniteui-angular';
15+
16+
@Component({
17+
selector: 'app-grid-sample',
18+
styleUrls: ['grid.sample.scss'],
19+
templateUrl: 'grid.sample.html',
20+
standalone: true,
21+
imports: [IGX_GRID_DIRECTIVES, AsyncPipe]
22+
})
23+
```
24+
25+
or
26+
27+
```typescript
28+
// Single import of only the <igx-grid> component.
29+
import { IgxGridComponent } from 'igniteui-angular';
30+
31+
@Component({
32+
selector: 'app-grid-sample',
33+
styleUrls: ['grid.sample.scss'],
34+
templateUrl: 'grid.sample.html',
35+
standalone: true,
36+
imports: [IgxGridComponent, AsyncPipe]
37+
})
38+
```
39+
40+
or still
41+
42+
```typescript
43+
// `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+
```
7354
- `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.
7556
- **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'`
7757
- `IgxGrid`, `IgxHierarchicalGrid`:
7858
- **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*;
7982
### New Features
83+
- `IgxChip`
84+
- New input `variant` which can take any of the following values: `'primary'`, `'info'`, `'success'`, `'warning'`, `'danger'`
8085
- `IgxExpansionPanel`:
8186
- `IgxExpansionPanelTitleDirective` and `IgxExpansionPanelDescriptionDirective` show tooltip of the provided text content.
8287
- `IgxDateRangePicker`
@@ -88,7 +93,7 @@ import { IgxGridModule } from 'igniteui-angular';
8893
- Added `pivotConfigurationChanged` event triggered any time any of `pivotConfiguration` properties is changed via the UI.
8994
- `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>`
9095
- `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.
9297

9398
## 15.1.0
9499

0 commit comments

Comments
 (0)