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
+29
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,35 @@
2
2
3
3
All notable changes for each version of this project will be documented in this file.
4
4
5
+
## 8.2.0
6
+
7
+
### New Features
8
+
-`IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`
9
+
-`uniqueColumnValuesStrategy` input is added. This property provides a callback for loading unique column values on demand. If this property is provided, the unique values it generates will be used by the Excel Style Filtering (instead of using the unique values from the data that is bound to the grid).
10
+
-`igxExcelStyleLoading` directive is added, which can be used to provide a custom loading template for the Excel Style Filtering. If this property is not provided, a default loading template will be used instead.
11
+
### General
12
+
-`IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`
13
+
-**Breaking Change**`igxExcelStyleSortingTemplate` directive is renamed to `igxExcelStyleSorting`.
14
+
-**Breaking Change**`igxExcelStyleMovingTemplate` directive is renamed to `igxExcelStyleMoving`.
15
+
-**Breaking Change**`igxExcelStyleHidingTemplate` directive is renamed to `igxExcelStyleHiding`.
16
+
-**Breaking Change**`igxExcelStylePinningTemplate` directive is renamed to `igxExcelStylePinning`.
17
+
18
+
## 8.1.3
19
+
-`IgxCombo`
20
+
- Combo `onSelectionChange` events now emits the item(s) that were added to or removed from the collection:
|`onSelectionChange`| Emitted when item selection is changing, before the selection completes | true |{ oldSelection: `Array<any>`, newSelection: `Array<any>`, event: Event }|
279
+
|`onSelectionChange`| Emitted when item selection is changing, before the selection completes | true |[`IComboSelectionChangeEventArgs`](https://www.infragistics.com/products/ignite-ui-angular/docs/typescript/latest/interfaces/icomboselectionchangeeventargs.html)|
280
280
|`onSearchInput`| Emitted when an the search input's input event is triggered | false | { searchValue: `string` } |
281
-
|`onAddition`| Emitted when an item is being added to the data collection | false | { oldCollection: `Array<any>`, addedItem: `<any>`, newCollection: `Array<any>` }|
282
-
|`onDataPreLoad`| Emitted when new chunk of data is loaded from the virtualization | false | { event: Event } |
283
-
|`onOpening`| Emitted before the dropdown is opened | false | { event: Event } |
284
-
|`onOpened`| Emitted after the dropdown is opened | false | { event: Event } |
285
-
|`onClosing`| Emitted before the dropdown is closed | false | { event: Event } |
286
-
|`onClosed`| Emitted after the dropdown is closed | false | { event: Event } |
281
+
|`onAddition`| Emitted when an item is being added to the data collection | false | { oldCollection: `any[]`, addedItem: `<any>`, newCollection: `any[]` }|
282
+
|`onDataPreLoad`| Emitted when new chunk of data is loaded from the virtualization | false | { event: `Event` } |
283
+
|`onOpening`| Emitted before the dropdown is opened | false | { event: `Event` } |
284
+
|`onOpened`| Emitted after the dropdown is opened | false | { event: `Event` } |
285
+
|`onClosing`| Emitted before the dropdown is closed | false | { event: `Event` } |
286
+
|`onClosed`| Emitted after the dropdown is closed | false | { event: `Event` } |
287
287
288
288
### Methods
289
289
@@ -292,9 +292,9 @@ Setting `[displayDensity]` affects the control's items' and inputs' css properti
292
292
|`open`| Opens drop down |`void`|`None`|
293
293
|`close`| Closes drop down |`void`|`None`|
294
294
|`toggle`| Toggles drop down |`void`|`None`|
295
-
|`selectedItems`| Get current selection state |`Array<any>`|`None`|
296
-
|`selectItems`| Select defined items |`void`| items: `Array<any>`, clearCurrentSelection: `boolean`|
297
-
|`deselectItems`| Deselect defined items |`void`| items: `Array<any>`|
295
+
|`selectedItems`| Get current selection state |`any[]`|`None`|
296
+
|`selectItems`| Select defined items |`void`| items: `any[]`, clearCurrentSelection: `boolean`|
297
+
|`deselectItems`| Deselect defined items |`void`| items: `any[]`|
298
298
|`selectAllItems`| Select all (filtered) items |`void`| ignoreFilter?: `boolean` - if `true` selects **all** values |
299
299
|`deselectAllItems`| Deselect (filtered) all items |`void`| ignoreFilter?: `boolean` - if `true` deselects **all** values |
300
300
|`setSelectedItem`| Toggles (select/deselect) an item by key |`void`| itemID: any, select = true, event?: Event |
0 commit comments