Skip to content

Commit 60b5dcb

Browse files
committed
docs(h-grid): add changelog entry for simpler toolbar template
1 parent bbd2654 commit 60b5dcb

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,22 @@ All notable changes for each version of this project will be documented in this
1010
- Added new property `toggleNodeOnClick` that determines whether clicking over a node will change its expanded state or not. Set to `false` by default.
1111
- `IgxPivotGrid`
1212
- `IPivotDimension` interface now exposes a property called `displayName` similar to the one in the `IPivotValue` interface. This property is optional and will be displayed inside the chips for rows and columns in the `IgxPivotGrid`. If the `displayName` property is not set, `memberName` will be used as a fallback.
13+
- `IgxHierarchicalGrid`
14+
- The declaration of child layout toolbar templates no longer require explicit grid reference so the following:
15+
```html
16+
<igx-row-island>
17+
<igx-grid-toolbar [grid]="childGrid" *igxGridToolbar="let childGrid">
18+
```
19+
can be simplified like:
20+
```html
21+
<igx-row-island>
22+
<igx-grid-toolbar *igxGridToolbar>
23+
```
1324
- New directive - `igxIconButton` directive that provides a way to use an icon as a fully functional button has been added. The new `igxIconButton` comes in three types - flat, outlined and contained (default). All `igxButton`'s with type `icon` will be automatically migrated to the new `igxIconButton`'s with `ng update`.
1425
- `IgxButton`
1526
- **Behavioral Change** `buttonSelected` event is now emitted not only when a button gets selected, but also when it gets deselected. However, the event is no longer being emitted on initialization. If this event was used in a scenario where it is assumed that the button gets selected, it's a good idea the logic to be branched now based on `eventArgs.selected` condition.
1627

28+
1729
### General
1830
- `igxButton`:
1931
- **Breaking Change** The `raised` type of the `igxButton` directive has been renamed to `contained`. Automatic migrations are available and will be applied on `ng update`.

0 commit comments

Comments
 (0)