Skip to content

Commit 4fa26f9

Browse files
authored
Merge branch 'master' into enrich-deprecation-msgs-m
2 parents 9eee1d3 + 8204afb commit 4fa26f9

File tree

82 files changed

+2162
-1892
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+2162
-1892
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,23 @@ All notable changes for each version of this project will be documented in this
1010
- Added support for exporting grouped data.
1111
- `IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`
1212
- Support for `currency` type columns is added in the grid.
13+
- Added support for filtering based on the formatted cell values using the `FormattedValuesFilteringStrategy` for `IgxGrid`/`IgxHierarchicalGrid` and `TreeGridFormattedValuesFilteringStrategy` for `IgxTreeGrid`.
1314
- `IgxPaginator`
1415
- `paging` and `pagingDone` events are now emitted.
1516
- `IgxInput` now supports `type="file"` and its styling upon all themes.
1617
_Note: validation of file type input is not yet supported._
1718

1819
### General
20+
- **Breaking Change** - Many outputs are renamed with the introduction of new rules in Ignite UI for Angular's naming convention. Please, ensure that when you update to 11.1 you do so through
21+
```
22+
ng update igniteui-angular
23+
```
24+
or execute the update migrations manually afterwards
25+
```
26+
ng update igniteui-angular --migrate-only
27+
```
28+
This will ensure your application is updated to use the new output names.
29+
- `IgxCheckbox, IgxRadio, IgxSwitch` now follow the Google Material spec for focus behavior. See [checkbox](https://material.io/components/checkboxes), [radio](https://material.io/components/radio-buttons), and [switch](https://material.io/components/switches).
1930
- `IgxDialog`
2031
- The dialog content has been moved inside the dialog window container in the template. This means that if you have added something in-between the opening and closing tags of the dialog, you may have to adjust its styling a bit since that content is now rendered inside a container that has padding on it.
2132
- `IgxCalendar`
@@ -53,6 +64,24 @@ All notable changes for each version of this project will be documented in this
5364
- Added new property `theme` that allows you to set the theme explicitly and at runtime.
5465
- `IgxSnackbar`
5566
- `show` and `hide` methods have been deprecated. `open` and `close` should be used instead.
67+
- `IgxSplitter`
68+
- **Breaking Change** - the `onToggle` output is deprecated. A new output is introduced to replace it - `collapsedChange`. This allows for the `collapsed` state to be two-way bindable using the syntax ```[(collapsed)]="paneCollapse"```
69+
- `IgxChip`
70+
- **Breaking Change** - The following outputs are renamed:
71+
- `onMoveStart` to `moveStart`
72+
- `onMoveEnd` to `moveEnd`
73+
- `onRemove` to `remove`
74+
- `onClick` to `chipClick`
75+
- `onSelection` to `selectedChanging`
76+
- `onSelectionDone` to `selectedChanged`
77+
- `onKeyDown` to `keyDown`
78+
- `onDragEnter` to `dragEnter`
79+
- `IgxChipArea`
80+
- **Breaking Change** - The following outputs are renamed:
81+
- `onReorder` to `reorder`
82+
- `onSelection` to `selectionChange`
83+
- `onMoveStart` to `moveStart`
84+
- `onMoveEnd` to `moveEnd`
5685
- `IgxGrid`, `IgxHierarchicalGrid`, `IgxTreeGrid`
5786
- Added new property `selectRowOnClick` that determines whether clicking over a row will change its selection state or not. Set to `true` by default.
5887
- `GridPagingMode` enum members rename - `local` to `Local` and `remote` to `Remote`. Example: `GridPagingMode.Local`.

0 commit comments

Comments
 (0)