Skip to content

Commit 650ccce

Browse files
authored
Merge branch 'master' into ibarakov/fix-13854-master
2 parents 97126cf + 6ce6973 commit 650ccce

File tree

22 files changed

+231
-123
lines changed

22 files changed

+231
-123
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,23 @@ 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`, `IgxGridToolbar`
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+
```
24+
- With this change the `grid` property of the `IgxGridToolbar` has been deprecated as it's no longer needed and will be removed in a future version.
1325
- 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`.
1426
- `IgxButton`
1527
- **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.
1628

29+
1730
### General
1831
- `igxButton`:
1932
- **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`.

projects/igniteui-angular/migrations/update-10_2_0/changes/inputs.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"@scheme": "../../common/schema/binding.schema.json",
2+
"$schema": "../../common/schema/binding.schema.json",
33
"changes": [
44
{
55
"name": "type",
6-
"remove": "true",
6+
"remove": true,
77
"conditions": ["type_is_invalid"],
88
"owner": {
99
"selector": "igx-input-group",

projects/igniteui-angular/migrations/update-11_0_0/changes/inputs.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
{
2-
"@scheme": "../../common/schema/binding.schema.json",
2+
"$schema": "../../common/schema/binding.schema.json",
33
"changes": [
44
{
55
"name": "showToolbar",
6-
"remove": "true",
6+
"remove": true,
77
"owner": {
88
"selector": "igx-grid",
99
"type": "component"
1010
}
1111
},
1212
{
1313
"name": "showToolbar",
14-
"remove": "true",
14+
"remove": true,
1515
"owner": {
1616
"selector": "igx-tree-grid",
1717
"type": "component"
1818
}
1919
},
2020
{
2121
"name": "showToolbar",
22-
"remove": "true",
22+
"remove": true,
2323
"owner": {
2424
"selector": "igx-hierarchical-grid",
2525
"type": "component"
2626
}
2727
},
2828
{
2929
"name": "showToolbar",
30-
"remove": "true",
30+
"remove": true,
3131
"owner": {
3232
"selector": "igx-row-island",
3333
"type": "component"

projects/igniteui-angular/migrations/update-11_1_0/changes/inputs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"@scheme": "../../common/schema/binding.schema.json",
2+
"$schema": "../../common/schema/binding.schema.json",
33
"changes": [
44
{
55
"name": "fontSet",

projects/igniteui-angular/migrations/update-12_0_0/changes/inputs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"@scheme": "../../common/schema/binding.schema.json",
2+
"$schema": "../../common/schema/binding.schema.json",
33
"changes": [
44
{
55
"name": "type",

projects/igniteui-angular/migrations/update-12_1_0/changes/inputs.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,97 +1,97 @@
11
{
2-
"@scheme": "../../common/schema/binding.schema.json",
2+
"$schema": "../../common/schema/binding.schema.json",
33
"changes": [
44
{
55
"name": "paging",
6-
"remove": "true",
6+
"remove": true,
77
"owner": {
88
"selector": "igx-grid",
99
"type": "component"
1010
}
1111
},
1212
{
1313
"name": "paging",
14-
"remove": "true",
14+
"remove": true,
1515
"owner": {
1616
"selector": "igx-tree-grid",
1717
"type": "component"
1818
}
1919
},
2020
{
2121
"name": "paging",
22-
"remove": "true",
22+
"remove": true,
2323
"owner": {
2424
"selector": "igx-hierarchical-grid",
2525
"type": "component"
2626
}
2727
},
2828
{
2929
"name": "paging",
30-
"remove": "true",
30+
"remove": true,
3131
"owner": {
3232
"selector": "igx-row-island",
3333
"type": "component"
3434
}
3535
},
3636
{
3737
"name": "paginationTemplate",
38-
"remove": "true",
38+
"remove": true,
3939
"owner": {
4040
"selector": "igx-grid",
4141
"type": "component"
4242
}
4343
},
4444
{
4545
"name": "paginationTemplate",
46-
"remove": "true",
46+
"remove": true,
4747
"owner": {
4848
"selector": "igx-tree-grid",
4949
"type": "component"
5050
}
5151
},
5252
{
5353
"name": "paginationTemplate",
54-
"remove": "true",
54+
"remove": true,
5555
"owner": {
5656
"selector": "igx-hierarchical-grid",
5757
"type": "component"
5858
}
5959
},
6060
{
6161
"name": "paginationTemplate",
62-
"remove": "true",
62+
"remove": true,
6363
"owner": {
6464
"selector": "igx-row-island",
6565
"type": "component"
6666
}
6767
},
6868
{
6969
"name": "pagerHidden",
70-
"remove": "true",
70+
"remove": true,
7171
"owner": {
7272
"selector": "igx-paginator",
7373
"type": "component"
7474
}
7575
},
7676
{
7777
"name": "dropdownHidden",
78-
"remove": "true",
78+
"remove": true,
7979
"owner": {
8080
"selector": "igx-paginator",
8181
"type": "component"
8282
}
8383
},
8484
{
8585
"name": "dropdownEnabled",
86-
"remove": "true",
86+
"remove": true,
8787
"owner": {
8888
"selector": "igx-paginator",
8989
"type": "component"
9090
}
9191
},
9292
{
9393
"name": "pagerEnabled",
94-
"remove": "true",
94+
"remove": true,
9595
"owner": {
9696
"selector": "igx-paginator",
9797
"type": "component"

0 commit comments

Comments
 (0)