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
+29Lines changed: 29 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -10,12 +10,23 @@ All notable changes for each version of this project will be documented in this
10
10
- Added support for exporting grouped data.
11
11
-`IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`
12
12
- 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`.
13
14
-`IgxPaginator`
14
15
-`paging` and `pagingDone` events are now emitted.
15
16
-`IgxInput` now supports `type="file"` and its styling upon all themes.
16
17
_Note: validation of file type input is not yet supported._
17
18
18
19
### 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).
19
30
- `IgxDialog`
20
31
- 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.
21
32
- `IgxCalendar`
@@ -53,6 +64,24 @@ All notable changes for each version of this project will be documented in this
53
64
- Added new property `theme` that allows you to set the theme explicitly and at runtime.
54
65
- `IgxSnackbar`
55
66
- `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`
56
85
- `IgxGrid`, `IgxHierarchicalGrid`, `IgxTreeGrid`
57
86
- Added new property `selectRowOnClick` that determines whether clicking over a row will change its selection state or not. Set to `true` by default.
58
87
- `GridPagingMode` enum members rename - `local` to `Local` and `remote` to `Remote`. Example: `GridPagingMode.Local`.
0 commit comments